mirror of
http://192.168.0.88:13333/lywsvip/openclaw-zero-token.git
synced 2026-05-09 00:34:04 +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
55 lines
2.0 KiB
TypeScript
55 lines
2.0 KiB
TypeScript
export type {
|
|
ChannelAccountSnapshot,
|
|
ChannelGatewayContext,
|
|
ChannelMessageActionAdapter,
|
|
} from "../channels/plugins/types.js";
|
|
export type { ChannelPlugin } from "../channels/plugins/types.plugin.js";
|
|
export type { OpenClawConfig } from "../config/config.js";
|
|
export type { PluginRuntime } from "../plugins/runtime/types.js";
|
|
export type { OpenClawPluginApi } from "../plugins/types.js";
|
|
export type {
|
|
TelegramAccountConfig,
|
|
TelegramActionConfig,
|
|
TelegramNetworkConfig,
|
|
} from "../config/types.js";
|
|
export type {
|
|
ChannelConfiguredBindingProvider,
|
|
ChannelConfiguredBindingConversationRef,
|
|
ChannelConfiguredBindingMatch,
|
|
} from "../channels/plugins/types.adapters.js";
|
|
|
|
export { emptyPluginConfigSchema } from "../plugins/config-schema.js";
|
|
export { DEFAULT_ACCOUNT_ID, normalizeAccountId } from "../routing/session-key.js";
|
|
export { parseTelegramTopicConversation } from "../acp/conversation-id.js";
|
|
export { clearAccountEntryFields } from "../channels/plugins/config-helpers.js";
|
|
export { resolveTelegramPollVisibility } from "../poll-params.js";
|
|
export {
|
|
PAIRING_APPROVED_MESSAGE,
|
|
applyAccountNameToChannelSection,
|
|
buildChannelConfigSchema,
|
|
deleteAccountFromConfigSection,
|
|
formatPairingApproveHint,
|
|
getChatChannelMeta,
|
|
migrateBaseNameToDefaultAccount,
|
|
setAccountEnabledInConfigSection,
|
|
} from "./channel-plugin-common.js";
|
|
export {
|
|
projectCredentialSnapshotFields,
|
|
resolveConfiguredFromCredentialStatuses,
|
|
} from "../channels/account-snapshot-fields.js";
|
|
export {
|
|
resolveAllowlistProviderRuntimeGroupPolicy,
|
|
resolveDefaultGroupPolicy,
|
|
} from "../config/runtime-group-policy.js";
|
|
export {
|
|
jsonResult,
|
|
readNumberParam,
|
|
readReactionParams,
|
|
readStringArrayParam,
|
|
readStringOrNumberParam,
|
|
readStringParam,
|
|
} from "../agents/tools/common.js";
|
|
export { TelegramConfigSchema } from "../config/zod-schema.providers-core.js";
|
|
export { resolvePollMaxSelections } from "../polls.js";
|
|
export { buildTokenChannelStatusSummary } from "./status-helpers.js";
|