mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-27 10:41:18 +00:00
* refactor(channels): share plugin contract scaffolds * fix: preserve channel config hint metadata * chore: refresh Plugin SDK API baseline * ci: refresh plugin SDK surface budget * fix(ci): allow read-only state database boundary * fix(ci): dedupe read-only state database boundary
11 lines
369 B
TypeScript
11 lines
369 B
TypeScript
/**
|
|
* Runtime SDK subpath for approval auth adapters and same-chat authorization markers.
|
|
*/
|
|
export { resolveApprovalApprovers } from "./approval-approvers.js";
|
|
export {
|
|
createChannelApprovalAuth,
|
|
createResolvedApproverActionAuthAdapter,
|
|
isImplicitSameChatApprovalAuthorization,
|
|
markImplicitSameChatApprovalAuthorization,
|
|
} from "./approval-auth-helpers.js";
|