refactor: delete unused extension shared shims

This commit is contained in:
Peter Steinberger
2026-05-01 14:15:51 +01:00
parent 49b1770b8e
commit 9b231e39ad
7 changed files with 0 additions and 30 deletions

View File

@@ -1,5 +0,0 @@
export {
buildPassiveChannelStatusSummary,
buildPassiveProbedChannelStatusSummary,
buildTrafficStatusSummary,
} from "openclaw/plugin-sdk/extension-shared";

View File

@@ -1,17 +0,0 @@
import { requireOpenAllowFrom } from "openclaw/plugin-sdk/channel-config-primitives";
import type { z } from "openclaw/plugin-sdk/zod";
export function requireChannelOpenAllowFrom(params: {
channel: string;
policy?: string;
allowFrom?: Array<string | number>;
ctx: z.RefinementCtx;
}) {
requireOpenAllowFrom({
policy: params.policy,
allowFrom: params.allowFrom,
ctx: params.ctx,
path: ["allowFrom"],
message: `channels.${params.channel}.dmPolicy="open" requires channels.${params.channel}.allowFrom to include "*"`,
});
}

View File

@@ -1 +0,0 @@
export { createDeferred } from "openclaw/plugin-sdk/extension-shared";

View File

@@ -1 +0,0 @@
export { runStoppablePassiveMonitor } from "openclaw/plugin-sdk/extension-shared";

View File

@@ -1 +0,0 @@
export { resolveLoggerBackedRuntime } from "openclaw/plugin-sdk/extension-shared";

View File

@@ -1,4 +0,0 @@
export {
coerceStatusIssueAccountId,
readStatusIssueFields,
} from "openclaw/plugin-sdk/extension-shared";

View File

@@ -1 +0,0 @@
export { createWindowsCmdShimFixture } from "openclaw/plugin-sdk/test-env";