@otto-code/protocol 0.6.4 → 0.6.6

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.
@@ -57,11 +57,12 @@ declare const AgentPersonalityVoiceSchema: z.ZodObject<{
57
57
  model: z.ZodString;
58
58
  name: z.ZodString;
59
59
  }, z.core.$loose>;
60
- export declare const CUE_MOMENTS: readonly ["join", "thinking", "done"];
60
+ export declare const CUE_MOMENTS: readonly ["join", "thinking", "waiting", "done"];
61
61
  export type CueMoment = (typeof CUE_MOMENTS)[number];
62
62
  declare const AgentPersonalityVoiceCuesSchema: z.ZodObject<{
63
63
  join: z.ZodOptional<z.ZodArray<z.ZodString>>;
64
64
  thinking: z.ZodOptional<z.ZodArray<z.ZodString>>;
65
+ waiting: z.ZodOptional<z.ZodArray<z.ZodString>>;
65
66
  done: z.ZodOptional<z.ZodArray<z.ZodString>>;
66
67
  }, z.core.$loose>;
67
68
  export type AgentPersonalityVoiceCues = z.infer<typeof AgentPersonalityVoiceCuesSchema>;
@@ -87,6 +88,7 @@ export declare const AgentPersonalitySchema: z.ZodObject<{
87
88
  voiceCues: z.ZodOptional<z.ZodObject<{
88
89
  join: z.ZodOptional<z.ZodArray<z.ZodString>>;
89
90
  thinking: z.ZodOptional<z.ZodArray<z.ZodString>>;
91
+ waiting: z.ZodOptional<z.ZodArray<z.ZodString>>;
90
92
  done: z.ZodOptional<z.ZodArray<z.ZodString>>;
91
93
  }, z.core.$loose>>;
92
94
  }, z.core.$loose>;
@@ -115,6 +117,16 @@ export declare const ModelTierOverrideSchema: z.ZodObject<{
115
117
  tier: z.ZodType<ModelTier, unknown, z.core.$ZodTypeInternals<ModelTier, unknown>>;
116
118
  }, z.core.$loose>;
117
119
  export type ModelTierOverride = z.infer<typeof ModelTierOverrideSchema>;
120
+ export declare const SavedProviderEndpointSchema: z.ZodObject<{
121
+ id: z.ZodString;
122
+ baseUrlKey: z.ZodString;
123
+ apiKeyKey: z.ZodString;
124
+ baseUrl: z.ZodString;
125
+ apiKey: z.ZodDefault<z.ZodString>;
126
+ label: z.ZodOptional<z.ZodString>;
127
+ savedAt: z.ZodOptional<z.ZodNumber>;
128
+ }, z.core.$loose>;
129
+ export type SavedProviderEndpoint = z.infer<typeof SavedProviderEndpointSchema>;
118
130
  export declare const MutableDaemonConfigSchema: z.ZodObject<{
119
131
  mcp: z.ZodObject<{
120
132
  injectIntoAgents: z.ZodBoolean;
@@ -233,6 +245,7 @@ export declare const MutableDaemonConfigSchema: z.ZodObject<{
233
245
  voiceCues: z.ZodOptional<z.ZodObject<{
234
246
  join: z.ZodOptional<z.ZodArray<z.ZodString>>;
235
247
  thinking: z.ZodOptional<z.ZodArray<z.ZodString>>;
248
+ waiting: z.ZodOptional<z.ZodArray<z.ZodString>>;
236
249
  done: z.ZodOptional<z.ZodArray<z.ZodString>>;
237
250
  }, z.core.$loose>>;
238
251
  }, z.core.$loose>>>;
@@ -255,6 +268,15 @@ export declare const MutableDaemonConfigSchema: z.ZodObject<{
255
268
  modelId: z.ZodString;
256
269
  tier: z.ZodType<ModelTier, unknown, z.core.$ZodTypeInternals<ModelTier, unknown>>;
257
270
  }, z.core.$loose>>>;
271
+ savedProviderEndpoints: z.ZodDefault<z.ZodArray<z.ZodObject<{
272
+ id: z.ZodString;
273
+ baseUrlKey: z.ZodString;
274
+ apiKeyKey: z.ZodString;
275
+ baseUrl: z.ZodString;
276
+ apiKey: z.ZodDefault<z.ZodString>;
277
+ label: z.ZodOptional<z.ZodString>;
278
+ savedAt: z.ZodOptional<z.ZodNumber>;
279
+ }, z.core.$loose>>>;
258
280
  }, z.core.$loose>;
259
281
  export declare const MutableDaemonConfigPatchSchema: z.ZodObject<{
260
282
  mcp: z.ZodOptional<z.ZodOptional<z.ZodObject<{
@@ -374,6 +396,7 @@ export declare const MutableDaemonConfigPatchSchema: z.ZodObject<{
374
396
  voiceCues: z.ZodOptional<z.ZodObject<{
375
397
  join: z.ZodOptional<z.ZodArray<z.ZodString>>;
376
398
  thinking: z.ZodOptional<z.ZodArray<z.ZodString>>;
399
+ waiting: z.ZodOptional<z.ZodArray<z.ZodString>>;
377
400
  done: z.ZodOptional<z.ZodArray<z.ZodString>>;
378
401
  }, z.core.$loose>>;
379
402
  }, z.core.$loose>>>;
@@ -396,6 +419,15 @@ export declare const MutableDaemonConfigPatchSchema: z.ZodObject<{
396
419
  modelId: z.ZodString;
397
420
  tier: z.ZodType<ModelTier, unknown, z.core.$ZodTypeInternals<ModelTier, unknown>>;
398
421
  }, z.core.$loose>>>>;
422
+ savedProviderEndpoints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
423
+ id: z.ZodString;
424
+ baseUrlKey: z.ZodString;
425
+ apiKeyKey: z.ZodString;
426
+ baseUrl: z.ZodString;
427
+ apiKey: z.ZodDefault<z.ZodString>;
428
+ label: z.ZodOptional<z.ZodString>;
429
+ savedAt: z.ZodOptional<z.ZodNumber>;
430
+ }, z.core.$loose>>>>;
399
431
  }, z.core.$loose>;
400
432
  export type MutableDaemonConfig = z.infer<typeof MutableDaemonConfigSchema>;
401
433
  export type MutableDaemonConfigPatch = z.infer<typeof MutableDaemonConfigPatchSchema>;
@@ -1440,6 +1472,7 @@ export declare const SetDaemonConfigRequestMessageSchema: z.ZodObject<{
1440
1472
  voiceCues: z.ZodOptional<z.ZodObject<{
1441
1473
  join: z.ZodOptional<z.ZodArray<z.ZodString>>;
1442
1474
  thinking: z.ZodOptional<z.ZodArray<z.ZodString>>;
1475
+ waiting: z.ZodOptional<z.ZodArray<z.ZodString>>;
1443
1476
  done: z.ZodOptional<z.ZodArray<z.ZodString>>;
1444
1477
  }, z.core.$loose>>;
1445
1478
  }, z.core.$loose>>>;
@@ -1462,6 +1495,15 @@ export declare const SetDaemonConfigRequestMessageSchema: z.ZodObject<{
1462
1495
  modelId: z.ZodString;
1463
1496
  tier: z.ZodType<ModelTier, unknown, z.core.$ZodTypeInternals<ModelTier, unknown>>;
1464
1497
  }, z.core.$loose>>>>;
1498
+ savedProviderEndpoints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
1499
+ id: z.ZodString;
1500
+ baseUrlKey: z.ZodString;
1501
+ apiKeyKey: z.ZodString;
1502
+ baseUrl: z.ZodString;
1503
+ apiKey: z.ZodDefault<z.ZodString>;
1504
+ label: z.ZodOptional<z.ZodString>;
1505
+ savedAt: z.ZodOptional<z.ZodNumber>;
1506
+ }, z.core.$loose>>>>;
1465
1507
  }, z.core.$loose>;
1466
1508
  }, z.core.$strip>;
1467
1509
  export declare const SpeechSettingsGetOptionsRequestSchema: z.ZodObject<{
@@ -1489,6 +1531,7 @@ export declare const VisualizerVoiceCuesGenerateRequestSchema: z.ZodObject<{
1489
1531
  done: "done";
1490
1532
  join: "join";
1491
1533
  thinking: "thinking";
1534
+ waiting: "waiting";
1492
1535
  }>>;
1493
1536
  }, z.core.$strip>;
1494
1537
  export declare const AgentPersonalitiesGetStatsRequestSchema: z.ZodObject<{
@@ -3383,6 +3426,39 @@ export declare const CheckoutGitRollbackRequestSchema: z.ZodObject<{
3383
3426
  allowWithRunningAgents: z.ZodOptional<z.ZodBoolean>;
3384
3427
  requestId: z.ZodString;
3385
3428
  }, z.core.$strip>;
3429
+ export declare const CheckoutGitFileHistoryRequestSchema: z.ZodObject<{
3430
+ type: z.ZodLiteral<"checkout.git.get_file_history.request">;
3431
+ cwd: z.ZodString;
3432
+ path: z.ZodString;
3433
+ limit: z.ZodOptional<z.ZodNumber>;
3434
+ offset: z.ZodOptional<z.ZodNumber>;
3435
+ startLine: z.ZodOptional<z.ZodNumber>;
3436
+ endLine: z.ZodOptional<z.ZodNumber>;
3437
+ requestId: z.ZodString;
3438
+ }, z.core.$strip>;
3439
+ export declare const CheckoutGitFileCommitDiffRequestSchema: z.ZodObject<{
3440
+ type: z.ZodLiteral<"checkout.git.get_file_commit_diff.request">;
3441
+ cwd: z.ZodString;
3442
+ path: z.ZodString;
3443
+ sha: z.ZodString;
3444
+ ignoreWhitespace: z.ZodOptional<z.ZodBoolean>;
3445
+ requestId: z.ZodString;
3446
+ }, z.core.$strip>;
3447
+ export declare const CheckoutGitFileBlameRequestSchema: z.ZodObject<{
3448
+ type: z.ZodLiteral<"checkout.git.get_file_blame.request">;
3449
+ cwd: z.ZodString;
3450
+ path: z.ZodString;
3451
+ startLine: z.ZodOptional<z.ZodNumber>;
3452
+ lineCount: z.ZodOptional<z.ZodNumber>;
3453
+ sha: z.ZodOptional<z.ZodString>;
3454
+ requestId: z.ZodString;
3455
+ }, z.core.$strip>;
3456
+ export declare const CheckoutGitFileOriginRequestSchema: z.ZodObject<{
3457
+ type: z.ZodLiteral<"checkout.git.get_file_origin.request">;
3458
+ cwd: z.ZodString;
3459
+ path: z.ZodString;
3460
+ requestId: z.ZodString;
3461
+ }, z.core.$strip>;
3386
3462
  export declare const CheckoutMergeRequestSchema: z.ZodObject<{
3387
3463
  type: z.ZodLiteral<"checkout_merge_request">;
3388
3464
  cwd: z.ZodString;
@@ -4940,6 +5016,7 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
4940
5016
  voiceCues: z.ZodOptional<z.ZodObject<{
4941
5017
  join: z.ZodOptional<z.ZodArray<z.ZodString>>;
4942
5018
  thinking: z.ZodOptional<z.ZodArray<z.ZodString>>;
5019
+ waiting: z.ZodOptional<z.ZodArray<z.ZodString>>;
4943
5020
  done: z.ZodOptional<z.ZodArray<z.ZodString>>;
4944
5021
  }, z.core.$loose>>;
4945
5022
  }, z.core.$loose>>>;
@@ -4962,6 +5039,15 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
4962
5039
  modelId: z.ZodString;
4963
5040
  tier: z.ZodType<ModelTier, unknown, z.core.$ZodTypeInternals<ModelTier, unknown>>;
4964
5041
  }, z.core.$loose>>>>;
5042
+ savedProviderEndpoints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
5043
+ id: z.ZodString;
5044
+ baseUrlKey: z.ZodString;
5045
+ apiKeyKey: z.ZodString;
5046
+ baseUrl: z.ZodString;
5047
+ apiKey: z.ZodDefault<z.ZodString>;
5048
+ label: z.ZodOptional<z.ZodString>;
5049
+ savedAt: z.ZodOptional<z.ZodNumber>;
5050
+ }, z.core.$loose>>>>;
4965
5051
  }, z.core.$loose>;
4966
5052
  }, z.core.$strip>, z.ZodObject<{
4967
5053
  type: z.ZodLiteral<"speech.settings.get_options.request">;
@@ -4986,6 +5072,7 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
4986
5072
  done: "done";
4987
5073
  join: "join";
4988
5074
  thinking: "thinking";
5075
+ waiting: "waiting";
4989
5076
  }>>;
4990
5077
  }, z.core.$strip>, z.ZodObject<{
4991
5078
  type: z.ZodLiteral<"agentPersonalities.get_stats.request">;
@@ -5485,6 +5572,35 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
5485
5572
  cwd: z.ZodString;
5486
5573
  operation: z.ZodString;
5487
5574
  requestId: z.ZodString;
5575
+ }, z.core.$strip>, z.ZodObject<{
5576
+ type: z.ZodLiteral<"checkout.git.get_file_history.request">;
5577
+ cwd: z.ZodString;
5578
+ path: z.ZodString;
5579
+ limit: z.ZodOptional<z.ZodNumber>;
5580
+ offset: z.ZodOptional<z.ZodNumber>;
5581
+ startLine: z.ZodOptional<z.ZodNumber>;
5582
+ endLine: z.ZodOptional<z.ZodNumber>;
5583
+ requestId: z.ZodString;
5584
+ }, z.core.$strip>, z.ZodObject<{
5585
+ type: z.ZodLiteral<"checkout.git.get_file_commit_diff.request">;
5586
+ cwd: z.ZodString;
5587
+ path: z.ZodString;
5588
+ sha: z.ZodString;
5589
+ ignoreWhitespace: z.ZodOptional<z.ZodBoolean>;
5590
+ requestId: z.ZodString;
5591
+ }, z.core.$strip>, z.ZodObject<{
5592
+ type: z.ZodLiteral<"checkout.git.get_file_blame.request">;
5593
+ cwd: z.ZodString;
5594
+ path: z.ZodString;
5595
+ startLine: z.ZodOptional<z.ZodNumber>;
5596
+ lineCount: z.ZodOptional<z.ZodNumber>;
5597
+ sha: z.ZodOptional<z.ZodString>;
5598
+ requestId: z.ZodString;
5599
+ }, z.core.$strip>, z.ZodObject<{
5600
+ type: z.ZodLiteral<"checkout.git.get_file_origin.request">;
5601
+ cwd: z.ZodString;
5602
+ path: z.ZodString;
5603
+ requestId: z.ZodString;
5488
5604
  }, z.core.$strip>, z.ZodObject<{
5489
5605
  type: z.ZodLiteral<"runs.get_snapshot.request">;
5490
5606
  requestId: z.ZodString;
@@ -6607,8 +6723,10 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
6607
6723
  checkoutGitCommitAgent: z.ZodOptional<z.ZodBoolean>;
6608
6724
  checkoutGitRollback: z.ZodOptional<z.ZodBoolean>;
6609
6725
  checkoutGitLog: z.ZodOptional<z.ZodBoolean>;
6726
+ checkoutGitFileHistory: z.ZodOptional<z.ZodBoolean>;
6610
6727
  agentTeams: z.ZodOptional<z.ZodBoolean>;
6611
6728
  modelTierOverrides: z.ZodOptional<z.ZodBoolean>;
6729
+ savedProviderEndpoints: z.ZodOptional<z.ZodBoolean>;
6612
6730
  agentOrchestration: z.ZodOptional<z.ZodBoolean>;
6613
6731
  activityStats: z.ZodOptional<z.ZodBoolean>;
6614
6732
  runsClear: z.ZodOptional<z.ZodBoolean>;
@@ -6681,8 +6799,10 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
6681
6799
  checkoutGitCommitAgent?: boolean | undefined;
6682
6800
  checkoutGitRollback?: boolean | undefined;
6683
6801
  checkoutGitLog?: boolean | undefined;
6802
+ checkoutGitFileHistory?: boolean | undefined;
6684
6803
  agentTeams?: boolean | undefined;
6685
6804
  modelTierOverrides?: boolean | undefined;
6805
+ savedProviderEndpoints?: boolean | undefined;
6686
6806
  agentOrchestration?: boolean | undefined;
6687
6807
  activityStats?: boolean | undefined;
6688
6808
  runsClear?: boolean | undefined;
@@ -6756,8 +6876,10 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
6756
6876
  checkoutGitCommitAgent?: boolean | undefined;
6757
6877
  checkoutGitRollback?: boolean | undefined;
6758
6878
  checkoutGitLog?: boolean | undefined;
6879
+ checkoutGitFileHistory?: boolean | undefined;
6759
6880
  agentTeams?: boolean | undefined;
6760
6881
  modelTierOverrides?: boolean | undefined;
6882
+ savedProviderEndpoints?: boolean | undefined;
6761
6883
  agentOrchestration?: boolean | undefined;
6762
6884
  activityStats?: boolean | undefined;
6763
6885
  runsClear?: boolean | undefined;
@@ -7098,6 +7220,7 @@ export declare const DaemonConfigChangedStatusPayloadSchema: z.ZodObject<{
7098
7220
  voiceCues: z.ZodOptional<z.ZodObject<{
7099
7221
  join: z.ZodOptional<z.ZodArray<z.ZodString>>;
7100
7222
  thinking: z.ZodOptional<z.ZodArray<z.ZodString>>;
7223
+ waiting: z.ZodOptional<z.ZodArray<z.ZodString>>;
7101
7224
  done: z.ZodOptional<z.ZodArray<z.ZodString>>;
7102
7225
  }, z.core.$loose>>;
7103
7226
  }, z.core.$loose>>>;
@@ -7120,6 +7243,15 @@ export declare const DaemonConfigChangedStatusPayloadSchema: z.ZodObject<{
7120
7243
  modelId: z.ZodString;
7121
7244
  tier: z.ZodType<ModelTier, unknown, z.core.$ZodTypeInternals<ModelTier, unknown>>;
7122
7245
  }, z.core.$loose>>>;
7246
+ savedProviderEndpoints: z.ZodDefault<z.ZodArray<z.ZodObject<{
7247
+ id: z.ZodString;
7248
+ baseUrlKey: z.ZodString;
7249
+ apiKeyKey: z.ZodString;
7250
+ baseUrl: z.ZodString;
7251
+ apiKey: z.ZodDefault<z.ZodString>;
7252
+ label: z.ZodOptional<z.ZodString>;
7253
+ savedAt: z.ZodOptional<z.ZodNumber>;
7254
+ }, z.core.$loose>>>;
7123
7255
  }, z.core.$loose>;
7124
7256
  }, z.core.$loose>;
7125
7257
  export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
@@ -7416,6 +7548,7 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<[z.ZodObj
7416
7548
  voiceCues: z.ZodOptional<z.ZodObject<{
7417
7549
  join: z.ZodOptional<z.ZodArray<z.ZodString>>;
7418
7550
  thinking: z.ZodOptional<z.ZodArray<z.ZodString>>;
7551
+ waiting: z.ZodOptional<z.ZodArray<z.ZodString>>;
7419
7552
  done: z.ZodOptional<z.ZodArray<z.ZodString>>;
7420
7553
  }, z.core.$loose>>;
7421
7554
  }, z.core.$loose>>>;
@@ -7438,6 +7571,15 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<[z.ZodObj
7438
7571
  modelId: z.ZodString;
7439
7572
  tier: z.ZodType<ModelTier, unknown, z.core.$ZodTypeInternals<ModelTier, unknown>>;
7440
7573
  }, z.core.$loose>>>;
7574
+ savedProviderEndpoints: z.ZodDefault<z.ZodArray<z.ZodObject<{
7575
+ id: z.ZodString;
7576
+ baseUrlKey: z.ZodString;
7577
+ apiKeyKey: z.ZodString;
7578
+ baseUrl: z.ZodString;
7579
+ apiKey: z.ZodDefault<z.ZodString>;
7580
+ label: z.ZodOptional<z.ZodString>;
7581
+ savedAt: z.ZodOptional<z.ZodNumber>;
7582
+ }, z.core.$loose>>>;
7441
7583
  }, z.core.$loose>;
7442
7584
  }, z.core.$loose>], "status">;
7443
7585
  export type KnownStatusPayload = z.infer<typeof KnownStatusPayloadSchema>;
@@ -11493,6 +11635,7 @@ export declare const GetDaemonConfigResponseMessageSchema: z.ZodObject<{
11493
11635
  voiceCues: z.ZodOptional<z.ZodObject<{
11494
11636
  join: z.ZodOptional<z.ZodArray<z.ZodString>>;
11495
11637
  thinking: z.ZodOptional<z.ZodArray<z.ZodString>>;
11638
+ waiting: z.ZodOptional<z.ZodArray<z.ZodString>>;
11496
11639
  done: z.ZodOptional<z.ZodArray<z.ZodString>>;
11497
11640
  }, z.core.$loose>>;
11498
11641
  }, z.core.$loose>>>;
@@ -11515,6 +11658,15 @@ export declare const GetDaemonConfigResponseMessageSchema: z.ZodObject<{
11515
11658
  modelId: z.ZodString;
11516
11659
  tier: z.ZodType<ModelTier, unknown, z.core.$ZodTypeInternals<ModelTier, unknown>>;
11517
11660
  }, z.core.$loose>>>;
11661
+ savedProviderEndpoints: z.ZodDefault<z.ZodArray<z.ZodObject<{
11662
+ id: z.ZodString;
11663
+ baseUrlKey: z.ZodString;
11664
+ apiKeyKey: z.ZodString;
11665
+ baseUrl: z.ZodString;
11666
+ apiKey: z.ZodDefault<z.ZodString>;
11667
+ label: z.ZodOptional<z.ZodString>;
11668
+ savedAt: z.ZodOptional<z.ZodNumber>;
11669
+ }, z.core.$loose>>>;
11518
11670
  }, z.core.$loose>;
11519
11671
  }, z.core.$loose>;
11520
11672
  }, z.core.$strip>;
@@ -11574,6 +11726,7 @@ export declare const VisualizerVoiceCuesGenerateResponseSchema: z.ZodObject<{
11574
11726
  cues: z.ZodOptional<z.ZodObject<{
11575
11727
  join: z.ZodOptional<z.ZodArray<z.ZodString>>;
11576
11728
  thinking: z.ZodOptional<z.ZodArray<z.ZodString>>;
11729
+ waiting: z.ZodOptional<z.ZodArray<z.ZodString>>;
11577
11730
  done: z.ZodOptional<z.ZodArray<z.ZodString>>;
11578
11731
  }, z.core.$loose>>;
11579
11732
  error: z.ZodOptional<z.ZodString>;
@@ -11749,6 +11902,7 @@ export declare const SetDaemonConfigResponseMessageSchema: z.ZodObject<{
11749
11902
  voiceCues: z.ZodOptional<z.ZodObject<{
11750
11903
  join: z.ZodOptional<z.ZodArray<z.ZodString>>;
11751
11904
  thinking: z.ZodOptional<z.ZodArray<z.ZodString>>;
11905
+ waiting: z.ZodOptional<z.ZodArray<z.ZodString>>;
11752
11906
  done: z.ZodOptional<z.ZodArray<z.ZodString>>;
11753
11907
  }, z.core.$loose>>;
11754
11908
  }, z.core.$loose>>>;
@@ -11771,6 +11925,15 @@ export declare const SetDaemonConfigResponseMessageSchema: z.ZodObject<{
11771
11925
  modelId: z.ZodString;
11772
11926
  tier: z.ZodType<ModelTier, unknown, z.core.$ZodTypeInternals<ModelTier, unknown>>;
11773
11927
  }, z.core.$loose>>>;
11928
+ savedProviderEndpoints: z.ZodDefault<z.ZodArray<z.ZodObject<{
11929
+ id: z.ZodString;
11930
+ baseUrlKey: z.ZodString;
11931
+ apiKeyKey: z.ZodString;
11932
+ baseUrl: z.ZodString;
11933
+ apiKey: z.ZodDefault<z.ZodString>;
11934
+ label: z.ZodOptional<z.ZodString>;
11935
+ savedAt: z.ZodOptional<z.ZodNumber>;
11936
+ }, z.core.$loose>>>;
11774
11937
  }, z.core.$loose>;
11775
11938
  }, z.core.$loose>;
11776
11939
  }, z.core.$strip>;
@@ -12481,6 +12644,199 @@ export declare const CheckoutGitRollbackResponseSchema: z.ZodObject<{
12481
12644
  requestId: z.ZodString;
12482
12645
  }, z.core.$strip>;
12483
12646
  }, z.core.$strip>;
12647
+ export declare const CheckoutGitFileErrorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
12648
+ kind: z.ZodLiteral<"not_git_repo">;
12649
+ }, z.core.$strip>, z.ZodObject<{
12650
+ kind: z.ZodLiteral<"invalid_path">;
12651
+ detail: z.ZodString;
12652
+ }, z.core.$strip>, z.ZodObject<{
12653
+ kind: z.ZodLiteral<"git_failed">;
12654
+ detail: z.ZodString;
12655
+ }, z.core.$strip>], "kind">;
12656
+ export declare const GitFileHistoryEntrySchema: z.ZodObject<{
12657
+ sha: z.ZodString;
12658
+ shortSha: z.ZodString;
12659
+ subject: z.ZodString;
12660
+ body: z.ZodString;
12661
+ authorName: z.ZodString;
12662
+ authorEmail: z.ZodString;
12663
+ authoredAt: z.ZodNumber;
12664
+ committerName: z.ZodString;
12665
+ committedAt: z.ZodNumber;
12666
+ path: z.ZodString;
12667
+ previousPath: z.ZodOptional<z.ZodString>;
12668
+ changeKind: z.ZodOptional<z.ZodString>;
12669
+ isMerge: z.ZodBoolean;
12670
+ parentShas: z.ZodOptional<z.ZodArray<z.ZodString>>;
12671
+ }, z.core.$strip>;
12672
+ export declare const CheckoutGitFileHistoryResponseSchema: z.ZodObject<{
12673
+ type: z.ZodLiteral<"checkout.git.get_file_history.response">;
12674
+ payload: z.ZodObject<{
12675
+ cwd: z.ZodString;
12676
+ path: z.ZodString;
12677
+ entries: z.ZodArray<z.ZodObject<{
12678
+ sha: z.ZodString;
12679
+ shortSha: z.ZodString;
12680
+ subject: z.ZodString;
12681
+ body: z.ZodString;
12682
+ authorName: z.ZodString;
12683
+ authorEmail: z.ZodString;
12684
+ authoredAt: z.ZodNumber;
12685
+ committerName: z.ZodString;
12686
+ committedAt: z.ZodNumber;
12687
+ path: z.ZodString;
12688
+ previousPath: z.ZodOptional<z.ZodString>;
12689
+ changeKind: z.ZodOptional<z.ZodString>;
12690
+ isMerge: z.ZodBoolean;
12691
+ parentShas: z.ZodOptional<z.ZodArray<z.ZodString>>;
12692
+ }, z.core.$strip>>;
12693
+ hasMore: z.ZodBoolean;
12694
+ error: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
12695
+ kind: z.ZodLiteral<"not_git_repo">;
12696
+ }, z.core.$strip>, z.ZodObject<{
12697
+ kind: z.ZodLiteral<"invalid_path">;
12698
+ detail: z.ZodString;
12699
+ }, z.core.$strip>, z.ZodObject<{
12700
+ kind: z.ZodLiteral<"git_failed">;
12701
+ detail: z.ZodString;
12702
+ }, z.core.$strip>], "kind">>;
12703
+ requestId: z.ZodString;
12704
+ }, z.core.$strip>;
12705
+ }, z.core.$strip>;
12706
+ export declare const CheckoutGitFileCommitDiffResponseSchema: z.ZodObject<{
12707
+ type: z.ZodLiteral<"checkout.git.get_file_commit_diff.response">;
12708
+ payload: z.ZodObject<{
12709
+ cwd: z.ZodString;
12710
+ path: z.ZodString;
12711
+ sha: z.ZodString;
12712
+ diff: z.ZodString;
12713
+ structured: z.ZodOptional<z.ZodArray<z.ZodObject<{
12714
+ path: z.ZodString;
12715
+ isNew: z.ZodBoolean;
12716
+ isDeleted: z.ZodBoolean;
12717
+ additions: z.ZodNumber;
12718
+ deletions: z.ZodNumber;
12719
+ hunks: z.ZodArray<z.ZodObject<{
12720
+ oldStart: z.ZodNumber;
12721
+ oldCount: z.ZodNumber;
12722
+ newStart: z.ZodNumber;
12723
+ newCount: z.ZodNumber;
12724
+ lines: z.ZodArray<z.ZodObject<{
12725
+ type: z.ZodEnum<{
12726
+ context: "context";
12727
+ add: "add";
12728
+ remove: "remove";
12729
+ header: "header";
12730
+ }>;
12731
+ content: z.ZodString;
12732
+ tokens: z.ZodOptional<z.ZodArray<z.ZodObject<{
12733
+ text: z.ZodString;
12734
+ style: z.ZodNullable<z.ZodString>;
12735
+ }, z.core.$strip>>>;
12736
+ }, z.core.$strip>>;
12737
+ }, z.core.$strip>>;
12738
+ status: z.ZodOptional<z.ZodEnum<{
12739
+ ok: "ok";
12740
+ too_large: "too_large";
12741
+ binary: "binary";
12742
+ }>>;
12743
+ }, z.core.$strip>>>;
12744
+ previousSha: z.ZodOptional<z.ZodString>;
12745
+ previousPath: z.ZodOptional<z.ZodString>;
12746
+ truncated: z.ZodBoolean;
12747
+ error: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
12748
+ kind: z.ZodLiteral<"not_git_repo">;
12749
+ }, z.core.$strip>, z.ZodObject<{
12750
+ kind: z.ZodLiteral<"invalid_path">;
12751
+ detail: z.ZodString;
12752
+ }, z.core.$strip>, z.ZodObject<{
12753
+ kind: z.ZodLiteral<"git_failed">;
12754
+ detail: z.ZodString;
12755
+ }, z.core.$strip>], "kind">>;
12756
+ requestId: z.ZodString;
12757
+ }, z.core.$strip>;
12758
+ }, z.core.$strip>;
12759
+ export declare const GitBlameLineSchema: z.ZodObject<{
12760
+ line: z.ZodNumber;
12761
+ sha: z.ZodString;
12762
+ originalLine: z.ZodNumber;
12763
+ }, z.core.$strip>;
12764
+ export declare const GitBlameCommitSchema: z.ZodObject<{
12765
+ sha: z.ZodString;
12766
+ shortSha: z.ZodString;
12767
+ summary: z.ZodString;
12768
+ authorName: z.ZodString;
12769
+ authorEmail: z.ZodString;
12770
+ authoredAt: z.ZodNumber;
12771
+ path: z.ZodOptional<z.ZodString>;
12772
+ }, z.core.$strip>;
12773
+ export declare const CheckoutGitFileBlameResponseSchema: z.ZodObject<{
12774
+ type: z.ZodLiteral<"checkout.git.get_file_blame.response">;
12775
+ payload: z.ZodObject<{
12776
+ cwd: z.ZodString;
12777
+ path: z.ZodString;
12778
+ lines: z.ZodArray<z.ZodObject<{
12779
+ line: z.ZodNumber;
12780
+ sha: z.ZodString;
12781
+ originalLine: z.ZodNumber;
12782
+ }, z.core.$strip>>;
12783
+ commits: z.ZodArray<z.ZodObject<{
12784
+ sha: z.ZodString;
12785
+ shortSha: z.ZodString;
12786
+ summary: z.ZodString;
12787
+ authorName: z.ZodString;
12788
+ authorEmail: z.ZodString;
12789
+ authoredAt: z.ZodNumber;
12790
+ path: z.ZodOptional<z.ZodString>;
12791
+ }, z.core.$strip>>;
12792
+ startLine: z.ZodNumber;
12793
+ endLine: z.ZodNumber;
12794
+ reachedEndOfFile: z.ZodBoolean;
12795
+ error: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
12796
+ kind: z.ZodLiteral<"not_git_repo">;
12797
+ }, z.core.$strip>, z.ZodObject<{
12798
+ kind: z.ZodLiteral<"invalid_path">;
12799
+ detail: z.ZodString;
12800
+ }, z.core.$strip>, z.ZodObject<{
12801
+ kind: z.ZodLiteral<"git_failed">;
12802
+ detail: z.ZodString;
12803
+ }, z.core.$strip>], "kind">>;
12804
+ requestId: z.ZodString;
12805
+ }, z.core.$strip>;
12806
+ }, z.core.$strip>;
12807
+ export declare const CheckoutGitFileOriginResponseSchema: z.ZodObject<{
12808
+ type: z.ZodLiteral<"checkout.git.get_file_origin.response">;
12809
+ payload: z.ZodObject<{
12810
+ cwd: z.ZodString;
12811
+ path: z.ZodString;
12812
+ entry: z.ZodNullable<z.ZodObject<{
12813
+ sha: z.ZodString;
12814
+ shortSha: z.ZodString;
12815
+ subject: z.ZodString;
12816
+ body: z.ZodString;
12817
+ authorName: z.ZodString;
12818
+ authorEmail: z.ZodString;
12819
+ authoredAt: z.ZodNumber;
12820
+ committerName: z.ZodString;
12821
+ committedAt: z.ZodNumber;
12822
+ path: z.ZodString;
12823
+ previousPath: z.ZodOptional<z.ZodString>;
12824
+ changeKind: z.ZodOptional<z.ZodString>;
12825
+ isMerge: z.ZodBoolean;
12826
+ parentShas: z.ZodOptional<z.ZodArray<z.ZodString>>;
12827
+ }, z.core.$strip>>;
12828
+ error: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
12829
+ kind: z.ZodLiteral<"not_git_repo">;
12830
+ }, z.core.$strip>, z.ZodObject<{
12831
+ kind: z.ZodLiteral<"invalid_path">;
12832
+ detail: z.ZodString;
12833
+ }, z.core.$strip>, z.ZodObject<{
12834
+ kind: z.ZodLiteral<"git_failed">;
12835
+ detail: z.ZodString;
12836
+ }, z.core.$strip>], "kind">>;
12837
+ requestId: z.ZodString;
12838
+ }, z.core.$strip>;
12839
+ }, z.core.$strip>;
12484
12840
  export declare const CheckoutMergeResponseSchema: z.ZodObject<{
12485
12841
  type: z.ZodLiteral<"checkout_merge_response">;
12486
12842
  payload: z.ZodObject<{
@@ -18041,6 +18397,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
18041
18397
  voiceCues: z.ZodOptional<z.ZodObject<{
18042
18398
  join: z.ZodOptional<z.ZodArray<z.ZodString>>;
18043
18399
  thinking: z.ZodOptional<z.ZodArray<z.ZodString>>;
18400
+ waiting: z.ZodOptional<z.ZodArray<z.ZodString>>;
18044
18401
  done: z.ZodOptional<z.ZodArray<z.ZodString>>;
18045
18402
  }, z.core.$loose>>;
18046
18403
  }, z.core.$loose>>>;
@@ -18063,6 +18420,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
18063
18420
  modelId: z.ZodString;
18064
18421
  tier: z.ZodType<ModelTier, unknown, z.core.$ZodTypeInternals<ModelTier, unknown>>;
18065
18422
  }, z.core.$loose>>>;
18423
+ savedProviderEndpoints: z.ZodDefault<z.ZodArray<z.ZodObject<{
18424
+ id: z.ZodString;
18425
+ baseUrlKey: z.ZodString;
18426
+ apiKeyKey: z.ZodString;
18427
+ baseUrl: z.ZodString;
18428
+ apiKey: z.ZodDefault<z.ZodString>;
18429
+ label: z.ZodOptional<z.ZodString>;
18430
+ savedAt: z.ZodOptional<z.ZodNumber>;
18431
+ }, z.core.$loose>>>;
18066
18432
  }, z.core.$loose>;
18067
18433
  }, z.core.$loose>;
18068
18434
  }, z.core.$strip>, z.ZodObject<{
@@ -18187,6 +18553,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
18187
18553
  voiceCues: z.ZodOptional<z.ZodObject<{
18188
18554
  join: z.ZodOptional<z.ZodArray<z.ZodString>>;
18189
18555
  thinking: z.ZodOptional<z.ZodArray<z.ZodString>>;
18556
+ waiting: z.ZodOptional<z.ZodArray<z.ZodString>>;
18190
18557
  done: z.ZodOptional<z.ZodArray<z.ZodString>>;
18191
18558
  }, z.core.$loose>>;
18192
18559
  }, z.core.$loose>>>;
@@ -18209,6 +18576,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
18209
18576
  modelId: z.ZodString;
18210
18577
  tier: z.ZodType<ModelTier, unknown, z.core.$ZodTypeInternals<ModelTier, unknown>>;
18211
18578
  }, z.core.$loose>>>;
18579
+ savedProviderEndpoints: z.ZodDefault<z.ZodArray<z.ZodObject<{
18580
+ id: z.ZodString;
18581
+ baseUrlKey: z.ZodString;
18582
+ apiKeyKey: z.ZodString;
18583
+ baseUrl: z.ZodString;
18584
+ apiKey: z.ZodDefault<z.ZodString>;
18585
+ label: z.ZodOptional<z.ZodString>;
18586
+ savedAt: z.ZodOptional<z.ZodNumber>;
18587
+ }, z.core.$loose>>>;
18212
18588
  }, z.core.$loose>;
18213
18589
  }, z.core.$loose>;
18214
18590
  }, z.core.$strip>, z.ZodObject<{
@@ -18263,6 +18639,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
18263
18639
  cues: z.ZodOptional<z.ZodObject<{
18264
18640
  join: z.ZodOptional<z.ZodArray<z.ZodString>>;
18265
18641
  thinking: z.ZodOptional<z.ZodArray<z.ZodString>>;
18642
+ waiting: z.ZodOptional<z.ZodArray<z.ZodString>>;
18266
18643
  done: z.ZodOptional<z.ZodArray<z.ZodString>>;
18267
18644
  }, z.core.$loose>>;
18268
18645
  error: z.ZodOptional<z.ZodString>;
@@ -19328,6 +19705,156 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
19328
19705
  text: z.ZodString;
19329
19706
  }, z.core.$strip>>;
19330
19707
  }, z.core.$strip>;
19708
+ }, z.core.$strip>, z.ZodObject<{
19709
+ type: z.ZodLiteral<"checkout.git.get_file_history.response">;
19710
+ payload: z.ZodObject<{
19711
+ cwd: z.ZodString;
19712
+ path: z.ZodString;
19713
+ entries: z.ZodArray<z.ZodObject<{
19714
+ sha: z.ZodString;
19715
+ shortSha: z.ZodString;
19716
+ subject: z.ZodString;
19717
+ body: z.ZodString;
19718
+ authorName: z.ZodString;
19719
+ authorEmail: z.ZodString;
19720
+ authoredAt: z.ZodNumber;
19721
+ committerName: z.ZodString;
19722
+ committedAt: z.ZodNumber;
19723
+ path: z.ZodString;
19724
+ previousPath: z.ZodOptional<z.ZodString>;
19725
+ changeKind: z.ZodOptional<z.ZodString>;
19726
+ isMerge: z.ZodBoolean;
19727
+ parentShas: z.ZodOptional<z.ZodArray<z.ZodString>>;
19728
+ }, z.core.$strip>>;
19729
+ hasMore: z.ZodBoolean;
19730
+ error: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
19731
+ kind: z.ZodLiteral<"not_git_repo">;
19732
+ }, z.core.$strip>, z.ZodObject<{
19733
+ kind: z.ZodLiteral<"invalid_path">;
19734
+ detail: z.ZodString;
19735
+ }, z.core.$strip>, z.ZodObject<{
19736
+ kind: z.ZodLiteral<"git_failed">;
19737
+ detail: z.ZodString;
19738
+ }, z.core.$strip>], "kind">>;
19739
+ requestId: z.ZodString;
19740
+ }, z.core.$strip>;
19741
+ }, z.core.$strip>, z.ZodObject<{
19742
+ type: z.ZodLiteral<"checkout.git.get_file_commit_diff.response">;
19743
+ payload: z.ZodObject<{
19744
+ cwd: z.ZodString;
19745
+ path: z.ZodString;
19746
+ sha: z.ZodString;
19747
+ diff: z.ZodString;
19748
+ structured: z.ZodOptional<z.ZodArray<z.ZodObject<{
19749
+ path: z.ZodString;
19750
+ isNew: z.ZodBoolean;
19751
+ isDeleted: z.ZodBoolean;
19752
+ additions: z.ZodNumber;
19753
+ deletions: z.ZodNumber;
19754
+ hunks: z.ZodArray<z.ZodObject<{
19755
+ oldStart: z.ZodNumber;
19756
+ oldCount: z.ZodNumber;
19757
+ newStart: z.ZodNumber;
19758
+ newCount: z.ZodNumber;
19759
+ lines: z.ZodArray<z.ZodObject<{
19760
+ type: z.ZodEnum<{
19761
+ context: "context";
19762
+ add: "add";
19763
+ remove: "remove";
19764
+ header: "header";
19765
+ }>;
19766
+ content: z.ZodString;
19767
+ tokens: z.ZodOptional<z.ZodArray<z.ZodObject<{
19768
+ text: z.ZodString;
19769
+ style: z.ZodNullable<z.ZodString>;
19770
+ }, z.core.$strip>>>;
19771
+ }, z.core.$strip>>;
19772
+ }, z.core.$strip>>;
19773
+ status: z.ZodOptional<z.ZodEnum<{
19774
+ ok: "ok";
19775
+ too_large: "too_large";
19776
+ binary: "binary";
19777
+ }>>;
19778
+ }, z.core.$strip>>>;
19779
+ previousSha: z.ZodOptional<z.ZodString>;
19780
+ previousPath: z.ZodOptional<z.ZodString>;
19781
+ truncated: z.ZodBoolean;
19782
+ error: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
19783
+ kind: z.ZodLiteral<"not_git_repo">;
19784
+ }, z.core.$strip>, z.ZodObject<{
19785
+ kind: z.ZodLiteral<"invalid_path">;
19786
+ detail: z.ZodString;
19787
+ }, z.core.$strip>, z.ZodObject<{
19788
+ kind: z.ZodLiteral<"git_failed">;
19789
+ detail: z.ZodString;
19790
+ }, z.core.$strip>], "kind">>;
19791
+ requestId: z.ZodString;
19792
+ }, z.core.$strip>;
19793
+ }, z.core.$strip>, z.ZodObject<{
19794
+ type: z.ZodLiteral<"checkout.git.get_file_blame.response">;
19795
+ payload: z.ZodObject<{
19796
+ cwd: z.ZodString;
19797
+ path: z.ZodString;
19798
+ lines: z.ZodArray<z.ZodObject<{
19799
+ line: z.ZodNumber;
19800
+ sha: z.ZodString;
19801
+ originalLine: z.ZodNumber;
19802
+ }, z.core.$strip>>;
19803
+ commits: z.ZodArray<z.ZodObject<{
19804
+ sha: z.ZodString;
19805
+ shortSha: z.ZodString;
19806
+ summary: z.ZodString;
19807
+ authorName: z.ZodString;
19808
+ authorEmail: z.ZodString;
19809
+ authoredAt: z.ZodNumber;
19810
+ path: z.ZodOptional<z.ZodString>;
19811
+ }, z.core.$strip>>;
19812
+ startLine: z.ZodNumber;
19813
+ endLine: z.ZodNumber;
19814
+ reachedEndOfFile: z.ZodBoolean;
19815
+ error: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
19816
+ kind: z.ZodLiteral<"not_git_repo">;
19817
+ }, z.core.$strip>, z.ZodObject<{
19818
+ kind: z.ZodLiteral<"invalid_path">;
19819
+ detail: z.ZodString;
19820
+ }, z.core.$strip>, z.ZodObject<{
19821
+ kind: z.ZodLiteral<"git_failed">;
19822
+ detail: z.ZodString;
19823
+ }, z.core.$strip>], "kind">>;
19824
+ requestId: z.ZodString;
19825
+ }, z.core.$strip>;
19826
+ }, z.core.$strip>, z.ZodObject<{
19827
+ type: z.ZodLiteral<"checkout.git.get_file_origin.response">;
19828
+ payload: z.ZodObject<{
19829
+ cwd: z.ZodString;
19830
+ path: z.ZodString;
19831
+ entry: z.ZodNullable<z.ZodObject<{
19832
+ sha: z.ZodString;
19833
+ shortSha: z.ZodString;
19834
+ subject: z.ZodString;
19835
+ body: z.ZodString;
19836
+ authorName: z.ZodString;
19837
+ authorEmail: z.ZodString;
19838
+ authoredAt: z.ZodNumber;
19839
+ committerName: z.ZodString;
19840
+ committedAt: z.ZodNumber;
19841
+ path: z.ZodString;
19842
+ previousPath: z.ZodOptional<z.ZodString>;
19843
+ changeKind: z.ZodOptional<z.ZodString>;
19844
+ isMerge: z.ZodBoolean;
19845
+ parentShas: z.ZodOptional<z.ZodArray<z.ZodString>>;
19846
+ }, z.core.$strip>>;
19847
+ error: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
19848
+ kind: z.ZodLiteral<"not_git_repo">;
19849
+ }, z.core.$strip>, z.ZodObject<{
19850
+ kind: z.ZodLiteral<"invalid_path">;
19851
+ detail: z.ZodString;
19852
+ }, z.core.$strip>, z.ZodObject<{
19853
+ kind: z.ZodLiteral<"git_failed">;
19854
+ detail: z.ZodString;
19855
+ }, z.core.$strip>], "kind">>;
19856
+ requestId: z.ZodString;
19857
+ }, z.core.$strip>;
19331
19858
  }, z.core.$strip>, z.ZodObject<{
19332
19859
  type: z.ZodLiteral<"runs.get_snapshot.response">;
19333
19860
  payload: z.ZodObject<{
@@ -22995,6 +23522,18 @@ export type CommitMessageAgent = z.infer<typeof CommitMessageAgentSchema>;
22995
23522
  export type CheckoutGitRollbackRequest = z.infer<typeof CheckoutGitRollbackRequestSchema>;
22996
23523
  export type CheckoutGitRollbackResponse = z.infer<typeof CheckoutGitRollbackResponseSchema>;
22997
23524
  export type CheckoutGitRollbackError = z.infer<typeof CheckoutGitRollbackErrorSchema>;
23525
+ export type CheckoutGitFileError = z.infer<typeof CheckoutGitFileErrorSchema>;
23526
+ export type GitFileHistoryEntry = z.infer<typeof GitFileHistoryEntrySchema>;
23527
+ export type GitBlameLine = z.infer<typeof GitBlameLineSchema>;
23528
+ export type GitBlameCommit = z.infer<typeof GitBlameCommitSchema>;
23529
+ export type CheckoutGitFileHistoryRequest = z.infer<typeof CheckoutGitFileHistoryRequestSchema>;
23530
+ export type CheckoutGitFileHistoryResponse = z.infer<typeof CheckoutGitFileHistoryResponseSchema>;
23531
+ export type CheckoutGitFileCommitDiffRequest = z.infer<typeof CheckoutGitFileCommitDiffRequestSchema>;
23532
+ export type CheckoutGitFileCommitDiffResponse = z.infer<typeof CheckoutGitFileCommitDiffResponseSchema>;
23533
+ export type CheckoutGitFileBlameRequest = z.infer<typeof CheckoutGitFileBlameRequestSchema>;
23534
+ export type CheckoutGitFileBlameResponse = z.infer<typeof CheckoutGitFileBlameResponseSchema>;
23535
+ export type CheckoutGitFileOriginRequest = z.infer<typeof CheckoutGitFileOriginRequestSchema>;
23536
+ export type CheckoutGitFileOriginResponse = z.infer<typeof CheckoutGitFileOriginResponseSchema>;
22998
23537
  export type GitOperationLogEntry = z.infer<typeof GitOperationLogEntrySchema>;
22999
23538
  export type CheckoutGitGetOperationLogRequest = z.infer<typeof CheckoutGitGetOperationLogRequestSchema>;
23000
23539
  export type CheckoutGitGetOperationLogResponse = z.infer<typeof CheckoutGitGetOperationLogResponseSchema>;
@@ -23853,6 +24392,7 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
23853
24392
  voiceCues: z.ZodOptional<z.ZodObject<{
23854
24393
  join: z.ZodOptional<z.ZodArray<z.ZodString>>;
23855
24394
  thinking: z.ZodOptional<z.ZodArray<z.ZodString>>;
24395
+ waiting: z.ZodOptional<z.ZodArray<z.ZodString>>;
23856
24396
  done: z.ZodOptional<z.ZodArray<z.ZodString>>;
23857
24397
  }, z.core.$loose>>;
23858
24398
  }, z.core.$loose>>>;
@@ -23875,6 +24415,15 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
23875
24415
  modelId: z.ZodString;
23876
24416
  tier: z.ZodType<ModelTier, unknown, z.core.$ZodTypeInternals<ModelTier, unknown>>;
23877
24417
  }, z.core.$loose>>>>;
24418
+ savedProviderEndpoints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
24419
+ id: z.ZodString;
24420
+ baseUrlKey: z.ZodString;
24421
+ apiKeyKey: z.ZodString;
24422
+ baseUrl: z.ZodString;
24423
+ apiKey: z.ZodDefault<z.ZodString>;
24424
+ label: z.ZodOptional<z.ZodString>;
24425
+ savedAt: z.ZodOptional<z.ZodNumber>;
24426
+ }, z.core.$loose>>>>;
23878
24427
  }, z.core.$loose>;
23879
24428
  }, z.core.$strip>, z.ZodObject<{
23880
24429
  type: z.ZodLiteral<"speech.settings.get_options.request">;
@@ -23899,6 +24448,7 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
23899
24448
  done: "done";
23900
24449
  join: "join";
23901
24450
  thinking: "thinking";
24451
+ waiting: "waiting";
23902
24452
  }>>;
23903
24453
  }, z.core.$strip>, z.ZodObject<{
23904
24454
  type: z.ZodLiteral<"agentPersonalities.get_stats.request">;
@@ -24398,6 +24948,35 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
24398
24948
  cwd: z.ZodString;
24399
24949
  operation: z.ZodString;
24400
24950
  requestId: z.ZodString;
24951
+ }, z.core.$strip>, z.ZodObject<{
24952
+ type: z.ZodLiteral<"checkout.git.get_file_history.request">;
24953
+ cwd: z.ZodString;
24954
+ path: z.ZodString;
24955
+ limit: z.ZodOptional<z.ZodNumber>;
24956
+ offset: z.ZodOptional<z.ZodNumber>;
24957
+ startLine: z.ZodOptional<z.ZodNumber>;
24958
+ endLine: z.ZodOptional<z.ZodNumber>;
24959
+ requestId: z.ZodString;
24960
+ }, z.core.$strip>, z.ZodObject<{
24961
+ type: z.ZodLiteral<"checkout.git.get_file_commit_diff.request">;
24962
+ cwd: z.ZodString;
24963
+ path: z.ZodString;
24964
+ sha: z.ZodString;
24965
+ ignoreWhitespace: z.ZodOptional<z.ZodBoolean>;
24966
+ requestId: z.ZodString;
24967
+ }, z.core.$strip>, z.ZodObject<{
24968
+ type: z.ZodLiteral<"checkout.git.get_file_blame.request">;
24969
+ cwd: z.ZodString;
24970
+ path: z.ZodString;
24971
+ startLine: z.ZodOptional<z.ZodNumber>;
24972
+ lineCount: z.ZodOptional<z.ZodNumber>;
24973
+ sha: z.ZodOptional<z.ZodString>;
24974
+ requestId: z.ZodString;
24975
+ }, z.core.$strip>, z.ZodObject<{
24976
+ type: z.ZodLiteral<"checkout.git.get_file_origin.request">;
24977
+ cwd: z.ZodString;
24978
+ path: z.ZodString;
24979
+ requestId: z.ZodString;
24401
24980
  }, z.core.$strip>, z.ZodObject<{
24402
24981
  type: z.ZodLiteral<"runs.get_snapshot.request">;
24403
24982
  requestId: z.ZodString;
@@ -28838,6 +29417,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
28838
29417
  voiceCues: z.ZodOptional<z.ZodObject<{
28839
29418
  join: z.ZodOptional<z.ZodArray<z.ZodString>>;
28840
29419
  thinking: z.ZodOptional<z.ZodArray<z.ZodString>>;
29420
+ waiting: z.ZodOptional<z.ZodArray<z.ZodString>>;
28841
29421
  done: z.ZodOptional<z.ZodArray<z.ZodString>>;
28842
29422
  }, z.core.$loose>>;
28843
29423
  }, z.core.$loose>>>;
@@ -28860,6 +29440,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
28860
29440
  modelId: z.ZodString;
28861
29441
  tier: z.ZodType<ModelTier, unknown, z.core.$ZodTypeInternals<ModelTier, unknown>>;
28862
29442
  }, z.core.$loose>>>;
29443
+ savedProviderEndpoints: z.ZodDefault<z.ZodArray<z.ZodObject<{
29444
+ id: z.ZodString;
29445
+ baseUrlKey: z.ZodString;
29446
+ apiKeyKey: z.ZodString;
29447
+ baseUrl: z.ZodString;
29448
+ apiKey: z.ZodDefault<z.ZodString>;
29449
+ label: z.ZodOptional<z.ZodString>;
29450
+ savedAt: z.ZodOptional<z.ZodNumber>;
29451
+ }, z.core.$loose>>>;
28863
29452
  }, z.core.$loose>;
28864
29453
  }, z.core.$loose>;
28865
29454
  }, z.core.$strip>, z.ZodObject<{
@@ -28984,6 +29573,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
28984
29573
  voiceCues: z.ZodOptional<z.ZodObject<{
28985
29574
  join: z.ZodOptional<z.ZodArray<z.ZodString>>;
28986
29575
  thinking: z.ZodOptional<z.ZodArray<z.ZodString>>;
29576
+ waiting: z.ZodOptional<z.ZodArray<z.ZodString>>;
28987
29577
  done: z.ZodOptional<z.ZodArray<z.ZodString>>;
28988
29578
  }, z.core.$loose>>;
28989
29579
  }, z.core.$loose>>>;
@@ -29006,6 +29596,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
29006
29596
  modelId: z.ZodString;
29007
29597
  tier: z.ZodType<ModelTier, unknown, z.core.$ZodTypeInternals<ModelTier, unknown>>;
29008
29598
  }, z.core.$loose>>>;
29599
+ savedProviderEndpoints: z.ZodDefault<z.ZodArray<z.ZodObject<{
29600
+ id: z.ZodString;
29601
+ baseUrlKey: z.ZodString;
29602
+ apiKeyKey: z.ZodString;
29603
+ baseUrl: z.ZodString;
29604
+ apiKey: z.ZodDefault<z.ZodString>;
29605
+ label: z.ZodOptional<z.ZodString>;
29606
+ savedAt: z.ZodOptional<z.ZodNumber>;
29607
+ }, z.core.$loose>>>;
29009
29608
  }, z.core.$loose>;
29010
29609
  }, z.core.$loose>;
29011
29610
  }, z.core.$strip>, z.ZodObject<{
@@ -29060,6 +29659,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
29060
29659
  cues: z.ZodOptional<z.ZodObject<{
29061
29660
  join: z.ZodOptional<z.ZodArray<z.ZodString>>;
29062
29661
  thinking: z.ZodOptional<z.ZodArray<z.ZodString>>;
29662
+ waiting: z.ZodOptional<z.ZodArray<z.ZodString>>;
29063
29663
  done: z.ZodOptional<z.ZodArray<z.ZodString>>;
29064
29664
  }, z.core.$loose>>;
29065
29665
  error: z.ZodOptional<z.ZodString>;
@@ -30125,6 +30725,156 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
30125
30725
  text: z.ZodString;
30126
30726
  }, z.core.$strip>>;
30127
30727
  }, z.core.$strip>;
30728
+ }, z.core.$strip>, z.ZodObject<{
30729
+ type: z.ZodLiteral<"checkout.git.get_file_history.response">;
30730
+ payload: z.ZodObject<{
30731
+ cwd: z.ZodString;
30732
+ path: z.ZodString;
30733
+ entries: z.ZodArray<z.ZodObject<{
30734
+ sha: z.ZodString;
30735
+ shortSha: z.ZodString;
30736
+ subject: z.ZodString;
30737
+ body: z.ZodString;
30738
+ authorName: z.ZodString;
30739
+ authorEmail: z.ZodString;
30740
+ authoredAt: z.ZodNumber;
30741
+ committerName: z.ZodString;
30742
+ committedAt: z.ZodNumber;
30743
+ path: z.ZodString;
30744
+ previousPath: z.ZodOptional<z.ZodString>;
30745
+ changeKind: z.ZodOptional<z.ZodString>;
30746
+ isMerge: z.ZodBoolean;
30747
+ parentShas: z.ZodOptional<z.ZodArray<z.ZodString>>;
30748
+ }, z.core.$strip>>;
30749
+ hasMore: z.ZodBoolean;
30750
+ error: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
30751
+ kind: z.ZodLiteral<"not_git_repo">;
30752
+ }, z.core.$strip>, z.ZodObject<{
30753
+ kind: z.ZodLiteral<"invalid_path">;
30754
+ detail: z.ZodString;
30755
+ }, z.core.$strip>, z.ZodObject<{
30756
+ kind: z.ZodLiteral<"git_failed">;
30757
+ detail: z.ZodString;
30758
+ }, z.core.$strip>], "kind">>;
30759
+ requestId: z.ZodString;
30760
+ }, z.core.$strip>;
30761
+ }, z.core.$strip>, z.ZodObject<{
30762
+ type: z.ZodLiteral<"checkout.git.get_file_commit_diff.response">;
30763
+ payload: z.ZodObject<{
30764
+ cwd: z.ZodString;
30765
+ path: z.ZodString;
30766
+ sha: z.ZodString;
30767
+ diff: z.ZodString;
30768
+ structured: z.ZodOptional<z.ZodArray<z.ZodObject<{
30769
+ path: z.ZodString;
30770
+ isNew: z.ZodBoolean;
30771
+ isDeleted: z.ZodBoolean;
30772
+ additions: z.ZodNumber;
30773
+ deletions: z.ZodNumber;
30774
+ hunks: z.ZodArray<z.ZodObject<{
30775
+ oldStart: z.ZodNumber;
30776
+ oldCount: z.ZodNumber;
30777
+ newStart: z.ZodNumber;
30778
+ newCount: z.ZodNumber;
30779
+ lines: z.ZodArray<z.ZodObject<{
30780
+ type: z.ZodEnum<{
30781
+ context: "context";
30782
+ add: "add";
30783
+ remove: "remove";
30784
+ header: "header";
30785
+ }>;
30786
+ content: z.ZodString;
30787
+ tokens: z.ZodOptional<z.ZodArray<z.ZodObject<{
30788
+ text: z.ZodString;
30789
+ style: z.ZodNullable<z.ZodString>;
30790
+ }, z.core.$strip>>>;
30791
+ }, z.core.$strip>>;
30792
+ }, z.core.$strip>>;
30793
+ status: z.ZodOptional<z.ZodEnum<{
30794
+ ok: "ok";
30795
+ too_large: "too_large";
30796
+ binary: "binary";
30797
+ }>>;
30798
+ }, z.core.$strip>>>;
30799
+ previousSha: z.ZodOptional<z.ZodString>;
30800
+ previousPath: z.ZodOptional<z.ZodString>;
30801
+ truncated: z.ZodBoolean;
30802
+ error: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
30803
+ kind: z.ZodLiteral<"not_git_repo">;
30804
+ }, z.core.$strip>, z.ZodObject<{
30805
+ kind: z.ZodLiteral<"invalid_path">;
30806
+ detail: z.ZodString;
30807
+ }, z.core.$strip>, z.ZodObject<{
30808
+ kind: z.ZodLiteral<"git_failed">;
30809
+ detail: z.ZodString;
30810
+ }, z.core.$strip>], "kind">>;
30811
+ requestId: z.ZodString;
30812
+ }, z.core.$strip>;
30813
+ }, z.core.$strip>, z.ZodObject<{
30814
+ type: z.ZodLiteral<"checkout.git.get_file_blame.response">;
30815
+ payload: z.ZodObject<{
30816
+ cwd: z.ZodString;
30817
+ path: z.ZodString;
30818
+ lines: z.ZodArray<z.ZodObject<{
30819
+ line: z.ZodNumber;
30820
+ sha: z.ZodString;
30821
+ originalLine: z.ZodNumber;
30822
+ }, z.core.$strip>>;
30823
+ commits: z.ZodArray<z.ZodObject<{
30824
+ sha: z.ZodString;
30825
+ shortSha: z.ZodString;
30826
+ summary: z.ZodString;
30827
+ authorName: z.ZodString;
30828
+ authorEmail: z.ZodString;
30829
+ authoredAt: z.ZodNumber;
30830
+ path: z.ZodOptional<z.ZodString>;
30831
+ }, z.core.$strip>>;
30832
+ startLine: z.ZodNumber;
30833
+ endLine: z.ZodNumber;
30834
+ reachedEndOfFile: z.ZodBoolean;
30835
+ error: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
30836
+ kind: z.ZodLiteral<"not_git_repo">;
30837
+ }, z.core.$strip>, z.ZodObject<{
30838
+ kind: z.ZodLiteral<"invalid_path">;
30839
+ detail: z.ZodString;
30840
+ }, z.core.$strip>, z.ZodObject<{
30841
+ kind: z.ZodLiteral<"git_failed">;
30842
+ detail: z.ZodString;
30843
+ }, z.core.$strip>], "kind">>;
30844
+ requestId: z.ZodString;
30845
+ }, z.core.$strip>;
30846
+ }, z.core.$strip>, z.ZodObject<{
30847
+ type: z.ZodLiteral<"checkout.git.get_file_origin.response">;
30848
+ payload: z.ZodObject<{
30849
+ cwd: z.ZodString;
30850
+ path: z.ZodString;
30851
+ entry: z.ZodNullable<z.ZodObject<{
30852
+ sha: z.ZodString;
30853
+ shortSha: z.ZodString;
30854
+ subject: z.ZodString;
30855
+ body: z.ZodString;
30856
+ authorName: z.ZodString;
30857
+ authorEmail: z.ZodString;
30858
+ authoredAt: z.ZodNumber;
30859
+ committerName: z.ZodString;
30860
+ committedAt: z.ZodNumber;
30861
+ path: z.ZodString;
30862
+ previousPath: z.ZodOptional<z.ZodString>;
30863
+ changeKind: z.ZodOptional<z.ZodString>;
30864
+ isMerge: z.ZodBoolean;
30865
+ parentShas: z.ZodOptional<z.ZodArray<z.ZodString>>;
30866
+ }, z.core.$strip>>;
30867
+ error: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
30868
+ kind: z.ZodLiteral<"not_git_repo">;
30869
+ }, z.core.$strip>, z.ZodObject<{
30870
+ kind: z.ZodLiteral<"invalid_path">;
30871
+ detail: z.ZodString;
30872
+ }, z.core.$strip>, z.ZodObject<{
30873
+ kind: z.ZodLiteral<"git_failed">;
30874
+ detail: z.ZodString;
30875
+ }, z.core.$strip>], "kind">>;
30876
+ requestId: z.ZodString;
30877
+ }, z.core.$strip>;
30128
30878
  }, z.core.$strip>, z.ZodObject<{
30129
30879
  type: z.ZodLiteral<"runs.get_snapshot.response">;
30130
30880
  payload: z.ZodObject<{
@@ -34263,6 +35013,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
34263
35013
  voiceCues: z.ZodOptional<z.ZodObject<{
34264
35014
  join: z.ZodOptional<z.ZodArray<z.ZodString>>;
34265
35015
  thinking: z.ZodOptional<z.ZodArray<z.ZodString>>;
35016
+ waiting: z.ZodOptional<z.ZodArray<z.ZodString>>;
34266
35017
  done: z.ZodOptional<z.ZodArray<z.ZodString>>;
34267
35018
  }, z.core.$loose>>;
34268
35019
  }, z.core.$loose>>>;
@@ -34285,6 +35036,15 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
34285
35036
  modelId: z.ZodString;
34286
35037
  tier: z.ZodType<ModelTier, unknown, z.core.$ZodTypeInternals<ModelTier, unknown>>;
34287
35038
  }, z.core.$loose>>>>;
35039
+ savedProviderEndpoints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
35040
+ id: z.ZodString;
35041
+ baseUrlKey: z.ZodString;
35042
+ apiKeyKey: z.ZodString;
35043
+ baseUrl: z.ZodString;
35044
+ apiKey: z.ZodDefault<z.ZodString>;
35045
+ label: z.ZodOptional<z.ZodString>;
35046
+ savedAt: z.ZodOptional<z.ZodNumber>;
35047
+ }, z.core.$loose>>>>;
34288
35048
  }, z.core.$loose>;
34289
35049
  }, z.core.$strip>, z.ZodObject<{
34290
35050
  type: z.ZodLiteral<"speech.settings.get_options.request">;
@@ -34309,6 +35069,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
34309
35069
  done: "done";
34310
35070
  join: "join";
34311
35071
  thinking: "thinking";
35072
+ waiting: "waiting";
34312
35073
  }>>;
34313
35074
  }, z.core.$strip>, z.ZodObject<{
34314
35075
  type: z.ZodLiteral<"agentPersonalities.get_stats.request">;
@@ -34808,6 +35569,35 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
34808
35569
  cwd: z.ZodString;
34809
35570
  operation: z.ZodString;
34810
35571
  requestId: z.ZodString;
35572
+ }, z.core.$strip>, z.ZodObject<{
35573
+ type: z.ZodLiteral<"checkout.git.get_file_history.request">;
35574
+ cwd: z.ZodString;
35575
+ path: z.ZodString;
35576
+ limit: z.ZodOptional<z.ZodNumber>;
35577
+ offset: z.ZodOptional<z.ZodNumber>;
35578
+ startLine: z.ZodOptional<z.ZodNumber>;
35579
+ endLine: z.ZodOptional<z.ZodNumber>;
35580
+ requestId: z.ZodString;
35581
+ }, z.core.$strip>, z.ZodObject<{
35582
+ type: z.ZodLiteral<"checkout.git.get_file_commit_diff.request">;
35583
+ cwd: z.ZodString;
35584
+ path: z.ZodString;
35585
+ sha: z.ZodString;
35586
+ ignoreWhitespace: z.ZodOptional<z.ZodBoolean>;
35587
+ requestId: z.ZodString;
35588
+ }, z.core.$strip>, z.ZodObject<{
35589
+ type: z.ZodLiteral<"checkout.git.get_file_blame.request">;
35590
+ cwd: z.ZodString;
35591
+ path: z.ZodString;
35592
+ startLine: z.ZodOptional<z.ZodNumber>;
35593
+ lineCount: z.ZodOptional<z.ZodNumber>;
35594
+ sha: z.ZodOptional<z.ZodString>;
35595
+ requestId: z.ZodString;
35596
+ }, z.core.$strip>, z.ZodObject<{
35597
+ type: z.ZodLiteral<"checkout.git.get_file_origin.request">;
35598
+ cwd: z.ZodString;
35599
+ path: z.ZodString;
35600
+ requestId: z.ZodString;
34811
35601
  }, z.core.$strip>, z.ZodObject<{
34812
35602
  type: z.ZodLiteral<"runs.get_snapshot.request">;
34813
35603
  requestId: z.ZodString;
@@ -39250,6 +40040,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
39250
40040
  voiceCues: z.ZodOptional<z.ZodObject<{
39251
40041
  join: z.ZodOptional<z.ZodArray<z.ZodString>>;
39252
40042
  thinking: z.ZodOptional<z.ZodArray<z.ZodString>>;
40043
+ waiting: z.ZodOptional<z.ZodArray<z.ZodString>>;
39253
40044
  done: z.ZodOptional<z.ZodArray<z.ZodString>>;
39254
40045
  }, z.core.$loose>>;
39255
40046
  }, z.core.$loose>>>;
@@ -39272,6 +40063,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
39272
40063
  modelId: z.ZodString;
39273
40064
  tier: z.ZodType<ModelTier, unknown, z.core.$ZodTypeInternals<ModelTier, unknown>>;
39274
40065
  }, z.core.$loose>>>;
40066
+ savedProviderEndpoints: z.ZodDefault<z.ZodArray<z.ZodObject<{
40067
+ id: z.ZodString;
40068
+ baseUrlKey: z.ZodString;
40069
+ apiKeyKey: z.ZodString;
40070
+ baseUrl: z.ZodString;
40071
+ apiKey: z.ZodDefault<z.ZodString>;
40072
+ label: z.ZodOptional<z.ZodString>;
40073
+ savedAt: z.ZodOptional<z.ZodNumber>;
40074
+ }, z.core.$loose>>>;
39275
40075
  }, z.core.$loose>;
39276
40076
  }, z.core.$loose>;
39277
40077
  }, z.core.$strip>, z.ZodObject<{
@@ -39396,6 +40196,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
39396
40196
  voiceCues: z.ZodOptional<z.ZodObject<{
39397
40197
  join: z.ZodOptional<z.ZodArray<z.ZodString>>;
39398
40198
  thinking: z.ZodOptional<z.ZodArray<z.ZodString>>;
40199
+ waiting: z.ZodOptional<z.ZodArray<z.ZodString>>;
39399
40200
  done: z.ZodOptional<z.ZodArray<z.ZodString>>;
39400
40201
  }, z.core.$loose>>;
39401
40202
  }, z.core.$loose>>>;
@@ -39418,6 +40219,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
39418
40219
  modelId: z.ZodString;
39419
40220
  tier: z.ZodType<ModelTier, unknown, z.core.$ZodTypeInternals<ModelTier, unknown>>;
39420
40221
  }, z.core.$loose>>>;
40222
+ savedProviderEndpoints: z.ZodDefault<z.ZodArray<z.ZodObject<{
40223
+ id: z.ZodString;
40224
+ baseUrlKey: z.ZodString;
40225
+ apiKeyKey: z.ZodString;
40226
+ baseUrl: z.ZodString;
40227
+ apiKey: z.ZodDefault<z.ZodString>;
40228
+ label: z.ZodOptional<z.ZodString>;
40229
+ savedAt: z.ZodOptional<z.ZodNumber>;
40230
+ }, z.core.$loose>>>;
39421
40231
  }, z.core.$loose>;
39422
40232
  }, z.core.$loose>;
39423
40233
  }, z.core.$strip>, z.ZodObject<{
@@ -39472,6 +40282,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
39472
40282
  cues: z.ZodOptional<z.ZodObject<{
39473
40283
  join: z.ZodOptional<z.ZodArray<z.ZodString>>;
39474
40284
  thinking: z.ZodOptional<z.ZodArray<z.ZodString>>;
40285
+ waiting: z.ZodOptional<z.ZodArray<z.ZodString>>;
39475
40286
  done: z.ZodOptional<z.ZodArray<z.ZodString>>;
39476
40287
  }, z.core.$loose>>;
39477
40288
  error: z.ZodOptional<z.ZodString>;
@@ -40537,6 +41348,156 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
40537
41348
  text: z.ZodString;
40538
41349
  }, z.core.$strip>>;
40539
41350
  }, z.core.$strip>;
41351
+ }, z.core.$strip>, z.ZodObject<{
41352
+ type: z.ZodLiteral<"checkout.git.get_file_history.response">;
41353
+ payload: z.ZodObject<{
41354
+ cwd: z.ZodString;
41355
+ path: z.ZodString;
41356
+ entries: z.ZodArray<z.ZodObject<{
41357
+ sha: z.ZodString;
41358
+ shortSha: z.ZodString;
41359
+ subject: z.ZodString;
41360
+ body: z.ZodString;
41361
+ authorName: z.ZodString;
41362
+ authorEmail: z.ZodString;
41363
+ authoredAt: z.ZodNumber;
41364
+ committerName: z.ZodString;
41365
+ committedAt: z.ZodNumber;
41366
+ path: z.ZodString;
41367
+ previousPath: z.ZodOptional<z.ZodString>;
41368
+ changeKind: z.ZodOptional<z.ZodString>;
41369
+ isMerge: z.ZodBoolean;
41370
+ parentShas: z.ZodOptional<z.ZodArray<z.ZodString>>;
41371
+ }, z.core.$strip>>;
41372
+ hasMore: z.ZodBoolean;
41373
+ error: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
41374
+ kind: z.ZodLiteral<"not_git_repo">;
41375
+ }, z.core.$strip>, z.ZodObject<{
41376
+ kind: z.ZodLiteral<"invalid_path">;
41377
+ detail: z.ZodString;
41378
+ }, z.core.$strip>, z.ZodObject<{
41379
+ kind: z.ZodLiteral<"git_failed">;
41380
+ detail: z.ZodString;
41381
+ }, z.core.$strip>], "kind">>;
41382
+ requestId: z.ZodString;
41383
+ }, z.core.$strip>;
41384
+ }, z.core.$strip>, z.ZodObject<{
41385
+ type: z.ZodLiteral<"checkout.git.get_file_commit_diff.response">;
41386
+ payload: z.ZodObject<{
41387
+ cwd: z.ZodString;
41388
+ path: z.ZodString;
41389
+ sha: z.ZodString;
41390
+ diff: z.ZodString;
41391
+ structured: z.ZodOptional<z.ZodArray<z.ZodObject<{
41392
+ path: z.ZodString;
41393
+ isNew: z.ZodBoolean;
41394
+ isDeleted: z.ZodBoolean;
41395
+ additions: z.ZodNumber;
41396
+ deletions: z.ZodNumber;
41397
+ hunks: z.ZodArray<z.ZodObject<{
41398
+ oldStart: z.ZodNumber;
41399
+ oldCount: z.ZodNumber;
41400
+ newStart: z.ZodNumber;
41401
+ newCount: z.ZodNumber;
41402
+ lines: z.ZodArray<z.ZodObject<{
41403
+ type: z.ZodEnum<{
41404
+ context: "context";
41405
+ add: "add";
41406
+ remove: "remove";
41407
+ header: "header";
41408
+ }>;
41409
+ content: z.ZodString;
41410
+ tokens: z.ZodOptional<z.ZodArray<z.ZodObject<{
41411
+ text: z.ZodString;
41412
+ style: z.ZodNullable<z.ZodString>;
41413
+ }, z.core.$strip>>>;
41414
+ }, z.core.$strip>>;
41415
+ }, z.core.$strip>>;
41416
+ status: z.ZodOptional<z.ZodEnum<{
41417
+ ok: "ok";
41418
+ too_large: "too_large";
41419
+ binary: "binary";
41420
+ }>>;
41421
+ }, z.core.$strip>>>;
41422
+ previousSha: z.ZodOptional<z.ZodString>;
41423
+ previousPath: z.ZodOptional<z.ZodString>;
41424
+ truncated: z.ZodBoolean;
41425
+ error: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
41426
+ kind: z.ZodLiteral<"not_git_repo">;
41427
+ }, z.core.$strip>, z.ZodObject<{
41428
+ kind: z.ZodLiteral<"invalid_path">;
41429
+ detail: z.ZodString;
41430
+ }, z.core.$strip>, z.ZodObject<{
41431
+ kind: z.ZodLiteral<"git_failed">;
41432
+ detail: z.ZodString;
41433
+ }, z.core.$strip>], "kind">>;
41434
+ requestId: z.ZodString;
41435
+ }, z.core.$strip>;
41436
+ }, z.core.$strip>, z.ZodObject<{
41437
+ type: z.ZodLiteral<"checkout.git.get_file_blame.response">;
41438
+ payload: z.ZodObject<{
41439
+ cwd: z.ZodString;
41440
+ path: z.ZodString;
41441
+ lines: z.ZodArray<z.ZodObject<{
41442
+ line: z.ZodNumber;
41443
+ sha: z.ZodString;
41444
+ originalLine: z.ZodNumber;
41445
+ }, z.core.$strip>>;
41446
+ commits: z.ZodArray<z.ZodObject<{
41447
+ sha: z.ZodString;
41448
+ shortSha: z.ZodString;
41449
+ summary: z.ZodString;
41450
+ authorName: z.ZodString;
41451
+ authorEmail: z.ZodString;
41452
+ authoredAt: z.ZodNumber;
41453
+ path: z.ZodOptional<z.ZodString>;
41454
+ }, z.core.$strip>>;
41455
+ startLine: z.ZodNumber;
41456
+ endLine: z.ZodNumber;
41457
+ reachedEndOfFile: z.ZodBoolean;
41458
+ error: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
41459
+ kind: z.ZodLiteral<"not_git_repo">;
41460
+ }, z.core.$strip>, z.ZodObject<{
41461
+ kind: z.ZodLiteral<"invalid_path">;
41462
+ detail: z.ZodString;
41463
+ }, z.core.$strip>, z.ZodObject<{
41464
+ kind: z.ZodLiteral<"git_failed">;
41465
+ detail: z.ZodString;
41466
+ }, z.core.$strip>], "kind">>;
41467
+ requestId: z.ZodString;
41468
+ }, z.core.$strip>;
41469
+ }, z.core.$strip>, z.ZodObject<{
41470
+ type: z.ZodLiteral<"checkout.git.get_file_origin.response">;
41471
+ payload: z.ZodObject<{
41472
+ cwd: z.ZodString;
41473
+ path: z.ZodString;
41474
+ entry: z.ZodNullable<z.ZodObject<{
41475
+ sha: z.ZodString;
41476
+ shortSha: z.ZodString;
41477
+ subject: z.ZodString;
41478
+ body: z.ZodString;
41479
+ authorName: z.ZodString;
41480
+ authorEmail: z.ZodString;
41481
+ authoredAt: z.ZodNumber;
41482
+ committerName: z.ZodString;
41483
+ committedAt: z.ZodNumber;
41484
+ path: z.ZodString;
41485
+ previousPath: z.ZodOptional<z.ZodString>;
41486
+ changeKind: z.ZodOptional<z.ZodString>;
41487
+ isMerge: z.ZodBoolean;
41488
+ parentShas: z.ZodOptional<z.ZodArray<z.ZodString>>;
41489
+ }, z.core.$strip>>;
41490
+ error: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
41491
+ kind: z.ZodLiteral<"not_git_repo">;
41492
+ }, z.core.$strip>, z.ZodObject<{
41493
+ kind: z.ZodLiteral<"invalid_path">;
41494
+ detail: z.ZodString;
41495
+ }, z.core.$strip>, z.ZodObject<{
41496
+ kind: z.ZodLiteral<"git_failed">;
41497
+ detail: z.ZodString;
41498
+ }, z.core.$strip>], "kind">>;
41499
+ requestId: z.ZodString;
41500
+ }, z.core.$strip>;
40540
41501
  }, z.core.$strip>, z.ZodObject<{
40541
41502
  type: z.ZodLiteral<"runs.get_snapshot.response">;
40542
41503
  payload: z.ZodObject<{