mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-19 09:58:38 +00:00
fix(discord): align DiscordAccountConfig.token type with SecretInput (#32490)
Merged via squash.
Prepared head SHA: 233aa032f1
Co-authored-by: scoootscooob <167050519+scoootscooob@users.noreply.github.com>
Co-authored-by: joshavant <830519+joshavant@users.noreply.github.com>
Reviewed-by: @joshavant
This commit is contained in:
@@ -21,6 +21,7 @@ Docs: https://docs.openclaw.ai
|
|||||||
- Discord/thread session lifecycle: reset thread-scoped sessions when a thread is archived so reopening a thread starts fresh without deleting transcript history. Thanks @thewilloftheshadow.
|
- Discord/thread session lifecycle: reset thread-scoped sessions when a thread is archived so reopening a thread starts fresh without deleting transcript history. Thanks @thewilloftheshadow.
|
||||||
- Discord/presence defaults: send an online presence update on ready when no custom presence is configured so bots no longer appear offline by default. Thanks @thewilloftheshadow.
|
- Discord/presence defaults: send an online presence update on ready when no custom presence is configured so bots no longer appear offline by default. Thanks @thewilloftheshadow.
|
||||||
- Discord/typing cleanup: stop typing indicators after silent/NO_REPLY runs by marking the run complete before dispatch idle cleanup. Thanks @thewilloftheshadow.
|
- Discord/typing cleanup: stop typing indicators after silent/NO_REPLY runs by marking the run complete before dispatch idle cleanup. Thanks @thewilloftheshadow.
|
||||||
|
- Discord/config SecretRef typing: align Discord account token config typing with SecretInput so SecretRef tokens typecheck. (#32490) Thanks @scoootscooob.
|
||||||
- Discord/voice messages: request upload slots with JSON fetch calls so voice message uploads no longer fail with content-type errors. Thanks @thewilloftheshadow.
|
- Discord/voice messages: request upload slots with JSON fetch calls so voice message uploads no longer fail with content-type errors. Thanks @thewilloftheshadow.
|
||||||
- Discord/voice decoder fallback: drop the native Opus dependency and use opusscript for voice decoding to avoid native-opus installs. Thanks @thewilloftheshadow.
|
- Discord/voice decoder fallback: drop the native Opus dependency and use opusscript for voice decoding to avoid native-opus installs. Thanks @thewilloftheshadow.
|
||||||
- Discord/auto presence health signal: add runtime availability-driven presence updates plus connected-state reporting to improve health monitoring and operator visibility. (#33277) Thanks @thewilloftheshadow.
|
- Discord/auto presence health signal: add runtime availability-driven presence updates plus connected-state reporting to improve health monitoring and operator visibility. (#33277) Thanks @thewilloftheshadow.
|
||||||
|
|||||||
@@ -133,6 +133,8 @@ openclaw gateway
|
|||||||
DISCORD_BOT_TOKEN=...
|
DISCORD_BOT_TOKEN=...
|
||||||
```
|
```
|
||||||
|
|
||||||
|
SecretRef values are also supported for `channels.discord.token` (env/file/exec providers). See [Secrets Management](/gateway/secrets).
|
||||||
|
|
||||||
</Tab>
|
</Tab>
|
||||||
</Tabs>
|
</Tabs>
|
||||||
|
|
||||||
|
|||||||
@@ -200,7 +200,7 @@ Use this when auditing access or deciding what to back up:
|
|||||||
|
|
||||||
- **WhatsApp**: `~/.openclaw/credentials/whatsapp/<accountId>/creds.json`
|
- **WhatsApp**: `~/.openclaw/credentials/whatsapp/<accountId>/creds.json`
|
||||||
- **Telegram bot token**: config/env or `channels.telegram.tokenFile`
|
- **Telegram bot token**: config/env or `channels.telegram.tokenFile`
|
||||||
- **Discord bot token**: config/env (token file not yet supported)
|
- **Discord bot token**: config/env or SecretRef (env/file/exec providers)
|
||||||
- **Slack tokens**: config/env (`channels.slack.*`)
|
- **Slack tokens**: config/env (`channels.slack.*`)
|
||||||
- **Pairing allowlists**:
|
- **Pairing allowlists**:
|
||||||
- `~/.openclaw/credentials/<channel>-allowFrom.json` (default account)
|
- `~/.openclaw/credentials/<channel>-allowFrom.json` (default account)
|
||||||
|
|||||||
@@ -128,7 +128,7 @@ Use this when debugging auth or deciding what to back up:
|
|||||||
|
|
||||||
- **WhatsApp**: `~/.openclaw/credentials/whatsapp/<accountId>/creds.json`
|
- **WhatsApp**: `~/.openclaw/credentials/whatsapp/<accountId>/creds.json`
|
||||||
- **Telegram bot token**: config/env or `channels.telegram.tokenFile`
|
- **Telegram bot token**: config/env or `channels.telegram.tokenFile`
|
||||||
- **Discord bot token**: config/env (token file not yet supported)
|
- **Discord bot token**: config/env or SecretRef (env/file/exec providers)
|
||||||
- **Slack tokens**: config/env (`channels.slack.*`)
|
- **Slack tokens**: config/env (`channels.slack.*`)
|
||||||
- **Pairing allowlists**:
|
- **Pairing allowlists**:
|
||||||
- `~/.openclaw/credentials/<channel>-allowFrom.json` (default account)
|
- `~/.openclaw/credentials/<channel>-allowFrom.json` (default account)
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ import type {
|
|||||||
} from "./types.base.js";
|
} from "./types.base.js";
|
||||||
import type { ChannelHeartbeatVisibilityConfig } from "./types.channels.js";
|
import type { ChannelHeartbeatVisibilityConfig } from "./types.channels.js";
|
||||||
import type { DmConfig, ProviderCommandsConfig } from "./types.messages.js";
|
import type { DmConfig, ProviderCommandsConfig } from "./types.messages.js";
|
||||||
|
import type { SecretInput } from "./types.secrets.js";
|
||||||
import type { GroupToolPolicyBySenderConfig, GroupToolPolicyConfig } from "./types.tools.js";
|
import type { GroupToolPolicyBySenderConfig, GroupToolPolicyConfig } from "./types.tools.js";
|
||||||
import type { TtsConfig } from "./types.tts.js";
|
import type { TtsConfig } from "./types.tts.js";
|
||||||
|
|
||||||
@@ -218,7 +219,7 @@ export type DiscordAccountConfig = {
|
|||||||
configWrites?: boolean;
|
configWrites?: boolean;
|
||||||
/** If false, do not start this Discord account. Default: true. */
|
/** If false, do not start this Discord account. Default: true. */
|
||||||
enabled?: boolean;
|
enabled?: boolean;
|
||||||
token?: string;
|
token?: SecretInput;
|
||||||
/** HTTP(S) proxy URL for Discord gateway WebSocket connections. */
|
/** HTTP(S) proxy URL for Discord gateway WebSocket connections. */
|
||||||
proxy?: string;
|
proxy?: string;
|
||||||
/** Allow bot-authored messages to trigger replies (default: false). Set "mentions" to gate on mentions. */
|
/** Allow bot-authored messages to trigger replies (default: false). Set "mentions" to gate on mentions. */
|
||||||
|
|||||||
Reference in New Issue
Block a user