fix: break Synology Chat plugin-sdk reexport cycle (#49281)

Build failed because src/plugin-sdk/synology-chat.ts reexported setup symbols through extensions/synology-chat/api.ts, and that API shim reexports openclaw/plugin-sdk/synology-chat back into the same entry. Export the setup symbols directly from the concrete setup surface so tsdown can bundle the SDK subpath without a self-referential export graph.
This commit is contained in:
Josh Lehman 2026-03-17 15:27:58 -07:00 committed by GitHub
parent 90a0d50ae9
commit 2f65ae1b80
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -20,4 +20,4 @@ export { createFixedWindowRateLimiter } from "./webhook-memory-guards.js";
export {
synologyChatSetupAdapter,
synologyChatSetupWizard,
} from "../../extensions/synology-chat/api.js";
} from "../../extensions/synology-chat/src/setup-surface.js";