fix: Discord acp inline actions + bound-thread filter (#33136) (thanks @thewilloftheshadow) (#33136)

This commit is contained in:
Shadow
2026-03-03 09:30:21 -06:00
committed by GitHub
parent 8e2e4b2ed5
commit 4abf398a17
7 changed files with 284 additions and 3 deletions

View File

@@ -322,6 +322,7 @@ function buildChatCommands(): ChatCommandDefinition[] {
name: "action",
description: "Action to run",
type: "string",
preferAutocomplete: true,
choices: [
"spawn",
"cancel",

View File

@@ -31,6 +31,7 @@ export type CommandArgDefinition = {
type: CommandArgType;
required?: boolean;
choices?: CommandArgChoice[] | CommandArgChoicesProvider;
preferAutocomplete?: boolean;
captureRemaining?: boolean;
};