This commit is contained in:
Will Chen
2025-08-19 15:31:17 -07:00
committed by GitHub
parent 0cdd13dcbe
commit 34215db141
8 changed files with 671 additions and 16 deletions

View File

@@ -106,6 +106,9 @@ const validInvokeChannels = [
"restart-dyad",
"get-templates",
"portal:migrate-create",
// Help bot
"help:chat:start",
"help:chat:cancel",
// Prompts
"prompts:list",
"prompts:create",
@@ -128,6 +131,10 @@ const validReceiveChannels = [
"github:flow-success",
"github:flow-error",
"deep-link-received",
// Help bot
"help:chat:response:chunk",
"help:chat:response:end",
"help:chat:response:error",
] as const;
type ValidInvokeChannel = (typeof validInvokeChannels)[number];