fix(triggers): add copilot as a trigger type (#3191)

* fix(triggers): add copilot as a trigger type

* update color
This commit is contained in:
Waleed
2026-02-10 21:36:38 -08:00
committed by GitHub
parent 13a91113fd
commit 3d5bd003ef
8 changed files with 18 additions and 5 deletions

View File

@@ -13,7 +13,7 @@ export interface ExecuteWorkflowOptions {
enabled: boolean
selectedOutputs?: string[]
isSecureMode?: boolean
workflowTriggerType?: 'api' | 'chat'
workflowTriggerType?: 'api' | 'chat' | 'copilot'
onStream?: (streamingExec: StreamingExecution) => Promise<void>
onBlockComplete?: (blockId: string, output: unknown) => Promise<void>
skipLoggingComplete?: boolean