UNPKG

openclaw

Version:

Multi-channel AI gateway with extensible messaging integrations

120 lines (119 loc) 4.64 kB
import { c as isRecord } from "./utils-CCC-BEJH.js"; import { o as isEnabledFlag } from "./runtime-shared-DR5938Io.js"; import { a as getChannelSurface, n as collectNestedChannelFieldAssignments, r as collectSimpleChannelFieldAssignments, s as isBaseFieldActiveForChannelSurface } from "./channel-secret-basic-runtime-BTUuyj14.js"; import { t as collectNestedChannelTtsAssignments } from "./channel-secret-tts-runtime-BmiaVQR9.js"; import "./channel-secret-basic-runtime-DkPz7o71.js"; import "./channel-secret-tts-runtime-Df-M1K5z.js"; //#region extensions/discord/src/secret-config-contract.ts const secretTargetRegistryEntries = [ { id: "channels.discord.accounts.*.pluralkit.token", targetType: "channels.discord.accounts.*.pluralkit.token", configFile: "openclaw.json", pathPattern: "channels.discord.accounts.*.pluralkit.token", secretShape: "secret_input", expectedResolvedValue: "string", includeInPlan: true, includeInConfigure: true, includeInAudit: true }, { id: "channels.discord.accounts.*.token", targetType: "channels.discord.accounts.*.token", configFile: "openclaw.json", pathPattern: "channels.discord.accounts.*.token", secretShape: "secret_input", expectedResolvedValue: "string", includeInPlan: true, includeInConfigure: true, includeInAudit: true }, { id: "channels.discord.accounts.*.voice.tts.providers.*.apiKey", targetType: "channels.discord.accounts.*.voice.tts.providers.*.apiKey", configFile: "openclaw.json", pathPattern: "channels.discord.accounts.*.voice.tts.providers.*.apiKey", secretShape: "secret_input", expectedResolvedValue: "string", includeInPlan: true, includeInConfigure: true, includeInAudit: true, providerIdPathSegmentIndex: 6 }, { id: "channels.discord.pluralkit.token", targetType: "channels.discord.pluralkit.token", configFile: "openclaw.json", pathPattern: "channels.discord.pluralkit.token", secretShape: "secret_input", expectedResolvedValue: "string", includeInPlan: true, includeInConfigure: true, includeInAudit: true }, { id: "channels.discord.token", targetType: "channels.discord.token", configFile: "openclaw.json", pathPattern: "channels.discord.token", secretShape: "secret_input", expectedResolvedValue: "string", includeInPlan: true, includeInConfigure: true, includeInAudit: true }, { id: "channels.discord.voice.tts.providers.*.apiKey", targetType: "channels.discord.voice.tts.providers.*.apiKey", configFile: "openclaw.json", pathPattern: "channels.discord.voice.tts.providers.*.apiKey", secretShape: "secret_input", expectedResolvedValue: "string", includeInPlan: true, includeInConfigure: true, includeInAudit: true, providerIdPathSegmentIndex: 4 } ]; function collectRuntimeConfigAssignments(params) { const resolved = getChannelSurface(params.config, "discord"); if (!resolved) return; const { channel: discord, surface } = resolved; collectSimpleChannelFieldAssignments({ channelKey: "discord", field: "token", channel: discord, surface, defaults: params.defaults, context: params.context, topInactiveReason: "no enabled account inherits this top-level Discord token.", accountInactiveReason: "Discord account is disabled." }); collectNestedChannelFieldAssignments({ channelKey: "discord", nestedKey: "pluralkit", field: "token", channel: discord, surface, defaults: params.defaults, context: params.context, topLevelActive: isBaseFieldActiveForChannelSurface(surface, "pluralkit") && isRecord(discord.pluralkit) && isEnabledFlag(discord.pluralkit), topInactiveReason: "no enabled Discord surface inherits this top-level PluralKit config or PluralKit is disabled.", accountActive: ({ account, enabled }) => enabled && isRecord(account.pluralkit) && isEnabledFlag(account.pluralkit), accountInactiveReason: "Discord account is disabled or PluralKit is disabled for this account." }); collectNestedChannelTtsAssignments({ channelKey: "discord", nestedKey: "voice", channel: discord, surface, defaults: params.defaults, context: params.context, topLevelActive: isBaseFieldActiveForChannelSurface(surface, "voice") && isRecord(discord.voice) && isEnabledFlag(discord.voice), topInactiveReason: "no enabled Discord surface inherits this top-level voice config or voice is disabled.", accountActive: ({ account, enabled }) => enabled && isRecord(account.voice) && isEnabledFlag(account.voice), accountInactiveReason: "Discord account is disabled or voice is disabled for this account." }); } //#endregion export { secretTargetRegistryEntries as n, collectRuntimeConfigAssignments as t };