diff --git a/extensions/copilot-proxy/index.ts b/extensions/copilot-proxy/index.ts index cf71710db5c..ef0aa61030c 100644 --- a/extensions/copilot-proxy/index.ts +++ b/extensions/copilot-proxy/index.ts @@ -2,7 +2,7 @@ import { definePluginEntry, type ProviderAuthContext, type ProviderAuthResult, -} from "openclaw/plugin-sdk/copilot-proxy"; +} from "./runtime-api.js"; const DEFAULT_BASE_URL = "http://localhost:3000/v1"; const DEFAULT_API_KEY = "n/a"; diff --git a/extensions/copilot-proxy/runtime-api.ts b/extensions/copilot-proxy/runtime-api.ts new file mode 100644 index 00000000000..849136c6efb --- /dev/null +++ b/extensions/copilot-proxy/runtime-api.ts @@ -0,0 +1 @@ +export * from "openclaw/plugin-sdk/copilot-proxy"; diff --git a/extensions/open-prose/index.ts b/extensions/open-prose/index.ts index 540148f498c..c86f309fcc4 100644 --- a/extensions/open-prose/index.ts +++ b/extensions/open-prose/index.ts @@ -1,4 +1,4 @@ -import { definePluginEntry, type OpenClawPluginApi } from "openclaw/plugin-sdk/open-prose"; +import { definePluginEntry, type OpenClawPluginApi } from "./runtime-api.js"; export default definePluginEntry({ id: "open-prose", diff --git a/extensions/open-prose/runtime-api.ts b/extensions/open-prose/runtime-api.ts new file mode 100644 index 00000000000..1601f81be1f --- /dev/null +++ b/extensions/open-prose/runtime-api.ts @@ -0,0 +1 @@ +export * from "openclaw/plugin-sdk/open-prose"; diff --git a/extensions/phone-control/index.ts b/extensions/phone-control/index.ts index 88446e4fde7..1743e3faae5 100644 --- a/extensions/phone-control/index.ts +++ b/extensions/phone-control/index.ts @@ -4,7 +4,7 @@ import { definePluginEntry, type OpenClawPluginApi, type OpenClawPluginService, -} from "openclaw/plugin-sdk/phone-control"; +} from "./runtime-api.js"; type ArmGroup = "camera" | "screen" | "writes" | "all"; diff --git a/extensions/phone-control/runtime-api.ts b/extensions/phone-control/runtime-api.ts new file mode 100644 index 00000000000..2e9e0adeba2 --- /dev/null +++ b/extensions/phone-control/runtime-api.ts @@ -0,0 +1 @@ +export * from "openclaw/plugin-sdk/phone-control"; diff --git a/extensions/zai/detect.ts b/extensions/zai/detect.ts index 9bd1f25f50a..6d01c0ddce7 100644 --- a/extensions/zai/detect.ts +++ b/extensions/zai/detect.ts @@ -2,7 +2,7 @@ import { detectZaiEndpoint as detectZaiEndpointCore, type ZaiDetectedEndpoint, type ZaiEndpointId, -} from "openclaw/plugin-sdk/zai"; +} from "./runtime-api.js"; type DetectZaiEndpointFn = typeof detectZaiEndpointCore; diff --git a/extensions/zai/runtime-api.ts b/extensions/zai/runtime-api.ts new file mode 100644 index 00000000000..27c34abce5a --- /dev/null +++ b/extensions/zai/runtime-api.ts @@ -0,0 +1 @@ +export * from "openclaw/plugin-sdk/zai";