@roo-code/types 1.64.0 → 1.66.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -24,6 +24,8 @@ declare enum RooCodeEventName {
24
24
  TaskAskResponded = "taskAskResponded",
25
25
  TaskTokenUsageUpdated = "taskTokenUsageUpdated",
26
26
  TaskToolFailed = "taskToolFailed",
27
+ ModeChanged = "modeChanged",
28
+ ProviderProfileChanged = "providerProfileChanged",
27
29
  EvalPass = "evalPass",
28
30
  EvalFail = "evalFail"
29
31
  }
@@ -304,6 +306,17 @@ declare const rooCodeEventsSchema: z.ZodObject<{
304
306
  totalCacheWrites?: number | undefined;
305
307
  totalCacheReads?: number | undefined;
306
308
  }>], null>;
309
+ modeChanged: z.ZodTuple<[z.ZodString], null>;
310
+ providerProfileChanged: z.ZodTuple<[z.ZodObject<{
311
+ name: z.ZodString;
312
+ provider: z.ZodString;
313
+ }, "strip", z.ZodTypeAny, {
314
+ name: string;
315
+ provider: string;
316
+ }, {
317
+ name: string;
318
+ provider: string;
319
+ }>], null>;
307
320
  }, "strip", z.ZodTypeAny, {
308
321
  taskCreated: [string];
309
322
  taskStarted: [string];
@@ -376,6 +389,11 @@ declare const rooCodeEventsSchema: z.ZodObject<{
376
389
  totalCacheReads?: number | undefined;
377
390
  }];
378
391
  taskToolFailed: [string, "browser_action" | "execute_command" | "read_file" | "write_to_file" | "apply_diff" | "insert_content" | "search_and_replace" | "search_files" | "list_files" | "list_code_definition_names" | "use_mcp_tool" | "access_mcp_resource" | "ask_followup_question" | "attempt_completion" | "switch_mode" | "new_task" | "fetch_instructions" | "codebase_search" | "update_todo_list" | "generate_image", string];
392
+ modeChanged: [string];
393
+ providerProfileChanged: [{
394
+ name: string;
395
+ provider: string;
396
+ }];
379
397
  }, {
380
398
  taskCreated: [string];
381
399
  taskStarted: [string];
@@ -448,6 +466,11 @@ declare const rooCodeEventsSchema: z.ZodObject<{
448
466
  totalCacheReads?: number | undefined;
449
467
  }];
450
468
  taskToolFailed: [string, "browser_action" | "execute_command" | "read_file" | "write_to_file" | "apply_diff" | "insert_content" | "search_and_replace" | "search_files" | "list_files" | "list_code_definition_names" | "use_mcp_tool" | "access_mcp_resource" | "ask_followup_question" | "attempt_completion" | "switch_mode" | "new_task" | "fetch_instructions" | "codebase_search" | "update_todo_list" | "generate_image", string];
469
+ modeChanged: [string];
470
+ providerProfileChanged: [{
471
+ name: string;
472
+ provider: string;
473
+ }];
451
474
  }>;
452
475
  type RooCodeEvents = z.infer<typeof rooCodeEventsSchema>;
453
476
  /**
@@ -16434,29 +16457,58 @@ interface TelemetryClient {
16434
16457
  shutdown(): Promise<void>;
16435
16458
  }
16436
16459
 
16460
+ /**
16461
+ * TodoStatus
16462
+ */
16463
+ declare const todoStatusSchema: z.ZodEnum<["pending", "in_progress", "completed"]>;
16464
+ type TodoStatus = z.infer<typeof todoStatusSchema>;
16465
+ /**
16466
+ * TodoItem
16467
+ */
16468
+ declare const todoItemSchema: z.ZodObject<{
16469
+ id: z.ZodString;
16470
+ content: z.ZodString;
16471
+ status: z.ZodEnum<["pending", "in_progress", "completed"]>;
16472
+ }, "strip", z.ZodTypeAny, {
16473
+ status: "completed" | "pending" | "in_progress";
16474
+ id: string;
16475
+ content: string;
16476
+ }, {
16477
+ status: "completed" | "pending" | "in_progress";
16478
+ id: string;
16479
+ content: string;
16480
+ }>;
16481
+ type TodoItem = z.infer<typeof todoItemSchema>;
16482
+
16437
16483
  /**
16438
16484
  * TaskProviderLike
16439
16485
  */
16440
- interface TaskProviderState {
16441
- mode?: string;
16442
- }
16443
16486
  interface TaskProviderLike {
16444
- readonly cwd: string;
16445
- readonly appProperties: StaticAppProperties;
16446
- readonly gitProperties: GitProperties | undefined;
16447
16487
  getCurrentTask(): TaskLike | undefined;
16448
- getCurrentTaskStack(): string[];
16449
16488
  getRecentTasks(): string[];
16450
- createTask(text?: string, images?: string[], parentTask?: TaskLike): Promise<TaskLike>;
16489
+ createTask(text?: string, images?: string[], parentTask?: TaskLike, options?: CreateTaskOptions, configuration?: RooCodeSettings): Promise<TaskLike>;
16451
16490
  cancelTask(): Promise<void>;
16452
16491
  clearTask(): Promise<void>;
16453
16492
  resumeTask(taskId: string): void;
16454
- getState(): Promise<TaskProviderState>;
16455
- postStateToWebview(): Promise<void>;
16456
- postMessageToWebview(message: unknown): Promise<void>;
16493
+ getModes(): Promise<{
16494
+ slug: string;
16495
+ name: string;
16496
+ }[]>;
16497
+ getMode(): Promise<string>;
16498
+ setMode(mode: string): Promise<void>;
16499
+ getProviderProfiles(): Promise<{
16500
+ name: string;
16501
+ provider?: string;
16502
+ }[]>;
16503
+ getProviderProfile(): Promise<string>;
16504
+ setProviderProfile(providerProfile: string): Promise<void>;
16505
+ readonly appProperties: StaticAppProperties;
16506
+ readonly gitProperties: GitProperties | undefined;
16457
16507
  getTelemetryProperties(): Promise<TelemetryProperties>;
16508
+ readonly cwd: string;
16458
16509
  on<K extends keyof TaskProviderEvents>(event: K, listener: (...args: TaskProviderEvents[K]) => void | Promise<void>): this;
16459
16510
  off<K extends keyof TaskProviderEvents>(event: K, listener: (...args: TaskProviderEvents[K]) => void | Promise<void>): this;
16511
+ postStateToWebview(): Promise<void>;
16460
16512
  }
16461
16513
  type TaskProviderEvents = {
16462
16514
  [RooCodeEventName.TaskCreated]: [task: TaskLike];
@@ -16470,10 +16522,23 @@ type TaskProviderEvents = {
16470
16522
  [RooCodeEventName.TaskResumable]: [taskId: string];
16471
16523
  [RooCodeEventName.TaskIdle]: [taskId: string];
16472
16524
  [RooCodeEventName.TaskSpawned]: [taskId: string];
16525
+ [RooCodeEventName.ModeChanged]: [mode: string];
16526
+ [RooCodeEventName.ProviderProfileChanged]: [config: {
16527
+ name: string;
16528
+ provider?: string;
16529
+ }];
16473
16530
  };
16474
16531
  /**
16475
16532
  * TaskLike
16476
16533
  */
16534
+ interface CreateTaskOptions {
16535
+ enableDiff?: boolean;
16536
+ enableCheckpoints?: boolean;
16537
+ fuzzyMatchThreshold?: number;
16538
+ consecutiveMistakeLimit?: number;
16539
+ experiments?: Record<string, boolean>;
16540
+ initialTodos?: TodoItem[];
16541
+ }
16477
16542
  declare enum TaskStatus {
16478
16543
  Running = "running",
16479
16544
  Interactive = "interactive",
@@ -16508,7 +16573,7 @@ interface TaskLike {
16508
16573
  text?: string;
16509
16574
  images?: string[];
16510
16575
  }): void;
16511
- submitUserMessage(text: string, images?: string[]): void;
16576
+ submitUserMessage(text: string, images?: string[], mode?: string, providerProfile?: string): Promise<void>;
16512
16577
  abortTask(): void;
16513
16578
  }
16514
16579
  type TaskEvents = {
@@ -16838,8 +16903,8 @@ declare const organizationSettingsSchema: z.ZodObject<{
16838
16903
  optional?: boolean | undefined;
16839
16904
  }>, "many">>;
16840
16905
  }, "strip", z.ZodTypeAny, {
16841
- description: string;
16842
16906
  name: string;
16907
+ description: string;
16843
16908
  id: string;
16844
16909
  url: string;
16845
16910
  content: string | {
@@ -16864,8 +16929,8 @@ declare const organizationSettingsSchema: z.ZodObject<{
16864
16929
  authorUrl?: string | undefined;
16865
16930
  tags?: string[] | undefined;
16866
16931
  }, {
16867
- description: string;
16868
16932
  name: string;
16933
+ description: string;
16869
16934
  id: string;
16870
16935
  url: string;
16871
16936
  content: string | {
@@ -17475,8 +17540,8 @@ declare const organizationSettingsSchema: z.ZodObject<{
17475
17540
  hiddenMcps?: string[] | undefined;
17476
17541
  hideMarketplaceMcps?: boolean | undefined;
17477
17542
  mcps?: {
17478
- description: string;
17479
17543
  name: string;
17544
+ description: string;
17480
17545
  id: string;
17481
17546
  url: string;
17482
17547
  content: string | {
@@ -17689,8 +17754,8 @@ declare const organizationSettingsSchema: z.ZodObject<{
17689
17754
  hiddenMcps?: string[] | undefined;
17690
17755
  hideMarketplaceMcps?: boolean | undefined;
17691
17756
  mcps?: {
17692
- description: string;
17693
17757
  name: string;
17758
+ description: string;
17694
17759
  id: string;
17695
17760
  url: string;
17696
17761
  content: string | {
@@ -18271,6 +18336,28 @@ declare const extensionInstanceSchema: z.ZodObject<{
18271
18336
  } | undefined;
18272
18337
  }>>;
18273
18338
  taskHistory: z.ZodArray<z.ZodString, "many">;
18339
+ mode: z.ZodOptional<z.ZodString>;
18340
+ modes: z.ZodOptional<z.ZodArray<z.ZodObject<{
18341
+ slug: z.ZodString;
18342
+ name: z.ZodString;
18343
+ }, "strip", z.ZodTypeAny, {
18344
+ name: string;
18345
+ slug: string;
18346
+ }, {
18347
+ name: string;
18348
+ slug: string;
18349
+ }>, "many">>;
18350
+ providerProfile: z.ZodOptional<z.ZodString>;
18351
+ providerProfiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
18352
+ name: z.ZodString;
18353
+ provider: z.ZodOptional<z.ZodString>;
18354
+ }, "strip", z.ZodTypeAny, {
18355
+ name: string;
18356
+ provider?: string | undefined;
18357
+ }, {
18358
+ name: string;
18359
+ provider?: string | undefined;
18360
+ }>, "many">>;
18274
18361
  }, "strip", z.ZodTypeAny, {
18275
18362
  task: {
18276
18363
  taskId: string;
@@ -18290,6 +18377,15 @@ declare const extensionInstanceSchema: z.ZodObject<{
18290
18377
  editorName: string;
18291
18378
  };
18292
18379
  lastHeartbeat: number;
18380
+ modes?: {
18381
+ name: string;
18382
+ slug: string;
18383
+ }[] | undefined;
18384
+ mode?: string | undefined;
18385
+ providerProfiles?: {
18386
+ name: string;
18387
+ provider?: string | undefined;
18388
+ }[] | undefined;
18293
18389
  gitProperties?: {
18294
18390
  repositoryUrl?: string | undefined;
18295
18391
  repositoryName?: string | undefined;
@@ -18326,6 +18422,7 @@ declare const extensionInstanceSchema: z.ZodObject<{
18326
18422
  } | undefined;
18327
18423
  } | undefined;
18328
18424
  } | undefined;
18425
+ providerProfile?: string | undefined;
18329
18426
  }, {
18330
18427
  task: {
18331
18428
  taskId: string;
@@ -18345,6 +18442,15 @@ declare const extensionInstanceSchema: z.ZodObject<{
18345
18442
  editorName: string;
18346
18443
  };
18347
18444
  lastHeartbeat: number;
18445
+ modes?: {
18446
+ name: string;
18447
+ slug: string;
18448
+ }[] | undefined;
18449
+ mode?: string | undefined;
18450
+ providerProfiles?: {
18451
+ name: string;
18452
+ provider?: string | undefined;
18453
+ }[] | undefined;
18348
18454
  gitProperties?: {
18349
18455
  repositoryUrl?: string | undefined;
18350
18456
  repositoryName?: string | undefined;
@@ -18381,6 +18487,7 @@ declare const extensionInstanceSchema: z.ZodObject<{
18381
18487
  } | undefined;
18382
18488
  } | undefined;
18383
18489
  } | undefined;
18490
+ providerProfile?: string | undefined;
18384
18491
  }>;
18385
18492
  type ExtensionInstance = z.infer<typeof extensionInstanceSchema>;
18386
18493
  /**
@@ -18397,6 +18504,8 @@ declare enum ExtensionBridgeEventName {
18397
18504
  TaskInteractive = "taskInteractive",
18398
18505
  TaskResumable = "taskResumable",
18399
18506
  TaskIdle = "taskIdle",
18507
+ ModeChanged = "modeChanged",
18508
+ ProviderProfileChanged = "providerProfileChanged",
18400
18509
  InstanceRegistered = "instance_registered",
18401
18510
  InstanceUnregistered = "instance_unregistered",
18402
18511
  HeartbeatUpdated = "heartbeat_updated"
@@ -18584,6 +18693,28 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
18584
18693
  } | undefined;
18585
18694
  }>>;
18586
18695
  taskHistory: z.ZodArray<z.ZodString, "many">;
18696
+ mode: z.ZodOptional<z.ZodString>;
18697
+ modes: z.ZodOptional<z.ZodArray<z.ZodObject<{
18698
+ slug: z.ZodString;
18699
+ name: z.ZodString;
18700
+ }, "strip", z.ZodTypeAny, {
18701
+ name: string;
18702
+ slug: string;
18703
+ }, {
18704
+ name: string;
18705
+ slug: string;
18706
+ }>, "many">>;
18707
+ providerProfile: z.ZodOptional<z.ZodString>;
18708
+ providerProfiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
18709
+ name: z.ZodString;
18710
+ provider: z.ZodOptional<z.ZodString>;
18711
+ }, "strip", z.ZodTypeAny, {
18712
+ name: string;
18713
+ provider?: string | undefined;
18714
+ }, {
18715
+ name: string;
18716
+ provider?: string | undefined;
18717
+ }>, "many">>;
18587
18718
  }, "strip", z.ZodTypeAny, {
18588
18719
  task: {
18589
18720
  taskId: string;
@@ -18603,6 +18734,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
18603
18734
  editorName: string;
18604
18735
  };
18605
18736
  lastHeartbeat: number;
18737
+ modes?: {
18738
+ name: string;
18739
+ slug: string;
18740
+ }[] | undefined;
18741
+ mode?: string | undefined;
18742
+ providerProfiles?: {
18743
+ name: string;
18744
+ provider?: string | undefined;
18745
+ }[] | undefined;
18606
18746
  gitProperties?: {
18607
18747
  repositoryUrl?: string | undefined;
18608
18748
  repositoryName?: string | undefined;
@@ -18639,6 +18779,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
18639
18779
  } | undefined;
18640
18780
  } | undefined;
18641
18781
  } | undefined;
18782
+ providerProfile?: string | undefined;
18642
18783
  }, {
18643
18784
  task: {
18644
18785
  taskId: string;
@@ -18658,6 +18799,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
18658
18799
  editorName: string;
18659
18800
  };
18660
18801
  lastHeartbeat: number;
18802
+ modes?: {
18803
+ name: string;
18804
+ slug: string;
18805
+ }[] | undefined;
18806
+ mode?: string | undefined;
18807
+ providerProfiles?: {
18808
+ name: string;
18809
+ provider?: string | undefined;
18810
+ }[] | undefined;
18661
18811
  gitProperties?: {
18662
18812
  repositoryUrl?: string | undefined;
18663
18813
  repositoryName?: string | undefined;
@@ -18694,6 +18844,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
18694
18844
  } | undefined;
18695
18845
  } | undefined;
18696
18846
  } | undefined;
18847
+ providerProfile?: string | undefined;
18697
18848
  }>;
18698
18849
  timestamp: z.ZodNumber;
18699
18850
  }, "strip", z.ZodTypeAny, {
@@ -18717,6 +18868,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
18717
18868
  editorName: string;
18718
18869
  };
18719
18870
  lastHeartbeat: number;
18871
+ modes?: {
18872
+ name: string;
18873
+ slug: string;
18874
+ }[] | undefined;
18875
+ mode?: string | undefined;
18876
+ providerProfiles?: {
18877
+ name: string;
18878
+ provider?: string | undefined;
18879
+ }[] | undefined;
18720
18880
  gitProperties?: {
18721
18881
  repositoryUrl?: string | undefined;
18722
18882
  repositoryName?: string | undefined;
@@ -18753,6 +18913,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
18753
18913
  } | undefined;
18754
18914
  } | undefined;
18755
18915
  } | undefined;
18916
+ providerProfile?: string | undefined;
18756
18917
  };
18757
18918
  timestamp: number;
18758
18919
  }, {
@@ -18776,6 +18937,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
18776
18937
  editorName: string;
18777
18938
  };
18778
18939
  lastHeartbeat: number;
18940
+ modes?: {
18941
+ name: string;
18942
+ slug: string;
18943
+ }[] | undefined;
18944
+ mode?: string | undefined;
18945
+ providerProfiles?: {
18946
+ name: string;
18947
+ provider?: string | undefined;
18948
+ }[] | undefined;
18779
18949
  gitProperties?: {
18780
18950
  repositoryUrl?: string | undefined;
18781
18951
  repositoryName?: string | undefined;
@@ -18812,6 +18982,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
18812
18982
  } | undefined;
18813
18983
  } | undefined;
18814
18984
  } | undefined;
18985
+ providerProfile?: string | undefined;
18815
18986
  };
18816
18987
  timestamp: number;
18817
18988
  }>, z.ZodObject<{
@@ -18997,6 +19168,28 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
18997
19168
  } | undefined;
18998
19169
  }>>;
18999
19170
  taskHistory: z.ZodArray<z.ZodString, "many">;
19171
+ mode: z.ZodOptional<z.ZodString>;
19172
+ modes: z.ZodOptional<z.ZodArray<z.ZodObject<{
19173
+ slug: z.ZodString;
19174
+ name: z.ZodString;
19175
+ }, "strip", z.ZodTypeAny, {
19176
+ name: string;
19177
+ slug: string;
19178
+ }, {
19179
+ name: string;
19180
+ slug: string;
19181
+ }>, "many">>;
19182
+ providerProfile: z.ZodOptional<z.ZodString>;
19183
+ providerProfiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
19184
+ name: z.ZodString;
19185
+ provider: z.ZodOptional<z.ZodString>;
19186
+ }, "strip", z.ZodTypeAny, {
19187
+ name: string;
19188
+ provider?: string | undefined;
19189
+ }, {
19190
+ name: string;
19191
+ provider?: string | undefined;
19192
+ }>, "many">>;
19000
19193
  }, "strip", z.ZodTypeAny, {
19001
19194
  task: {
19002
19195
  taskId: string;
@@ -19016,6 +19209,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
19016
19209
  editorName: string;
19017
19210
  };
19018
19211
  lastHeartbeat: number;
19212
+ modes?: {
19213
+ name: string;
19214
+ slug: string;
19215
+ }[] | undefined;
19216
+ mode?: string | undefined;
19217
+ providerProfiles?: {
19218
+ name: string;
19219
+ provider?: string | undefined;
19220
+ }[] | undefined;
19019
19221
  gitProperties?: {
19020
19222
  repositoryUrl?: string | undefined;
19021
19223
  repositoryName?: string | undefined;
@@ -19052,6 +19254,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
19052
19254
  } | undefined;
19053
19255
  } | undefined;
19054
19256
  } | undefined;
19257
+ providerProfile?: string | undefined;
19055
19258
  }, {
19056
19259
  task: {
19057
19260
  taskId: string;
@@ -19071,6 +19274,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
19071
19274
  editorName: string;
19072
19275
  };
19073
19276
  lastHeartbeat: number;
19277
+ modes?: {
19278
+ name: string;
19279
+ slug: string;
19280
+ }[] | undefined;
19281
+ mode?: string | undefined;
19282
+ providerProfiles?: {
19283
+ name: string;
19284
+ provider?: string | undefined;
19285
+ }[] | undefined;
19074
19286
  gitProperties?: {
19075
19287
  repositoryUrl?: string | undefined;
19076
19288
  repositoryName?: string | undefined;
@@ -19107,6 +19319,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
19107
19319
  } | undefined;
19108
19320
  } | undefined;
19109
19321
  } | undefined;
19322
+ providerProfile?: string | undefined;
19110
19323
  }>;
19111
19324
  timestamp: z.ZodNumber;
19112
19325
  }, "strip", z.ZodTypeAny, {
@@ -19130,6 +19343,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
19130
19343
  editorName: string;
19131
19344
  };
19132
19345
  lastHeartbeat: number;
19346
+ modes?: {
19347
+ name: string;
19348
+ slug: string;
19349
+ }[] | undefined;
19350
+ mode?: string | undefined;
19351
+ providerProfiles?: {
19352
+ name: string;
19353
+ provider?: string | undefined;
19354
+ }[] | undefined;
19133
19355
  gitProperties?: {
19134
19356
  repositoryUrl?: string | undefined;
19135
19357
  repositoryName?: string | undefined;
@@ -19166,6 +19388,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
19166
19388
  } | undefined;
19167
19389
  } | undefined;
19168
19390
  } | undefined;
19391
+ providerProfile?: string | undefined;
19169
19392
  };
19170
19393
  timestamp: number;
19171
19394
  }, {
@@ -19189,6 +19412,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
19189
19412
  editorName: string;
19190
19413
  };
19191
19414
  lastHeartbeat: number;
19415
+ modes?: {
19416
+ name: string;
19417
+ slug: string;
19418
+ }[] | undefined;
19419
+ mode?: string | undefined;
19420
+ providerProfiles?: {
19421
+ name: string;
19422
+ provider?: string | undefined;
19423
+ }[] | undefined;
19192
19424
  gitProperties?: {
19193
19425
  repositoryUrl?: string | undefined;
19194
19426
  repositoryName?: string | undefined;
@@ -19225,6 +19457,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
19225
19457
  } | undefined;
19226
19458
  } | undefined;
19227
19459
  } | undefined;
19460
+ providerProfile?: string | undefined;
19228
19461
  };
19229
19462
  timestamp: number;
19230
19463
  }>, z.ZodObject<{
@@ -19410,6 +19643,28 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
19410
19643
  } | undefined;
19411
19644
  }>>;
19412
19645
  taskHistory: z.ZodArray<z.ZodString, "many">;
19646
+ mode: z.ZodOptional<z.ZodString>;
19647
+ modes: z.ZodOptional<z.ZodArray<z.ZodObject<{
19648
+ slug: z.ZodString;
19649
+ name: z.ZodString;
19650
+ }, "strip", z.ZodTypeAny, {
19651
+ name: string;
19652
+ slug: string;
19653
+ }, {
19654
+ name: string;
19655
+ slug: string;
19656
+ }>, "many">>;
19657
+ providerProfile: z.ZodOptional<z.ZodString>;
19658
+ providerProfiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
19659
+ name: z.ZodString;
19660
+ provider: z.ZodOptional<z.ZodString>;
19661
+ }, "strip", z.ZodTypeAny, {
19662
+ name: string;
19663
+ provider?: string | undefined;
19664
+ }, {
19665
+ name: string;
19666
+ provider?: string | undefined;
19667
+ }>, "many">>;
19413
19668
  }, "strip", z.ZodTypeAny, {
19414
19669
  task: {
19415
19670
  taskId: string;
@@ -19429,6 +19684,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
19429
19684
  editorName: string;
19430
19685
  };
19431
19686
  lastHeartbeat: number;
19687
+ modes?: {
19688
+ name: string;
19689
+ slug: string;
19690
+ }[] | undefined;
19691
+ mode?: string | undefined;
19692
+ providerProfiles?: {
19693
+ name: string;
19694
+ provider?: string | undefined;
19695
+ }[] | undefined;
19432
19696
  gitProperties?: {
19433
19697
  repositoryUrl?: string | undefined;
19434
19698
  repositoryName?: string | undefined;
@@ -19465,6 +19729,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
19465
19729
  } | undefined;
19466
19730
  } | undefined;
19467
19731
  } | undefined;
19732
+ providerProfile?: string | undefined;
19468
19733
  }, {
19469
19734
  task: {
19470
19735
  taskId: string;
@@ -19484,6 +19749,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
19484
19749
  editorName: string;
19485
19750
  };
19486
19751
  lastHeartbeat: number;
19752
+ modes?: {
19753
+ name: string;
19754
+ slug: string;
19755
+ }[] | undefined;
19756
+ mode?: string | undefined;
19757
+ providerProfiles?: {
19758
+ name: string;
19759
+ provider?: string | undefined;
19760
+ }[] | undefined;
19487
19761
  gitProperties?: {
19488
19762
  repositoryUrl?: string | undefined;
19489
19763
  repositoryName?: string | undefined;
@@ -19520,6 +19794,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
19520
19794
  } | undefined;
19521
19795
  } | undefined;
19522
19796
  } | undefined;
19797
+ providerProfile?: string | undefined;
19523
19798
  }>;
19524
19799
  timestamp: z.ZodNumber;
19525
19800
  }, "strip", z.ZodTypeAny, {
@@ -19543,6 +19818,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
19543
19818
  editorName: string;
19544
19819
  };
19545
19820
  lastHeartbeat: number;
19821
+ modes?: {
19822
+ name: string;
19823
+ slug: string;
19824
+ }[] | undefined;
19825
+ mode?: string | undefined;
19826
+ providerProfiles?: {
19827
+ name: string;
19828
+ provider?: string | undefined;
19829
+ }[] | undefined;
19546
19830
  gitProperties?: {
19547
19831
  repositoryUrl?: string | undefined;
19548
19832
  repositoryName?: string | undefined;
@@ -19579,6 +19863,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
19579
19863
  } | undefined;
19580
19864
  } | undefined;
19581
19865
  } | undefined;
19866
+ providerProfile?: string | undefined;
19582
19867
  };
19583
19868
  timestamp: number;
19584
19869
  }, {
@@ -19602,6 +19887,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
19602
19887
  editorName: string;
19603
19888
  };
19604
19889
  lastHeartbeat: number;
19890
+ modes?: {
19891
+ name: string;
19892
+ slug: string;
19893
+ }[] | undefined;
19894
+ mode?: string | undefined;
19895
+ providerProfiles?: {
19896
+ name: string;
19897
+ provider?: string | undefined;
19898
+ }[] | undefined;
19605
19899
  gitProperties?: {
19606
19900
  repositoryUrl?: string | undefined;
19607
19901
  repositoryName?: string | undefined;
@@ -19638,6 +19932,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
19638
19932
  } | undefined;
19639
19933
  } | undefined;
19640
19934
  } | undefined;
19935
+ providerProfile?: string | undefined;
19641
19936
  };
19642
19937
  timestamp: number;
19643
19938
  }>, z.ZodObject<{
@@ -19823,6 +20118,28 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
19823
20118
  } | undefined;
19824
20119
  }>>;
19825
20120
  taskHistory: z.ZodArray<z.ZodString, "many">;
20121
+ mode: z.ZodOptional<z.ZodString>;
20122
+ modes: z.ZodOptional<z.ZodArray<z.ZodObject<{
20123
+ slug: z.ZodString;
20124
+ name: z.ZodString;
20125
+ }, "strip", z.ZodTypeAny, {
20126
+ name: string;
20127
+ slug: string;
20128
+ }, {
20129
+ name: string;
20130
+ slug: string;
20131
+ }>, "many">>;
20132
+ providerProfile: z.ZodOptional<z.ZodString>;
20133
+ providerProfiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
20134
+ name: z.ZodString;
20135
+ provider: z.ZodOptional<z.ZodString>;
20136
+ }, "strip", z.ZodTypeAny, {
20137
+ name: string;
20138
+ provider?: string | undefined;
20139
+ }, {
20140
+ name: string;
20141
+ provider?: string | undefined;
20142
+ }>, "many">>;
19826
20143
  }, "strip", z.ZodTypeAny, {
19827
20144
  task: {
19828
20145
  taskId: string;
@@ -19842,6 +20159,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
19842
20159
  editorName: string;
19843
20160
  };
19844
20161
  lastHeartbeat: number;
20162
+ modes?: {
20163
+ name: string;
20164
+ slug: string;
20165
+ }[] | undefined;
20166
+ mode?: string | undefined;
20167
+ providerProfiles?: {
20168
+ name: string;
20169
+ provider?: string | undefined;
20170
+ }[] | undefined;
19845
20171
  gitProperties?: {
19846
20172
  repositoryUrl?: string | undefined;
19847
20173
  repositoryName?: string | undefined;
@@ -19878,6 +20204,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
19878
20204
  } | undefined;
19879
20205
  } | undefined;
19880
20206
  } | undefined;
20207
+ providerProfile?: string | undefined;
19881
20208
  }, {
19882
20209
  task: {
19883
20210
  taskId: string;
@@ -19897,6 +20224,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
19897
20224
  editorName: string;
19898
20225
  };
19899
20226
  lastHeartbeat: number;
20227
+ modes?: {
20228
+ name: string;
20229
+ slug: string;
20230
+ }[] | undefined;
20231
+ mode?: string | undefined;
20232
+ providerProfiles?: {
20233
+ name: string;
20234
+ provider?: string | undefined;
20235
+ }[] | undefined;
19900
20236
  gitProperties?: {
19901
20237
  repositoryUrl?: string | undefined;
19902
20238
  repositoryName?: string | undefined;
@@ -19933,6 +20269,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
19933
20269
  } | undefined;
19934
20270
  } | undefined;
19935
20271
  } | undefined;
20272
+ providerProfile?: string | undefined;
19936
20273
  }>;
19937
20274
  timestamp: z.ZodNumber;
19938
20275
  }, "strip", z.ZodTypeAny, {
@@ -19956,6 +20293,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
19956
20293
  editorName: string;
19957
20294
  };
19958
20295
  lastHeartbeat: number;
20296
+ modes?: {
20297
+ name: string;
20298
+ slug: string;
20299
+ }[] | undefined;
20300
+ mode?: string | undefined;
20301
+ providerProfiles?: {
20302
+ name: string;
20303
+ provider?: string | undefined;
20304
+ }[] | undefined;
19959
20305
  gitProperties?: {
19960
20306
  repositoryUrl?: string | undefined;
19961
20307
  repositoryName?: string | undefined;
@@ -19992,6 +20338,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
19992
20338
  } | undefined;
19993
20339
  } | undefined;
19994
20340
  } | undefined;
20341
+ providerProfile?: string | undefined;
19995
20342
  };
19996
20343
  timestamp: number;
19997
20344
  }, {
@@ -20015,6 +20362,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
20015
20362
  editorName: string;
20016
20363
  };
20017
20364
  lastHeartbeat: number;
20365
+ modes?: {
20366
+ name: string;
20367
+ slug: string;
20368
+ }[] | undefined;
20369
+ mode?: string | undefined;
20370
+ providerProfiles?: {
20371
+ name: string;
20372
+ provider?: string | undefined;
20373
+ }[] | undefined;
20018
20374
  gitProperties?: {
20019
20375
  repositoryUrl?: string | undefined;
20020
20376
  repositoryName?: string | undefined;
@@ -20051,6 +20407,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
20051
20407
  } | undefined;
20052
20408
  } | undefined;
20053
20409
  } | undefined;
20410
+ providerProfile?: string | undefined;
20054
20411
  };
20055
20412
  timestamp: number;
20056
20413
  }>, z.ZodObject<{
@@ -20236,6 +20593,28 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
20236
20593
  } | undefined;
20237
20594
  }>>;
20238
20595
  taskHistory: z.ZodArray<z.ZodString, "many">;
20596
+ mode: z.ZodOptional<z.ZodString>;
20597
+ modes: z.ZodOptional<z.ZodArray<z.ZodObject<{
20598
+ slug: z.ZodString;
20599
+ name: z.ZodString;
20600
+ }, "strip", z.ZodTypeAny, {
20601
+ name: string;
20602
+ slug: string;
20603
+ }, {
20604
+ name: string;
20605
+ slug: string;
20606
+ }>, "many">>;
20607
+ providerProfile: z.ZodOptional<z.ZodString>;
20608
+ providerProfiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
20609
+ name: z.ZodString;
20610
+ provider: z.ZodOptional<z.ZodString>;
20611
+ }, "strip", z.ZodTypeAny, {
20612
+ name: string;
20613
+ provider?: string | undefined;
20614
+ }, {
20615
+ name: string;
20616
+ provider?: string | undefined;
20617
+ }>, "many">>;
20239
20618
  }, "strip", z.ZodTypeAny, {
20240
20619
  task: {
20241
20620
  taskId: string;
@@ -20255,6 +20634,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
20255
20634
  editorName: string;
20256
20635
  };
20257
20636
  lastHeartbeat: number;
20637
+ modes?: {
20638
+ name: string;
20639
+ slug: string;
20640
+ }[] | undefined;
20641
+ mode?: string | undefined;
20642
+ providerProfiles?: {
20643
+ name: string;
20644
+ provider?: string | undefined;
20645
+ }[] | undefined;
20258
20646
  gitProperties?: {
20259
20647
  repositoryUrl?: string | undefined;
20260
20648
  repositoryName?: string | undefined;
@@ -20291,6 +20679,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
20291
20679
  } | undefined;
20292
20680
  } | undefined;
20293
20681
  } | undefined;
20682
+ providerProfile?: string | undefined;
20294
20683
  }, {
20295
20684
  task: {
20296
20685
  taskId: string;
@@ -20310,6 +20699,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
20310
20699
  editorName: string;
20311
20700
  };
20312
20701
  lastHeartbeat: number;
20702
+ modes?: {
20703
+ name: string;
20704
+ slug: string;
20705
+ }[] | undefined;
20706
+ mode?: string | undefined;
20707
+ providerProfiles?: {
20708
+ name: string;
20709
+ provider?: string | undefined;
20710
+ }[] | undefined;
20313
20711
  gitProperties?: {
20314
20712
  repositoryUrl?: string | undefined;
20315
20713
  repositoryName?: string | undefined;
@@ -20346,6 +20744,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
20346
20744
  } | undefined;
20347
20745
  } | undefined;
20348
20746
  } | undefined;
20747
+ providerProfile?: string | undefined;
20349
20748
  }>;
20350
20749
  timestamp: z.ZodNumber;
20351
20750
  }, "strip", z.ZodTypeAny, {
@@ -20369,6 +20768,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
20369
20768
  editorName: string;
20370
20769
  };
20371
20770
  lastHeartbeat: number;
20771
+ modes?: {
20772
+ name: string;
20773
+ slug: string;
20774
+ }[] | undefined;
20775
+ mode?: string | undefined;
20776
+ providerProfiles?: {
20777
+ name: string;
20778
+ provider?: string | undefined;
20779
+ }[] | undefined;
20372
20780
  gitProperties?: {
20373
20781
  repositoryUrl?: string | undefined;
20374
20782
  repositoryName?: string | undefined;
@@ -20405,6 +20813,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
20405
20813
  } | undefined;
20406
20814
  } | undefined;
20407
20815
  } | undefined;
20816
+ providerProfile?: string | undefined;
20408
20817
  };
20409
20818
  timestamp: number;
20410
20819
  }, {
@@ -20428,6 +20837,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
20428
20837
  editorName: string;
20429
20838
  };
20430
20839
  lastHeartbeat: number;
20840
+ modes?: {
20841
+ name: string;
20842
+ slug: string;
20843
+ }[] | undefined;
20844
+ mode?: string | undefined;
20845
+ providerProfiles?: {
20846
+ name: string;
20847
+ provider?: string | undefined;
20848
+ }[] | undefined;
20431
20849
  gitProperties?: {
20432
20850
  repositoryUrl?: string | undefined;
20433
20851
  repositoryName?: string | undefined;
@@ -20464,6 +20882,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
20464
20882
  } | undefined;
20465
20883
  } | undefined;
20466
20884
  } | undefined;
20885
+ providerProfile?: string | undefined;
20467
20886
  };
20468
20887
  timestamp: number;
20469
20888
  }>, z.ZodObject<{
@@ -20649,9 +21068,31 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
20649
21068
  } | undefined;
20650
21069
  }>>;
20651
21070
  taskHistory: z.ZodArray<z.ZodString, "many">;
20652
- }, "strip", z.ZodTypeAny, {
20653
- task: {
20654
- taskId: string;
21071
+ mode: z.ZodOptional<z.ZodString>;
21072
+ modes: z.ZodOptional<z.ZodArray<z.ZodObject<{
21073
+ slug: z.ZodString;
21074
+ name: z.ZodString;
21075
+ }, "strip", z.ZodTypeAny, {
21076
+ name: string;
21077
+ slug: string;
21078
+ }, {
21079
+ name: string;
21080
+ slug: string;
21081
+ }>, "many">>;
21082
+ providerProfile: z.ZodOptional<z.ZodString>;
21083
+ providerProfiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
21084
+ name: z.ZodString;
21085
+ provider: z.ZodOptional<z.ZodString>;
21086
+ }, "strip", z.ZodTypeAny, {
21087
+ name: string;
21088
+ provider?: string | undefined;
21089
+ }, {
21090
+ name: string;
21091
+ provider?: string | undefined;
21092
+ }>, "many">>;
21093
+ }, "strip", z.ZodTypeAny, {
21094
+ task: {
21095
+ taskId: string;
20655
21096
  taskStatus: TaskStatus;
20656
21097
  images?: string[] | undefined;
20657
21098
  task?: string | undefined;
@@ -20668,6 +21109,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
20668
21109
  editorName: string;
20669
21110
  };
20670
21111
  lastHeartbeat: number;
21112
+ modes?: {
21113
+ name: string;
21114
+ slug: string;
21115
+ }[] | undefined;
21116
+ mode?: string | undefined;
21117
+ providerProfiles?: {
21118
+ name: string;
21119
+ provider?: string | undefined;
21120
+ }[] | undefined;
20671
21121
  gitProperties?: {
20672
21122
  repositoryUrl?: string | undefined;
20673
21123
  repositoryName?: string | undefined;
@@ -20704,6 +21154,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
20704
21154
  } | undefined;
20705
21155
  } | undefined;
20706
21156
  } | undefined;
21157
+ providerProfile?: string | undefined;
20707
21158
  }, {
20708
21159
  task: {
20709
21160
  taskId: string;
@@ -20723,6 +21174,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
20723
21174
  editorName: string;
20724
21175
  };
20725
21176
  lastHeartbeat: number;
21177
+ modes?: {
21178
+ name: string;
21179
+ slug: string;
21180
+ }[] | undefined;
21181
+ mode?: string | undefined;
21182
+ providerProfiles?: {
21183
+ name: string;
21184
+ provider?: string | undefined;
21185
+ }[] | undefined;
20726
21186
  gitProperties?: {
20727
21187
  repositoryUrl?: string | undefined;
20728
21188
  repositoryName?: string | undefined;
@@ -20759,6 +21219,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
20759
21219
  } | undefined;
20760
21220
  } | undefined;
20761
21221
  } | undefined;
21222
+ providerProfile?: string | undefined;
20762
21223
  }>;
20763
21224
  timestamp: z.ZodNumber;
20764
21225
  }, "strip", z.ZodTypeAny, {
@@ -20782,6 +21243,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
20782
21243
  editorName: string;
20783
21244
  };
20784
21245
  lastHeartbeat: number;
21246
+ modes?: {
21247
+ name: string;
21248
+ slug: string;
21249
+ }[] | undefined;
21250
+ mode?: string | undefined;
21251
+ providerProfiles?: {
21252
+ name: string;
21253
+ provider?: string | undefined;
21254
+ }[] | undefined;
20785
21255
  gitProperties?: {
20786
21256
  repositoryUrl?: string | undefined;
20787
21257
  repositoryName?: string | undefined;
@@ -20818,6 +21288,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
20818
21288
  } | undefined;
20819
21289
  } | undefined;
20820
21290
  } | undefined;
21291
+ providerProfile?: string | undefined;
20821
21292
  };
20822
21293
  timestamp: number;
20823
21294
  }, {
@@ -20841,6 +21312,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
20841
21312
  editorName: string;
20842
21313
  };
20843
21314
  lastHeartbeat: number;
21315
+ modes?: {
21316
+ name: string;
21317
+ slug: string;
21318
+ }[] | undefined;
21319
+ mode?: string | undefined;
21320
+ providerProfiles?: {
21321
+ name: string;
21322
+ provider?: string | undefined;
21323
+ }[] | undefined;
20844
21324
  gitProperties?: {
20845
21325
  repositoryUrl?: string | undefined;
20846
21326
  repositoryName?: string | undefined;
@@ -20877,6 +21357,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
20877
21357
  } | undefined;
20878
21358
  } | undefined;
20879
21359
  } | undefined;
21360
+ providerProfile?: string | undefined;
20880
21361
  };
20881
21362
  timestamp: number;
20882
21363
  }>, z.ZodObject<{
@@ -21062,6 +21543,28 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
21062
21543
  } | undefined;
21063
21544
  }>>;
21064
21545
  taskHistory: z.ZodArray<z.ZodString, "many">;
21546
+ mode: z.ZodOptional<z.ZodString>;
21547
+ modes: z.ZodOptional<z.ZodArray<z.ZodObject<{
21548
+ slug: z.ZodString;
21549
+ name: z.ZodString;
21550
+ }, "strip", z.ZodTypeAny, {
21551
+ name: string;
21552
+ slug: string;
21553
+ }, {
21554
+ name: string;
21555
+ slug: string;
21556
+ }>, "many">>;
21557
+ providerProfile: z.ZodOptional<z.ZodString>;
21558
+ providerProfiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
21559
+ name: z.ZodString;
21560
+ provider: z.ZodOptional<z.ZodString>;
21561
+ }, "strip", z.ZodTypeAny, {
21562
+ name: string;
21563
+ provider?: string | undefined;
21564
+ }, {
21565
+ name: string;
21566
+ provider?: string | undefined;
21567
+ }>, "many">>;
21065
21568
  }, "strip", z.ZodTypeAny, {
21066
21569
  task: {
21067
21570
  taskId: string;
@@ -21081,6 +21584,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
21081
21584
  editorName: string;
21082
21585
  };
21083
21586
  lastHeartbeat: number;
21587
+ modes?: {
21588
+ name: string;
21589
+ slug: string;
21590
+ }[] | undefined;
21591
+ mode?: string | undefined;
21592
+ providerProfiles?: {
21593
+ name: string;
21594
+ provider?: string | undefined;
21595
+ }[] | undefined;
21084
21596
  gitProperties?: {
21085
21597
  repositoryUrl?: string | undefined;
21086
21598
  repositoryName?: string | undefined;
@@ -21117,6 +21629,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
21117
21629
  } | undefined;
21118
21630
  } | undefined;
21119
21631
  } | undefined;
21632
+ providerProfile?: string | undefined;
21120
21633
  }, {
21121
21634
  task: {
21122
21635
  taskId: string;
@@ -21136,6 +21649,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
21136
21649
  editorName: string;
21137
21650
  };
21138
21651
  lastHeartbeat: number;
21652
+ modes?: {
21653
+ name: string;
21654
+ slug: string;
21655
+ }[] | undefined;
21656
+ mode?: string | undefined;
21657
+ providerProfiles?: {
21658
+ name: string;
21659
+ provider?: string | undefined;
21660
+ }[] | undefined;
21139
21661
  gitProperties?: {
21140
21662
  repositoryUrl?: string | undefined;
21141
21663
  repositoryName?: string | undefined;
@@ -21172,6 +21694,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
21172
21694
  } | undefined;
21173
21695
  } | undefined;
21174
21696
  } | undefined;
21697
+ providerProfile?: string | undefined;
21175
21698
  }>;
21176
21699
  timestamp: z.ZodNumber;
21177
21700
  }, "strip", z.ZodTypeAny, {
@@ -21195,6 +21718,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
21195
21718
  editorName: string;
21196
21719
  };
21197
21720
  lastHeartbeat: number;
21721
+ modes?: {
21722
+ name: string;
21723
+ slug: string;
21724
+ }[] | undefined;
21725
+ mode?: string | undefined;
21726
+ providerProfiles?: {
21727
+ name: string;
21728
+ provider?: string | undefined;
21729
+ }[] | undefined;
21198
21730
  gitProperties?: {
21199
21731
  repositoryUrl?: string | undefined;
21200
21732
  repositoryName?: string | undefined;
@@ -21231,6 +21763,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
21231
21763
  } | undefined;
21232
21764
  } | undefined;
21233
21765
  } | undefined;
21766
+ providerProfile?: string | undefined;
21234
21767
  };
21235
21768
  timestamp: number;
21236
21769
  }, {
@@ -21254,6 +21787,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
21254
21787
  editorName: string;
21255
21788
  };
21256
21789
  lastHeartbeat: number;
21790
+ modes?: {
21791
+ name: string;
21792
+ slug: string;
21793
+ }[] | undefined;
21794
+ mode?: string | undefined;
21795
+ providerProfiles?: {
21796
+ name: string;
21797
+ provider?: string | undefined;
21798
+ }[] | undefined;
21257
21799
  gitProperties?: {
21258
21800
  repositoryUrl?: string | undefined;
21259
21801
  repositoryName?: string | undefined;
@@ -21290,6 +21832,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
21290
21832
  } | undefined;
21291
21833
  } | undefined;
21292
21834
  } | undefined;
21835
+ providerProfile?: string | undefined;
21293
21836
  };
21294
21837
  timestamp: number;
21295
21838
  }>, z.ZodObject<{
@@ -21475,6 +22018,28 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
21475
22018
  } | undefined;
21476
22019
  }>>;
21477
22020
  taskHistory: z.ZodArray<z.ZodString, "many">;
22021
+ mode: z.ZodOptional<z.ZodString>;
22022
+ modes: z.ZodOptional<z.ZodArray<z.ZodObject<{
22023
+ slug: z.ZodString;
22024
+ name: z.ZodString;
22025
+ }, "strip", z.ZodTypeAny, {
22026
+ name: string;
22027
+ slug: string;
22028
+ }, {
22029
+ name: string;
22030
+ slug: string;
22031
+ }>, "many">>;
22032
+ providerProfile: z.ZodOptional<z.ZodString>;
22033
+ providerProfiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
22034
+ name: z.ZodString;
22035
+ provider: z.ZodOptional<z.ZodString>;
22036
+ }, "strip", z.ZodTypeAny, {
22037
+ name: string;
22038
+ provider?: string | undefined;
22039
+ }, {
22040
+ name: string;
22041
+ provider?: string | undefined;
22042
+ }>, "many">>;
21478
22043
  }, "strip", z.ZodTypeAny, {
21479
22044
  task: {
21480
22045
  taskId: string;
@@ -21494,6 +22059,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
21494
22059
  editorName: string;
21495
22060
  };
21496
22061
  lastHeartbeat: number;
22062
+ modes?: {
22063
+ name: string;
22064
+ slug: string;
22065
+ }[] | undefined;
22066
+ mode?: string | undefined;
22067
+ providerProfiles?: {
22068
+ name: string;
22069
+ provider?: string | undefined;
22070
+ }[] | undefined;
21497
22071
  gitProperties?: {
21498
22072
  repositoryUrl?: string | undefined;
21499
22073
  repositoryName?: string | undefined;
@@ -21530,6 +22104,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
21530
22104
  } | undefined;
21531
22105
  } | undefined;
21532
22106
  } | undefined;
22107
+ providerProfile?: string | undefined;
21533
22108
  }, {
21534
22109
  task: {
21535
22110
  taskId: string;
@@ -21549,6 +22124,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
21549
22124
  editorName: string;
21550
22125
  };
21551
22126
  lastHeartbeat: number;
22127
+ modes?: {
22128
+ name: string;
22129
+ slug: string;
22130
+ }[] | undefined;
22131
+ mode?: string | undefined;
22132
+ providerProfiles?: {
22133
+ name: string;
22134
+ provider?: string | undefined;
22135
+ }[] | undefined;
21552
22136
  gitProperties?: {
21553
22137
  repositoryUrl?: string | undefined;
21554
22138
  repositoryName?: string | undefined;
@@ -21585,6 +22169,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
21585
22169
  } | undefined;
21586
22170
  } | undefined;
21587
22171
  } | undefined;
22172
+ providerProfile?: string | undefined;
21588
22173
  }>;
21589
22174
  timestamp: z.ZodNumber;
21590
22175
  }, "strip", z.ZodTypeAny, {
@@ -21608,6 +22193,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
21608
22193
  editorName: string;
21609
22194
  };
21610
22195
  lastHeartbeat: number;
22196
+ modes?: {
22197
+ name: string;
22198
+ slug: string;
22199
+ }[] | undefined;
22200
+ mode?: string | undefined;
22201
+ providerProfiles?: {
22202
+ name: string;
22203
+ provider?: string | undefined;
22204
+ }[] | undefined;
21611
22205
  gitProperties?: {
21612
22206
  repositoryUrl?: string | undefined;
21613
22207
  repositoryName?: string | undefined;
@@ -21644,6 +22238,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
21644
22238
  } | undefined;
21645
22239
  } | undefined;
21646
22240
  } | undefined;
22241
+ providerProfile?: string | undefined;
21647
22242
  };
21648
22243
  timestamp: number;
21649
22244
  }, {
@@ -21667,6 +22262,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
21667
22262
  editorName: string;
21668
22263
  };
21669
22264
  lastHeartbeat: number;
22265
+ modes?: {
22266
+ name: string;
22267
+ slug: string;
22268
+ }[] | undefined;
22269
+ mode?: string | undefined;
22270
+ providerProfiles?: {
22271
+ name: string;
22272
+ provider?: string | undefined;
22273
+ }[] | undefined;
21670
22274
  gitProperties?: {
21671
22275
  repositoryUrl?: string | undefined;
21672
22276
  repositoryName?: string | undefined;
@@ -21703,6 +22307,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
21703
22307
  } | undefined;
21704
22308
  } | undefined;
21705
22309
  } | undefined;
22310
+ providerProfile?: string | undefined;
21706
22311
  };
21707
22312
  timestamp: number;
21708
22313
  }>, z.ZodObject<{
@@ -21888,6 +22493,978 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
21888
22493
  } | undefined;
21889
22494
  }>>;
21890
22495
  taskHistory: z.ZodArray<z.ZodString, "many">;
22496
+ mode: z.ZodOptional<z.ZodString>;
22497
+ modes: z.ZodOptional<z.ZodArray<z.ZodObject<{
22498
+ slug: z.ZodString;
22499
+ name: z.ZodString;
22500
+ }, "strip", z.ZodTypeAny, {
22501
+ name: string;
22502
+ slug: string;
22503
+ }, {
22504
+ name: string;
22505
+ slug: string;
22506
+ }>, "many">>;
22507
+ providerProfile: z.ZodOptional<z.ZodString>;
22508
+ providerProfiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
22509
+ name: z.ZodString;
22510
+ provider: z.ZodOptional<z.ZodString>;
22511
+ }, "strip", z.ZodTypeAny, {
22512
+ name: string;
22513
+ provider?: string | undefined;
22514
+ }, {
22515
+ name: string;
22516
+ provider?: string | undefined;
22517
+ }>, "many">>;
22518
+ }, "strip", z.ZodTypeAny, {
22519
+ task: {
22520
+ taskId: string;
22521
+ taskStatus: TaskStatus;
22522
+ images?: string[] | undefined;
22523
+ task?: string | undefined;
22524
+ };
22525
+ taskHistory: string[];
22526
+ instanceId: string;
22527
+ userId: string;
22528
+ workspacePath: string;
22529
+ appProperties: {
22530
+ appName: string;
22531
+ appVersion: string;
22532
+ vscodeVersion: string;
22533
+ platform: string;
22534
+ editorName: string;
22535
+ };
22536
+ lastHeartbeat: number;
22537
+ modes?: {
22538
+ name: string;
22539
+ slug: string;
22540
+ }[] | undefined;
22541
+ mode?: string | undefined;
22542
+ providerProfiles?: {
22543
+ name: string;
22544
+ provider?: string | undefined;
22545
+ }[] | undefined;
22546
+ gitProperties?: {
22547
+ repositoryUrl?: string | undefined;
22548
+ repositoryName?: string | undefined;
22549
+ defaultBranch?: string | undefined;
22550
+ } | undefined;
22551
+ taskAsk?: {
22552
+ type: "ask" | "say";
22553
+ ts: number;
22554
+ text?: string | undefined;
22555
+ reasoning?: string | undefined;
22556
+ ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
22557
+ say?: "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "reasoning" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
22558
+ images?: string[] | undefined;
22559
+ partial?: boolean | undefined;
22560
+ conversationHistoryIndex?: number | undefined;
22561
+ checkpoint?: Record<string, unknown> | undefined;
22562
+ progressStatus?: {
22563
+ text?: string | undefined;
22564
+ icon?: string | undefined;
22565
+ } | undefined;
22566
+ contextCondense?: {
22567
+ cost: number;
22568
+ prevContextTokens: number;
22569
+ newContextTokens: number;
22570
+ summary: string;
22571
+ } | undefined;
22572
+ isProtected?: boolean | undefined;
22573
+ apiProtocol?: "openai" | "anthropic" | undefined;
22574
+ metadata?: {
22575
+ gpt5?: {
22576
+ previous_response_id?: string | undefined;
22577
+ instructions?: string | undefined;
22578
+ reasoning_summary?: string | undefined;
22579
+ } | undefined;
22580
+ } | undefined;
22581
+ } | undefined;
22582
+ providerProfile?: string | undefined;
22583
+ }, {
22584
+ task: {
22585
+ taskId: string;
22586
+ taskStatus: TaskStatus;
22587
+ images?: string[] | undefined;
22588
+ task?: string | undefined;
22589
+ };
22590
+ taskHistory: string[];
22591
+ instanceId: string;
22592
+ userId: string;
22593
+ workspacePath: string;
22594
+ appProperties: {
22595
+ appName: string;
22596
+ appVersion: string;
22597
+ vscodeVersion: string;
22598
+ platform: string;
22599
+ editorName: string;
22600
+ };
22601
+ lastHeartbeat: number;
22602
+ modes?: {
22603
+ name: string;
22604
+ slug: string;
22605
+ }[] | undefined;
22606
+ mode?: string | undefined;
22607
+ providerProfiles?: {
22608
+ name: string;
22609
+ provider?: string | undefined;
22610
+ }[] | undefined;
22611
+ gitProperties?: {
22612
+ repositoryUrl?: string | undefined;
22613
+ repositoryName?: string | undefined;
22614
+ defaultBranch?: string | undefined;
22615
+ } | undefined;
22616
+ taskAsk?: {
22617
+ type: "ask" | "say";
22618
+ ts: number;
22619
+ text?: string | undefined;
22620
+ reasoning?: string | undefined;
22621
+ ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
22622
+ say?: "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "reasoning" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
22623
+ images?: string[] | undefined;
22624
+ partial?: boolean | undefined;
22625
+ conversationHistoryIndex?: number | undefined;
22626
+ checkpoint?: Record<string, unknown> | undefined;
22627
+ progressStatus?: {
22628
+ text?: string | undefined;
22629
+ icon?: string | undefined;
22630
+ } | undefined;
22631
+ contextCondense?: {
22632
+ cost: number;
22633
+ prevContextTokens: number;
22634
+ newContextTokens: number;
22635
+ summary: string;
22636
+ } | undefined;
22637
+ isProtected?: boolean | undefined;
22638
+ apiProtocol?: "openai" | "anthropic" | undefined;
22639
+ metadata?: {
22640
+ gpt5?: {
22641
+ previous_response_id?: string | undefined;
22642
+ instructions?: string | undefined;
22643
+ reasoning_summary?: string | undefined;
22644
+ } | undefined;
22645
+ } | undefined;
22646
+ } | undefined;
22647
+ providerProfile?: string | undefined;
22648
+ }>;
22649
+ timestamp: z.ZodNumber;
22650
+ }, "strip", z.ZodTypeAny, {
22651
+ type: ExtensionBridgeEventName.TaskResumable;
22652
+ instance: {
22653
+ task: {
22654
+ taskId: string;
22655
+ taskStatus: TaskStatus;
22656
+ images?: string[] | undefined;
22657
+ task?: string | undefined;
22658
+ };
22659
+ taskHistory: string[];
22660
+ instanceId: string;
22661
+ userId: string;
22662
+ workspacePath: string;
22663
+ appProperties: {
22664
+ appName: string;
22665
+ appVersion: string;
22666
+ vscodeVersion: string;
22667
+ platform: string;
22668
+ editorName: string;
22669
+ };
22670
+ lastHeartbeat: number;
22671
+ modes?: {
22672
+ name: string;
22673
+ slug: string;
22674
+ }[] | undefined;
22675
+ mode?: string | undefined;
22676
+ providerProfiles?: {
22677
+ name: string;
22678
+ provider?: string | undefined;
22679
+ }[] | undefined;
22680
+ gitProperties?: {
22681
+ repositoryUrl?: string | undefined;
22682
+ repositoryName?: string | undefined;
22683
+ defaultBranch?: string | undefined;
22684
+ } | undefined;
22685
+ taskAsk?: {
22686
+ type: "ask" | "say";
22687
+ ts: number;
22688
+ text?: string | undefined;
22689
+ reasoning?: string | undefined;
22690
+ ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
22691
+ say?: "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "reasoning" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
22692
+ images?: string[] | undefined;
22693
+ partial?: boolean | undefined;
22694
+ conversationHistoryIndex?: number | undefined;
22695
+ checkpoint?: Record<string, unknown> | undefined;
22696
+ progressStatus?: {
22697
+ text?: string | undefined;
22698
+ icon?: string | undefined;
22699
+ } | undefined;
22700
+ contextCondense?: {
22701
+ cost: number;
22702
+ prevContextTokens: number;
22703
+ newContextTokens: number;
22704
+ summary: string;
22705
+ } | undefined;
22706
+ isProtected?: boolean | undefined;
22707
+ apiProtocol?: "openai" | "anthropic" | undefined;
22708
+ metadata?: {
22709
+ gpt5?: {
22710
+ previous_response_id?: string | undefined;
22711
+ instructions?: string | undefined;
22712
+ reasoning_summary?: string | undefined;
22713
+ } | undefined;
22714
+ } | undefined;
22715
+ } | undefined;
22716
+ providerProfile?: string | undefined;
22717
+ };
22718
+ timestamp: number;
22719
+ }, {
22720
+ type: ExtensionBridgeEventName.TaskResumable;
22721
+ instance: {
22722
+ task: {
22723
+ taskId: string;
22724
+ taskStatus: TaskStatus;
22725
+ images?: string[] | undefined;
22726
+ task?: string | undefined;
22727
+ };
22728
+ taskHistory: string[];
22729
+ instanceId: string;
22730
+ userId: string;
22731
+ workspacePath: string;
22732
+ appProperties: {
22733
+ appName: string;
22734
+ appVersion: string;
22735
+ vscodeVersion: string;
22736
+ platform: string;
22737
+ editorName: string;
22738
+ };
22739
+ lastHeartbeat: number;
22740
+ modes?: {
22741
+ name: string;
22742
+ slug: string;
22743
+ }[] | undefined;
22744
+ mode?: string | undefined;
22745
+ providerProfiles?: {
22746
+ name: string;
22747
+ provider?: string | undefined;
22748
+ }[] | undefined;
22749
+ gitProperties?: {
22750
+ repositoryUrl?: string | undefined;
22751
+ repositoryName?: string | undefined;
22752
+ defaultBranch?: string | undefined;
22753
+ } | undefined;
22754
+ taskAsk?: {
22755
+ type: "ask" | "say";
22756
+ ts: number;
22757
+ text?: string | undefined;
22758
+ reasoning?: string | undefined;
22759
+ ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
22760
+ say?: "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "reasoning" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
22761
+ images?: string[] | undefined;
22762
+ partial?: boolean | undefined;
22763
+ conversationHistoryIndex?: number | undefined;
22764
+ checkpoint?: Record<string, unknown> | undefined;
22765
+ progressStatus?: {
22766
+ text?: string | undefined;
22767
+ icon?: string | undefined;
22768
+ } | undefined;
22769
+ contextCondense?: {
22770
+ cost: number;
22771
+ prevContextTokens: number;
22772
+ newContextTokens: number;
22773
+ summary: string;
22774
+ } | undefined;
22775
+ isProtected?: boolean | undefined;
22776
+ apiProtocol?: "openai" | "anthropic" | undefined;
22777
+ metadata?: {
22778
+ gpt5?: {
22779
+ previous_response_id?: string | undefined;
22780
+ instructions?: string | undefined;
22781
+ reasoning_summary?: string | undefined;
22782
+ } | undefined;
22783
+ } | undefined;
22784
+ } | undefined;
22785
+ providerProfile?: string | undefined;
22786
+ };
22787
+ timestamp: number;
22788
+ }>, z.ZodObject<{
22789
+ type: z.ZodLiteral<ExtensionBridgeEventName.TaskIdle>;
22790
+ instance: z.ZodObject<{
22791
+ instanceId: z.ZodString;
22792
+ userId: z.ZodString;
22793
+ workspacePath: z.ZodString;
22794
+ appProperties: z.ZodObject<{
22795
+ appName: z.ZodString;
22796
+ appVersion: z.ZodString;
22797
+ vscodeVersion: z.ZodString;
22798
+ platform: z.ZodString;
22799
+ editorName: z.ZodString;
22800
+ }, "strip", z.ZodTypeAny, {
22801
+ appName: string;
22802
+ appVersion: string;
22803
+ vscodeVersion: string;
22804
+ platform: string;
22805
+ editorName: string;
22806
+ }, {
22807
+ appName: string;
22808
+ appVersion: string;
22809
+ vscodeVersion: string;
22810
+ platform: string;
22811
+ editorName: string;
22812
+ }>;
22813
+ gitProperties: z.ZodOptional<z.ZodObject<{
22814
+ repositoryUrl: z.ZodOptional<z.ZodString>;
22815
+ repositoryName: z.ZodOptional<z.ZodString>;
22816
+ defaultBranch: z.ZodOptional<z.ZodString>;
22817
+ }, "strip", z.ZodTypeAny, {
22818
+ repositoryUrl?: string | undefined;
22819
+ repositoryName?: string | undefined;
22820
+ defaultBranch?: string | undefined;
22821
+ }, {
22822
+ repositoryUrl?: string | undefined;
22823
+ repositoryName?: string | undefined;
22824
+ defaultBranch?: string | undefined;
22825
+ }>>;
22826
+ lastHeartbeat: z.ZodNumber;
22827
+ task: z.ZodObject<{
22828
+ task: z.ZodOptional<z.ZodString>;
22829
+ images: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22830
+ taskId: z.ZodString;
22831
+ taskStatus: z.ZodNativeEnum<typeof TaskStatus>;
22832
+ }, "strip", z.ZodTypeAny, {
22833
+ taskId: string;
22834
+ taskStatus: TaskStatus;
22835
+ images?: string[] | undefined;
22836
+ task?: string | undefined;
22837
+ }, {
22838
+ taskId: string;
22839
+ taskStatus: TaskStatus;
22840
+ images?: string[] | undefined;
22841
+ task?: string | undefined;
22842
+ }>;
22843
+ taskAsk: z.ZodOptional<z.ZodObject<{
22844
+ ts: z.ZodNumber;
22845
+ type: z.ZodUnion<[z.ZodLiteral<"ask">, z.ZodLiteral<"say">]>;
22846
+ ask: z.ZodOptional<z.ZodEnum<["followup", "command", "command_output", "completion_result", "tool", "api_req_failed", "resume_task", "resume_completed_task", "mistake_limit_reached", "browser_action_launch", "use_mcp_server", "auto_approval_max_req_reached"]>>;
22847
+ say: z.ZodOptional<z.ZodEnum<["error", "api_req_started", "api_req_finished", "api_req_retried", "api_req_retry_delayed", "api_req_deleted", "text", "reasoning", "completion_result", "user_feedback", "user_feedback_diff", "command_output", "shell_integration_warning", "browser_action", "browser_action_result", "mcp_server_request_started", "mcp_server_response", "subtask_result", "checkpoint_saved", "rooignore_error", "diff_error", "condense_context", "condense_context_error", "codebase_search_result", "user_edit_todos"]>>;
22848
+ text: z.ZodOptional<z.ZodString>;
22849
+ images: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22850
+ partial: z.ZodOptional<z.ZodBoolean>;
22851
+ reasoning: z.ZodOptional<z.ZodString>;
22852
+ conversationHistoryIndex: z.ZodOptional<z.ZodNumber>;
22853
+ checkpoint: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
22854
+ progressStatus: z.ZodOptional<z.ZodObject<{
22855
+ icon: z.ZodOptional<z.ZodString>;
22856
+ text: z.ZodOptional<z.ZodString>;
22857
+ }, "strip", z.ZodTypeAny, {
22858
+ text?: string | undefined;
22859
+ icon?: string | undefined;
22860
+ }, {
22861
+ text?: string | undefined;
22862
+ icon?: string | undefined;
22863
+ }>>;
22864
+ contextCondense: z.ZodOptional<z.ZodObject<{
22865
+ cost: z.ZodNumber;
22866
+ prevContextTokens: z.ZodNumber;
22867
+ newContextTokens: z.ZodNumber;
22868
+ summary: z.ZodString;
22869
+ }, "strip", z.ZodTypeAny, {
22870
+ cost: number;
22871
+ prevContextTokens: number;
22872
+ newContextTokens: number;
22873
+ summary: string;
22874
+ }, {
22875
+ cost: number;
22876
+ prevContextTokens: number;
22877
+ newContextTokens: number;
22878
+ summary: string;
22879
+ }>>;
22880
+ isProtected: z.ZodOptional<z.ZodBoolean>;
22881
+ apiProtocol: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"anthropic">]>>;
22882
+ metadata: z.ZodOptional<z.ZodObject<{
22883
+ gpt5: z.ZodOptional<z.ZodObject<{
22884
+ previous_response_id: z.ZodOptional<z.ZodString>;
22885
+ instructions: z.ZodOptional<z.ZodString>;
22886
+ reasoning_summary: z.ZodOptional<z.ZodString>;
22887
+ }, "strip", z.ZodTypeAny, {
22888
+ previous_response_id?: string | undefined;
22889
+ instructions?: string | undefined;
22890
+ reasoning_summary?: string | undefined;
22891
+ }, {
22892
+ previous_response_id?: string | undefined;
22893
+ instructions?: string | undefined;
22894
+ reasoning_summary?: string | undefined;
22895
+ }>>;
22896
+ }, "strip", z.ZodTypeAny, {
22897
+ gpt5?: {
22898
+ previous_response_id?: string | undefined;
22899
+ instructions?: string | undefined;
22900
+ reasoning_summary?: string | undefined;
22901
+ } | undefined;
22902
+ }, {
22903
+ gpt5?: {
22904
+ previous_response_id?: string | undefined;
22905
+ instructions?: string | undefined;
22906
+ reasoning_summary?: string | undefined;
22907
+ } | undefined;
22908
+ }>>;
22909
+ }, "strip", z.ZodTypeAny, {
22910
+ type: "ask" | "say";
22911
+ ts: number;
22912
+ text?: string | undefined;
22913
+ reasoning?: string | undefined;
22914
+ ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
22915
+ say?: "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "reasoning" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
22916
+ images?: string[] | undefined;
22917
+ partial?: boolean | undefined;
22918
+ conversationHistoryIndex?: number | undefined;
22919
+ checkpoint?: Record<string, unknown> | undefined;
22920
+ progressStatus?: {
22921
+ text?: string | undefined;
22922
+ icon?: string | undefined;
22923
+ } | undefined;
22924
+ contextCondense?: {
22925
+ cost: number;
22926
+ prevContextTokens: number;
22927
+ newContextTokens: number;
22928
+ summary: string;
22929
+ } | undefined;
22930
+ isProtected?: boolean | undefined;
22931
+ apiProtocol?: "openai" | "anthropic" | undefined;
22932
+ metadata?: {
22933
+ gpt5?: {
22934
+ previous_response_id?: string | undefined;
22935
+ instructions?: string | undefined;
22936
+ reasoning_summary?: string | undefined;
22937
+ } | undefined;
22938
+ } | undefined;
22939
+ }, {
22940
+ type: "ask" | "say";
22941
+ ts: number;
22942
+ text?: string | undefined;
22943
+ reasoning?: string | undefined;
22944
+ ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
22945
+ say?: "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "reasoning" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
22946
+ images?: string[] | undefined;
22947
+ partial?: boolean | undefined;
22948
+ conversationHistoryIndex?: number | undefined;
22949
+ checkpoint?: Record<string, unknown> | undefined;
22950
+ progressStatus?: {
22951
+ text?: string | undefined;
22952
+ icon?: string | undefined;
22953
+ } | undefined;
22954
+ contextCondense?: {
22955
+ cost: number;
22956
+ prevContextTokens: number;
22957
+ newContextTokens: number;
22958
+ summary: string;
22959
+ } | undefined;
22960
+ isProtected?: boolean | undefined;
22961
+ apiProtocol?: "openai" | "anthropic" | undefined;
22962
+ metadata?: {
22963
+ gpt5?: {
22964
+ previous_response_id?: string | undefined;
22965
+ instructions?: string | undefined;
22966
+ reasoning_summary?: string | undefined;
22967
+ } | undefined;
22968
+ } | undefined;
22969
+ }>>;
22970
+ taskHistory: z.ZodArray<z.ZodString, "many">;
22971
+ mode: z.ZodOptional<z.ZodString>;
22972
+ modes: z.ZodOptional<z.ZodArray<z.ZodObject<{
22973
+ slug: z.ZodString;
22974
+ name: z.ZodString;
22975
+ }, "strip", z.ZodTypeAny, {
22976
+ name: string;
22977
+ slug: string;
22978
+ }, {
22979
+ name: string;
22980
+ slug: string;
22981
+ }>, "many">>;
22982
+ providerProfile: z.ZodOptional<z.ZodString>;
22983
+ providerProfiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
22984
+ name: z.ZodString;
22985
+ provider: z.ZodOptional<z.ZodString>;
22986
+ }, "strip", z.ZodTypeAny, {
22987
+ name: string;
22988
+ provider?: string | undefined;
22989
+ }, {
22990
+ name: string;
22991
+ provider?: string | undefined;
22992
+ }>, "many">>;
22993
+ }, "strip", z.ZodTypeAny, {
22994
+ task: {
22995
+ taskId: string;
22996
+ taskStatus: TaskStatus;
22997
+ images?: string[] | undefined;
22998
+ task?: string | undefined;
22999
+ };
23000
+ taskHistory: string[];
23001
+ instanceId: string;
23002
+ userId: string;
23003
+ workspacePath: string;
23004
+ appProperties: {
23005
+ appName: string;
23006
+ appVersion: string;
23007
+ vscodeVersion: string;
23008
+ platform: string;
23009
+ editorName: string;
23010
+ };
23011
+ lastHeartbeat: number;
23012
+ modes?: {
23013
+ name: string;
23014
+ slug: string;
23015
+ }[] | undefined;
23016
+ mode?: string | undefined;
23017
+ providerProfiles?: {
23018
+ name: string;
23019
+ provider?: string | undefined;
23020
+ }[] | undefined;
23021
+ gitProperties?: {
23022
+ repositoryUrl?: string | undefined;
23023
+ repositoryName?: string | undefined;
23024
+ defaultBranch?: string | undefined;
23025
+ } | undefined;
23026
+ taskAsk?: {
23027
+ type: "ask" | "say";
23028
+ ts: number;
23029
+ text?: string | undefined;
23030
+ reasoning?: string | undefined;
23031
+ ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
23032
+ say?: "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "reasoning" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
23033
+ images?: string[] | undefined;
23034
+ partial?: boolean | undefined;
23035
+ conversationHistoryIndex?: number | undefined;
23036
+ checkpoint?: Record<string, unknown> | undefined;
23037
+ progressStatus?: {
23038
+ text?: string | undefined;
23039
+ icon?: string | undefined;
23040
+ } | undefined;
23041
+ contextCondense?: {
23042
+ cost: number;
23043
+ prevContextTokens: number;
23044
+ newContextTokens: number;
23045
+ summary: string;
23046
+ } | undefined;
23047
+ isProtected?: boolean | undefined;
23048
+ apiProtocol?: "openai" | "anthropic" | undefined;
23049
+ metadata?: {
23050
+ gpt5?: {
23051
+ previous_response_id?: string | undefined;
23052
+ instructions?: string | undefined;
23053
+ reasoning_summary?: string | undefined;
23054
+ } | undefined;
23055
+ } | undefined;
23056
+ } | undefined;
23057
+ providerProfile?: string | undefined;
23058
+ }, {
23059
+ task: {
23060
+ taskId: string;
23061
+ taskStatus: TaskStatus;
23062
+ images?: string[] | undefined;
23063
+ task?: string | undefined;
23064
+ };
23065
+ taskHistory: string[];
23066
+ instanceId: string;
23067
+ userId: string;
23068
+ workspacePath: string;
23069
+ appProperties: {
23070
+ appName: string;
23071
+ appVersion: string;
23072
+ vscodeVersion: string;
23073
+ platform: string;
23074
+ editorName: string;
23075
+ };
23076
+ lastHeartbeat: number;
23077
+ modes?: {
23078
+ name: string;
23079
+ slug: string;
23080
+ }[] | undefined;
23081
+ mode?: string | undefined;
23082
+ providerProfiles?: {
23083
+ name: string;
23084
+ provider?: string | undefined;
23085
+ }[] | undefined;
23086
+ gitProperties?: {
23087
+ repositoryUrl?: string | undefined;
23088
+ repositoryName?: string | undefined;
23089
+ defaultBranch?: string | undefined;
23090
+ } | undefined;
23091
+ taskAsk?: {
23092
+ type: "ask" | "say";
23093
+ ts: number;
23094
+ text?: string | undefined;
23095
+ reasoning?: string | undefined;
23096
+ ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
23097
+ say?: "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "reasoning" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
23098
+ images?: string[] | undefined;
23099
+ partial?: boolean | undefined;
23100
+ conversationHistoryIndex?: number | undefined;
23101
+ checkpoint?: Record<string, unknown> | undefined;
23102
+ progressStatus?: {
23103
+ text?: string | undefined;
23104
+ icon?: string | undefined;
23105
+ } | undefined;
23106
+ contextCondense?: {
23107
+ cost: number;
23108
+ prevContextTokens: number;
23109
+ newContextTokens: number;
23110
+ summary: string;
23111
+ } | undefined;
23112
+ isProtected?: boolean | undefined;
23113
+ apiProtocol?: "openai" | "anthropic" | undefined;
23114
+ metadata?: {
23115
+ gpt5?: {
23116
+ previous_response_id?: string | undefined;
23117
+ instructions?: string | undefined;
23118
+ reasoning_summary?: string | undefined;
23119
+ } | undefined;
23120
+ } | undefined;
23121
+ } | undefined;
23122
+ providerProfile?: string | undefined;
23123
+ }>;
23124
+ timestamp: z.ZodNumber;
23125
+ }, "strip", z.ZodTypeAny, {
23126
+ type: ExtensionBridgeEventName.TaskIdle;
23127
+ instance: {
23128
+ task: {
23129
+ taskId: string;
23130
+ taskStatus: TaskStatus;
23131
+ images?: string[] | undefined;
23132
+ task?: string | undefined;
23133
+ };
23134
+ taskHistory: string[];
23135
+ instanceId: string;
23136
+ userId: string;
23137
+ workspacePath: string;
23138
+ appProperties: {
23139
+ appName: string;
23140
+ appVersion: string;
23141
+ vscodeVersion: string;
23142
+ platform: string;
23143
+ editorName: string;
23144
+ };
23145
+ lastHeartbeat: number;
23146
+ modes?: {
23147
+ name: string;
23148
+ slug: string;
23149
+ }[] | undefined;
23150
+ mode?: string | undefined;
23151
+ providerProfiles?: {
23152
+ name: string;
23153
+ provider?: string | undefined;
23154
+ }[] | undefined;
23155
+ gitProperties?: {
23156
+ repositoryUrl?: string | undefined;
23157
+ repositoryName?: string | undefined;
23158
+ defaultBranch?: string | undefined;
23159
+ } | undefined;
23160
+ taskAsk?: {
23161
+ type: "ask" | "say";
23162
+ ts: number;
23163
+ text?: string | undefined;
23164
+ reasoning?: string | undefined;
23165
+ ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
23166
+ say?: "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "reasoning" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
23167
+ images?: string[] | undefined;
23168
+ partial?: boolean | undefined;
23169
+ conversationHistoryIndex?: number | undefined;
23170
+ checkpoint?: Record<string, unknown> | undefined;
23171
+ progressStatus?: {
23172
+ text?: string | undefined;
23173
+ icon?: string | undefined;
23174
+ } | undefined;
23175
+ contextCondense?: {
23176
+ cost: number;
23177
+ prevContextTokens: number;
23178
+ newContextTokens: number;
23179
+ summary: string;
23180
+ } | undefined;
23181
+ isProtected?: boolean | undefined;
23182
+ apiProtocol?: "openai" | "anthropic" | undefined;
23183
+ metadata?: {
23184
+ gpt5?: {
23185
+ previous_response_id?: string | undefined;
23186
+ instructions?: string | undefined;
23187
+ reasoning_summary?: string | undefined;
23188
+ } | undefined;
23189
+ } | undefined;
23190
+ } | undefined;
23191
+ providerProfile?: string | undefined;
23192
+ };
23193
+ timestamp: number;
23194
+ }, {
23195
+ type: ExtensionBridgeEventName.TaskIdle;
23196
+ instance: {
23197
+ task: {
23198
+ taskId: string;
23199
+ taskStatus: TaskStatus;
23200
+ images?: string[] | undefined;
23201
+ task?: string | undefined;
23202
+ };
23203
+ taskHistory: string[];
23204
+ instanceId: string;
23205
+ userId: string;
23206
+ workspacePath: string;
23207
+ appProperties: {
23208
+ appName: string;
23209
+ appVersion: string;
23210
+ vscodeVersion: string;
23211
+ platform: string;
23212
+ editorName: string;
23213
+ };
23214
+ lastHeartbeat: number;
23215
+ modes?: {
23216
+ name: string;
23217
+ slug: string;
23218
+ }[] | undefined;
23219
+ mode?: string | undefined;
23220
+ providerProfiles?: {
23221
+ name: string;
23222
+ provider?: string | undefined;
23223
+ }[] | undefined;
23224
+ gitProperties?: {
23225
+ repositoryUrl?: string | undefined;
23226
+ repositoryName?: string | undefined;
23227
+ defaultBranch?: string | undefined;
23228
+ } | undefined;
23229
+ taskAsk?: {
23230
+ type: "ask" | "say";
23231
+ ts: number;
23232
+ text?: string | undefined;
23233
+ reasoning?: string | undefined;
23234
+ ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
23235
+ say?: "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "reasoning" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
23236
+ images?: string[] | undefined;
23237
+ partial?: boolean | undefined;
23238
+ conversationHistoryIndex?: number | undefined;
23239
+ checkpoint?: Record<string, unknown> | undefined;
23240
+ progressStatus?: {
23241
+ text?: string | undefined;
23242
+ icon?: string | undefined;
23243
+ } | undefined;
23244
+ contextCondense?: {
23245
+ cost: number;
23246
+ prevContextTokens: number;
23247
+ newContextTokens: number;
23248
+ summary: string;
23249
+ } | undefined;
23250
+ isProtected?: boolean | undefined;
23251
+ apiProtocol?: "openai" | "anthropic" | undefined;
23252
+ metadata?: {
23253
+ gpt5?: {
23254
+ previous_response_id?: string | undefined;
23255
+ instructions?: string | undefined;
23256
+ reasoning_summary?: string | undefined;
23257
+ } | undefined;
23258
+ } | undefined;
23259
+ } | undefined;
23260
+ providerProfile?: string | undefined;
23261
+ };
23262
+ timestamp: number;
23263
+ }>, z.ZodObject<{
23264
+ type: z.ZodLiteral<ExtensionBridgeEventName.InstanceRegistered>;
23265
+ instance: z.ZodObject<{
23266
+ instanceId: z.ZodString;
23267
+ userId: z.ZodString;
23268
+ workspacePath: z.ZodString;
23269
+ appProperties: z.ZodObject<{
23270
+ appName: z.ZodString;
23271
+ appVersion: z.ZodString;
23272
+ vscodeVersion: z.ZodString;
23273
+ platform: z.ZodString;
23274
+ editorName: z.ZodString;
23275
+ }, "strip", z.ZodTypeAny, {
23276
+ appName: string;
23277
+ appVersion: string;
23278
+ vscodeVersion: string;
23279
+ platform: string;
23280
+ editorName: string;
23281
+ }, {
23282
+ appName: string;
23283
+ appVersion: string;
23284
+ vscodeVersion: string;
23285
+ platform: string;
23286
+ editorName: string;
23287
+ }>;
23288
+ gitProperties: z.ZodOptional<z.ZodObject<{
23289
+ repositoryUrl: z.ZodOptional<z.ZodString>;
23290
+ repositoryName: z.ZodOptional<z.ZodString>;
23291
+ defaultBranch: z.ZodOptional<z.ZodString>;
23292
+ }, "strip", z.ZodTypeAny, {
23293
+ repositoryUrl?: string | undefined;
23294
+ repositoryName?: string | undefined;
23295
+ defaultBranch?: string | undefined;
23296
+ }, {
23297
+ repositoryUrl?: string | undefined;
23298
+ repositoryName?: string | undefined;
23299
+ defaultBranch?: string | undefined;
23300
+ }>>;
23301
+ lastHeartbeat: z.ZodNumber;
23302
+ task: z.ZodObject<{
23303
+ task: z.ZodOptional<z.ZodString>;
23304
+ images: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
23305
+ taskId: z.ZodString;
23306
+ taskStatus: z.ZodNativeEnum<typeof TaskStatus>;
23307
+ }, "strip", z.ZodTypeAny, {
23308
+ taskId: string;
23309
+ taskStatus: TaskStatus;
23310
+ images?: string[] | undefined;
23311
+ task?: string | undefined;
23312
+ }, {
23313
+ taskId: string;
23314
+ taskStatus: TaskStatus;
23315
+ images?: string[] | undefined;
23316
+ task?: string | undefined;
23317
+ }>;
23318
+ taskAsk: z.ZodOptional<z.ZodObject<{
23319
+ ts: z.ZodNumber;
23320
+ type: z.ZodUnion<[z.ZodLiteral<"ask">, z.ZodLiteral<"say">]>;
23321
+ ask: z.ZodOptional<z.ZodEnum<["followup", "command", "command_output", "completion_result", "tool", "api_req_failed", "resume_task", "resume_completed_task", "mistake_limit_reached", "browser_action_launch", "use_mcp_server", "auto_approval_max_req_reached"]>>;
23322
+ say: z.ZodOptional<z.ZodEnum<["error", "api_req_started", "api_req_finished", "api_req_retried", "api_req_retry_delayed", "api_req_deleted", "text", "reasoning", "completion_result", "user_feedback", "user_feedback_diff", "command_output", "shell_integration_warning", "browser_action", "browser_action_result", "mcp_server_request_started", "mcp_server_response", "subtask_result", "checkpoint_saved", "rooignore_error", "diff_error", "condense_context", "condense_context_error", "codebase_search_result", "user_edit_todos"]>>;
23323
+ text: z.ZodOptional<z.ZodString>;
23324
+ images: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
23325
+ partial: z.ZodOptional<z.ZodBoolean>;
23326
+ reasoning: z.ZodOptional<z.ZodString>;
23327
+ conversationHistoryIndex: z.ZodOptional<z.ZodNumber>;
23328
+ checkpoint: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
23329
+ progressStatus: z.ZodOptional<z.ZodObject<{
23330
+ icon: z.ZodOptional<z.ZodString>;
23331
+ text: z.ZodOptional<z.ZodString>;
23332
+ }, "strip", z.ZodTypeAny, {
23333
+ text?: string | undefined;
23334
+ icon?: string | undefined;
23335
+ }, {
23336
+ text?: string | undefined;
23337
+ icon?: string | undefined;
23338
+ }>>;
23339
+ contextCondense: z.ZodOptional<z.ZodObject<{
23340
+ cost: z.ZodNumber;
23341
+ prevContextTokens: z.ZodNumber;
23342
+ newContextTokens: z.ZodNumber;
23343
+ summary: z.ZodString;
23344
+ }, "strip", z.ZodTypeAny, {
23345
+ cost: number;
23346
+ prevContextTokens: number;
23347
+ newContextTokens: number;
23348
+ summary: string;
23349
+ }, {
23350
+ cost: number;
23351
+ prevContextTokens: number;
23352
+ newContextTokens: number;
23353
+ summary: string;
23354
+ }>>;
23355
+ isProtected: z.ZodOptional<z.ZodBoolean>;
23356
+ apiProtocol: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"anthropic">]>>;
23357
+ metadata: z.ZodOptional<z.ZodObject<{
23358
+ gpt5: z.ZodOptional<z.ZodObject<{
23359
+ previous_response_id: z.ZodOptional<z.ZodString>;
23360
+ instructions: z.ZodOptional<z.ZodString>;
23361
+ reasoning_summary: z.ZodOptional<z.ZodString>;
23362
+ }, "strip", z.ZodTypeAny, {
23363
+ previous_response_id?: string | undefined;
23364
+ instructions?: string | undefined;
23365
+ reasoning_summary?: string | undefined;
23366
+ }, {
23367
+ previous_response_id?: string | undefined;
23368
+ instructions?: string | undefined;
23369
+ reasoning_summary?: string | undefined;
23370
+ }>>;
23371
+ }, "strip", z.ZodTypeAny, {
23372
+ gpt5?: {
23373
+ previous_response_id?: string | undefined;
23374
+ instructions?: string | undefined;
23375
+ reasoning_summary?: string | undefined;
23376
+ } | undefined;
23377
+ }, {
23378
+ gpt5?: {
23379
+ previous_response_id?: string | undefined;
23380
+ instructions?: string | undefined;
23381
+ reasoning_summary?: string | undefined;
23382
+ } | undefined;
23383
+ }>>;
23384
+ }, "strip", z.ZodTypeAny, {
23385
+ type: "ask" | "say";
23386
+ ts: number;
23387
+ text?: string | undefined;
23388
+ reasoning?: string | undefined;
23389
+ ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
23390
+ say?: "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "reasoning" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
23391
+ images?: string[] | undefined;
23392
+ partial?: boolean | undefined;
23393
+ conversationHistoryIndex?: number | undefined;
23394
+ checkpoint?: Record<string, unknown> | undefined;
23395
+ progressStatus?: {
23396
+ text?: string | undefined;
23397
+ icon?: string | undefined;
23398
+ } | undefined;
23399
+ contextCondense?: {
23400
+ cost: number;
23401
+ prevContextTokens: number;
23402
+ newContextTokens: number;
23403
+ summary: string;
23404
+ } | undefined;
23405
+ isProtected?: boolean | undefined;
23406
+ apiProtocol?: "openai" | "anthropic" | undefined;
23407
+ metadata?: {
23408
+ gpt5?: {
23409
+ previous_response_id?: string | undefined;
23410
+ instructions?: string | undefined;
23411
+ reasoning_summary?: string | undefined;
23412
+ } | undefined;
23413
+ } | undefined;
23414
+ }, {
23415
+ type: "ask" | "say";
23416
+ ts: number;
23417
+ text?: string | undefined;
23418
+ reasoning?: string | undefined;
23419
+ ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
23420
+ say?: "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "reasoning" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
23421
+ images?: string[] | undefined;
23422
+ partial?: boolean | undefined;
23423
+ conversationHistoryIndex?: number | undefined;
23424
+ checkpoint?: Record<string, unknown> | undefined;
23425
+ progressStatus?: {
23426
+ text?: string | undefined;
23427
+ icon?: string | undefined;
23428
+ } | undefined;
23429
+ contextCondense?: {
23430
+ cost: number;
23431
+ prevContextTokens: number;
23432
+ newContextTokens: number;
23433
+ summary: string;
23434
+ } | undefined;
23435
+ isProtected?: boolean | undefined;
23436
+ apiProtocol?: "openai" | "anthropic" | undefined;
23437
+ metadata?: {
23438
+ gpt5?: {
23439
+ previous_response_id?: string | undefined;
23440
+ instructions?: string | undefined;
23441
+ reasoning_summary?: string | undefined;
23442
+ } | undefined;
23443
+ } | undefined;
23444
+ }>>;
23445
+ taskHistory: z.ZodArray<z.ZodString, "many">;
23446
+ mode: z.ZodOptional<z.ZodString>;
23447
+ modes: z.ZodOptional<z.ZodArray<z.ZodObject<{
23448
+ slug: z.ZodString;
23449
+ name: z.ZodString;
23450
+ }, "strip", z.ZodTypeAny, {
23451
+ name: string;
23452
+ slug: string;
23453
+ }, {
23454
+ name: string;
23455
+ slug: string;
23456
+ }>, "many">>;
23457
+ providerProfile: z.ZodOptional<z.ZodString>;
23458
+ providerProfiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
23459
+ name: z.ZodString;
23460
+ provider: z.ZodOptional<z.ZodString>;
23461
+ }, "strip", z.ZodTypeAny, {
23462
+ name: string;
23463
+ provider?: string | undefined;
23464
+ }, {
23465
+ name: string;
23466
+ provider?: string | undefined;
23467
+ }>, "many">>;
21891
23468
  }, "strip", z.ZodTypeAny, {
21892
23469
  task: {
21893
23470
  taskId: string;
@@ -21907,6 +23484,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
21907
23484
  editorName: string;
21908
23485
  };
21909
23486
  lastHeartbeat: number;
23487
+ modes?: {
23488
+ name: string;
23489
+ slug: string;
23490
+ }[] | undefined;
23491
+ mode?: string | undefined;
23492
+ providerProfiles?: {
23493
+ name: string;
23494
+ provider?: string | undefined;
23495
+ }[] | undefined;
21910
23496
  gitProperties?: {
21911
23497
  repositoryUrl?: string | undefined;
21912
23498
  repositoryName?: string | undefined;
@@ -21943,6 +23529,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
21943
23529
  } | undefined;
21944
23530
  } | undefined;
21945
23531
  } | undefined;
23532
+ providerProfile?: string | undefined;
21946
23533
  }, {
21947
23534
  task: {
21948
23535
  taskId: string;
@@ -21962,6 +23549,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
21962
23549
  editorName: string;
21963
23550
  };
21964
23551
  lastHeartbeat: number;
23552
+ modes?: {
23553
+ name: string;
23554
+ slug: string;
23555
+ }[] | undefined;
23556
+ mode?: string | undefined;
23557
+ providerProfiles?: {
23558
+ name: string;
23559
+ provider?: string | undefined;
23560
+ }[] | undefined;
21965
23561
  gitProperties?: {
21966
23562
  repositoryUrl?: string | undefined;
21967
23563
  repositoryName?: string | undefined;
@@ -21998,10 +23594,11 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
21998
23594
  } | undefined;
21999
23595
  } | undefined;
22000
23596
  } | undefined;
23597
+ providerProfile?: string | undefined;
22001
23598
  }>;
22002
23599
  timestamp: z.ZodNumber;
22003
23600
  }, "strip", z.ZodTypeAny, {
22004
- type: ExtensionBridgeEventName.TaskResumable;
23601
+ type: ExtensionBridgeEventName.InstanceRegistered;
22005
23602
  instance: {
22006
23603
  task: {
22007
23604
  taskId: string;
@@ -22021,6 +23618,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
22021
23618
  editorName: string;
22022
23619
  };
22023
23620
  lastHeartbeat: number;
23621
+ modes?: {
23622
+ name: string;
23623
+ slug: string;
23624
+ }[] | undefined;
23625
+ mode?: string | undefined;
23626
+ providerProfiles?: {
23627
+ name: string;
23628
+ provider?: string | undefined;
23629
+ }[] | undefined;
22024
23630
  gitProperties?: {
22025
23631
  repositoryUrl?: string | undefined;
22026
23632
  repositoryName?: string | undefined;
@@ -22057,10 +23663,11 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
22057
23663
  } | undefined;
22058
23664
  } | undefined;
22059
23665
  } | undefined;
23666
+ providerProfile?: string | undefined;
22060
23667
  };
22061
23668
  timestamp: number;
22062
23669
  }, {
22063
- type: ExtensionBridgeEventName.TaskResumable;
23670
+ type: ExtensionBridgeEventName.InstanceRegistered;
22064
23671
  instance: {
22065
23672
  task: {
22066
23673
  taskId: string;
@@ -22080,6 +23687,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
22080
23687
  editorName: string;
22081
23688
  };
22082
23689
  lastHeartbeat: number;
23690
+ modes?: {
23691
+ name: string;
23692
+ slug: string;
23693
+ }[] | undefined;
23694
+ mode?: string | undefined;
23695
+ providerProfiles?: {
23696
+ name: string;
23697
+ provider?: string | undefined;
23698
+ }[] | undefined;
22083
23699
  gitProperties?: {
22084
23700
  repositoryUrl?: string | undefined;
22085
23701
  repositoryName?: string | undefined;
@@ -22116,10 +23732,11 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
22116
23732
  } | undefined;
22117
23733
  } | undefined;
22118
23734
  } | undefined;
23735
+ providerProfile?: string | undefined;
22119
23736
  };
22120
23737
  timestamp: number;
22121
23738
  }>, z.ZodObject<{
22122
- type: z.ZodLiteral<ExtensionBridgeEventName.TaskIdle>;
23739
+ type: z.ZodLiteral<ExtensionBridgeEventName.InstanceUnregistered>;
22123
23740
  instance: z.ZodObject<{
22124
23741
  instanceId: z.ZodString;
22125
23742
  userId: z.ZodString;
@@ -22301,6 +23918,28 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
22301
23918
  } | undefined;
22302
23919
  }>>;
22303
23920
  taskHistory: z.ZodArray<z.ZodString, "many">;
23921
+ mode: z.ZodOptional<z.ZodString>;
23922
+ modes: z.ZodOptional<z.ZodArray<z.ZodObject<{
23923
+ slug: z.ZodString;
23924
+ name: z.ZodString;
23925
+ }, "strip", z.ZodTypeAny, {
23926
+ name: string;
23927
+ slug: string;
23928
+ }, {
23929
+ name: string;
23930
+ slug: string;
23931
+ }>, "many">>;
23932
+ providerProfile: z.ZodOptional<z.ZodString>;
23933
+ providerProfiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
23934
+ name: z.ZodString;
23935
+ provider: z.ZodOptional<z.ZodString>;
23936
+ }, "strip", z.ZodTypeAny, {
23937
+ name: string;
23938
+ provider?: string | undefined;
23939
+ }, {
23940
+ name: string;
23941
+ provider?: string | undefined;
23942
+ }>, "many">>;
22304
23943
  }, "strip", z.ZodTypeAny, {
22305
23944
  task: {
22306
23945
  taskId: string;
@@ -22320,6 +23959,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
22320
23959
  editorName: string;
22321
23960
  };
22322
23961
  lastHeartbeat: number;
23962
+ modes?: {
23963
+ name: string;
23964
+ slug: string;
23965
+ }[] | undefined;
23966
+ mode?: string | undefined;
23967
+ providerProfiles?: {
23968
+ name: string;
23969
+ provider?: string | undefined;
23970
+ }[] | undefined;
22323
23971
  gitProperties?: {
22324
23972
  repositoryUrl?: string | undefined;
22325
23973
  repositoryName?: string | undefined;
@@ -22356,6 +24004,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
22356
24004
  } | undefined;
22357
24005
  } | undefined;
22358
24006
  } | undefined;
24007
+ providerProfile?: string | undefined;
22359
24008
  }, {
22360
24009
  task: {
22361
24010
  taskId: string;
@@ -22375,6 +24024,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
22375
24024
  editorName: string;
22376
24025
  };
22377
24026
  lastHeartbeat: number;
24027
+ modes?: {
24028
+ name: string;
24029
+ slug: string;
24030
+ }[] | undefined;
24031
+ mode?: string | undefined;
24032
+ providerProfiles?: {
24033
+ name: string;
24034
+ provider?: string | undefined;
24035
+ }[] | undefined;
22378
24036
  gitProperties?: {
22379
24037
  repositoryUrl?: string | undefined;
22380
24038
  repositoryName?: string | undefined;
@@ -22411,10 +24069,11 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
22411
24069
  } | undefined;
22412
24070
  } | undefined;
22413
24071
  } | undefined;
24072
+ providerProfile?: string | undefined;
22414
24073
  }>;
22415
24074
  timestamp: z.ZodNumber;
22416
24075
  }, "strip", z.ZodTypeAny, {
22417
- type: ExtensionBridgeEventName.TaskIdle;
24076
+ type: ExtensionBridgeEventName.InstanceUnregistered;
22418
24077
  instance: {
22419
24078
  task: {
22420
24079
  taskId: string;
@@ -22434,6 +24093,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
22434
24093
  editorName: string;
22435
24094
  };
22436
24095
  lastHeartbeat: number;
24096
+ modes?: {
24097
+ name: string;
24098
+ slug: string;
24099
+ }[] | undefined;
24100
+ mode?: string | undefined;
24101
+ providerProfiles?: {
24102
+ name: string;
24103
+ provider?: string | undefined;
24104
+ }[] | undefined;
22437
24105
  gitProperties?: {
22438
24106
  repositoryUrl?: string | undefined;
22439
24107
  repositoryName?: string | undefined;
@@ -22470,10 +24138,11 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
22470
24138
  } | undefined;
22471
24139
  } | undefined;
22472
24140
  } | undefined;
24141
+ providerProfile?: string | undefined;
22473
24142
  };
22474
24143
  timestamp: number;
22475
24144
  }, {
22476
- type: ExtensionBridgeEventName.TaskIdle;
24145
+ type: ExtensionBridgeEventName.InstanceUnregistered;
22477
24146
  instance: {
22478
24147
  task: {
22479
24148
  taskId: string;
@@ -22493,6 +24162,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
22493
24162
  editorName: string;
22494
24163
  };
22495
24164
  lastHeartbeat: number;
24165
+ modes?: {
24166
+ name: string;
24167
+ slug: string;
24168
+ }[] | undefined;
24169
+ mode?: string | undefined;
24170
+ providerProfiles?: {
24171
+ name: string;
24172
+ provider?: string | undefined;
24173
+ }[] | undefined;
22496
24174
  gitProperties?: {
22497
24175
  repositoryUrl?: string | undefined;
22498
24176
  repositoryName?: string | undefined;
@@ -22529,10 +24207,11 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
22529
24207
  } | undefined;
22530
24208
  } | undefined;
22531
24209
  } | undefined;
24210
+ providerProfile?: string | undefined;
22532
24211
  };
22533
24212
  timestamp: number;
22534
24213
  }>, z.ZodObject<{
22535
- type: z.ZodLiteral<ExtensionBridgeEventName.InstanceRegistered>;
24214
+ type: z.ZodLiteral<ExtensionBridgeEventName.HeartbeatUpdated>;
22536
24215
  instance: z.ZodObject<{
22537
24216
  instanceId: z.ZodString;
22538
24217
  userId: z.ZodString;
@@ -22714,6 +24393,28 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
22714
24393
  } | undefined;
22715
24394
  }>>;
22716
24395
  taskHistory: z.ZodArray<z.ZodString, "many">;
24396
+ mode: z.ZodOptional<z.ZodString>;
24397
+ modes: z.ZodOptional<z.ZodArray<z.ZodObject<{
24398
+ slug: z.ZodString;
24399
+ name: z.ZodString;
24400
+ }, "strip", z.ZodTypeAny, {
24401
+ name: string;
24402
+ slug: string;
24403
+ }, {
24404
+ name: string;
24405
+ slug: string;
24406
+ }>, "many">>;
24407
+ providerProfile: z.ZodOptional<z.ZodString>;
24408
+ providerProfiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
24409
+ name: z.ZodString;
24410
+ provider: z.ZodOptional<z.ZodString>;
24411
+ }, "strip", z.ZodTypeAny, {
24412
+ name: string;
24413
+ provider?: string | undefined;
24414
+ }, {
24415
+ name: string;
24416
+ provider?: string | undefined;
24417
+ }>, "many">>;
22717
24418
  }, "strip", z.ZodTypeAny, {
22718
24419
  task: {
22719
24420
  taskId: string;
@@ -22733,6 +24434,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
22733
24434
  editorName: string;
22734
24435
  };
22735
24436
  lastHeartbeat: number;
24437
+ modes?: {
24438
+ name: string;
24439
+ slug: string;
24440
+ }[] | undefined;
24441
+ mode?: string | undefined;
24442
+ providerProfiles?: {
24443
+ name: string;
24444
+ provider?: string | undefined;
24445
+ }[] | undefined;
22736
24446
  gitProperties?: {
22737
24447
  repositoryUrl?: string | undefined;
22738
24448
  repositoryName?: string | undefined;
@@ -22769,6 +24479,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
22769
24479
  } | undefined;
22770
24480
  } | undefined;
22771
24481
  } | undefined;
24482
+ providerProfile?: string | undefined;
22772
24483
  }, {
22773
24484
  task: {
22774
24485
  taskId: string;
@@ -22788,6 +24499,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
22788
24499
  editorName: string;
22789
24500
  };
22790
24501
  lastHeartbeat: number;
24502
+ modes?: {
24503
+ name: string;
24504
+ slug: string;
24505
+ }[] | undefined;
24506
+ mode?: string | undefined;
24507
+ providerProfiles?: {
24508
+ name: string;
24509
+ provider?: string | undefined;
24510
+ }[] | undefined;
22791
24511
  gitProperties?: {
22792
24512
  repositoryUrl?: string | undefined;
22793
24513
  repositoryName?: string | undefined;
@@ -22824,10 +24544,11 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
22824
24544
  } | undefined;
22825
24545
  } | undefined;
22826
24546
  } | undefined;
24547
+ providerProfile?: string | undefined;
22827
24548
  }>;
22828
24549
  timestamp: z.ZodNumber;
22829
24550
  }, "strip", z.ZodTypeAny, {
22830
- type: ExtensionBridgeEventName.InstanceRegistered;
24551
+ type: ExtensionBridgeEventName.HeartbeatUpdated;
22831
24552
  instance: {
22832
24553
  task: {
22833
24554
  taskId: string;
@@ -22847,6 +24568,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
22847
24568
  editorName: string;
22848
24569
  };
22849
24570
  lastHeartbeat: number;
24571
+ modes?: {
24572
+ name: string;
24573
+ slug: string;
24574
+ }[] | undefined;
24575
+ mode?: string | undefined;
24576
+ providerProfiles?: {
24577
+ name: string;
24578
+ provider?: string | undefined;
24579
+ }[] | undefined;
22850
24580
  gitProperties?: {
22851
24581
  repositoryUrl?: string | undefined;
22852
24582
  repositoryName?: string | undefined;
@@ -22883,10 +24613,11 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
22883
24613
  } | undefined;
22884
24614
  } | undefined;
22885
24615
  } | undefined;
24616
+ providerProfile?: string | undefined;
22886
24617
  };
22887
24618
  timestamp: number;
22888
24619
  }, {
22889
- type: ExtensionBridgeEventName.InstanceRegistered;
24620
+ type: ExtensionBridgeEventName.HeartbeatUpdated;
22890
24621
  instance: {
22891
24622
  task: {
22892
24623
  taskId: string;
@@ -22906,6 +24637,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
22906
24637
  editorName: string;
22907
24638
  };
22908
24639
  lastHeartbeat: number;
24640
+ modes?: {
24641
+ name: string;
24642
+ slug: string;
24643
+ }[] | undefined;
24644
+ mode?: string | undefined;
24645
+ providerProfiles?: {
24646
+ name: string;
24647
+ provider?: string | undefined;
24648
+ }[] | undefined;
22909
24649
  gitProperties?: {
22910
24650
  repositoryUrl?: string | undefined;
22911
24651
  repositoryName?: string | undefined;
@@ -22942,10 +24682,11 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
22942
24682
  } | undefined;
22943
24683
  } | undefined;
22944
24684
  } | undefined;
24685
+ providerProfile?: string | undefined;
22945
24686
  };
22946
24687
  timestamp: number;
22947
24688
  }>, z.ZodObject<{
22948
- type: z.ZodLiteral<ExtensionBridgeEventName.InstanceUnregistered>;
24689
+ type: z.ZodLiteral<ExtensionBridgeEventName.ModeChanged>;
22949
24690
  instance: z.ZodObject<{
22950
24691
  instanceId: z.ZodString;
22951
24692
  userId: z.ZodString;
@@ -23127,6 +24868,28 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
23127
24868
  } | undefined;
23128
24869
  }>>;
23129
24870
  taskHistory: z.ZodArray<z.ZodString, "many">;
24871
+ mode: z.ZodOptional<z.ZodString>;
24872
+ modes: z.ZodOptional<z.ZodArray<z.ZodObject<{
24873
+ slug: z.ZodString;
24874
+ name: z.ZodString;
24875
+ }, "strip", z.ZodTypeAny, {
24876
+ name: string;
24877
+ slug: string;
24878
+ }, {
24879
+ name: string;
24880
+ slug: string;
24881
+ }>, "many">>;
24882
+ providerProfile: z.ZodOptional<z.ZodString>;
24883
+ providerProfiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
24884
+ name: z.ZodString;
24885
+ provider: z.ZodOptional<z.ZodString>;
24886
+ }, "strip", z.ZodTypeAny, {
24887
+ name: string;
24888
+ provider?: string | undefined;
24889
+ }, {
24890
+ name: string;
24891
+ provider?: string | undefined;
24892
+ }>, "many">>;
23130
24893
  }, "strip", z.ZodTypeAny, {
23131
24894
  task: {
23132
24895
  taskId: string;
@@ -23146,6 +24909,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
23146
24909
  editorName: string;
23147
24910
  };
23148
24911
  lastHeartbeat: number;
24912
+ modes?: {
24913
+ name: string;
24914
+ slug: string;
24915
+ }[] | undefined;
24916
+ mode?: string | undefined;
24917
+ providerProfiles?: {
24918
+ name: string;
24919
+ provider?: string | undefined;
24920
+ }[] | undefined;
23149
24921
  gitProperties?: {
23150
24922
  repositoryUrl?: string | undefined;
23151
24923
  repositoryName?: string | undefined;
@@ -23182,6 +24954,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
23182
24954
  } | undefined;
23183
24955
  } | undefined;
23184
24956
  } | undefined;
24957
+ providerProfile?: string | undefined;
23185
24958
  }, {
23186
24959
  task: {
23187
24960
  taskId: string;
@@ -23201,6 +24974,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
23201
24974
  editorName: string;
23202
24975
  };
23203
24976
  lastHeartbeat: number;
24977
+ modes?: {
24978
+ name: string;
24979
+ slug: string;
24980
+ }[] | undefined;
24981
+ mode?: string | undefined;
24982
+ providerProfiles?: {
24983
+ name: string;
24984
+ provider?: string | undefined;
24985
+ }[] | undefined;
23204
24986
  gitProperties?: {
23205
24987
  repositoryUrl?: string | undefined;
23206
24988
  repositoryName?: string | undefined;
@@ -23237,10 +25019,13 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
23237
25019
  } | undefined;
23238
25020
  } | undefined;
23239
25021
  } | undefined;
25022
+ providerProfile?: string | undefined;
23240
25023
  }>;
25024
+ mode: z.ZodString;
23241
25025
  timestamp: z.ZodNumber;
23242
25026
  }, "strip", z.ZodTypeAny, {
23243
- type: ExtensionBridgeEventName.InstanceUnregistered;
25027
+ type: ExtensionBridgeEventName.ModeChanged;
25028
+ mode: string;
23244
25029
  instance: {
23245
25030
  task: {
23246
25031
  taskId: string;
@@ -23260,6 +25045,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
23260
25045
  editorName: string;
23261
25046
  };
23262
25047
  lastHeartbeat: number;
25048
+ modes?: {
25049
+ name: string;
25050
+ slug: string;
25051
+ }[] | undefined;
25052
+ mode?: string | undefined;
25053
+ providerProfiles?: {
25054
+ name: string;
25055
+ provider?: string | undefined;
25056
+ }[] | undefined;
23263
25057
  gitProperties?: {
23264
25058
  repositoryUrl?: string | undefined;
23265
25059
  repositoryName?: string | undefined;
@@ -23296,10 +25090,12 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
23296
25090
  } | undefined;
23297
25091
  } | undefined;
23298
25092
  } | undefined;
25093
+ providerProfile?: string | undefined;
23299
25094
  };
23300
25095
  timestamp: number;
23301
25096
  }, {
23302
- type: ExtensionBridgeEventName.InstanceUnregistered;
25097
+ type: ExtensionBridgeEventName.ModeChanged;
25098
+ mode: string;
23303
25099
  instance: {
23304
25100
  task: {
23305
25101
  taskId: string;
@@ -23319,6 +25115,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
23319
25115
  editorName: string;
23320
25116
  };
23321
25117
  lastHeartbeat: number;
25118
+ modes?: {
25119
+ name: string;
25120
+ slug: string;
25121
+ }[] | undefined;
25122
+ mode?: string | undefined;
25123
+ providerProfiles?: {
25124
+ name: string;
25125
+ provider?: string | undefined;
25126
+ }[] | undefined;
23322
25127
  gitProperties?: {
23323
25128
  repositoryUrl?: string | undefined;
23324
25129
  repositoryName?: string | undefined;
@@ -23355,10 +25160,11 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
23355
25160
  } | undefined;
23356
25161
  } | undefined;
23357
25162
  } | undefined;
25163
+ providerProfile?: string | undefined;
23358
25164
  };
23359
25165
  timestamp: number;
23360
25166
  }>, z.ZodObject<{
23361
- type: z.ZodLiteral<ExtensionBridgeEventName.HeartbeatUpdated>;
25167
+ type: z.ZodLiteral<ExtensionBridgeEventName.ProviderProfileChanged>;
23362
25168
  instance: z.ZodObject<{
23363
25169
  instanceId: z.ZodString;
23364
25170
  userId: z.ZodString;
@@ -23540,6 +25346,28 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
23540
25346
  } | undefined;
23541
25347
  }>>;
23542
25348
  taskHistory: z.ZodArray<z.ZodString, "many">;
25349
+ mode: z.ZodOptional<z.ZodString>;
25350
+ modes: z.ZodOptional<z.ZodArray<z.ZodObject<{
25351
+ slug: z.ZodString;
25352
+ name: z.ZodString;
25353
+ }, "strip", z.ZodTypeAny, {
25354
+ name: string;
25355
+ slug: string;
25356
+ }, {
25357
+ name: string;
25358
+ slug: string;
25359
+ }>, "many">>;
25360
+ providerProfile: z.ZodOptional<z.ZodString>;
25361
+ providerProfiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
25362
+ name: z.ZodString;
25363
+ provider: z.ZodOptional<z.ZodString>;
25364
+ }, "strip", z.ZodTypeAny, {
25365
+ name: string;
25366
+ provider?: string | undefined;
25367
+ }, {
25368
+ name: string;
25369
+ provider?: string | undefined;
25370
+ }>, "many">>;
23543
25371
  }, "strip", z.ZodTypeAny, {
23544
25372
  task: {
23545
25373
  taskId: string;
@@ -23559,6 +25387,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
23559
25387
  editorName: string;
23560
25388
  };
23561
25389
  lastHeartbeat: number;
25390
+ modes?: {
25391
+ name: string;
25392
+ slug: string;
25393
+ }[] | undefined;
25394
+ mode?: string | undefined;
25395
+ providerProfiles?: {
25396
+ name: string;
25397
+ provider?: string | undefined;
25398
+ }[] | undefined;
23562
25399
  gitProperties?: {
23563
25400
  repositoryUrl?: string | undefined;
23564
25401
  repositoryName?: string | undefined;
@@ -23595,6 +25432,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
23595
25432
  } | undefined;
23596
25433
  } | undefined;
23597
25434
  } | undefined;
25435
+ providerProfile?: string | undefined;
23598
25436
  }, {
23599
25437
  task: {
23600
25438
  taskId: string;
@@ -23614,6 +25452,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
23614
25452
  editorName: string;
23615
25453
  };
23616
25454
  lastHeartbeat: number;
25455
+ modes?: {
25456
+ name: string;
25457
+ slug: string;
25458
+ }[] | undefined;
25459
+ mode?: string | undefined;
25460
+ providerProfiles?: {
25461
+ name: string;
25462
+ provider?: string | undefined;
25463
+ }[] | undefined;
23617
25464
  gitProperties?: {
23618
25465
  repositoryUrl?: string | undefined;
23619
25466
  repositoryName?: string | undefined;
@@ -23650,10 +25497,25 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
23650
25497
  } | undefined;
23651
25498
  } | undefined;
23652
25499
  } | undefined;
25500
+ providerProfile?: string | undefined;
25501
+ }>;
25502
+ providerProfile: z.ZodObject<{
25503
+ name: z.ZodString;
25504
+ provider: z.ZodOptional<z.ZodString>;
25505
+ }, "strip", z.ZodTypeAny, {
25506
+ name: string;
25507
+ provider?: string | undefined;
25508
+ }, {
25509
+ name: string;
25510
+ provider?: string | undefined;
23653
25511
  }>;
23654
25512
  timestamp: z.ZodNumber;
23655
25513
  }, "strip", z.ZodTypeAny, {
23656
- type: ExtensionBridgeEventName.HeartbeatUpdated;
25514
+ type: ExtensionBridgeEventName.ProviderProfileChanged;
25515
+ providerProfile: {
25516
+ name: string;
25517
+ provider?: string | undefined;
25518
+ };
23657
25519
  instance: {
23658
25520
  task: {
23659
25521
  taskId: string;
@@ -23673,6 +25535,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
23673
25535
  editorName: string;
23674
25536
  };
23675
25537
  lastHeartbeat: number;
25538
+ modes?: {
25539
+ name: string;
25540
+ slug: string;
25541
+ }[] | undefined;
25542
+ mode?: string | undefined;
25543
+ providerProfiles?: {
25544
+ name: string;
25545
+ provider?: string | undefined;
25546
+ }[] | undefined;
23676
25547
  gitProperties?: {
23677
25548
  repositoryUrl?: string | undefined;
23678
25549
  repositoryName?: string | undefined;
@@ -23709,10 +25580,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
23709
25580
  } | undefined;
23710
25581
  } | undefined;
23711
25582
  } | undefined;
25583
+ providerProfile?: string | undefined;
23712
25584
  };
23713
25585
  timestamp: number;
23714
25586
  }, {
23715
- type: ExtensionBridgeEventName.HeartbeatUpdated;
25587
+ type: ExtensionBridgeEventName.ProviderProfileChanged;
25588
+ providerProfile: {
25589
+ name: string;
25590
+ provider?: string | undefined;
25591
+ };
23716
25592
  instance: {
23717
25593
  task: {
23718
25594
  taskId: string;
@@ -23732,6 +25608,15 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
23732
25608
  editorName: string;
23733
25609
  };
23734
25610
  lastHeartbeat: number;
25611
+ modes?: {
25612
+ name: string;
25613
+ slug: string;
25614
+ }[] | undefined;
25615
+ mode?: string | undefined;
25616
+ providerProfiles?: {
25617
+ name: string;
25618
+ provider?: string | undefined;
25619
+ }[] | undefined;
23735
25620
  gitProperties?: {
23736
25621
  repositoryUrl?: string | undefined;
23737
25622
  repositoryName?: string | undefined;
@@ -23768,6 +25653,7 @@ declare const extensionBridgeEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
23768
25653
  } | undefined;
23769
25654
  } | undefined;
23770
25655
  } | undefined;
25656
+ providerProfile?: string | undefined;
23771
25657
  };
23772
25658
  timestamp: number;
23773
25659
  }>]>;
@@ -23786,12 +25672,18 @@ declare const extensionBridgeCommandSchema: z.ZodDiscriminatedUnion<"type", [z.Z
23786
25672
  payload: z.ZodObject<{
23787
25673
  text: z.ZodString;
23788
25674
  images: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
25675
+ mode: z.ZodOptional<z.ZodString>;
25676
+ providerProfile: z.ZodOptional<z.ZodString>;
23789
25677
  }, "strip", z.ZodTypeAny, {
23790
25678
  text: string;
23791
25679
  images?: string[] | undefined;
25680
+ mode?: string | undefined;
25681
+ providerProfile?: string | undefined;
23792
25682
  }, {
23793
25683
  text: string;
23794
25684
  images?: string[] | undefined;
25685
+ mode?: string | undefined;
25686
+ providerProfile?: string | undefined;
23795
25687
  }>;
23796
25688
  timestamp: z.ZodNumber;
23797
25689
  }, "strip", z.ZodTypeAny, {
@@ -23799,6 +25691,8 @@ declare const extensionBridgeCommandSchema: z.ZodDiscriminatedUnion<"type", [z.Z
23799
25691
  payload: {
23800
25692
  text: string;
23801
25693
  images?: string[] | undefined;
25694
+ mode?: string | undefined;
25695
+ providerProfile?: string | undefined;
23802
25696
  };
23803
25697
  instanceId: string;
23804
25698
  timestamp: number;
@@ -23807,6 +25701,8 @@ declare const extensionBridgeCommandSchema: z.ZodDiscriminatedUnion<"type", [z.Z
23807
25701
  payload: {
23808
25702
  text: string;
23809
25703
  images?: string[] | undefined;
25704
+ mode?: string | undefined;
25705
+ providerProfile?: string | undefined;
23810
25706
  };
23811
25707
  instanceId: string;
23812
25708
  timestamp: number;
@@ -24108,12 +26004,18 @@ declare const taskBridgeCommandSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
24108
26004
  payload: z.ZodObject<{
24109
26005
  text: z.ZodString;
24110
26006
  images: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
26007
+ mode: z.ZodOptional<z.ZodString>;
26008
+ providerProfile: z.ZodOptional<z.ZodString>;
24111
26009
  }, "strip", z.ZodTypeAny, {
24112
26010
  text: string;
24113
26011
  images?: string[] | undefined;
26012
+ mode?: string | undefined;
26013
+ providerProfile?: string | undefined;
24114
26014
  }, {
24115
26015
  text: string;
24116
26016
  images?: string[] | undefined;
26017
+ mode?: string | undefined;
26018
+ providerProfile?: string | undefined;
24117
26019
  }>;
24118
26020
  timestamp: z.ZodNumber;
24119
26021
  }, "strip", z.ZodTypeAny, {
@@ -24122,6 +26024,8 @@ declare const taskBridgeCommandSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
24122
26024
  payload: {
24123
26025
  text: string;
24124
26026
  images?: string[] | undefined;
26027
+ mode?: string | undefined;
26028
+ providerProfile?: string | undefined;
24125
26029
  };
24126
26030
  timestamp: number;
24127
26031
  }, {
@@ -24130,6 +26034,8 @@ declare const taskBridgeCommandSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
24130
26034
  payload: {
24131
26035
  text: string;
24132
26036
  images?: string[] | undefined;
26037
+ mode?: string | undefined;
26038
+ providerProfile?: string | undefined;
24133
26039
  };
24134
26040
  timestamp: number;
24135
26041
  }>, z.ZodObject<{
@@ -24197,26 +26103,40 @@ type TaskBridgeCommand = z.infer<typeof taskBridgeCommandSchema>;
24197
26103
  /**
24198
26104
  * ExtensionSocketEvents
24199
26105
  */
24200
- declare const ExtensionSocketEvents: {
24201
- readonly CONNECTED: "extension:connected";
24202
- readonly REGISTER: "extension:register";
24203
- readonly UNREGISTER: "extension:unregister";
24204
- readonly HEARTBEAT: "extension:heartbeat";
24205
- readonly EVENT: "extension:event";
24206
- readonly RELAYED_EVENT: "extension:relayed_event";
24207
- readonly COMMAND: "extension:command";
24208
- readonly RELAYED_COMMAND: "extension:relayed_command";
24209
- };
26106
+ declare enum ExtensionSocketEvents {
26107
+ CONNECTED = "extension:connected",
26108
+ REGISTER = "extension:register",
26109
+ UNREGISTER = "extension:unregister",
26110
+ HEARTBEAT = "extension:heartbeat",
26111
+ EVENT = "extension:event",// event from extension instance
26112
+ RELAYED_EVENT = "extension:relayed_event",// relay from server
26113
+ COMMAND = "extension:command",// command from user
26114
+ RELAYED_COMMAND = "extension:relayed_command"
26115
+ }
24210
26116
  /**
24211
26117
  * TaskSocketEvents
24212
26118
  */
24213
- declare const TaskSocketEvents: {
24214
- readonly JOIN: "task:join";
24215
- readonly LEAVE: "task:leave";
24216
- readonly EVENT: "task:event";
24217
- readonly RELAYED_EVENT: "task:relayed_event";
24218
- readonly COMMAND: "task:command";
24219
- readonly RELAYED_COMMAND: "task:relayed_command";
26119
+ declare enum TaskSocketEvents {
26120
+ JOIN = "task:join",
26121
+ LEAVE = "task:leave",
26122
+ EVENT = "task:event",// event from extension task
26123
+ RELAYED_EVENT = "task:relayed_event",// relay from server
26124
+ COMMAND = "task:command",// command from user
26125
+ RELAYED_COMMAND = "task:relayed_command"
26126
+ }
26127
+ /**
26128
+ * `emit()` Response Types
26129
+ */
26130
+ type JoinResponse = {
26131
+ success: boolean;
26132
+ error?: string;
26133
+ taskId?: string;
26134
+ timestamp?: string;
26135
+ };
26136
+ type LeaveResponse = {
26137
+ success: boolean;
26138
+ taskId?: string;
26139
+ timestamp?: string;
24220
26140
  };
24221
26141
 
24222
26142
  /**
@@ -24608,8 +26528,8 @@ declare const modeMarketplaceItemSchema: z.ZodObject<{
24608
26528
  } & {
24609
26529
  content: z.ZodString;
24610
26530
  }, "strip", z.ZodTypeAny, {
24611
- description: string;
24612
26531
  name: string;
26532
+ description: string;
24613
26533
  id: string;
24614
26534
  content: string;
24615
26535
  prerequisites?: string[] | undefined;
@@ -24617,8 +26537,8 @@ declare const modeMarketplaceItemSchema: z.ZodObject<{
24617
26537
  authorUrl?: string | undefined;
24618
26538
  tags?: string[] | undefined;
24619
26539
  }, {
24620
- description: string;
24621
26540
  name: string;
26541
+ description: string;
24622
26542
  id: string;
24623
26543
  content: string;
24624
26544
  prerequisites?: string[] | undefined;
@@ -24695,8 +26615,8 @@ declare const mcpMarketplaceItemSchema: z.ZodObject<{
24695
26615
  optional?: boolean | undefined;
24696
26616
  }>, "many">>;
24697
26617
  }, "strip", z.ZodTypeAny, {
24698
- description: string;
24699
26618
  name: string;
26619
+ description: string;
24700
26620
  id: string;
24701
26621
  url: string;
24702
26622
  content: string | {
@@ -24721,8 +26641,8 @@ declare const mcpMarketplaceItemSchema: z.ZodObject<{
24721
26641
  authorUrl?: string | undefined;
24722
26642
  tags?: string[] | undefined;
24723
26643
  }, {
24724
- description: string;
24725
26644
  name: string;
26645
+ description: string;
24726
26646
  id: string;
24727
26647
  url: string;
24728
26648
  content: string | {
@@ -24765,8 +26685,8 @@ declare const marketplaceItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
24765
26685
  type: z.ZodLiteral<"mode">;
24766
26686
  }, "strip", z.ZodTypeAny, {
24767
26687
  type: "mode";
24768
- description: string;
24769
26688
  name: string;
26689
+ description: string;
24770
26690
  id: string;
24771
26691
  content: string;
24772
26692
  prerequisites?: string[] | undefined;
@@ -24775,8 +26695,8 @@ declare const marketplaceItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
24775
26695
  tags?: string[] | undefined;
24776
26696
  }, {
24777
26697
  type: "mode";
24778
- description: string;
24779
26698
  name: string;
26699
+ description: string;
24780
26700
  id: string;
24781
26701
  content: string;
24782
26702
  prerequisites?: string[] | undefined;
@@ -24854,8 +26774,8 @@ declare const marketplaceItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
24854
26774
  type: z.ZodLiteral<"mcp">;
24855
26775
  }, "strip", z.ZodTypeAny, {
24856
26776
  type: "mcp";
24857
- description: string;
24858
26777
  name: string;
26778
+ description: string;
24859
26779
  id: string;
24860
26780
  url: string;
24861
26781
  content: string | {
@@ -24881,8 +26801,8 @@ declare const marketplaceItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
24881
26801
  tags?: string[] | undefined;
24882
26802
  }, {
24883
26803
  type: "mcp";
24884
- description: string;
24885
26804
  name: string;
26805
+ description: string;
24886
26806
  id: string;
24887
26807
  url: string;
24888
26808
  content: string | {
@@ -25356,29 +27276,6 @@ type ModelInfo = z.infer<typeof modelInfoSchema>;
25356
27276
  */
25357
27277
  declare function shouldUseSingleFileRead(modelId: string): boolean;
25358
27278
 
25359
- /**
25360
- * TodoStatus
25361
- */
25362
- declare const todoStatusSchema: z.ZodEnum<["pending", "in_progress", "completed"]>;
25363
- type TodoStatus = z.infer<typeof todoStatusSchema>;
25364
- /**
25365
- * TodoItem
25366
- */
25367
- declare const todoItemSchema: z.ZodObject<{
25368
- id: z.ZodString;
25369
- content: z.ZodString;
25370
- status: z.ZodEnum<["pending", "in_progress", "completed"]>;
25371
- }, "strip", z.ZodTypeAny, {
25372
- status: "completed" | "pending" | "in_progress";
25373
- id: string;
25374
- content: string;
25375
- }, {
25376
- status: "completed" | "pending" | "in_progress";
25377
- id: string;
25378
- content: string;
25379
- }>;
25380
- type TodoItem = z.infer<typeof todoItemSchema>;
25381
-
25382
27279
  /**
25383
27280
  * CommandExecutionStatus
25384
27281
  */
@@ -28223,4 +30120,4 @@ declare const mainlandZAiModels: {
28223
30120
  };
28224
30121
  declare const ZAI_DEFAULT_TEMPERATURE = 0;
28225
30122
 
28226
- export { ANTHROPIC_DEFAULT_MAX_TOKENS, ANTHROPIC_STYLE_PROVIDERS, AWS_INFERENCE_PROFILE_MAPPING, type Ack, type AnthropicModelId, type AppProperties, type AssertEqual, type AuthService, type AuthServiceEvents, type AuthState, BEDROCK_CLAUDE_SONNET_4_MODEL_ID, BEDROCK_DEFAULT_CONTEXT, BEDROCK_DEFAULT_TEMPERATURE, BEDROCK_MAX_TOKENS, BEDROCK_REGIONS, type BedrockModelId, CLAUDE_CODE_DEFAULT_MAX_OUTPUT_TOKENS, CODEBASE_INDEX_DEFAULTS, type CerebrasModelId, type ChutesModelId, type ClaudeCodeModelId, type ClineAsk, type ClineMessage, type ClineSay, type CloudAppProperties, type CloudOrganization, type CloudOrganizationMembership, type CloudServiceEvents, type CloudUserInfo, type CodeActionId, type CodeActionName, type CodebaseIndexConfig, type CodebaseIndexModels, type CodebaseIndexProvider, type CommandExecutionStatus, type CommandId, ConnectionState, type ContextCondense, type CustomModePrompts, type CustomModesSettings, type CustomSupportPrompts, DEEP_SEEK_DEFAULT_TEMPERATURE, DEFAULT_CONSECUTIVE_MISTAKE_LIMIT, DEFAULT_MODES, DEFAULT_TERMINAL_OUTPUT_CHARACTER_LIMIT, DEFAULT_WRITE_DELAY_MS, DOUBAO_API_BASE_URL, DOUBAO_API_CHAT_PATH, type DeepSeekModelId, type DynamicAppProperties, type DynamicProvider, EVALS_SETTINGS, EVALS_TIMEOUT, type Equals, type ExperimentId, type Experiments, type ExtensionBridgeCommand, ExtensionBridgeCommandName, type ExtensionBridgeEvent, ExtensionBridgeEventName, type ExtensionInstance, ExtensionSocketEvents, type ExtensionTask, type FeatherlessModelId, type FireworksModelId, type FollowUpData, type FollowUpDataType, GLAMA_DEFAULT_TEMPERATURE, GLOBAL_SETTINGS_KEYS, GLOBAL_STATE_KEYS, GPT5_DEFAULT_TEMPERATURE, type GeminiModelId, type GitProperties, type GlobalSettings, type GlobalState, type GroqModelId, type GroupEntry, type GroupOptions, HEARTBEAT_INTERVAL_MS, HUGGINGFACE_API_URL, HUGGINGFACE_CACHE_DURATION, HUGGINGFACE_DEFAULT_CONTEXT_WINDOW, HUGGINGFACE_DEFAULT_MAX_TOKENS, HUGGINGFACE_MAX_TOKENS_FALLBACK, HUGGINGFACE_SLIDER_MIN, HUGGINGFACE_SLIDER_STEP, HUGGINGFACE_TEMPERATURE_MAX_VALUE, type HistoryItem, INSTANCE_TTL_SECONDS, type IOIntelligenceModelId, IO_INTELLIGENCE_CACHE_DURATION, type IdleAsk, type InstallMarketplaceItemOptions, type InteractiveAsk, type InternationalZAiModelId, type IpcClientEvents, type IpcMessage, IpcMessageType, IpcOrigin, type IpcServerEvents, type JWTPayload, type Keys, LITELLM_COMPUTER_USE_MODELS, LMSTUDIO_DEFAULT_TEMPERATURE, type Language, MISTRAL_DEFAULT_TEMPERATURE, MODELS_BY_PROVIDER, MODEL_ID_KEYS, MOONSHOT_DEFAULT_TEMPERATURE, type MainlandZAiModelId, type MarketplaceItem, type MarketplaceItemType, type McpExecutionStatus, type McpInstallationMethod, type McpMarketplaceItem, type McpParameter, type MistralModelId, type ModeConfig, type ModeMarketplaceItem, type ModelInfo, type ModelParameter, type MoonshotModelId, OPENAI_AZURE_AI_INFERENCE_PATH, OPENAI_NATIVE_DEFAULT_TEMPERATURE, OPENROUTER_DEFAULT_PROVIDER_NAME, OPEN_ROUTER_COMPUTER_USE_MODELS, OPEN_ROUTER_PROMPT_CACHING_MODELS, OPEN_ROUTER_REASONING_BUDGET_MODELS, OPEN_ROUTER_REQUIRED_REASONING_BUDGET_MODELS, ORGANIZATION_ALLOW_ALL, ORGANIZATION_DEFAULT, type OpenAiNativeModelId, type OrganizationAllowList, type OrganizationCloudSettings, type OrganizationDefaultSettings, type OrganizationSettings, PROVIDER_SETTINGS_KEYS, type PromptComponent, type ProviderName, type ProviderSettings, type ProviderSettingsEntry, type ProviderSettingsWithId, type QueuedMessage, type QwenCodeModelId, type ReasoningEffort, type ReasoningEffortWithMinimal, type ResumableAsk, type RetryConfig, type RooCodeAPI, type RooCodeAPIEvents, RooCodeEventName, type RooCodeEvents, type RooCodeIpcServer, type RooCodeSettings, type RooCodeTelemetryEvent, type RooModelId, SECRET_STATE_KEYS, type SambaNovaModelId, type SecretState, type SettingsService, type SettingsServiceEvents, type ShareResponse, type ShareVisibility, type StaticAppProperties, type SuggestionItem, type TaskBridgeCommand, TaskBridgeCommandName, type TaskBridgeEvent, TaskBridgeEventName, type TaskCommand, TaskCommandName, type TaskEvent, type TaskEvents, type TaskLike, type TaskMetadata, type TaskProperties, type TaskProviderEvents, type TaskProviderLike, type TaskProviderState, TaskSocketEvents, TaskStatus, type TelemetryClient, type TelemetryEvent, TelemetryEventName, type TelemetryEventSubscription, type TelemetryProperties, type TelemetryPropertiesProvider, type TelemetrySetting, type TerminalActionId, type TerminalActionName, type TerminalActionPromptType, type TodoItem, type TodoStatus, type TokenUsage, type ToolGroup, type ToolName, type ToolProgressStatus, type ToolUsage, type UserFeatures, type UserSettingsConfig, type UserSettingsData, VERCEL_AI_GATEWAY_DEFAULT_TEMPERATURE, VERCEL_AI_GATEWAY_PROMPT_CACHING_MODELS, VERCEL_AI_GATEWAY_VISION_AND_TOOLS_MODELS, VERCEL_AI_GATEWAY_VISION_ONLY_MODELS, VERTEX_REGIONS, type Values, type VerbosityLevel, type VertexModelId, type VscodeLlmModelId, type XAIModelId, ZAI_DEFAULT_TEMPERATURE, ackSchema, anthropicDefaultModelId, anthropicModels, appPropertiesSchema, azureOpenAiDefaultApiVersion, bedrockDefaultModelId, bedrockDefaultPromptRouterModelId, bedrockModels, cerebrasDefaultModelId, cerebrasModels, chutesDefaultModelId, chutesModels, claudeCodeDefaultModelId, claudeCodeModels, clineAskSchema, clineAsks, clineMessageSchema, clineSaySchema, clineSays, cloudAppPropertiesSchema, codeActionIds, codebaseIndexConfigSchema, codebaseIndexModelsSchema, codebaseIndexProviderSchema, commandExecutionStatusSchema, commandIds, contextCondenseSchema, convertModelNameForVertex, customModePromptsSchema, customModesSettingsSchema, customSupportPromptsSchema, deepSeekDefaultModelId, deepSeekModels, discriminatedProviderSettingsWithIdSchema, doubaoDefaultModelId, doubaoDefaultModelInfo, doubaoModels, dynamicAppPropertiesSchema, dynamicProviders, experimentIds, experimentIdsSchema, experimentsSchema, extensionBridgeCommandSchema, extensionBridgeEventSchema, extensionInstanceSchema, featherlessDefaultModelId, featherlessModels, fireworksDefaultModelId, fireworksModels, followUpDataSchema, geminiDefaultModelId, geminiModels, getApiProtocol, getClaudeCodeModelId, getModelId, gitPropertiesSchema, glamaDefaultModelId, glamaDefaultModelInfo, globalSettingsSchema, groqDefaultModelId, groqModels, groupEntrySchema, groupOptionsSchema, historyItemSchema, idleAsks, installMarketplaceItemOptionsSchema, interactiveAsks, internationalZAiDefaultModelId, internationalZAiModels, ioIntelligenceDefaultBaseUrl, ioIntelligenceDefaultModelId, ioIntelligenceModels, ipcMessageSchema, isDynamicProvider, isGlobalStateKey, isIdleAsk, isInteractiveAsk, isLanguage, isModelParameter, isResumableAsk, isSecretStateKey, lMStudioDefaultModelId, lMStudioDefaultModelInfo, languages, languagesSchema, litellmDefaultModelId, litellmDefaultModelInfo, mainlandZAiDefaultModelId, mainlandZAiModels, marketplaceItemSchema, marketplaceItemTypeSchema, mcpExecutionStatusSchema, mcpInstallationMethodSchema, mcpMarketplaceItemSchema, mcpParameterSchema, mistralDefaultModelId, mistralModels, modeConfigSchema, modeMarketplaceItemSchema, modelInfoSchema, modelParameters, modelParametersSchema, moonshotDefaultModelId, moonshotModels, ollamaDefaultModelId, ollamaDefaultModelInfo, openAiModelInfoSaneDefaults, openAiNativeDefaultModelId, openAiNativeModels, openRouterDefaultModelId, openRouterDefaultModelInfo, organizationAllowListSchema, organizationCloudSettingsSchema, organizationDefaultSettingsSchema, organizationSettingsSchema, promptComponentSchema, providerNames, providerNamesSchema, providerSettingsEntrySchema, providerSettingsSchema, providerSettingsSchemaDiscriminated, providerSettingsWithIdSchema, qwenCodeDefaultModelId, qwenCodeModels, reasoningEffortWithMinimalSchema, reasoningEfforts, reasoningEffortsSchema, requestyDefaultModelId, requestyDefaultModelInfo, resumableAsks, rooCodeEventsSchema, rooCodeSettingsSchema, rooCodeTelemetryEventSchema, rooDefaultModelId, rooModels, sambaNovaDefaultModelId, sambaNovaModels, shareResponseSchema, shouldUseSingleFileRead, staticAppPropertiesSchema, suggestionItemSchema, taskBridgeCommandSchema, taskBridgeEventSchema, taskCommandSchema, taskEventSchema, taskMetadataSchema, taskPropertiesSchema, telemetryPropertiesSchema, telemetrySettings, telemetrySettingsSchema, terminalActionIds, todoItemSchema, todoStatusSchema, tokenUsageSchema, toolGroups, toolGroupsSchema, toolNames, toolNamesSchema, toolProgressStatusSchema, toolUsageSchema, unboundDefaultModelId, unboundDefaultModelInfo, userFeaturesSchema, userSettingsConfigSchema, userSettingsDataSchema, verbosityLevels, verbosityLevelsSchema, vercelAiGatewayDefaultModelId, vercelAiGatewayDefaultModelInfo, vertexDefaultModelId, vertexModels, vscodeLlmDefaultModelId, vscodeLlmModels, xaiDefaultModelId, xaiModels };
30123
+ export { ANTHROPIC_DEFAULT_MAX_TOKENS, ANTHROPIC_STYLE_PROVIDERS, AWS_INFERENCE_PROFILE_MAPPING, type Ack, type AnthropicModelId, type AppProperties, type AssertEqual, type AuthService, type AuthServiceEvents, type AuthState, BEDROCK_CLAUDE_SONNET_4_MODEL_ID, BEDROCK_DEFAULT_CONTEXT, BEDROCK_DEFAULT_TEMPERATURE, BEDROCK_MAX_TOKENS, BEDROCK_REGIONS, type BedrockModelId, CLAUDE_CODE_DEFAULT_MAX_OUTPUT_TOKENS, CODEBASE_INDEX_DEFAULTS, type CerebrasModelId, type ChutesModelId, type ClaudeCodeModelId, type ClineAsk, type ClineMessage, type ClineSay, type CloudAppProperties, type CloudOrganization, type CloudOrganizationMembership, type CloudServiceEvents, type CloudUserInfo, type CodeActionId, type CodeActionName, type CodebaseIndexConfig, type CodebaseIndexModels, type CodebaseIndexProvider, type CommandExecutionStatus, type CommandId, ConnectionState, type ContextCondense, type CreateTaskOptions, type CustomModePrompts, type CustomModesSettings, type CustomSupportPrompts, DEEP_SEEK_DEFAULT_TEMPERATURE, DEFAULT_CONSECUTIVE_MISTAKE_LIMIT, DEFAULT_MODES, DEFAULT_TERMINAL_OUTPUT_CHARACTER_LIMIT, DEFAULT_WRITE_DELAY_MS, DOUBAO_API_BASE_URL, DOUBAO_API_CHAT_PATH, type DeepSeekModelId, type DynamicAppProperties, type DynamicProvider, EVALS_SETTINGS, EVALS_TIMEOUT, type Equals, type ExperimentId, type Experiments, type ExtensionBridgeCommand, ExtensionBridgeCommandName, type ExtensionBridgeEvent, ExtensionBridgeEventName, type ExtensionInstance, ExtensionSocketEvents, type ExtensionTask, type FeatherlessModelId, type FireworksModelId, type FollowUpData, type FollowUpDataType, GLAMA_DEFAULT_TEMPERATURE, GLOBAL_SETTINGS_KEYS, GLOBAL_STATE_KEYS, GPT5_DEFAULT_TEMPERATURE, type GeminiModelId, type GitProperties, type GlobalSettings, type GlobalState, type GroqModelId, type GroupEntry, type GroupOptions, HEARTBEAT_INTERVAL_MS, HUGGINGFACE_API_URL, HUGGINGFACE_CACHE_DURATION, HUGGINGFACE_DEFAULT_CONTEXT_WINDOW, HUGGINGFACE_DEFAULT_MAX_TOKENS, HUGGINGFACE_MAX_TOKENS_FALLBACK, HUGGINGFACE_SLIDER_MIN, HUGGINGFACE_SLIDER_STEP, HUGGINGFACE_TEMPERATURE_MAX_VALUE, type HistoryItem, INSTANCE_TTL_SECONDS, type IOIntelligenceModelId, IO_INTELLIGENCE_CACHE_DURATION, type IdleAsk, type InstallMarketplaceItemOptions, type InteractiveAsk, type InternationalZAiModelId, type IpcClientEvents, type IpcMessage, IpcMessageType, IpcOrigin, type IpcServerEvents, type JWTPayload, type JoinResponse, type Keys, LITELLM_COMPUTER_USE_MODELS, LMSTUDIO_DEFAULT_TEMPERATURE, type Language, type LeaveResponse, MISTRAL_DEFAULT_TEMPERATURE, MODELS_BY_PROVIDER, MODEL_ID_KEYS, MOONSHOT_DEFAULT_TEMPERATURE, type MainlandZAiModelId, type MarketplaceItem, type MarketplaceItemType, type McpExecutionStatus, type McpInstallationMethod, type McpMarketplaceItem, type McpParameter, type MistralModelId, type ModeConfig, type ModeMarketplaceItem, type ModelInfo, type ModelParameter, type MoonshotModelId, OPENAI_AZURE_AI_INFERENCE_PATH, OPENAI_NATIVE_DEFAULT_TEMPERATURE, OPENROUTER_DEFAULT_PROVIDER_NAME, OPEN_ROUTER_COMPUTER_USE_MODELS, OPEN_ROUTER_PROMPT_CACHING_MODELS, OPEN_ROUTER_REASONING_BUDGET_MODELS, OPEN_ROUTER_REQUIRED_REASONING_BUDGET_MODELS, ORGANIZATION_ALLOW_ALL, ORGANIZATION_DEFAULT, type OpenAiNativeModelId, type OrganizationAllowList, type OrganizationCloudSettings, type OrganizationDefaultSettings, type OrganizationSettings, PROVIDER_SETTINGS_KEYS, type PromptComponent, type ProviderName, type ProviderSettings, type ProviderSettingsEntry, type ProviderSettingsWithId, type QueuedMessage, type QwenCodeModelId, type ReasoningEffort, type ReasoningEffortWithMinimal, type ResumableAsk, type RetryConfig, type RooCodeAPI, type RooCodeAPIEvents, RooCodeEventName, type RooCodeEvents, type RooCodeIpcServer, type RooCodeSettings, type RooCodeTelemetryEvent, type RooModelId, SECRET_STATE_KEYS, type SambaNovaModelId, type SecretState, type SettingsService, type SettingsServiceEvents, type ShareResponse, type ShareVisibility, type StaticAppProperties, type SuggestionItem, type TaskBridgeCommand, TaskBridgeCommandName, type TaskBridgeEvent, TaskBridgeEventName, type TaskCommand, TaskCommandName, type TaskEvent, type TaskEvents, type TaskLike, type TaskMetadata, type TaskProperties, type TaskProviderEvents, type TaskProviderLike, TaskSocketEvents, TaskStatus, type TelemetryClient, type TelemetryEvent, TelemetryEventName, type TelemetryEventSubscription, type TelemetryProperties, type TelemetryPropertiesProvider, type TelemetrySetting, type TerminalActionId, type TerminalActionName, type TerminalActionPromptType, type TodoItem, type TodoStatus, type TokenUsage, type ToolGroup, type ToolName, type ToolProgressStatus, type ToolUsage, type UserFeatures, type UserSettingsConfig, type UserSettingsData, VERCEL_AI_GATEWAY_DEFAULT_TEMPERATURE, VERCEL_AI_GATEWAY_PROMPT_CACHING_MODELS, VERCEL_AI_GATEWAY_VISION_AND_TOOLS_MODELS, VERCEL_AI_GATEWAY_VISION_ONLY_MODELS, VERTEX_REGIONS, type Values, type VerbosityLevel, type VertexModelId, type VscodeLlmModelId, type XAIModelId, ZAI_DEFAULT_TEMPERATURE, ackSchema, anthropicDefaultModelId, anthropicModels, appPropertiesSchema, azureOpenAiDefaultApiVersion, bedrockDefaultModelId, bedrockDefaultPromptRouterModelId, bedrockModels, cerebrasDefaultModelId, cerebrasModels, chutesDefaultModelId, chutesModels, claudeCodeDefaultModelId, claudeCodeModels, clineAskSchema, clineAsks, clineMessageSchema, clineSaySchema, clineSays, cloudAppPropertiesSchema, codeActionIds, codebaseIndexConfigSchema, codebaseIndexModelsSchema, codebaseIndexProviderSchema, commandExecutionStatusSchema, commandIds, contextCondenseSchema, convertModelNameForVertex, customModePromptsSchema, customModesSettingsSchema, customSupportPromptsSchema, deepSeekDefaultModelId, deepSeekModels, discriminatedProviderSettingsWithIdSchema, doubaoDefaultModelId, doubaoDefaultModelInfo, doubaoModels, dynamicAppPropertiesSchema, dynamicProviders, experimentIds, experimentIdsSchema, experimentsSchema, extensionBridgeCommandSchema, extensionBridgeEventSchema, extensionInstanceSchema, featherlessDefaultModelId, featherlessModels, fireworksDefaultModelId, fireworksModels, followUpDataSchema, geminiDefaultModelId, geminiModels, getApiProtocol, getClaudeCodeModelId, getModelId, gitPropertiesSchema, glamaDefaultModelId, glamaDefaultModelInfo, globalSettingsSchema, groqDefaultModelId, groqModels, groupEntrySchema, groupOptionsSchema, historyItemSchema, idleAsks, installMarketplaceItemOptionsSchema, interactiveAsks, internationalZAiDefaultModelId, internationalZAiModels, ioIntelligenceDefaultBaseUrl, ioIntelligenceDefaultModelId, ioIntelligenceModels, ipcMessageSchema, isDynamicProvider, isGlobalStateKey, isIdleAsk, isInteractiveAsk, isLanguage, isModelParameter, isResumableAsk, isSecretStateKey, lMStudioDefaultModelId, lMStudioDefaultModelInfo, languages, languagesSchema, litellmDefaultModelId, litellmDefaultModelInfo, mainlandZAiDefaultModelId, mainlandZAiModels, marketplaceItemSchema, marketplaceItemTypeSchema, mcpExecutionStatusSchema, mcpInstallationMethodSchema, mcpMarketplaceItemSchema, mcpParameterSchema, mistralDefaultModelId, mistralModels, modeConfigSchema, modeMarketplaceItemSchema, modelInfoSchema, modelParameters, modelParametersSchema, moonshotDefaultModelId, moonshotModels, ollamaDefaultModelId, ollamaDefaultModelInfo, openAiModelInfoSaneDefaults, openAiNativeDefaultModelId, openAiNativeModels, openRouterDefaultModelId, openRouterDefaultModelInfo, organizationAllowListSchema, organizationCloudSettingsSchema, organizationDefaultSettingsSchema, organizationSettingsSchema, promptComponentSchema, providerNames, providerNamesSchema, providerSettingsEntrySchema, providerSettingsSchema, providerSettingsSchemaDiscriminated, providerSettingsWithIdSchema, qwenCodeDefaultModelId, qwenCodeModels, reasoningEffortWithMinimalSchema, reasoningEfforts, reasoningEffortsSchema, requestyDefaultModelId, requestyDefaultModelInfo, resumableAsks, rooCodeEventsSchema, rooCodeSettingsSchema, rooCodeTelemetryEventSchema, rooDefaultModelId, rooModels, sambaNovaDefaultModelId, sambaNovaModels, shareResponseSchema, shouldUseSingleFileRead, staticAppPropertiesSchema, suggestionItemSchema, taskBridgeCommandSchema, taskBridgeEventSchema, taskCommandSchema, taskEventSchema, taskMetadataSchema, taskPropertiesSchema, telemetryPropertiesSchema, telemetrySettings, telemetrySettingsSchema, terminalActionIds, todoItemSchema, todoStatusSchema, tokenUsageSchema, toolGroups, toolGroupsSchema, toolNames, toolNamesSchema, toolProgressStatusSchema, toolUsageSchema, unboundDefaultModelId, unboundDefaultModelInfo, userFeaturesSchema, userSettingsConfigSchema, userSettingsDataSchema, verbosityLevels, verbosityLevelsSchema, vercelAiGatewayDefaultModelId, vercelAiGatewayDefaultModelInfo, vertexDefaultModelId, vertexModels, vscodeLlmDefaultModelId, vscodeLlmModels, xaiDefaultModelId, xaiModels };