Plugins: internalize signal SDK imports

This commit is contained in:
Vincent Koc 2026-03-17 20:55:26 -07:00
parent 0636c6eafa
commit 4285eb3539
5 changed files with 6 additions and 5 deletions

View File

@ -1 +1,2 @@
export * from "./src/index.js";
export * from "openclaw/plugin-sdk/signal";
export * from "openclaw/plugin-sdk/signal-core";

View File

@ -4,7 +4,7 @@ import {
resolveAccountEntry,
type OpenClawConfig,
} from "openclaw/plugin-sdk/account-resolution";
import type { SignalAccountConfig } from "openclaw/plugin-sdk/signal";
import type { SignalAccountConfig } from "../runtime-api.js";
export type ResolvedSignalAccount = {
accountId: string;

View File

@ -1,4 +1,4 @@
import { type ChannelPlugin } from "openclaw/plugin-sdk/signal";
import { type ChannelPlugin } from "../runtime-api.js";
import { type ResolvedSignalAccount } from "./accounts.js";
import { signalSetupAdapter } from "./setup-core.js";
import { createSignalPluginBase, signalSetupWizard } from "./shared.js";

View File

@ -16,7 +16,7 @@ import {
PAIRING_APPROVED_MESSAGE,
resolveChannelMediaMaxBytes,
type ChannelPlugin,
} from "openclaw/plugin-sdk/signal";
} from "../runtime-api.js";
import { resolveSignalAccount, type ResolvedSignalAccount } from "./accounts.js";
import { markdownToSignalTextChunks } from "./format.js";
import {

View File

@ -11,7 +11,7 @@ import {
normalizeE164,
SignalConfigSchema,
type ChannelPlugin,
} from "openclaw/plugin-sdk/signal-core";
} from "../runtime-api.js";
import {
listSignalAccountIds,
resolveDefaultSignalAccountId,