mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 14:01:24 +08:00
54 lines
1.5 KiB
TypeScript
54 lines
1.5 KiB
TypeScript
/**
|
|
* Public runtime API barrel for ACPX. Core and plugin consumers import these
|
|
* SDK-facing ACP runtime contracts instead of reaching into ACPX internals.
|
|
*/
|
|
export type { AcpRuntimeErrorCode } from "openclaw/plugin-sdk/acp-runtime-backend";
|
|
export {
|
|
AcpRuntimeError,
|
|
getAcpRuntimeBackend,
|
|
tryDispatchAcpReplyHook,
|
|
registerAcpRuntimeBackend,
|
|
unregisterAcpRuntimeBackend,
|
|
} from "openclaw/plugin-sdk/acp-runtime-backend";
|
|
export type {
|
|
AcpRuntime,
|
|
AcpRuntimeCapabilities,
|
|
AcpRuntimeDoctorReport,
|
|
AcpRuntimeEnsureInput,
|
|
AcpRuntimeEvent,
|
|
AcpRuntimeHandle,
|
|
AcpRuntimeStatus,
|
|
AcpRuntimeTurn,
|
|
AcpRuntimeTurnAttachment,
|
|
AcpRuntimeTurnInput,
|
|
AcpRuntimeTurnResult,
|
|
AcpRuntimeTurnResultError,
|
|
AcpSessionUpdateTag,
|
|
} from "openclaw/plugin-sdk/acp-runtime-backend";
|
|
export type {
|
|
OpenClawPluginApi,
|
|
OpenClawPluginConfigSchema,
|
|
OpenClawPluginService,
|
|
OpenClawPluginServiceContext,
|
|
PluginLogger,
|
|
} from "openclaw/plugin-sdk/core";
|
|
export type {
|
|
PluginHookReplyDispatchContext,
|
|
PluginHookReplyDispatchEvent,
|
|
PluginHookReplyDispatchResult,
|
|
} from "openclaw/plugin-sdk/core";
|
|
export type {
|
|
WindowsSpawnProgram,
|
|
WindowsSpawnProgramCandidate,
|
|
WindowsSpawnResolution,
|
|
} from "openclaw/plugin-sdk/windows-spawn";
|
|
export {
|
|
applyWindowsSpawnProgramPolicy,
|
|
materializeWindowsSpawnProgram,
|
|
resolveWindowsSpawnProgramCandidate,
|
|
} from "openclaw/plugin-sdk/windows-spawn";
|
|
export {
|
|
listKnownProviderAuthEnvVarNames,
|
|
omitEnvKeysCaseInsensitive,
|
|
} from "openclaw/plugin-sdk/provider-env-vars";
|