mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-04 16:11:38 +00:00
30 lines
1.0 KiB
TypeScript
30 lines
1.0 KiB
TypeScript
/**
|
|
* Runtime SDK subpath for building approval replies and exec approval presentations.
|
|
*/
|
|
export {
|
|
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";
|