mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-22 02:15:26 -06:00
bcf342903f
* refactor(gateway): distinguish pending node handlers * refactor(approvals): distinguish button presentation builder * refactor(daemon): distinguish service home resolver
31 lines
1.1 KiB
TypeScript
31 lines
1.1 KiB
TypeScript
/**
|
|
* Runtime SDK subpath for building approval replies and exec approval presentations.
|
|
*/
|
|
export {
|
|
// Shipped Plugin SDK compatibility alias; remove in the next major release.
|
|
buildApprovalButtonPresentation as buildApprovalPresentation,
|
|
buildApprovalPresentationFromActionDescriptors,
|
|
buildExecApprovalPresentation,
|
|
buildExecApprovalActionDescriptors,
|
|
buildExecApprovalPendingReplyPayload,
|
|
buildTypedApprovalPresentation,
|
|
buildTypedExecApprovalPendingReplyPayload,
|
|
getExecApprovalApproverDmNoticeText,
|
|
getExecApprovalReplyMetadata,
|
|
parseExecApprovalCommandText,
|
|
type ExecApprovalActionDescriptor,
|
|
type ExecApprovalPendingReplyParams,
|
|
type ExecApprovalReplyDecision,
|
|
type ExecApprovalReplyMetadata,
|
|
} from "../infra/exec-approval-reply.js";
|
|
export { resolveExecApprovalCommandDisplay } from "../infra/exec-approval-command-display.js";
|
|
export {
|
|
resolveExecApprovalAllowedDecisions,
|
|
resolveExecApprovalRequestAllowedDecisions,
|
|
type ExecApprovalDecision,
|
|
} from "../infra/exec-approvals.js";
|
|
export {
|
|
buildPluginApprovalPendingReplyPayload,
|
|
buildTypedPluginApprovalPendingReplyPayload,
|
|
} from "./approval-renderers.js";
|