mirror of
http://192.168.0.88:13333/lywsvip/openclaw-zero-token.git
synced 2026-05-08 16:17:54 +08:00
Major upgrade from e26988a38 to upstream v2026.3.28 (f9b107928).
Key changes:
- Upstream src/, ui/, extensions/ (89 bundled extensions)
- Zero-token web providers preserved in src/zero-token/
- AskOnce plugin restored and registered as CLI command
- Added missing packages: @anthropic-ai/vertex-sdk, @modelcontextprotocol/sdk
- Fixed tsconfig rootDir, skipLibCheck for plugin-sdk DTS build
- Added askonce to bundled plugin metadata and package.json exports
- Fixed AskOnce CLI command registration (missing commands metadata)
- Restored AskOnce adapter imports (correct 5-level relative paths)
- Removed stale migration artifacts from root directory
60 lines
1.9 KiB
TypeScript
60 lines
1.9 KiB
TypeScript
export type { IMessageAccountConfig } from "../config/types.js";
|
|
export type { IMessageProbe } from "./imessage-runtime.js";
|
|
export type { OpenClawConfig } from "../config/config.js";
|
|
export type {
|
|
ChannelMessageActionContext,
|
|
ChannelPlugin,
|
|
OpenClawPluginApi,
|
|
PluginRuntime,
|
|
} from "./channel-plugin-common.js";
|
|
export {
|
|
DEFAULT_ACCOUNT_ID,
|
|
PAIRING_APPROVED_MESSAGE,
|
|
applyAccountNameToChannelSection,
|
|
buildChannelConfigSchema,
|
|
deleteAccountFromConfigSection,
|
|
emptyPluginConfigSchema,
|
|
formatPairingApproveHint,
|
|
getChatChannelMeta,
|
|
migrateBaseNameToDefaultAccount,
|
|
normalizeAccountId,
|
|
setAccountEnabledInConfigSection,
|
|
} from "./channel-plugin-common.js";
|
|
export { detectBinary } from "../plugins/setup-binary.js";
|
|
export { formatDocsLink } from "../terminal/links.js";
|
|
export {
|
|
formatTrimmedAllowFromEntries,
|
|
resolveIMessageConfigAllowFrom,
|
|
resolveIMessageConfigDefaultTo,
|
|
} from "./channel-config-helpers.js";
|
|
export {
|
|
looksLikeIMessageTargetId,
|
|
normalizeIMessageMessagingTarget,
|
|
} from "../channels/plugins/normalize/imessage.js";
|
|
export {
|
|
parseChatAllowTargetPrefixes,
|
|
parseChatTargetPrefixesOrThrow,
|
|
resolveServicePrefixedAllowTarget,
|
|
resolveServicePrefixedTarget,
|
|
type ParsedChatTarget,
|
|
} from "./imessage-targets.js";
|
|
|
|
export {
|
|
resolveAllowlistProviderRuntimeGroupPolicy,
|
|
resolveDefaultGroupPolicy,
|
|
} from "../config/runtime-group-policy.js";
|
|
export {
|
|
normalizeIMessageHandle,
|
|
resolveIMessageGroupRequireMention,
|
|
resolveIMessageGroupToolPolicy,
|
|
} from "./imessage-policy.js";
|
|
export { IMessageConfigSchema } from "../config/zod-schema.providers-core.js";
|
|
|
|
export { resolveChannelMediaMaxBytes } from "../channels/plugins/media-limits.js";
|
|
export { chunkTextForOutbound } from "./text-chunking.js";
|
|
export {
|
|
buildComputedAccountStatusSnapshot,
|
|
collectStatusIssuesFromLastError,
|
|
} from "./status-helpers.js";
|
|
export { monitorIMessageProvider, probeIMessage, sendMessageIMessage } from "./imessage-runtime.js";
|