@junctionpanel/server 0.1.78 → 0.1.80
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/server/server/agent/agent-storage.d.ts +7 -0
- package/dist/server/server/agent/agent-storage.d.ts.map +1 -1
- package/dist/server/server/session.d.ts.map +1 -1
- package/dist/server/server/session.js +126 -69
- package/dist/server/server/session.js.map +1 -1
- package/dist/server/shared/messages.d.ts +449 -24
- package/dist/server/shared/messages.d.ts.map +1 -1
- package/dist/server/shared/messages.js +3 -1
- package/dist/server/shared/messages.js.map +1 -1
- package/dist/server/utils/checkout-git.d.ts +1 -0
- package/dist/server/utils/checkout-git.d.ts.map +1 -1
- package/dist/server/utils/checkout-git.js +33 -0
- package/dist/server/utils/checkout-git.js.map +1 -1
- package/package.json +2 -2
|
@@ -245,6 +245,7 @@ export declare const AgentSnapshotPayloadSchema: z.ZodObject<{
|
|
|
245
245
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
246
246
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
247
247
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
248
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
248
249
|
}, "strip", z.ZodTypeAny, {
|
|
249
250
|
number: number;
|
|
250
251
|
title: string;
|
|
@@ -258,6 +259,7 @@ export declare const AgentSnapshotPayloadSchema: z.ZodObject<{
|
|
|
258
259
|
requiredChecksPassed: boolean | null;
|
|
259
260
|
canMerge: boolean | null;
|
|
260
261
|
hasConflicts: boolean | null;
|
|
262
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
261
263
|
}, {
|
|
262
264
|
number: number;
|
|
263
265
|
title: string;
|
|
@@ -271,6 +273,7 @@ export declare const AgentSnapshotPayloadSchema: z.ZodObject<{
|
|
|
271
273
|
canMerge: boolean | null;
|
|
272
274
|
hasConflicts: boolean | null;
|
|
273
275
|
detailLevel?: "summary" | "detail" | undefined;
|
|
276
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
274
277
|
}>>>>;
|
|
275
278
|
}, "strip", z.ZodTypeAny, {
|
|
276
279
|
archivedAt: string;
|
|
@@ -296,6 +299,7 @@ export declare const AgentSnapshotPayloadSchema: z.ZodObject<{
|
|
|
296
299
|
requiredChecksPassed: boolean | null;
|
|
297
300
|
canMerge: boolean | null;
|
|
298
301
|
hasConflicts: boolean | null;
|
|
302
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
299
303
|
} | null | undefined;
|
|
300
304
|
}, {
|
|
301
305
|
archivedAt: string;
|
|
@@ -321,6 +325,7 @@ export declare const AgentSnapshotPayloadSchema: z.ZodObject<{
|
|
|
321
325
|
canMerge: boolean | null;
|
|
322
326
|
hasConflicts: boolean | null;
|
|
323
327
|
detailLevel?: "summary" | "detail" | undefined;
|
|
328
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
324
329
|
} | null | undefined;
|
|
325
330
|
}>>>;
|
|
326
331
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -370,6 +375,7 @@ export declare const AgentSnapshotPayloadSchema: z.ZodObject<{
|
|
|
370
375
|
requiredChecksPassed: boolean | null;
|
|
371
376
|
canMerge: boolean | null;
|
|
372
377
|
hasConflicts: boolean | null;
|
|
378
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
373
379
|
} | null | undefined;
|
|
374
380
|
} | null | undefined;
|
|
375
381
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -424,6 +430,7 @@ export declare const AgentSnapshotPayloadSchema: z.ZodObject<{
|
|
|
424
430
|
canMerge: boolean | null;
|
|
425
431
|
hasConflicts: boolean | null;
|
|
426
432
|
detailLevel?: "summary" | "detail" | undefined;
|
|
433
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
427
434
|
} | null | undefined;
|
|
428
435
|
} | null | undefined;
|
|
429
436
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -5092,6 +5099,7 @@ export declare const AgentCreatedStatusPayloadSchema: z.ZodObject<{
|
|
|
5092
5099
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
5093
5100
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
5094
5101
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
5102
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
5095
5103
|
}, "strip", z.ZodTypeAny, {
|
|
5096
5104
|
number: number;
|
|
5097
5105
|
title: string;
|
|
@@ -5105,6 +5113,7 @@ export declare const AgentCreatedStatusPayloadSchema: z.ZodObject<{
|
|
|
5105
5113
|
requiredChecksPassed: boolean | null;
|
|
5106
5114
|
canMerge: boolean | null;
|
|
5107
5115
|
hasConflicts: boolean | null;
|
|
5116
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
5108
5117
|
}, {
|
|
5109
5118
|
number: number;
|
|
5110
5119
|
title: string;
|
|
@@ -5118,6 +5127,7 @@ export declare const AgentCreatedStatusPayloadSchema: z.ZodObject<{
|
|
|
5118
5127
|
canMerge: boolean | null;
|
|
5119
5128
|
hasConflicts: boolean | null;
|
|
5120
5129
|
detailLevel?: "summary" | "detail" | undefined;
|
|
5130
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
5121
5131
|
}>>>>;
|
|
5122
5132
|
}, "strip", z.ZodTypeAny, {
|
|
5123
5133
|
archivedAt: string;
|
|
@@ -5143,6 +5153,7 @@ export declare const AgentCreatedStatusPayloadSchema: z.ZodObject<{
|
|
|
5143
5153
|
requiredChecksPassed: boolean | null;
|
|
5144
5154
|
canMerge: boolean | null;
|
|
5145
5155
|
hasConflicts: boolean | null;
|
|
5156
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
5146
5157
|
} | null | undefined;
|
|
5147
5158
|
}, {
|
|
5148
5159
|
archivedAt: string;
|
|
@@ -5168,6 +5179,7 @@ export declare const AgentCreatedStatusPayloadSchema: z.ZodObject<{
|
|
|
5168
5179
|
canMerge: boolean | null;
|
|
5169
5180
|
hasConflicts: boolean | null;
|
|
5170
5181
|
detailLevel?: "summary" | "detail" | undefined;
|
|
5182
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
5171
5183
|
} | null | undefined;
|
|
5172
5184
|
}>>>;
|
|
5173
5185
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5217,6 +5229,7 @@ export declare const AgentCreatedStatusPayloadSchema: z.ZodObject<{
|
|
|
5217
5229
|
requiredChecksPassed: boolean | null;
|
|
5218
5230
|
canMerge: boolean | null;
|
|
5219
5231
|
hasConflicts: boolean | null;
|
|
5232
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
5220
5233
|
} | null | undefined;
|
|
5221
5234
|
} | null | undefined;
|
|
5222
5235
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -5271,6 +5284,7 @@ export declare const AgentCreatedStatusPayloadSchema: z.ZodObject<{
|
|
|
5271
5284
|
canMerge: boolean | null;
|
|
5272
5285
|
hasConflicts: boolean | null;
|
|
5273
5286
|
detailLevel?: "summary" | "detail" | undefined;
|
|
5287
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
5274
5288
|
} | null | undefined;
|
|
5275
5289
|
} | null | undefined;
|
|
5276
5290
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -5334,6 +5348,7 @@ export declare const AgentCreatedStatusPayloadSchema: z.ZodObject<{
|
|
|
5334
5348
|
requiredChecksPassed: boolean | null;
|
|
5335
5349
|
canMerge: boolean | null;
|
|
5336
5350
|
hasConflicts: boolean | null;
|
|
5351
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
5337
5352
|
} | null | undefined;
|
|
5338
5353
|
} | null | undefined;
|
|
5339
5354
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -5394,6 +5409,7 @@ export declare const AgentCreatedStatusPayloadSchema: z.ZodObject<{
|
|
|
5394
5409
|
canMerge: boolean | null;
|
|
5395
5410
|
hasConflicts: boolean | null;
|
|
5396
5411
|
detailLevel?: "summary" | "detail" | undefined;
|
|
5412
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
5397
5413
|
} | null | undefined;
|
|
5398
5414
|
} | null | undefined;
|
|
5399
5415
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -5470,6 +5486,7 @@ export declare const AgentResumedStatusPayloadSchema: z.ZodObject<{
|
|
|
5470
5486
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
5471
5487
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
5472
5488
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
5489
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
5473
5490
|
}, "strip", z.ZodTypeAny, {
|
|
5474
5491
|
number: number;
|
|
5475
5492
|
title: string;
|
|
@@ -5483,6 +5500,7 @@ export declare const AgentResumedStatusPayloadSchema: z.ZodObject<{
|
|
|
5483
5500
|
requiredChecksPassed: boolean | null;
|
|
5484
5501
|
canMerge: boolean | null;
|
|
5485
5502
|
hasConflicts: boolean | null;
|
|
5503
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
5486
5504
|
}, {
|
|
5487
5505
|
number: number;
|
|
5488
5506
|
title: string;
|
|
@@ -5496,6 +5514,7 @@ export declare const AgentResumedStatusPayloadSchema: z.ZodObject<{
|
|
|
5496
5514
|
canMerge: boolean | null;
|
|
5497
5515
|
hasConflicts: boolean | null;
|
|
5498
5516
|
detailLevel?: "summary" | "detail" | undefined;
|
|
5517
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
5499
5518
|
}>>>>;
|
|
5500
5519
|
}, "strip", z.ZodTypeAny, {
|
|
5501
5520
|
archivedAt: string;
|
|
@@ -5521,6 +5540,7 @@ export declare const AgentResumedStatusPayloadSchema: z.ZodObject<{
|
|
|
5521
5540
|
requiredChecksPassed: boolean | null;
|
|
5522
5541
|
canMerge: boolean | null;
|
|
5523
5542
|
hasConflicts: boolean | null;
|
|
5543
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
5524
5544
|
} | null | undefined;
|
|
5525
5545
|
}, {
|
|
5526
5546
|
archivedAt: string;
|
|
@@ -5546,6 +5566,7 @@ export declare const AgentResumedStatusPayloadSchema: z.ZodObject<{
|
|
|
5546
5566
|
canMerge: boolean | null;
|
|
5547
5567
|
hasConflicts: boolean | null;
|
|
5548
5568
|
detailLevel?: "summary" | "detail" | undefined;
|
|
5569
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
5549
5570
|
} | null | undefined;
|
|
5550
5571
|
}>>>;
|
|
5551
5572
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5595,6 +5616,7 @@ export declare const AgentResumedStatusPayloadSchema: z.ZodObject<{
|
|
|
5595
5616
|
requiredChecksPassed: boolean | null;
|
|
5596
5617
|
canMerge: boolean | null;
|
|
5597
5618
|
hasConflicts: boolean | null;
|
|
5619
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
5598
5620
|
} | null | undefined;
|
|
5599
5621
|
} | null | undefined;
|
|
5600
5622
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -5649,6 +5671,7 @@ export declare const AgentResumedStatusPayloadSchema: z.ZodObject<{
|
|
|
5649
5671
|
canMerge: boolean | null;
|
|
5650
5672
|
hasConflicts: boolean | null;
|
|
5651
5673
|
detailLevel?: "summary" | "detail" | undefined;
|
|
5674
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
5652
5675
|
} | null | undefined;
|
|
5653
5676
|
} | null | undefined;
|
|
5654
5677
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -5713,6 +5736,7 @@ export declare const AgentResumedStatusPayloadSchema: z.ZodObject<{
|
|
|
5713
5736
|
requiredChecksPassed: boolean | null;
|
|
5714
5737
|
canMerge: boolean | null;
|
|
5715
5738
|
hasConflicts: boolean | null;
|
|
5739
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
5716
5740
|
} | null | undefined;
|
|
5717
5741
|
} | null | undefined;
|
|
5718
5742
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -5773,6 +5797,7 @@ export declare const AgentResumedStatusPayloadSchema: z.ZodObject<{
|
|
|
5773
5797
|
canMerge: boolean | null;
|
|
5774
5798
|
hasConflicts: boolean | null;
|
|
5775
5799
|
detailLevel?: "summary" | "detail" | undefined;
|
|
5800
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
5776
5801
|
} | null | undefined;
|
|
5777
5802
|
} | null | undefined;
|
|
5778
5803
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -5885,6 +5910,7 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
5885
5910
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
5886
5911
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
5887
5912
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
5913
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
5888
5914
|
}, "strip", z.ZodTypeAny, {
|
|
5889
5915
|
number: number;
|
|
5890
5916
|
title: string;
|
|
@@ -5898,6 +5924,7 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
5898
5924
|
requiredChecksPassed: boolean | null;
|
|
5899
5925
|
canMerge: boolean | null;
|
|
5900
5926
|
hasConflicts: boolean | null;
|
|
5927
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
5901
5928
|
}, {
|
|
5902
5929
|
number: number;
|
|
5903
5930
|
title: string;
|
|
@@ -5911,6 +5938,7 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
5911
5938
|
canMerge: boolean | null;
|
|
5912
5939
|
hasConflicts: boolean | null;
|
|
5913
5940
|
detailLevel?: "summary" | "detail" | undefined;
|
|
5941
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
5914
5942
|
}>>>>;
|
|
5915
5943
|
}, "strip", z.ZodTypeAny, {
|
|
5916
5944
|
archivedAt: string;
|
|
@@ -5936,6 +5964,7 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
5936
5964
|
requiredChecksPassed: boolean | null;
|
|
5937
5965
|
canMerge: boolean | null;
|
|
5938
5966
|
hasConflicts: boolean | null;
|
|
5967
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
5939
5968
|
} | null | undefined;
|
|
5940
5969
|
}, {
|
|
5941
5970
|
archivedAt: string;
|
|
@@ -5961,6 +5990,7 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
5961
5990
|
canMerge: boolean | null;
|
|
5962
5991
|
hasConflicts: boolean | null;
|
|
5963
5992
|
detailLevel?: "summary" | "detail" | undefined;
|
|
5993
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
5964
5994
|
} | null | undefined;
|
|
5965
5995
|
}>>>;
|
|
5966
5996
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6010,6 +6040,7 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
6010
6040
|
requiredChecksPassed: boolean | null;
|
|
6011
6041
|
canMerge: boolean | null;
|
|
6012
6042
|
hasConflicts: boolean | null;
|
|
6043
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
6013
6044
|
} | null | undefined;
|
|
6014
6045
|
} | null | undefined;
|
|
6015
6046
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -6064,6 +6095,7 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
6064
6095
|
canMerge: boolean | null;
|
|
6065
6096
|
hasConflicts: boolean | null;
|
|
6066
6097
|
detailLevel?: "summary" | "detail" | undefined;
|
|
6098
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
6067
6099
|
} | null | undefined;
|
|
6068
6100
|
} | null | undefined;
|
|
6069
6101
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -6127,6 +6159,7 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
6127
6159
|
requiredChecksPassed: boolean | null;
|
|
6128
6160
|
canMerge: boolean | null;
|
|
6129
6161
|
hasConflicts: boolean | null;
|
|
6162
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
6130
6163
|
} | null | undefined;
|
|
6131
6164
|
} | null | undefined;
|
|
6132
6165
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -6187,6 +6220,7 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
6187
6220
|
canMerge: boolean | null;
|
|
6188
6221
|
hasConflicts: boolean | null;
|
|
6189
6222
|
detailLevel?: "summary" | "detail" | undefined;
|
|
6223
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
6190
6224
|
} | null | undefined;
|
|
6191
6225
|
} | null | undefined;
|
|
6192
6226
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -6261,6 +6295,7 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
6261
6295
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
6262
6296
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
6263
6297
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
6298
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
6264
6299
|
}, "strip", z.ZodTypeAny, {
|
|
6265
6300
|
number: number;
|
|
6266
6301
|
title: string;
|
|
@@ -6274,6 +6309,7 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
6274
6309
|
requiredChecksPassed: boolean | null;
|
|
6275
6310
|
canMerge: boolean | null;
|
|
6276
6311
|
hasConflicts: boolean | null;
|
|
6312
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
6277
6313
|
}, {
|
|
6278
6314
|
number: number;
|
|
6279
6315
|
title: string;
|
|
@@ -6287,6 +6323,7 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
6287
6323
|
canMerge: boolean | null;
|
|
6288
6324
|
hasConflicts: boolean | null;
|
|
6289
6325
|
detailLevel?: "summary" | "detail" | undefined;
|
|
6326
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
6290
6327
|
}>>>>;
|
|
6291
6328
|
}, "strip", z.ZodTypeAny, {
|
|
6292
6329
|
archivedAt: string;
|
|
@@ -6312,6 +6349,7 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
6312
6349
|
requiredChecksPassed: boolean | null;
|
|
6313
6350
|
canMerge: boolean | null;
|
|
6314
6351
|
hasConflicts: boolean | null;
|
|
6352
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
6315
6353
|
} | null | undefined;
|
|
6316
6354
|
}, {
|
|
6317
6355
|
archivedAt: string;
|
|
@@ -6337,6 +6375,7 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
6337
6375
|
canMerge: boolean | null;
|
|
6338
6376
|
hasConflicts: boolean | null;
|
|
6339
6377
|
detailLevel?: "summary" | "detail" | undefined;
|
|
6378
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
6340
6379
|
} | null | undefined;
|
|
6341
6380
|
}>>>;
|
|
6342
6381
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6386,6 +6425,7 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
6386
6425
|
requiredChecksPassed: boolean | null;
|
|
6387
6426
|
canMerge: boolean | null;
|
|
6388
6427
|
hasConflicts: boolean | null;
|
|
6428
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
6389
6429
|
} | null | undefined;
|
|
6390
6430
|
} | null | undefined;
|
|
6391
6431
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -6440,6 +6480,7 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
6440
6480
|
canMerge: boolean | null;
|
|
6441
6481
|
hasConflicts: boolean | null;
|
|
6442
6482
|
detailLevel?: "summary" | "detail" | undefined;
|
|
6483
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
6443
6484
|
} | null | undefined;
|
|
6444
6485
|
} | null | undefined;
|
|
6445
6486
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -6504,6 +6545,7 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
6504
6545
|
requiredChecksPassed: boolean | null;
|
|
6505
6546
|
canMerge: boolean | null;
|
|
6506
6547
|
hasConflicts: boolean | null;
|
|
6548
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
6507
6549
|
} | null | undefined;
|
|
6508
6550
|
} | null | undefined;
|
|
6509
6551
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -6564,6 +6606,7 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
6564
6606
|
canMerge: boolean | null;
|
|
6565
6607
|
hasConflicts: boolean | null;
|
|
6566
6608
|
detailLevel?: "summary" | "detail" | undefined;
|
|
6609
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
6567
6610
|
} | null | undefined;
|
|
6568
6611
|
} | null | undefined;
|
|
6569
6612
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -7015,6 +7058,7 @@ export declare const AgentUpdateMessageSchema: z.ZodObject<{
|
|
|
7015
7058
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
7016
7059
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
7017
7060
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
7061
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
7018
7062
|
}, "strip", z.ZodTypeAny, {
|
|
7019
7063
|
number: number;
|
|
7020
7064
|
title: string;
|
|
@@ -7028,6 +7072,7 @@ export declare const AgentUpdateMessageSchema: z.ZodObject<{
|
|
|
7028
7072
|
requiredChecksPassed: boolean | null;
|
|
7029
7073
|
canMerge: boolean | null;
|
|
7030
7074
|
hasConflicts: boolean | null;
|
|
7075
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
7031
7076
|
}, {
|
|
7032
7077
|
number: number;
|
|
7033
7078
|
title: string;
|
|
@@ -7041,6 +7086,7 @@ export declare const AgentUpdateMessageSchema: z.ZodObject<{
|
|
|
7041
7086
|
canMerge: boolean | null;
|
|
7042
7087
|
hasConflicts: boolean | null;
|
|
7043
7088
|
detailLevel?: "summary" | "detail" | undefined;
|
|
7089
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
7044
7090
|
}>>>>;
|
|
7045
7091
|
}, "strip", z.ZodTypeAny, {
|
|
7046
7092
|
archivedAt: string;
|
|
@@ -7066,6 +7112,7 @@ export declare const AgentUpdateMessageSchema: z.ZodObject<{
|
|
|
7066
7112
|
requiredChecksPassed: boolean | null;
|
|
7067
7113
|
canMerge: boolean | null;
|
|
7068
7114
|
hasConflicts: boolean | null;
|
|
7115
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
7069
7116
|
} | null | undefined;
|
|
7070
7117
|
}, {
|
|
7071
7118
|
archivedAt: string;
|
|
@@ -7091,6 +7138,7 @@ export declare const AgentUpdateMessageSchema: z.ZodObject<{
|
|
|
7091
7138
|
canMerge: boolean | null;
|
|
7092
7139
|
hasConflicts: boolean | null;
|
|
7093
7140
|
detailLevel?: "summary" | "detail" | undefined;
|
|
7141
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
7094
7142
|
} | null | undefined;
|
|
7095
7143
|
}>>>;
|
|
7096
7144
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7140,6 +7188,7 @@ export declare const AgentUpdateMessageSchema: z.ZodObject<{
|
|
|
7140
7188
|
requiredChecksPassed: boolean | null;
|
|
7141
7189
|
canMerge: boolean | null;
|
|
7142
7190
|
hasConflicts: boolean | null;
|
|
7191
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
7143
7192
|
} | null | undefined;
|
|
7144
7193
|
} | null | undefined;
|
|
7145
7194
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -7194,6 +7243,7 @@ export declare const AgentUpdateMessageSchema: z.ZodObject<{
|
|
|
7194
7243
|
canMerge: boolean | null;
|
|
7195
7244
|
hasConflicts: boolean | null;
|
|
7196
7245
|
detailLevel?: "summary" | "detail" | undefined;
|
|
7246
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
7197
7247
|
} | null | undefined;
|
|
7198
7248
|
} | null | undefined;
|
|
7199
7249
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -7369,6 +7419,7 @@ export declare const AgentUpdateMessageSchema: z.ZodObject<{
|
|
|
7369
7419
|
requiredChecksPassed: boolean | null;
|
|
7370
7420
|
canMerge: boolean | null;
|
|
7371
7421
|
hasConflicts: boolean | null;
|
|
7422
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
7372
7423
|
} | null | undefined;
|
|
7373
7424
|
} | null | undefined;
|
|
7374
7425
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -7452,6 +7503,7 @@ export declare const AgentUpdateMessageSchema: z.ZodObject<{
|
|
|
7452
7503
|
canMerge: boolean | null;
|
|
7453
7504
|
hasConflicts: boolean | null;
|
|
7454
7505
|
detailLevel?: "summary" | "detail" | undefined;
|
|
7506
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
7455
7507
|
} | null | undefined;
|
|
7456
7508
|
} | null | undefined;
|
|
7457
7509
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -7547,6 +7599,7 @@ export declare const AgentUpdateMessageSchema: z.ZodObject<{
|
|
|
7547
7599
|
requiredChecksPassed: boolean | null;
|
|
7548
7600
|
canMerge: boolean | null;
|
|
7549
7601
|
hasConflicts: boolean | null;
|
|
7602
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
7550
7603
|
} | null | undefined;
|
|
7551
7604
|
} | null | undefined;
|
|
7552
7605
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -7636,6 +7689,7 @@ export declare const AgentUpdateMessageSchema: z.ZodObject<{
|
|
|
7636
7689
|
canMerge: boolean | null;
|
|
7637
7690
|
hasConflicts: boolean | null;
|
|
7638
7691
|
detailLevel?: "summary" | "detail" | undefined;
|
|
7692
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
7639
7693
|
} | null | undefined;
|
|
7640
7694
|
} | null | undefined;
|
|
7641
7695
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -8161,6 +8215,7 @@ export declare const AgentStatusMessageSchema: z.ZodObject<{
|
|
|
8161
8215
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
8162
8216
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
8163
8217
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
8218
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
8164
8219
|
}, "strip", z.ZodTypeAny, {
|
|
8165
8220
|
number: number;
|
|
8166
8221
|
title: string;
|
|
@@ -8174,6 +8229,7 @@ export declare const AgentStatusMessageSchema: z.ZodObject<{
|
|
|
8174
8229
|
requiredChecksPassed: boolean | null;
|
|
8175
8230
|
canMerge: boolean | null;
|
|
8176
8231
|
hasConflicts: boolean | null;
|
|
8232
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
8177
8233
|
}, {
|
|
8178
8234
|
number: number;
|
|
8179
8235
|
title: string;
|
|
@@ -8187,6 +8243,7 @@ export declare const AgentStatusMessageSchema: z.ZodObject<{
|
|
|
8187
8243
|
canMerge: boolean | null;
|
|
8188
8244
|
hasConflicts: boolean | null;
|
|
8189
8245
|
detailLevel?: "summary" | "detail" | undefined;
|
|
8246
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
8190
8247
|
}>>>>;
|
|
8191
8248
|
}, "strip", z.ZodTypeAny, {
|
|
8192
8249
|
archivedAt: string;
|
|
@@ -8212,6 +8269,7 @@ export declare const AgentStatusMessageSchema: z.ZodObject<{
|
|
|
8212
8269
|
requiredChecksPassed: boolean | null;
|
|
8213
8270
|
canMerge: boolean | null;
|
|
8214
8271
|
hasConflicts: boolean | null;
|
|
8272
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
8215
8273
|
} | null | undefined;
|
|
8216
8274
|
}, {
|
|
8217
8275
|
archivedAt: string;
|
|
@@ -8237,6 +8295,7 @@ export declare const AgentStatusMessageSchema: z.ZodObject<{
|
|
|
8237
8295
|
canMerge: boolean | null;
|
|
8238
8296
|
hasConflicts: boolean | null;
|
|
8239
8297
|
detailLevel?: "summary" | "detail" | undefined;
|
|
8298
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
8240
8299
|
} | null | undefined;
|
|
8241
8300
|
}>>>;
|
|
8242
8301
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8286,6 +8345,7 @@ export declare const AgentStatusMessageSchema: z.ZodObject<{
|
|
|
8286
8345
|
requiredChecksPassed: boolean | null;
|
|
8287
8346
|
canMerge: boolean | null;
|
|
8288
8347
|
hasConflicts: boolean | null;
|
|
8348
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
8289
8349
|
} | null | undefined;
|
|
8290
8350
|
} | null | undefined;
|
|
8291
8351
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -8340,6 +8400,7 @@ export declare const AgentStatusMessageSchema: z.ZodObject<{
|
|
|
8340
8400
|
canMerge: boolean | null;
|
|
8341
8401
|
hasConflicts: boolean | null;
|
|
8342
8402
|
detailLevel?: "summary" | "detail" | undefined;
|
|
8403
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
8343
8404
|
} | null | undefined;
|
|
8344
8405
|
} | null | undefined;
|
|
8345
8406
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -8398,6 +8459,7 @@ export declare const AgentStatusMessageSchema: z.ZodObject<{
|
|
|
8398
8459
|
requiredChecksPassed: boolean | null;
|
|
8399
8460
|
canMerge: boolean | null;
|
|
8400
8461
|
hasConflicts: boolean | null;
|
|
8462
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
8401
8463
|
} | null | undefined;
|
|
8402
8464
|
} | null | undefined;
|
|
8403
8465
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -8456,6 +8518,7 @@ export declare const AgentStatusMessageSchema: z.ZodObject<{
|
|
|
8456
8518
|
canMerge: boolean | null;
|
|
8457
8519
|
hasConflicts: boolean | null;
|
|
8458
8520
|
detailLevel?: "summary" | "detail" | undefined;
|
|
8521
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
8459
8522
|
} | null | undefined;
|
|
8460
8523
|
} | null | undefined;
|
|
8461
8524
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -8517,6 +8580,7 @@ export declare const AgentStatusMessageSchema: z.ZodObject<{
|
|
|
8517
8580
|
requiredChecksPassed: boolean | null;
|
|
8518
8581
|
canMerge: boolean | null;
|
|
8519
8582
|
hasConflicts: boolean | null;
|
|
8583
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
8520
8584
|
} | null | undefined;
|
|
8521
8585
|
} | null | undefined;
|
|
8522
8586
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -8578,6 +8642,7 @@ export declare const AgentStatusMessageSchema: z.ZodObject<{
|
|
|
8578
8642
|
canMerge: boolean | null;
|
|
8579
8643
|
hasConflicts: boolean | null;
|
|
8580
8644
|
detailLevel?: "summary" | "detail" | undefined;
|
|
8645
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
8581
8646
|
} | null | undefined;
|
|
8582
8647
|
} | null | undefined;
|
|
8583
8648
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -8643,6 +8708,7 @@ export declare const AgentListMessageSchema: z.ZodObject<{
|
|
|
8643
8708
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
8644
8709
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
8645
8710
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
8711
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
8646
8712
|
}, "strip", z.ZodTypeAny, {
|
|
8647
8713
|
number: number;
|
|
8648
8714
|
title: string;
|
|
@@ -8656,6 +8722,7 @@ export declare const AgentListMessageSchema: z.ZodObject<{
|
|
|
8656
8722
|
requiredChecksPassed: boolean | null;
|
|
8657
8723
|
canMerge: boolean | null;
|
|
8658
8724
|
hasConflicts: boolean | null;
|
|
8725
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
8659
8726
|
}, {
|
|
8660
8727
|
number: number;
|
|
8661
8728
|
title: string;
|
|
@@ -8669,6 +8736,7 @@ export declare const AgentListMessageSchema: z.ZodObject<{
|
|
|
8669
8736
|
canMerge: boolean | null;
|
|
8670
8737
|
hasConflicts: boolean | null;
|
|
8671
8738
|
detailLevel?: "summary" | "detail" | undefined;
|
|
8739
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
8672
8740
|
}>>>>;
|
|
8673
8741
|
}, "strip", z.ZodTypeAny, {
|
|
8674
8742
|
archivedAt: string;
|
|
@@ -8694,6 +8762,7 @@ export declare const AgentListMessageSchema: z.ZodObject<{
|
|
|
8694
8762
|
requiredChecksPassed: boolean | null;
|
|
8695
8763
|
canMerge: boolean | null;
|
|
8696
8764
|
hasConflicts: boolean | null;
|
|
8765
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
8697
8766
|
} | null | undefined;
|
|
8698
8767
|
}, {
|
|
8699
8768
|
archivedAt: string;
|
|
@@ -8719,6 +8788,7 @@ export declare const AgentListMessageSchema: z.ZodObject<{
|
|
|
8719
8788
|
canMerge: boolean | null;
|
|
8720
8789
|
hasConflicts: boolean | null;
|
|
8721
8790
|
detailLevel?: "summary" | "detail" | undefined;
|
|
8791
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
8722
8792
|
} | null | undefined;
|
|
8723
8793
|
}>>>;
|
|
8724
8794
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8768,6 +8838,7 @@ export declare const AgentListMessageSchema: z.ZodObject<{
|
|
|
8768
8838
|
requiredChecksPassed: boolean | null;
|
|
8769
8839
|
canMerge: boolean | null;
|
|
8770
8840
|
hasConflicts: boolean | null;
|
|
8841
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
8771
8842
|
} | null | undefined;
|
|
8772
8843
|
} | null | undefined;
|
|
8773
8844
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -8822,6 +8893,7 @@ export declare const AgentListMessageSchema: z.ZodObject<{
|
|
|
8822
8893
|
canMerge: boolean | null;
|
|
8823
8894
|
hasConflicts: boolean | null;
|
|
8824
8895
|
detailLevel?: "summary" | "detail" | undefined;
|
|
8896
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
8825
8897
|
} | null | undefined;
|
|
8826
8898
|
} | null | undefined;
|
|
8827
8899
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -8878,6 +8950,7 @@ export declare const AgentListMessageSchema: z.ZodObject<{
|
|
|
8878
8950
|
requiredChecksPassed: boolean | null;
|
|
8879
8951
|
canMerge: boolean | null;
|
|
8880
8952
|
hasConflicts: boolean | null;
|
|
8953
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
8881
8954
|
} | null | undefined;
|
|
8882
8955
|
} | null | undefined;
|
|
8883
8956
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -8934,6 +9007,7 @@ export declare const AgentListMessageSchema: z.ZodObject<{
|
|
|
8934
9007
|
canMerge: boolean | null;
|
|
8935
9008
|
hasConflicts: boolean | null;
|
|
8936
9009
|
detailLevel?: "summary" | "detail" | undefined;
|
|
9010
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
8937
9011
|
} | null | undefined;
|
|
8938
9012
|
} | null | undefined;
|
|
8939
9013
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -8993,6 +9067,7 @@ export declare const AgentListMessageSchema: z.ZodObject<{
|
|
|
8993
9067
|
requiredChecksPassed: boolean | null;
|
|
8994
9068
|
canMerge: boolean | null;
|
|
8995
9069
|
hasConflicts: boolean | null;
|
|
9070
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
8996
9071
|
} | null | undefined;
|
|
8997
9072
|
} | null | undefined;
|
|
8998
9073
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -9052,6 +9127,7 @@ export declare const AgentListMessageSchema: z.ZodObject<{
|
|
|
9052
9127
|
canMerge: boolean | null;
|
|
9053
9128
|
hasConflicts: boolean | null;
|
|
9054
9129
|
detailLevel?: "summary" | "detail" | undefined;
|
|
9130
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
9055
9131
|
} | null | undefined;
|
|
9056
9132
|
} | null | undefined;
|
|
9057
9133
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -9120,6 +9196,7 @@ export declare const FetchAgentsResponseMessageSchema: z.ZodObject<{
|
|
|
9120
9196
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
9121
9197
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
9122
9198
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
9199
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
9123
9200
|
}, "strip", z.ZodTypeAny, {
|
|
9124
9201
|
number: number;
|
|
9125
9202
|
title: string;
|
|
@@ -9133,6 +9210,7 @@ export declare const FetchAgentsResponseMessageSchema: z.ZodObject<{
|
|
|
9133
9210
|
requiredChecksPassed: boolean | null;
|
|
9134
9211
|
canMerge: boolean | null;
|
|
9135
9212
|
hasConflicts: boolean | null;
|
|
9213
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
9136
9214
|
}, {
|
|
9137
9215
|
number: number;
|
|
9138
9216
|
title: string;
|
|
@@ -9146,6 +9224,7 @@ export declare const FetchAgentsResponseMessageSchema: z.ZodObject<{
|
|
|
9146
9224
|
canMerge: boolean | null;
|
|
9147
9225
|
hasConflicts: boolean | null;
|
|
9148
9226
|
detailLevel?: "summary" | "detail" | undefined;
|
|
9227
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
9149
9228
|
}>>>>;
|
|
9150
9229
|
}, "strip", z.ZodTypeAny, {
|
|
9151
9230
|
archivedAt: string;
|
|
@@ -9171,6 +9250,7 @@ export declare const FetchAgentsResponseMessageSchema: z.ZodObject<{
|
|
|
9171
9250
|
requiredChecksPassed: boolean | null;
|
|
9172
9251
|
canMerge: boolean | null;
|
|
9173
9252
|
hasConflicts: boolean | null;
|
|
9253
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
9174
9254
|
} | null | undefined;
|
|
9175
9255
|
}, {
|
|
9176
9256
|
archivedAt: string;
|
|
@@ -9196,6 +9276,7 @@ export declare const FetchAgentsResponseMessageSchema: z.ZodObject<{
|
|
|
9196
9276
|
canMerge: boolean | null;
|
|
9197
9277
|
hasConflicts: boolean | null;
|
|
9198
9278
|
detailLevel?: "summary" | "detail" | undefined;
|
|
9279
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
9199
9280
|
} | null | undefined;
|
|
9200
9281
|
}>>>;
|
|
9201
9282
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -9245,6 +9326,7 @@ export declare const FetchAgentsResponseMessageSchema: z.ZodObject<{
|
|
|
9245
9326
|
requiredChecksPassed: boolean | null;
|
|
9246
9327
|
canMerge: boolean | null;
|
|
9247
9328
|
hasConflicts: boolean | null;
|
|
9329
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
9248
9330
|
} | null | undefined;
|
|
9249
9331
|
} | null | undefined;
|
|
9250
9332
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -9299,6 +9381,7 @@ export declare const FetchAgentsResponseMessageSchema: z.ZodObject<{
|
|
|
9299
9381
|
canMerge: boolean | null;
|
|
9300
9382
|
hasConflicts: boolean | null;
|
|
9301
9383
|
detailLevel?: "summary" | "detail" | undefined;
|
|
9384
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
9302
9385
|
} | null | undefined;
|
|
9303
9386
|
} | null | undefined;
|
|
9304
9387
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -9473,6 +9556,7 @@ export declare const FetchAgentsResponseMessageSchema: z.ZodObject<{
|
|
|
9473
9556
|
requiredChecksPassed: boolean | null;
|
|
9474
9557
|
canMerge: boolean | null;
|
|
9475
9558
|
hasConflicts: boolean | null;
|
|
9559
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
9476
9560
|
} | null | undefined;
|
|
9477
9561
|
} | null | undefined;
|
|
9478
9562
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -9555,6 +9639,7 @@ export declare const FetchAgentsResponseMessageSchema: z.ZodObject<{
|
|
|
9555
9639
|
canMerge: boolean | null;
|
|
9556
9640
|
hasConflicts: boolean | null;
|
|
9557
9641
|
detailLevel?: "summary" | "detail" | undefined;
|
|
9642
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
9558
9643
|
} | null | undefined;
|
|
9559
9644
|
} | null | undefined;
|
|
9560
9645
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -9652,6 +9737,7 @@ export declare const FetchAgentsResponseMessageSchema: z.ZodObject<{
|
|
|
9652
9737
|
requiredChecksPassed: boolean | null;
|
|
9653
9738
|
canMerge: boolean | null;
|
|
9654
9739
|
hasConflicts: boolean | null;
|
|
9740
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
9655
9741
|
} | null | undefined;
|
|
9656
9742
|
} | null | undefined;
|
|
9657
9743
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -9743,6 +9829,7 @@ export declare const FetchAgentsResponseMessageSchema: z.ZodObject<{
|
|
|
9743
9829
|
canMerge: boolean | null;
|
|
9744
9830
|
hasConflicts: boolean | null;
|
|
9745
9831
|
detailLevel?: "summary" | "detail" | undefined;
|
|
9832
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
9746
9833
|
} | null | undefined;
|
|
9747
9834
|
} | null | undefined;
|
|
9748
9835
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -9837,6 +9924,7 @@ export declare const FetchAgentsResponseMessageSchema: z.ZodObject<{
|
|
|
9837
9924
|
requiredChecksPassed: boolean | null;
|
|
9838
9925
|
canMerge: boolean | null;
|
|
9839
9926
|
hasConflicts: boolean | null;
|
|
9927
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
9840
9928
|
} | null | undefined;
|
|
9841
9929
|
} | null | undefined;
|
|
9842
9930
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -9931,6 +10019,7 @@ export declare const FetchAgentsResponseMessageSchema: z.ZodObject<{
|
|
|
9931
10019
|
canMerge: boolean | null;
|
|
9932
10020
|
hasConflicts: boolean | null;
|
|
9933
10021
|
detailLevel?: "summary" | "detail" | undefined;
|
|
10022
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
9934
10023
|
} | null | undefined;
|
|
9935
10024
|
} | null | undefined;
|
|
9936
10025
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -10031,6 +10120,7 @@ export declare const FetchAgentResponseMessageSchema: z.ZodObject<{
|
|
|
10031
10120
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
10032
10121
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
10033
10122
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
10123
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
10034
10124
|
}, "strip", z.ZodTypeAny, {
|
|
10035
10125
|
number: number;
|
|
10036
10126
|
title: string;
|
|
@@ -10044,6 +10134,7 @@ export declare const FetchAgentResponseMessageSchema: z.ZodObject<{
|
|
|
10044
10134
|
requiredChecksPassed: boolean | null;
|
|
10045
10135
|
canMerge: boolean | null;
|
|
10046
10136
|
hasConflicts: boolean | null;
|
|
10137
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
10047
10138
|
}, {
|
|
10048
10139
|
number: number;
|
|
10049
10140
|
title: string;
|
|
@@ -10057,6 +10148,7 @@ export declare const FetchAgentResponseMessageSchema: z.ZodObject<{
|
|
|
10057
10148
|
canMerge: boolean | null;
|
|
10058
10149
|
hasConflicts: boolean | null;
|
|
10059
10150
|
detailLevel?: "summary" | "detail" | undefined;
|
|
10151
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
10060
10152
|
}>>>>;
|
|
10061
10153
|
}, "strip", z.ZodTypeAny, {
|
|
10062
10154
|
archivedAt: string;
|
|
@@ -10082,6 +10174,7 @@ export declare const FetchAgentResponseMessageSchema: z.ZodObject<{
|
|
|
10082
10174
|
requiredChecksPassed: boolean | null;
|
|
10083
10175
|
canMerge: boolean | null;
|
|
10084
10176
|
hasConflicts: boolean | null;
|
|
10177
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
10085
10178
|
} | null | undefined;
|
|
10086
10179
|
}, {
|
|
10087
10180
|
archivedAt: string;
|
|
@@ -10107,6 +10200,7 @@ export declare const FetchAgentResponseMessageSchema: z.ZodObject<{
|
|
|
10107
10200
|
canMerge: boolean | null;
|
|
10108
10201
|
hasConflicts: boolean | null;
|
|
10109
10202
|
detailLevel?: "summary" | "detail" | undefined;
|
|
10203
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
10110
10204
|
} | null | undefined;
|
|
10111
10205
|
}>>>;
|
|
10112
10206
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -10156,6 +10250,7 @@ export declare const FetchAgentResponseMessageSchema: z.ZodObject<{
|
|
|
10156
10250
|
requiredChecksPassed: boolean | null;
|
|
10157
10251
|
canMerge: boolean | null;
|
|
10158
10252
|
hasConflicts: boolean | null;
|
|
10253
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
10159
10254
|
} | null | undefined;
|
|
10160
10255
|
} | null | undefined;
|
|
10161
10256
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -10210,6 +10305,7 @@ export declare const FetchAgentResponseMessageSchema: z.ZodObject<{
|
|
|
10210
10305
|
canMerge: boolean | null;
|
|
10211
10306
|
hasConflicts: boolean | null;
|
|
10212
10307
|
detailLevel?: "summary" | "detail" | undefined;
|
|
10308
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
10213
10309
|
} | null | undefined;
|
|
10214
10310
|
} | null | undefined;
|
|
10215
10311
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -10387,6 +10483,7 @@ export declare const FetchAgentResponseMessageSchema: z.ZodObject<{
|
|
|
10387
10483
|
requiredChecksPassed: boolean | null;
|
|
10388
10484
|
canMerge: boolean | null;
|
|
10389
10485
|
hasConflicts: boolean | null;
|
|
10486
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
10390
10487
|
} | null | undefined;
|
|
10391
10488
|
} | null | undefined;
|
|
10392
10489
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -10471,6 +10568,7 @@ export declare const FetchAgentResponseMessageSchema: z.ZodObject<{
|
|
|
10471
10568
|
canMerge: boolean | null;
|
|
10472
10569
|
hasConflicts: boolean | null;
|
|
10473
10570
|
detailLevel?: "summary" | "detail" | undefined;
|
|
10571
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
10474
10572
|
} | null | undefined;
|
|
10475
10573
|
} | null | undefined;
|
|
10476
10574
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -10558,6 +10656,7 @@ export declare const FetchAgentResponseMessageSchema: z.ZodObject<{
|
|
|
10558
10656
|
requiredChecksPassed: boolean | null;
|
|
10559
10657
|
canMerge: boolean | null;
|
|
10560
10658
|
hasConflicts: boolean | null;
|
|
10659
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
10561
10660
|
} | null | undefined;
|
|
10562
10661
|
} | null | undefined;
|
|
10563
10662
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -10645,6 +10744,7 @@ export declare const FetchAgentResponseMessageSchema: z.ZodObject<{
|
|
|
10645
10744
|
canMerge: boolean | null;
|
|
10646
10745
|
hasConflicts: boolean | null;
|
|
10647
10746
|
detailLevel?: "summary" | "detail" | undefined;
|
|
10747
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
10648
10748
|
} | null | undefined;
|
|
10649
10749
|
} | null | undefined;
|
|
10650
10750
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -12116,6 +12216,7 @@ export declare const WaitForFinishResponseMessageSchema: z.ZodObject<{
|
|
|
12116
12216
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
12117
12217
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
12118
12218
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
12219
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
12119
12220
|
}, "strip", z.ZodTypeAny, {
|
|
12120
12221
|
number: number;
|
|
12121
12222
|
title: string;
|
|
@@ -12129,6 +12230,7 @@ export declare const WaitForFinishResponseMessageSchema: z.ZodObject<{
|
|
|
12129
12230
|
requiredChecksPassed: boolean | null;
|
|
12130
12231
|
canMerge: boolean | null;
|
|
12131
12232
|
hasConflicts: boolean | null;
|
|
12233
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
12132
12234
|
}, {
|
|
12133
12235
|
number: number;
|
|
12134
12236
|
title: string;
|
|
@@ -12142,6 +12244,7 @@ export declare const WaitForFinishResponseMessageSchema: z.ZodObject<{
|
|
|
12142
12244
|
canMerge: boolean | null;
|
|
12143
12245
|
hasConflicts: boolean | null;
|
|
12144
12246
|
detailLevel?: "summary" | "detail" | undefined;
|
|
12247
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
12145
12248
|
}>>>>;
|
|
12146
12249
|
}, "strip", z.ZodTypeAny, {
|
|
12147
12250
|
archivedAt: string;
|
|
@@ -12167,6 +12270,7 @@ export declare const WaitForFinishResponseMessageSchema: z.ZodObject<{
|
|
|
12167
12270
|
requiredChecksPassed: boolean | null;
|
|
12168
12271
|
canMerge: boolean | null;
|
|
12169
12272
|
hasConflicts: boolean | null;
|
|
12273
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
12170
12274
|
} | null | undefined;
|
|
12171
12275
|
}, {
|
|
12172
12276
|
archivedAt: string;
|
|
@@ -12192,6 +12296,7 @@ export declare const WaitForFinishResponseMessageSchema: z.ZodObject<{
|
|
|
12192
12296
|
canMerge: boolean | null;
|
|
12193
12297
|
hasConflicts: boolean | null;
|
|
12194
12298
|
detailLevel?: "summary" | "detail" | undefined;
|
|
12299
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
12195
12300
|
} | null | undefined;
|
|
12196
12301
|
}>>>;
|
|
12197
12302
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -12241,6 +12346,7 @@ export declare const WaitForFinishResponseMessageSchema: z.ZodObject<{
|
|
|
12241
12346
|
requiredChecksPassed: boolean | null;
|
|
12242
12347
|
canMerge: boolean | null;
|
|
12243
12348
|
hasConflicts: boolean | null;
|
|
12349
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
12244
12350
|
} | null | undefined;
|
|
12245
12351
|
} | null | undefined;
|
|
12246
12352
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -12295,6 +12401,7 @@ export declare const WaitForFinishResponseMessageSchema: z.ZodObject<{
|
|
|
12295
12401
|
canMerge: boolean | null;
|
|
12296
12402
|
hasConflicts: boolean | null;
|
|
12297
12403
|
detailLevel?: "summary" | "detail" | undefined;
|
|
12404
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
12298
12405
|
} | null | undefined;
|
|
12299
12406
|
} | null | undefined;
|
|
12300
12407
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -12356,6 +12463,7 @@ export declare const WaitForFinishResponseMessageSchema: z.ZodObject<{
|
|
|
12356
12463
|
requiredChecksPassed: boolean | null;
|
|
12357
12464
|
canMerge: boolean | null;
|
|
12358
12465
|
hasConflicts: boolean | null;
|
|
12466
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
12359
12467
|
} | null | undefined;
|
|
12360
12468
|
} | null | undefined;
|
|
12361
12469
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -12416,6 +12524,7 @@ export declare const WaitForFinishResponseMessageSchema: z.ZodObject<{
|
|
|
12416
12524
|
canMerge: boolean | null;
|
|
12417
12525
|
hasConflicts: boolean | null;
|
|
12418
12526
|
detailLevel?: "summary" | "detail" | undefined;
|
|
12527
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
12419
12528
|
} | null | undefined;
|
|
12420
12529
|
} | null | undefined;
|
|
12421
12530
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -12479,6 +12588,7 @@ export declare const WaitForFinishResponseMessageSchema: z.ZodObject<{
|
|
|
12479
12588
|
requiredChecksPassed: boolean | null;
|
|
12480
12589
|
canMerge: boolean | null;
|
|
12481
12590
|
hasConflicts: boolean | null;
|
|
12591
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
12482
12592
|
} | null | undefined;
|
|
12483
12593
|
} | null | undefined;
|
|
12484
12594
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -12542,6 +12652,7 @@ export declare const WaitForFinishResponseMessageSchema: z.ZodObject<{
|
|
|
12542
12652
|
canMerge: boolean | null;
|
|
12543
12653
|
hasConflicts: boolean | null;
|
|
12544
12654
|
detailLevel?: "summary" | "detail" | undefined;
|
|
12655
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
12545
12656
|
} | null | undefined;
|
|
12546
12657
|
} | null | undefined;
|
|
12547
12658
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -13293,6 +13404,7 @@ export declare const SubscribeWorkspaceStatusResponseSchema: z.ZodObject<{
|
|
|
13293
13404
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
13294
13405
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
13295
13406
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
13407
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
13296
13408
|
}, "strip", z.ZodTypeAny, {
|
|
13297
13409
|
number: number;
|
|
13298
13410
|
title: string;
|
|
@@ -13306,6 +13418,7 @@ export declare const SubscribeWorkspaceStatusResponseSchema: z.ZodObject<{
|
|
|
13306
13418
|
requiredChecksPassed: boolean | null;
|
|
13307
13419
|
canMerge: boolean | null;
|
|
13308
13420
|
hasConflicts: boolean | null;
|
|
13421
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
13309
13422
|
}, {
|
|
13310
13423
|
number: number;
|
|
13311
13424
|
title: string;
|
|
@@ -13319,6 +13432,7 @@ export declare const SubscribeWorkspaceStatusResponseSchema: z.ZodObject<{
|
|
|
13319
13432
|
canMerge: boolean | null;
|
|
13320
13433
|
hasConflicts: boolean | null;
|
|
13321
13434
|
detailLevel?: "summary" | "detail" | undefined;
|
|
13435
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
13322
13436
|
}>>>;
|
|
13323
13437
|
pullRequestError: z.ZodNullable<z.ZodObject<{
|
|
13324
13438
|
code: z.ZodEnum<["NOT_GIT_REPO", "NOT_ALLOWED", "MERGE_CONFLICT", "UNKNOWN"]>;
|
|
@@ -13351,6 +13465,7 @@ export declare const SubscribeWorkspaceStatusResponseSchema: z.ZodObject<{
|
|
|
13351
13465
|
requiredChecksPassed: boolean | null;
|
|
13352
13466
|
canMerge: boolean | null;
|
|
13353
13467
|
hasConflicts: boolean | null;
|
|
13468
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
13354
13469
|
} | null;
|
|
13355
13470
|
requestId: string;
|
|
13356
13471
|
subscriptionId: string;
|
|
@@ -13430,6 +13545,7 @@ export declare const SubscribeWorkspaceStatusResponseSchema: z.ZodObject<{
|
|
|
13430
13545
|
canMerge: boolean | null;
|
|
13431
13546
|
hasConflicts: boolean | null;
|
|
13432
13547
|
detailLevel?: "summary" | "detail" | undefined;
|
|
13548
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
13433
13549
|
} | null;
|
|
13434
13550
|
requestId: string;
|
|
13435
13551
|
subscriptionId: string;
|
|
@@ -13512,6 +13628,7 @@ export declare const SubscribeWorkspaceStatusResponseSchema: z.ZodObject<{
|
|
|
13512
13628
|
requiredChecksPassed: boolean | null;
|
|
13513
13629
|
canMerge: boolean | null;
|
|
13514
13630
|
hasConflicts: boolean | null;
|
|
13631
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
13515
13632
|
} | null;
|
|
13516
13633
|
requestId: string;
|
|
13517
13634
|
subscriptionId: string;
|
|
@@ -13594,6 +13711,7 @@ export declare const SubscribeWorkspaceStatusResponseSchema: z.ZodObject<{
|
|
|
13594
13711
|
canMerge: boolean | null;
|
|
13595
13712
|
hasConflicts: boolean | null;
|
|
13596
13713
|
detailLevel?: "summary" | "detail" | undefined;
|
|
13714
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
13597
13715
|
} | null;
|
|
13598
13716
|
requestId: string;
|
|
13599
13717
|
subscriptionId: string;
|
|
@@ -13886,6 +14004,7 @@ export declare const WorkspaceStatusChangedSchema: z.ZodObject<{
|
|
|
13886
14004
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
13887
14005
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
13888
14006
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
14007
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
13889
14008
|
}, "strip", z.ZodTypeAny, {
|
|
13890
14009
|
number: number;
|
|
13891
14010
|
title: string;
|
|
@@ -13899,6 +14018,7 @@ export declare const WorkspaceStatusChangedSchema: z.ZodObject<{
|
|
|
13899
14018
|
requiredChecksPassed: boolean | null;
|
|
13900
14019
|
canMerge: boolean | null;
|
|
13901
14020
|
hasConflicts: boolean | null;
|
|
14021
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
13902
14022
|
}, {
|
|
13903
14023
|
number: number;
|
|
13904
14024
|
title: string;
|
|
@@ -13912,6 +14032,7 @@ export declare const WorkspaceStatusChangedSchema: z.ZodObject<{
|
|
|
13912
14032
|
canMerge: boolean | null;
|
|
13913
14033
|
hasConflicts: boolean | null;
|
|
13914
14034
|
detailLevel?: "summary" | "detail" | undefined;
|
|
14035
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
13915
14036
|
}>>>;
|
|
13916
14037
|
pullRequestError: z.ZodNullable<z.ZodObject<{
|
|
13917
14038
|
code: z.ZodEnum<["NOT_GIT_REPO", "NOT_ALLOWED", "MERGE_CONFLICT", "UNKNOWN"]>;
|
|
@@ -13941,6 +14062,7 @@ export declare const WorkspaceStatusChangedSchema: z.ZodObject<{
|
|
|
13941
14062
|
requiredChecksPassed: boolean | null;
|
|
13942
14063
|
canMerge: boolean | null;
|
|
13943
14064
|
hasConflicts: boolean | null;
|
|
14065
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
13944
14066
|
} | null;
|
|
13945
14067
|
git: {
|
|
13946
14068
|
repoRoot: null;
|
|
@@ -14018,6 +14140,7 @@ export declare const WorkspaceStatusChangedSchema: z.ZodObject<{
|
|
|
14018
14140
|
canMerge: boolean | null;
|
|
14019
14141
|
hasConflicts: boolean | null;
|
|
14020
14142
|
detailLevel?: "summary" | "detail" | undefined;
|
|
14143
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
14021
14144
|
} | null;
|
|
14022
14145
|
git: {
|
|
14023
14146
|
repoRoot: null;
|
|
@@ -14098,6 +14221,7 @@ export declare const WorkspaceStatusChangedSchema: z.ZodObject<{
|
|
|
14098
14221
|
requiredChecksPassed: boolean | null;
|
|
14099
14222
|
canMerge: boolean | null;
|
|
14100
14223
|
hasConflicts: boolean | null;
|
|
14224
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
14101
14225
|
} | null;
|
|
14102
14226
|
git: {
|
|
14103
14227
|
repoRoot: null;
|
|
@@ -14178,6 +14302,7 @@ export declare const WorkspaceStatusChangedSchema: z.ZodObject<{
|
|
|
14178
14302
|
canMerge: boolean | null;
|
|
14179
14303
|
hasConflicts: boolean | null;
|
|
14180
14304
|
detailLevel?: "summary" | "detail" | undefined;
|
|
14305
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
14181
14306
|
} | null;
|
|
14182
14307
|
git: {
|
|
14183
14308
|
repoRoot: null;
|
|
@@ -15043,6 +15168,7 @@ export declare const CheckoutPrStatusSchema: z.ZodObject<{
|
|
|
15043
15168
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
15044
15169
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
15045
15170
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
15171
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
15046
15172
|
}, "strip", z.ZodTypeAny, {
|
|
15047
15173
|
number: number;
|
|
15048
15174
|
title: string;
|
|
@@ -15056,6 +15182,7 @@ export declare const CheckoutPrStatusSchema: z.ZodObject<{
|
|
|
15056
15182
|
requiredChecksPassed: boolean | null;
|
|
15057
15183
|
canMerge: boolean | null;
|
|
15058
15184
|
hasConflicts: boolean | null;
|
|
15185
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
15059
15186
|
}, {
|
|
15060
15187
|
number: number;
|
|
15061
15188
|
title: string;
|
|
@@ -15069,6 +15196,7 @@ export declare const CheckoutPrStatusSchema: z.ZodObject<{
|
|
|
15069
15196
|
canMerge: boolean | null;
|
|
15070
15197
|
hasConflicts: boolean | null;
|
|
15071
15198
|
detailLevel?: "summary" | "detail" | undefined;
|
|
15199
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
15072
15200
|
}>;
|
|
15073
15201
|
export declare const CheckoutPrStatusResponseSchema: z.ZodObject<{
|
|
15074
15202
|
type: z.ZodLiteral<"checkout_pr_status_response">;
|
|
@@ -15087,6 +15215,7 @@ export declare const CheckoutPrStatusResponseSchema: z.ZodObject<{
|
|
|
15087
15215
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
15088
15216
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
15089
15217
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
15218
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
15090
15219
|
}, "strip", z.ZodTypeAny, {
|
|
15091
15220
|
number: number;
|
|
15092
15221
|
title: string;
|
|
@@ -15100,6 +15229,7 @@ export declare const CheckoutPrStatusResponseSchema: z.ZodObject<{
|
|
|
15100
15229
|
requiredChecksPassed: boolean | null;
|
|
15101
15230
|
canMerge: boolean | null;
|
|
15102
15231
|
hasConflicts: boolean | null;
|
|
15232
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
15103
15233
|
}, {
|
|
15104
15234
|
number: number;
|
|
15105
15235
|
title: string;
|
|
@@ -15113,6 +15243,7 @@ export declare const CheckoutPrStatusResponseSchema: z.ZodObject<{
|
|
|
15113
15243
|
canMerge: boolean | null;
|
|
15114
15244
|
hasConflicts: boolean | null;
|
|
15115
15245
|
detailLevel?: "summary" | "detail" | undefined;
|
|
15246
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
15116
15247
|
}>>;
|
|
15117
15248
|
githubFeaturesEnabled: z.ZodBoolean;
|
|
15118
15249
|
error: z.ZodNullable<z.ZodObject<{
|
|
@@ -15144,6 +15275,7 @@ export declare const CheckoutPrStatusResponseSchema: z.ZodObject<{
|
|
|
15144
15275
|
requiredChecksPassed: boolean | null;
|
|
15145
15276
|
canMerge: boolean | null;
|
|
15146
15277
|
hasConflicts: boolean | null;
|
|
15278
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
15147
15279
|
} | null;
|
|
15148
15280
|
cwd: string;
|
|
15149
15281
|
requestId: string;
|
|
@@ -15166,6 +15298,7 @@ export declare const CheckoutPrStatusResponseSchema: z.ZodObject<{
|
|
|
15166
15298
|
canMerge: boolean | null;
|
|
15167
15299
|
hasConflicts: boolean | null;
|
|
15168
15300
|
detailLevel?: "summary" | "detail" | undefined;
|
|
15301
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
15169
15302
|
} | null;
|
|
15170
15303
|
cwd: string;
|
|
15171
15304
|
requestId: string;
|
|
@@ -15191,6 +15324,7 @@ export declare const CheckoutPrStatusResponseSchema: z.ZodObject<{
|
|
|
15191
15324
|
requiredChecksPassed: boolean | null;
|
|
15192
15325
|
canMerge: boolean | null;
|
|
15193
15326
|
hasConflicts: boolean | null;
|
|
15327
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
15194
15328
|
} | null;
|
|
15195
15329
|
cwd: string;
|
|
15196
15330
|
requestId: string;
|
|
@@ -15216,6 +15350,7 @@ export declare const CheckoutPrStatusResponseSchema: z.ZodObject<{
|
|
|
15216
15350
|
canMerge: boolean | null;
|
|
15217
15351
|
hasConflicts: boolean | null;
|
|
15218
15352
|
detailLevel?: "summary" | "detail" | undefined;
|
|
15353
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
15219
15354
|
} | null;
|
|
15220
15355
|
cwd: string;
|
|
15221
15356
|
requestId: string;
|
|
@@ -15870,7 +16005,8 @@ export declare const JunctionWorktreeArchiveResponseSchema: z.ZodObject<{
|
|
|
15870
16005
|
type: z.ZodLiteral<"junction_worktree_archive_response">;
|
|
15871
16006
|
payload: z.ZodObject<{
|
|
15872
16007
|
success: z.ZodBoolean;
|
|
15873
|
-
|
|
16008
|
+
archivedAgentIds: z.ZodArray<z.ZodString, "many">;
|
|
16009
|
+
archivedAt: z.ZodNullable<z.ZodString>;
|
|
15874
16010
|
error: z.ZodNullable<z.ZodObject<{
|
|
15875
16011
|
code: z.ZodEnum<["NOT_GIT_REPO", "NOT_ALLOWED", "MERGE_CONFLICT", "UNKNOWN"]>;
|
|
15876
16012
|
message: z.ZodString;
|
|
@@ -15887,17 +16023,19 @@ export declare const JunctionWorktreeArchiveResponseSchema: z.ZodObject<{
|
|
|
15887
16023
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
15888
16024
|
message: string;
|
|
15889
16025
|
} | null;
|
|
16026
|
+
archivedAt: string | null;
|
|
15890
16027
|
requestId: string;
|
|
15891
16028
|
success: boolean;
|
|
15892
|
-
|
|
16029
|
+
archivedAgentIds: string[];
|
|
15893
16030
|
}, {
|
|
15894
16031
|
error: {
|
|
15895
16032
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
15896
16033
|
message: string;
|
|
15897
16034
|
} | null;
|
|
16035
|
+
archivedAt: string | null;
|
|
15898
16036
|
requestId: string;
|
|
15899
16037
|
success: boolean;
|
|
15900
|
-
|
|
16038
|
+
archivedAgentIds: string[];
|
|
15901
16039
|
}>;
|
|
15902
16040
|
}, "strip", z.ZodTypeAny, {
|
|
15903
16041
|
type: "junction_worktree_archive_response";
|
|
@@ -15906,9 +16044,10 @@ export declare const JunctionWorktreeArchiveResponseSchema: z.ZodObject<{
|
|
|
15906
16044
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
15907
16045
|
message: string;
|
|
15908
16046
|
} | null;
|
|
16047
|
+
archivedAt: string | null;
|
|
15909
16048
|
requestId: string;
|
|
15910
16049
|
success: boolean;
|
|
15911
|
-
|
|
16050
|
+
archivedAgentIds: string[];
|
|
15912
16051
|
};
|
|
15913
16052
|
}, {
|
|
15914
16053
|
type: "junction_worktree_archive_response";
|
|
@@ -15917,9 +16056,10 @@ export declare const JunctionWorktreeArchiveResponseSchema: z.ZodObject<{
|
|
|
15917
16056
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
15918
16057
|
message: string;
|
|
15919
16058
|
} | null;
|
|
16059
|
+
archivedAt: string | null;
|
|
15920
16060
|
requestId: string;
|
|
15921
16061
|
success: boolean;
|
|
15922
|
-
|
|
16062
|
+
archivedAgentIds: string[];
|
|
15923
16063
|
};
|
|
15924
16064
|
}>;
|
|
15925
16065
|
export declare const FileExplorerResponseSchema: z.ZodObject<{
|
|
@@ -18635,6 +18775,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
18635
18775
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
18636
18776
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
18637
18777
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
18778
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
18638
18779
|
}, "strip", z.ZodTypeAny, {
|
|
18639
18780
|
number: number;
|
|
18640
18781
|
title: string;
|
|
@@ -18648,6 +18789,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
18648
18789
|
requiredChecksPassed: boolean | null;
|
|
18649
18790
|
canMerge: boolean | null;
|
|
18650
18791
|
hasConflicts: boolean | null;
|
|
18792
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
18651
18793
|
}, {
|
|
18652
18794
|
number: number;
|
|
18653
18795
|
title: string;
|
|
@@ -18661,6 +18803,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
18661
18803
|
canMerge: boolean | null;
|
|
18662
18804
|
hasConflicts: boolean | null;
|
|
18663
18805
|
detailLevel?: "summary" | "detail" | undefined;
|
|
18806
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
18664
18807
|
}>>>>;
|
|
18665
18808
|
}, "strip", z.ZodTypeAny, {
|
|
18666
18809
|
archivedAt: string;
|
|
@@ -18686,6 +18829,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
18686
18829
|
requiredChecksPassed: boolean | null;
|
|
18687
18830
|
canMerge: boolean | null;
|
|
18688
18831
|
hasConflicts: boolean | null;
|
|
18832
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
18689
18833
|
} | null | undefined;
|
|
18690
18834
|
}, {
|
|
18691
18835
|
archivedAt: string;
|
|
@@ -18711,6 +18855,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
18711
18855
|
canMerge: boolean | null;
|
|
18712
18856
|
hasConflicts: boolean | null;
|
|
18713
18857
|
detailLevel?: "summary" | "detail" | undefined;
|
|
18858
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
18714
18859
|
} | null | undefined;
|
|
18715
18860
|
}>>>;
|
|
18716
18861
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -18760,6 +18905,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
18760
18905
|
requiredChecksPassed: boolean | null;
|
|
18761
18906
|
canMerge: boolean | null;
|
|
18762
18907
|
hasConflicts: boolean | null;
|
|
18908
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
18763
18909
|
} | null | undefined;
|
|
18764
18910
|
} | null | undefined;
|
|
18765
18911
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -18814,6 +18960,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
18814
18960
|
canMerge: boolean | null;
|
|
18815
18961
|
hasConflicts: boolean | null;
|
|
18816
18962
|
detailLevel?: "summary" | "detail" | undefined;
|
|
18963
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
18817
18964
|
} | null | undefined;
|
|
18818
18965
|
} | null | undefined;
|
|
18819
18966
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -18989,6 +19136,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
18989
19136
|
requiredChecksPassed: boolean | null;
|
|
18990
19137
|
canMerge: boolean | null;
|
|
18991
19138
|
hasConflicts: boolean | null;
|
|
19139
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
18992
19140
|
} | null | undefined;
|
|
18993
19141
|
} | null | undefined;
|
|
18994
19142
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -19072,6 +19220,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
19072
19220
|
canMerge: boolean | null;
|
|
19073
19221
|
hasConflicts: boolean | null;
|
|
19074
19222
|
detailLevel?: "summary" | "detail" | undefined;
|
|
19223
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
19075
19224
|
} | null | undefined;
|
|
19076
19225
|
} | null | undefined;
|
|
19077
19226
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -19167,6 +19316,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
19167
19316
|
requiredChecksPassed: boolean | null;
|
|
19168
19317
|
canMerge: boolean | null;
|
|
19169
19318
|
hasConflicts: boolean | null;
|
|
19319
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
19170
19320
|
} | null | undefined;
|
|
19171
19321
|
} | null | undefined;
|
|
19172
19322
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -19256,6 +19406,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
19256
19406
|
canMerge: boolean | null;
|
|
19257
19407
|
hasConflicts: boolean | null;
|
|
19258
19408
|
detailLevel?: "summary" | "detail" | undefined;
|
|
19409
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
19259
19410
|
} | null | undefined;
|
|
19260
19411
|
} | null | undefined;
|
|
19261
19412
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -19779,6 +19930,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
19779
19930
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
19780
19931
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
19781
19932
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
19933
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
19782
19934
|
}, "strip", z.ZodTypeAny, {
|
|
19783
19935
|
number: number;
|
|
19784
19936
|
title: string;
|
|
@@ -19792,6 +19944,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
19792
19944
|
requiredChecksPassed: boolean | null;
|
|
19793
19945
|
canMerge: boolean | null;
|
|
19794
19946
|
hasConflicts: boolean | null;
|
|
19947
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
19795
19948
|
}, {
|
|
19796
19949
|
number: number;
|
|
19797
19950
|
title: string;
|
|
@@ -19805,6 +19958,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
19805
19958
|
canMerge: boolean | null;
|
|
19806
19959
|
hasConflicts: boolean | null;
|
|
19807
19960
|
detailLevel?: "summary" | "detail" | undefined;
|
|
19961
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
19808
19962
|
}>>>>;
|
|
19809
19963
|
}, "strip", z.ZodTypeAny, {
|
|
19810
19964
|
archivedAt: string;
|
|
@@ -19830,6 +19984,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
19830
19984
|
requiredChecksPassed: boolean | null;
|
|
19831
19985
|
canMerge: boolean | null;
|
|
19832
19986
|
hasConflicts: boolean | null;
|
|
19987
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
19833
19988
|
} | null | undefined;
|
|
19834
19989
|
}, {
|
|
19835
19990
|
archivedAt: string;
|
|
@@ -19855,6 +20010,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
19855
20010
|
canMerge: boolean | null;
|
|
19856
20011
|
hasConflicts: boolean | null;
|
|
19857
20012
|
detailLevel?: "summary" | "detail" | undefined;
|
|
20013
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
19858
20014
|
} | null | undefined;
|
|
19859
20015
|
}>>>;
|
|
19860
20016
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -19904,6 +20060,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
19904
20060
|
requiredChecksPassed: boolean | null;
|
|
19905
20061
|
canMerge: boolean | null;
|
|
19906
20062
|
hasConflicts: boolean | null;
|
|
20063
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
19907
20064
|
} | null | undefined;
|
|
19908
20065
|
} | null | undefined;
|
|
19909
20066
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -19958,6 +20115,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
19958
20115
|
canMerge: boolean | null;
|
|
19959
20116
|
hasConflicts: boolean | null;
|
|
19960
20117
|
detailLevel?: "summary" | "detail" | undefined;
|
|
20118
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
19961
20119
|
} | null | undefined;
|
|
19962
20120
|
} | null | undefined;
|
|
19963
20121
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -20016,6 +20174,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20016
20174
|
requiredChecksPassed: boolean | null;
|
|
20017
20175
|
canMerge: boolean | null;
|
|
20018
20176
|
hasConflicts: boolean | null;
|
|
20177
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
20019
20178
|
} | null | undefined;
|
|
20020
20179
|
} | null | undefined;
|
|
20021
20180
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -20074,6 +20233,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20074
20233
|
canMerge: boolean | null;
|
|
20075
20234
|
hasConflicts: boolean | null;
|
|
20076
20235
|
detailLevel?: "summary" | "detail" | undefined;
|
|
20236
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
20077
20237
|
} | null | undefined;
|
|
20078
20238
|
} | null | undefined;
|
|
20079
20239
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -20135,6 +20295,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20135
20295
|
requiredChecksPassed: boolean | null;
|
|
20136
20296
|
canMerge: boolean | null;
|
|
20137
20297
|
hasConflicts: boolean | null;
|
|
20298
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
20138
20299
|
} | null | undefined;
|
|
20139
20300
|
} | null | undefined;
|
|
20140
20301
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -20196,6 +20357,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20196
20357
|
canMerge: boolean | null;
|
|
20197
20358
|
hasConflicts: boolean | null;
|
|
20198
20359
|
detailLevel?: "summary" | "detail" | undefined;
|
|
20360
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
20199
20361
|
} | null | undefined;
|
|
20200
20362
|
} | null | undefined;
|
|
20201
20363
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -20263,6 +20425,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20263
20425
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
20264
20426
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
20265
20427
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
20428
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
20266
20429
|
}, "strip", z.ZodTypeAny, {
|
|
20267
20430
|
number: number;
|
|
20268
20431
|
title: string;
|
|
@@ -20276,6 +20439,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20276
20439
|
requiredChecksPassed: boolean | null;
|
|
20277
20440
|
canMerge: boolean | null;
|
|
20278
20441
|
hasConflicts: boolean | null;
|
|
20442
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
20279
20443
|
}, {
|
|
20280
20444
|
number: number;
|
|
20281
20445
|
title: string;
|
|
@@ -20289,6 +20453,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20289
20453
|
canMerge: boolean | null;
|
|
20290
20454
|
hasConflicts: boolean | null;
|
|
20291
20455
|
detailLevel?: "summary" | "detail" | undefined;
|
|
20456
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
20292
20457
|
}>>>>;
|
|
20293
20458
|
}, "strip", z.ZodTypeAny, {
|
|
20294
20459
|
archivedAt: string;
|
|
@@ -20314,6 +20479,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20314
20479
|
requiredChecksPassed: boolean | null;
|
|
20315
20480
|
canMerge: boolean | null;
|
|
20316
20481
|
hasConflicts: boolean | null;
|
|
20482
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
20317
20483
|
} | null | undefined;
|
|
20318
20484
|
}, {
|
|
20319
20485
|
archivedAt: string;
|
|
@@ -20339,6 +20505,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20339
20505
|
canMerge: boolean | null;
|
|
20340
20506
|
hasConflicts: boolean | null;
|
|
20341
20507
|
detailLevel?: "summary" | "detail" | undefined;
|
|
20508
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
20342
20509
|
} | null | undefined;
|
|
20343
20510
|
}>>>;
|
|
20344
20511
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -20388,6 +20555,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20388
20555
|
requiredChecksPassed: boolean | null;
|
|
20389
20556
|
canMerge: boolean | null;
|
|
20390
20557
|
hasConflicts: boolean | null;
|
|
20558
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
20391
20559
|
} | null | undefined;
|
|
20392
20560
|
} | null | undefined;
|
|
20393
20561
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -20442,6 +20610,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20442
20610
|
canMerge: boolean | null;
|
|
20443
20611
|
hasConflicts: boolean | null;
|
|
20444
20612
|
detailLevel?: "summary" | "detail" | undefined;
|
|
20613
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
20445
20614
|
} | null | undefined;
|
|
20446
20615
|
} | null | undefined;
|
|
20447
20616
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -20616,6 +20785,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20616
20785
|
requiredChecksPassed: boolean | null;
|
|
20617
20786
|
canMerge: boolean | null;
|
|
20618
20787
|
hasConflicts: boolean | null;
|
|
20788
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
20619
20789
|
} | null | undefined;
|
|
20620
20790
|
} | null | undefined;
|
|
20621
20791
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -20698,6 +20868,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20698
20868
|
canMerge: boolean | null;
|
|
20699
20869
|
hasConflicts: boolean | null;
|
|
20700
20870
|
detailLevel?: "summary" | "detail" | undefined;
|
|
20871
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
20701
20872
|
} | null | undefined;
|
|
20702
20873
|
} | null | undefined;
|
|
20703
20874
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -20795,6 +20966,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20795
20966
|
requiredChecksPassed: boolean | null;
|
|
20796
20967
|
canMerge: boolean | null;
|
|
20797
20968
|
hasConflicts: boolean | null;
|
|
20969
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
20798
20970
|
} | null | undefined;
|
|
20799
20971
|
} | null | undefined;
|
|
20800
20972
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -20886,6 +21058,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20886
21058
|
canMerge: boolean | null;
|
|
20887
21059
|
hasConflicts: boolean | null;
|
|
20888
21060
|
detailLevel?: "summary" | "detail" | undefined;
|
|
21061
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
20889
21062
|
} | null | undefined;
|
|
20890
21063
|
} | null | undefined;
|
|
20891
21064
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -20980,6 +21153,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20980
21153
|
requiredChecksPassed: boolean | null;
|
|
20981
21154
|
canMerge: boolean | null;
|
|
20982
21155
|
hasConflicts: boolean | null;
|
|
21156
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
20983
21157
|
} | null | undefined;
|
|
20984
21158
|
} | null | undefined;
|
|
20985
21159
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -21074,6 +21248,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
21074
21248
|
canMerge: boolean | null;
|
|
21075
21249
|
hasConflicts: boolean | null;
|
|
21076
21250
|
detailLevel?: "summary" | "detail" | undefined;
|
|
21251
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
21077
21252
|
} | null | undefined;
|
|
21078
21253
|
} | null | undefined;
|
|
21079
21254
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -21173,6 +21348,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
21173
21348
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
21174
21349
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
21175
21350
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
21351
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
21176
21352
|
}, "strip", z.ZodTypeAny, {
|
|
21177
21353
|
number: number;
|
|
21178
21354
|
title: string;
|
|
@@ -21186,6 +21362,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
21186
21362
|
requiredChecksPassed: boolean | null;
|
|
21187
21363
|
canMerge: boolean | null;
|
|
21188
21364
|
hasConflicts: boolean | null;
|
|
21365
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
21189
21366
|
}, {
|
|
21190
21367
|
number: number;
|
|
21191
21368
|
title: string;
|
|
@@ -21199,6 +21376,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
21199
21376
|
canMerge: boolean | null;
|
|
21200
21377
|
hasConflicts: boolean | null;
|
|
21201
21378
|
detailLevel?: "summary" | "detail" | undefined;
|
|
21379
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
21202
21380
|
}>>>>;
|
|
21203
21381
|
}, "strip", z.ZodTypeAny, {
|
|
21204
21382
|
archivedAt: string;
|
|
@@ -21224,6 +21402,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
21224
21402
|
requiredChecksPassed: boolean | null;
|
|
21225
21403
|
canMerge: boolean | null;
|
|
21226
21404
|
hasConflicts: boolean | null;
|
|
21405
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
21227
21406
|
} | null | undefined;
|
|
21228
21407
|
}, {
|
|
21229
21408
|
archivedAt: string;
|
|
@@ -21249,6 +21428,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
21249
21428
|
canMerge: boolean | null;
|
|
21250
21429
|
hasConflicts: boolean | null;
|
|
21251
21430
|
detailLevel?: "summary" | "detail" | undefined;
|
|
21431
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
21252
21432
|
} | null | undefined;
|
|
21253
21433
|
}>>>;
|
|
21254
21434
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -21298,6 +21478,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
21298
21478
|
requiredChecksPassed: boolean | null;
|
|
21299
21479
|
canMerge: boolean | null;
|
|
21300
21480
|
hasConflicts: boolean | null;
|
|
21481
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
21301
21482
|
} | null | undefined;
|
|
21302
21483
|
} | null | undefined;
|
|
21303
21484
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -21352,6 +21533,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
21352
21533
|
canMerge: boolean | null;
|
|
21353
21534
|
hasConflicts: boolean | null;
|
|
21354
21535
|
detailLevel?: "summary" | "detail" | undefined;
|
|
21536
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
21355
21537
|
} | null | undefined;
|
|
21356
21538
|
} | null | undefined;
|
|
21357
21539
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -21529,6 +21711,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
21529
21711
|
requiredChecksPassed: boolean | null;
|
|
21530
21712
|
canMerge: boolean | null;
|
|
21531
21713
|
hasConflicts: boolean | null;
|
|
21714
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
21532
21715
|
} | null | undefined;
|
|
21533
21716
|
} | null | undefined;
|
|
21534
21717
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -21613,6 +21796,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
21613
21796
|
canMerge: boolean | null;
|
|
21614
21797
|
hasConflicts: boolean | null;
|
|
21615
21798
|
detailLevel?: "summary" | "detail" | undefined;
|
|
21799
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
21616
21800
|
} | null | undefined;
|
|
21617
21801
|
} | null | undefined;
|
|
21618
21802
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -21700,6 +21884,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
21700
21884
|
requiredChecksPassed: boolean | null;
|
|
21701
21885
|
canMerge: boolean | null;
|
|
21702
21886
|
hasConflicts: boolean | null;
|
|
21887
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
21703
21888
|
} | null | undefined;
|
|
21704
21889
|
} | null | undefined;
|
|
21705
21890
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -21787,6 +21972,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
21787
21972
|
canMerge: boolean | null;
|
|
21788
21973
|
hasConflicts: boolean | null;
|
|
21789
21974
|
detailLevel?: "summary" | "detail" | undefined;
|
|
21975
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
21790
21976
|
} | null | undefined;
|
|
21791
21977
|
} | null | undefined;
|
|
21792
21978
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -23382,6 +23568,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
23382
23568
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
23383
23569
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
23384
23570
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
23571
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
23385
23572
|
}, "strip", z.ZodTypeAny, {
|
|
23386
23573
|
number: number;
|
|
23387
23574
|
title: string;
|
|
@@ -23395,6 +23582,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
23395
23582
|
requiredChecksPassed: boolean | null;
|
|
23396
23583
|
canMerge: boolean | null;
|
|
23397
23584
|
hasConflicts: boolean | null;
|
|
23585
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
23398
23586
|
}, {
|
|
23399
23587
|
number: number;
|
|
23400
23588
|
title: string;
|
|
@@ -23408,6 +23596,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
23408
23596
|
canMerge: boolean | null;
|
|
23409
23597
|
hasConflicts: boolean | null;
|
|
23410
23598
|
detailLevel?: "summary" | "detail" | undefined;
|
|
23599
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
23411
23600
|
}>>>>;
|
|
23412
23601
|
}, "strip", z.ZodTypeAny, {
|
|
23413
23602
|
archivedAt: string;
|
|
@@ -23433,6 +23622,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
23433
23622
|
requiredChecksPassed: boolean | null;
|
|
23434
23623
|
canMerge: boolean | null;
|
|
23435
23624
|
hasConflicts: boolean | null;
|
|
23625
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
23436
23626
|
} | null | undefined;
|
|
23437
23627
|
}, {
|
|
23438
23628
|
archivedAt: string;
|
|
@@ -23458,6 +23648,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
23458
23648
|
canMerge: boolean | null;
|
|
23459
23649
|
hasConflicts: boolean | null;
|
|
23460
23650
|
detailLevel?: "summary" | "detail" | undefined;
|
|
23651
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
23461
23652
|
} | null | undefined;
|
|
23462
23653
|
}>>>;
|
|
23463
23654
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -23507,6 +23698,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
23507
23698
|
requiredChecksPassed: boolean | null;
|
|
23508
23699
|
canMerge: boolean | null;
|
|
23509
23700
|
hasConflicts: boolean | null;
|
|
23701
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
23510
23702
|
} | null | undefined;
|
|
23511
23703
|
} | null | undefined;
|
|
23512
23704
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -23561,6 +23753,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
23561
23753
|
canMerge: boolean | null;
|
|
23562
23754
|
hasConflicts: boolean | null;
|
|
23563
23755
|
detailLevel?: "summary" | "detail" | undefined;
|
|
23756
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
23564
23757
|
} | null | undefined;
|
|
23565
23758
|
} | null | undefined;
|
|
23566
23759
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -23622,6 +23815,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
23622
23815
|
requiredChecksPassed: boolean | null;
|
|
23623
23816
|
canMerge: boolean | null;
|
|
23624
23817
|
hasConflicts: boolean | null;
|
|
23818
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
23625
23819
|
} | null | undefined;
|
|
23626
23820
|
} | null | undefined;
|
|
23627
23821
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -23682,6 +23876,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
23682
23876
|
canMerge: boolean | null;
|
|
23683
23877
|
hasConflicts: boolean | null;
|
|
23684
23878
|
detailLevel?: "summary" | "detail" | undefined;
|
|
23879
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
23685
23880
|
} | null | undefined;
|
|
23686
23881
|
} | null | undefined;
|
|
23687
23882
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -23745,6 +23940,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
23745
23940
|
requiredChecksPassed: boolean | null;
|
|
23746
23941
|
canMerge: boolean | null;
|
|
23747
23942
|
hasConflicts: boolean | null;
|
|
23943
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
23748
23944
|
} | null | undefined;
|
|
23749
23945
|
} | null | undefined;
|
|
23750
23946
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -23808,6 +24004,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
23808
24004
|
canMerge: boolean | null;
|
|
23809
24005
|
hasConflicts: boolean | null;
|
|
23810
24006
|
detailLevel?: "summary" | "detail" | undefined;
|
|
24007
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
23811
24008
|
} | null | undefined;
|
|
23812
24009
|
} | null | undefined;
|
|
23813
24010
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -24552,6 +24749,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
24552
24749
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
24553
24750
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
24554
24751
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
24752
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
24555
24753
|
}, "strip", z.ZodTypeAny, {
|
|
24556
24754
|
number: number;
|
|
24557
24755
|
title: string;
|
|
@@ -24565,6 +24763,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
24565
24763
|
requiredChecksPassed: boolean | null;
|
|
24566
24764
|
canMerge: boolean | null;
|
|
24567
24765
|
hasConflicts: boolean | null;
|
|
24766
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
24568
24767
|
}, {
|
|
24569
24768
|
number: number;
|
|
24570
24769
|
title: string;
|
|
@@ -24578,6 +24777,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
24578
24777
|
canMerge: boolean | null;
|
|
24579
24778
|
hasConflicts: boolean | null;
|
|
24580
24779
|
detailLevel?: "summary" | "detail" | undefined;
|
|
24780
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
24581
24781
|
}>>>;
|
|
24582
24782
|
pullRequestError: z.ZodNullable<z.ZodObject<{
|
|
24583
24783
|
code: z.ZodEnum<["NOT_GIT_REPO", "NOT_ALLOWED", "MERGE_CONFLICT", "UNKNOWN"]>;
|
|
@@ -24610,6 +24810,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
24610
24810
|
requiredChecksPassed: boolean | null;
|
|
24611
24811
|
canMerge: boolean | null;
|
|
24612
24812
|
hasConflicts: boolean | null;
|
|
24813
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
24613
24814
|
} | null;
|
|
24614
24815
|
requestId: string;
|
|
24615
24816
|
subscriptionId: string;
|
|
@@ -24689,6 +24890,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
24689
24890
|
canMerge: boolean | null;
|
|
24690
24891
|
hasConflicts: boolean | null;
|
|
24691
24892
|
detailLevel?: "summary" | "detail" | undefined;
|
|
24893
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
24692
24894
|
} | null;
|
|
24693
24895
|
requestId: string;
|
|
24694
24896
|
subscriptionId: string;
|
|
@@ -24771,6 +24973,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
24771
24973
|
requiredChecksPassed: boolean | null;
|
|
24772
24974
|
canMerge: boolean | null;
|
|
24773
24975
|
hasConflicts: boolean | null;
|
|
24976
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
24774
24977
|
} | null;
|
|
24775
24978
|
requestId: string;
|
|
24776
24979
|
subscriptionId: string;
|
|
@@ -24853,6 +25056,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
24853
25056
|
canMerge: boolean | null;
|
|
24854
25057
|
hasConflicts: boolean | null;
|
|
24855
25058
|
detailLevel?: "summary" | "detail" | undefined;
|
|
25059
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
24856
25060
|
} | null;
|
|
24857
25061
|
requestId: string;
|
|
24858
25062
|
subscriptionId: string;
|
|
@@ -25144,6 +25348,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
25144
25348
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
25145
25349
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
25146
25350
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
25351
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
25147
25352
|
}, "strip", z.ZodTypeAny, {
|
|
25148
25353
|
number: number;
|
|
25149
25354
|
title: string;
|
|
@@ -25157,6 +25362,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
25157
25362
|
requiredChecksPassed: boolean | null;
|
|
25158
25363
|
canMerge: boolean | null;
|
|
25159
25364
|
hasConflicts: boolean | null;
|
|
25365
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
25160
25366
|
}, {
|
|
25161
25367
|
number: number;
|
|
25162
25368
|
title: string;
|
|
@@ -25170,6 +25376,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
25170
25376
|
canMerge: boolean | null;
|
|
25171
25377
|
hasConflicts: boolean | null;
|
|
25172
25378
|
detailLevel?: "summary" | "detail" | undefined;
|
|
25379
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
25173
25380
|
}>>>;
|
|
25174
25381
|
pullRequestError: z.ZodNullable<z.ZodObject<{
|
|
25175
25382
|
code: z.ZodEnum<["NOT_GIT_REPO", "NOT_ALLOWED", "MERGE_CONFLICT", "UNKNOWN"]>;
|
|
@@ -25199,6 +25406,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
25199
25406
|
requiredChecksPassed: boolean | null;
|
|
25200
25407
|
canMerge: boolean | null;
|
|
25201
25408
|
hasConflicts: boolean | null;
|
|
25409
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
25202
25410
|
} | null;
|
|
25203
25411
|
git: {
|
|
25204
25412
|
repoRoot: null;
|
|
@@ -25276,6 +25484,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
25276
25484
|
canMerge: boolean | null;
|
|
25277
25485
|
hasConflicts: boolean | null;
|
|
25278
25486
|
detailLevel?: "summary" | "detail" | undefined;
|
|
25487
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
25279
25488
|
} | null;
|
|
25280
25489
|
git: {
|
|
25281
25490
|
repoRoot: null;
|
|
@@ -25356,6 +25565,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
25356
25565
|
requiredChecksPassed: boolean | null;
|
|
25357
25566
|
canMerge: boolean | null;
|
|
25358
25567
|
hasConflicts: boolean | null;
|
|
25568
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
25359
25569
|
} | null;
|
|
25360
25570
|
git: {
|
|
25361
25571
|
repoRoot: null;
|
|
@@ -25436,6 +25646,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
25436
25646
|
canMerge: boolean | null;
|
|
25437
25647
|
hasConflicts: boolean | null;
|
|
25438
25648
|
detailLevel?: "summary" | "detail" | undefined;
|
|
25649
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
25439
25650
|
} | null;
|
|
25440
25651
|
git: {
|
|
25441
25652
|
repoRoot: null;
|
|
@@ -26297,6 +26508,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
26297
26508
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
26298
26509
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
26299
26510
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
26511
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
26300
26512
|
}, "strip", z.ZodTypeAny, {
|
|
26301
26513
|
number: number;
|
|
26302
26514
|
title: string;
|
|
@@ -26310,6 +26522,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
26310
26522
|
requiredChecksPassed: boolean | null;
|
|
26311
26523
|
canMerge: boolean | null;
|
|
26312
26524
|
hasConflicts: boolean | null;
|
|
26525
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
26313
26526
|
}, {
|
|
26314
26527
|
number: number;
|
|
26315
26528
|
title: string;
|
|
@@ -26323,6 +26536,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
26323
26536
|
canMerge: boolean | null;
|
|
26324
26537
|
hasConflicts: boolean | null;
|
|
26325
26538
|
detailLevel?: "summary" | "detail" | undefined;
|
|
26539
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
26326
26540
|
}>>;
|
|
26327
26541
|
githubFeaturesEnabled: z.ZodBoolean;
|
|
26328
26542
|
error: z.ZodNullable<z.ZodObject<{
|
|
@@ -26354,6 +26568,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
26354
26568
|
requiredChecksPassed: boolean | null;
|
|
26355
26569
|
canMerge: boolean | null;
|
|
26356
26570
|
hasConflicts: boolean | null;
|
|
26571
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
26357
26572
|
} | null;
|
|
26358
26573
|
cwd: string;
|
|
26359
26574
|
requestId: string;
|
|
@@ -26376,6 +26591,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
26376
26591
|
canMerge: boolean | null;
|
|
26377
26592
|
hasConflicts: boolean | null;
|
|
26378
26593
|
detailLevel?: "summary" | "detail" | undefined;
|
|
26594
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
26379
26595
|
} | null;
|
|
26380
26596
|
cwd: string;
|
|
26381
26597
|
requestId: string;
|
|
@@ -26401,6 +26617,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
26401
26617
|
requiredChecksPassed: boolean | null;
|
|
26402
26618
|
canMerge: boolean | null;
|
|
26403
26619
|
hasConflicts: boolean | null;
|
|
26620
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
26404
26621
|
} | null;
|
|
26405
26622
|
cwd: string;
|
|
26406
26623
|
requestId: string;
|
|
@@ -26426,6 +26643,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
26426
26643
|
canMerge: boolean | null;
|
|
26427
26644
|
hasConflicts: boolean | null;
|
|
26428
26645
|
detailLevel?: "summary" | "detail" | undefined;
|
|
26646
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
26429
26647
|
} | null;
|
|
26430
26648
|
cwd: string;
|
|
26431
26649
|
requestId: string;
|
|
@@ -27068,7 +27286,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
27068
27286
|
type: z.ZodLiteral<"junction_worktree_archive_response">;
|
|
27069
27287
|
payload: z.ZodObject<{
|
|
27070
27288
|
success: z.ZodBoolean;
|
|
27071
|
-
|
|
27289
|
+
archivedAgentIds: z.ZodArray<z.ZodString, "many">;
|
|
27290
|
+
archivedAt: z.ZodNullable<z.ZodString>;
|
|
27072
27291
|
error: z.ZodNullable<z.ZodObject<{
|
|
27073
27292
|
code: z.ZodEnum<["NOT_GIT_REPO", "NOT_ALLOWED", "MERGE_CONFLICT", "UNKNOWN"]>;
|
|
27074
27293
|
message: z.ZodString;
|
|
@@ -27085,17 +27304,19 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
27085
27304
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
27086
27305
|
message: string;
|
|
27087
27306
|
} | null;
|
|
27307
|
+
archivedAt: string | null;
|
|
27088
27308
|
requestId: string;
|
|
27089
27309
|
success: boolean;
|
|
27090
|
-
|
|
27310
|
+
archivedAgentIds: string[];
|
|
27091
27311
|
}, {
|
|
27092
27312
|
error: {
|
|
27093
27313
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
27094
27314
|
message: string;
|
|
27095
27315
|
} | null;
|
|
27316
|
+
archivedAt: string | null;
|
|
27096
27317
|
requestId: string;
|
|
27097
27318
|
success: boolean;
|
|
27098
|
-
|
|
27319
|
+
archivedAgentIds: string[];
|
|
27099
27320
|
}>;
|
|
27100
27321
|
}, "strip", z.ZodTypeAny, {
|
|
27101
27322
|
type: "junction_worktree_archive_response";
|
|
@@ -27104,9 +27325,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
27104
27325
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
27105
27326
|
message: string;
|
|
27106
27327
|
} | null;
|
|
27328
|
+
archivedAt: string | null;
|
|
27107
27329
|
requestId: string;
|
|
27108
27330
|
success: boolean;
|
|
27109
|
-
|
|
27331
|
+
archivedAgentIds: string[];
|
|
27110
27332
|
};
|
|
27111
27333
|
}, {
|
|
27112
27334
|
type: "junction_worktree_archive_response";
|
|
@@ -27115,9 +27337,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
27115
27337
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
27116
27338
|
message: string;
|
|
27117
27339
|
} | null;
|
|
27340
|
+
archivedAt: string | null;
|
|
27118
27341
|
requestId: string;
|
|
27119
27342
|
success: boolean;
|
|
27120
|
-
|
|
27343
|
+
archivedAgentIds: string[];
|
|
27121
27344
|
};
|
|
27122
27345
|
}>, z.ZodObject<{
|
|
27123
27346
|
type: z.ZodLiteral<"file_explorer_response">;
|
|
@@ -33048,6 +33271,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
33048
33271
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
33049
33272
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
33050
33273
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
33274
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
33051
33275
|
}, "strip", z.ZodTypeAny, {
|
|
33052
33276
|
number: number;
|
|
33053
33277
|
title: string;
|
|
@@ -33061,6 +33285,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
33061
33285
|
requiredChecksPassed: boolean | null;
|
|
33062
33286
|
canMerge: boolean | null;
|
|
33063
33287
|
hasConflicts: boolean | null;
|
|
33288
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
33064
33289
|
}, {
|
|
33065
33290
|
number: number;
|
|
33066
33291
|
title: string;
|
|
@@ -33074,6 +33299,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
33074
33299
|
canMerge: boolean | null;
|
|
33075
33300
|
hasConflicts: boolean | null;
|
|
33076
33301
|
detailLevel?: "summary" | "detail" | undefined;
|
|
33302
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
33077
33303
|
}>>>>;
|
|
33078
33304
|
}, "strip", z.ZodTypeAny, {
|
|
33079
33305
|
archivedAt: string;
|
|
@@ -33099,6 +33325,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
33099
33325
|
requiredChecksPassed: boolean | null;
|
|
33100
33326
|
canMerge: boolean | null;
|
|
33101
33327
|
hasConflicts: boolean | null;
|
|
33328
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
33102
33329
|
} | null | undefined;
|
|
33103
33330
|
}, {
|
|
33104
33331
|
archivedAt: string;
|
|
@@ -33124,6 +33351,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
33124
33351
|
canMerge: boolean | null;
|
|
33125
33352
|
hasConflicts: boolean | null;
|
|
33126
33353
|
detailLevel?: "summary" | "detail" | undefined;
|
|
33354
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
33127
33355
|
} | null | undefined;
|
|
33128
33356
|
}>>>;
|
|
33129
33357
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -33173,6 +33401,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
33173
33401
|
requiredChecksPassed: boolean | null;
|
|
33174
33402
|
canMerge: boolean | null;
|
|
33175
33403
|
hasConflicts: boolean | null;
|
|
33404
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
33176
33405
|
} | null | undefined;
|
|
33177
33406
|
} | null | undefined;
|
|
33178
33407
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -33227,6 +33456,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
33227
33456
|
canMerge: boolean | null;
|
|
33228
33457
|
hasConflicts: boolean | null;
|
|
33229
33458
|
detailLevel?: "summary" | "detail" | undefined;
|
|
33459
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
33230
33460
|
} | null | undefined;
|
|
33231
33461
|
} | null | undefined;
|
|
33232
33462
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -33402,6 +33632,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
33402
33632
|
requiredChecksPassed: boolean | null;
|
|
33403
33633
|
canMerge: boolean | null;
|
|
33404
33634
|
hasConflicts: boolean | null;
|
|
33635
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
33405
33636
|
} | null | undefined;
|
|
33406
33637
|
} | null | undefined;
|
|
33407
33638
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -33485,6 +33716,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
33485
33716
|
canMerge: boolean | null;
|
|
33486
33717
|
hasConflicts: boolean | null;
|
|
33487
33718
|
detailLevel?: "summary" | "detail" | undefined;
|
|
33719
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
33488
33720
|
} | null | undefined;
|
|
33489
33721
|
} | null | undefined;
|
|
33490
33722
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -33580,6 +33812,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
33580
33812
|
requiredChecksPassed: boolean | null;
|
|
33581
33813
|
canMerge: boolean | null;
|
|
33582
33814
|
hasConflicts: boolean | null;
|
|
33815
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
33583
33816
|
} | null | undefined;
|
|
33584
33817
|
} | null | undefined;
|
|
33585
33818
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -33669,6 +33902,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
33669
33902
|
canMerge: boolean | null;
|
|
33670
33903
|
hasConflicts: boolean | null;
|
|
33671
33904
|
detailLevel?: "summary" | "detail" | undefined;
|
|
33905
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
33672
33906
|
} | null | undefined;
|
|
33673
33907
|
} | null | undefined;
|
|
33674
33908
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -34192,6 +34426,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34192
34426
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
34193
34427
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
34194
34428
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
34429
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
34195
34430
|
}, "strip", z.ZodTypeAny, {
|
|
34196
34431
|
number: number;
|
|
34197
34432
|
title: string;
|
|
@@ -34205,6 +34440,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34205
34440
|
requiredChecksPassed: boolean | null;
|
|
34206
34441
|
canMerge: boolean | null;
|
|
34207
34442
|
hasConflicts: boolean | null;
|
|
34443
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
34208
34444
|
}, {
|
|
34209
34445
|
number: number;
|
|
34210
34446
|
title: string;
|
|
@@ -34218,6 +34454,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34218
34454
|
canMerge: boolean | null;
|
|
34219
34455
|
hasConflicts: boolean | null;
|
|
34220
34456
|
detailLevel?: "summary" | "detail" | undefined;
|
|
34457
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
34221
34458
|
}>>>>;
|
|
34222
34459
|
}, "strip", z.ZodTypeAny, {
|
|
34223
34460
|
archivedAt: string;
|
|
@@ -34243,6 +34480,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34243
34480
|
requiredChecksPassed: boolean | null;
|
|
34244
34481
|
canMerge: boolean | null;
|
|
34245
34482
|
hasConflicts: boolean | null;
|
|
34483
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
34246
34484
|
} | null | undefined;
|
|
34247
34485
|
}, {
|
|
34248
34486
|
archivedAt: string;
|
|
@@ -34268,6 +34506,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34268
34506
|
canMerge: boolean | null;
|
|
34269
34507
|
hasConflicts: boolean | null;
|
|
34270
34508
|
detailLevel?: "summary" | "detail" | undefined;
|
|
34509
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
34271
34510
|
} | null | undefined;
|
|
34272
34511
|
}>>>;
|
|
34273
34512
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -34317,6 +34556,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34317
34556
|
requiredChecksPassed: boolean | null;
|
|
34318
34557
|
canMerge: boolean | null;
|
|
34319
34558
|
hasConflicts: boolean | null;
|
|
34559
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
34320
34560
|
} | null | undefined;
|
|
34321
34561
|
} | null | undefined;
|
|
34322
34562
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -34371,6 +34611,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34371
34611
|
canMerge: boolean | null;
|
|
34372
34612
|
hasConflicts: boolean | null;
|
|
34373
34613
|
detailLevel?: "summary" | "detail" | undefined;
|
|
34614
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
34374
34615
|
} | null | undefined;
|
|
34375
34616
|
} | null | undefined;
|
|
34376
34617
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -34429,6 +34670,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34429
34670
|
requiredChecksPassed: boolean | null;
|
|
34430
34671
|
canMerge: boolean | null;
|
|
34431
34672
|
hasConflicts: boolean | null;
|
|
34673
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
34432
34674
|
} | null | undefined;
|
|
34433
34675
|
} | null | undefined;
|
|
34434
34676
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -34487,6 +34729,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34487
34729
|
canMerge: boolean | null;
|
|
34488
34730
|
hasConflicts: boolean | null;
|
|
34489
34731
|
detailLevel?: "summary" | "detail" | undefined;
|
|
34732
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
34490
34733
|
} | null | undefined;
|
|
34491
34734
|
} | null | undefined;
|
|
34492
34735
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -34548,6 +34791,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34548
34791
|
requiredChecksPassed: boolean | null;
|
|
34549
34792
|
canMerge: boolean | null;
|
|
34550
34793
|
hasConflicts: boolean | null;
|
|
34794
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
34551
34795
|
} | null | undefined;
|
|
34552
34796
|
} | null | undefined;
|
|
34553
34797
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -34609,6 +34853,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34609
34853
|
canMerge: boolean | null;
|
|
34610
34854
|
hasConflicts: boolean | null;
|
|
34611
34855
|
detailLevel?: "summary" | "detail" | undefined;
|
|
34856
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
34612
34857
|
} | null | undefined;
|
|
34613
34858
|
} | null | undefined;
|
|
34614
34859
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -34676,6 +34921,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34676
34921
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
34677
34922
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
34678
34923
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
34924
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
34679
34925
|
}, "strip", z.ZodTypeAny, {
|
|
34680
34926
|
number: number;
|
|
34681
34927
|
title: string;
|
|
@@ -34689,6 +34935,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34689
34935
|
requiredChecksPassed: boolean | null;
|
|
34690
34936
|
canMerge: boolean | null;
|
|
34691
34937
|
hasConflicts: boolean | null;
|
|
34938
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
34692
34939
|
}, {
|
|
34693
34940
|
number: number;
|
|
34694
34941
|
title: string;
|
|
@@ -34702,6 +34949,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34702
34949
|
canMerge: boolean | null;
|
|
34703
34950
|
hasConflicts: boolean | null;
|
|
34704
34951
|
detailLevel?: "summary" | "detail" | undefined;
|
|
34952
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
34705
34953
|
}>>>>;
|
|
34706
34954
|
}, "strip", z.ZodTypeAny, {
|
|
34707
34955
|
archivedAt: string;
|
|
@@ -34727,6 +34975,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34727
34975
|
requiredChecksPassed: boolean | null;
|
|
34728
34976
|
canMerge: boolean | null;
|
|
34729
34977
|
hasConflicts: boolean | null;
|
|
34978
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
34730
34979
|
} | null | undefined;
|
|
34731
34980
|
}, {
|
|
34732
34981
|
archivedAt: string;
|
|
@@ -34752,6 +35001,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34752
35001
|
canMerge: boolean | null;
|
|
34753
35002
|
hasConflicts: boolean | null;
|
|
34754
35003
|
detailLevel?: "summary" | "detail" | undefined;
|
|
35004
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
34755
35005
|
} | null | undefined;
|
|
34756
35006
|
}>>>;
|
|
34757
35007
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -34801,6 +35051,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34801
35051
|
requiredChecksPassed: boolean | null;
|
|
34802
35052
|
canMerge: boolean | null;
|
|
34803
35053
|
hasConflicts: boolean | null;
|
|
35054
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
34804
35055
|
} | null | undefined;
|
|
34805
35056
|
} | null | undefined;
|
|
34806
35057
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -34855,6 +35106,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34855
35106
|
canMerge: boolean | null;
|
|
34856
35107
|
hasConflicts: boolean | null;
|
|
34857
35108
|
detailLevel?: "summary" | "detail" | undefined;
|
|
35109
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
34858
35110
|
} | null | undefined;
|
|
34859
35111
|
} | null | undefined;
|
|
34860
35112
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -35029,6 +35281,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35029
35281
|
requiredChecksPassed: boolean | null;
|
|
35030
35282
|
canMerge: boolean | null;
|
|
35031
35283
|
hasConflicts: boolean | null;
|
|
35284
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
35032
35285
|
} | null | undefined;
|
|
35033
35286
|
} | null | undefined;
|
|
35034
35287
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -35111,6 +35364,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35111
35364
|
canMerge: boolean | null;
|
|
35112
35365
|
hasConflicts: boolean | null;
|
|
35113
35366
|
detailLevel?: "summary" | "detail" | undefined;
|
|
35367
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
35114
35368
|
} | null | undefined;
|
|
35115
35369
|
} | null | undefined;
|
|
35116
35370
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -35208,6 +35462,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35208
35462
|
requiredChecksPassed: boolean | null;
|
|
35209
35463
|
canMerge: boolean | null;
|
|
35210
35464
|
hasConflicts: boolean | null;
|
|
35465
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
35211
35466
|
} | null | undefined;
|
|
35212
35467
|
} | null | undefined;
|
|
35213
35468
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -35299,6 +35554,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35299
35554
|
canMerge: boolean | null;
|
|
35300
35555
|
hasConflicts: boolean | null;
|
|
35301
35556
|
detailLevel?: "summary" | "detail" | undefined;
|
|
35557
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
35302
35558
|
} | null | undefined;
|
|
35303
35559
|
} | null | undefined;
|
|
35304
35560
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -35393,6 +35649,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35393
35649
|
requiredChecksPassed: boolean | null;
|
|
35394
35650
|
canMerge: boolean | null;
|
|
35395
35651
|
hasConflicts: boolean | null;
|
|
35652
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
35396
35653
|
} | null | undefined;
|
|
35397
35654
|
} | null | undefined;
|
|
35398
35655
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -35487,6 +35744,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35487
35744
|
canMerge: boolean | null;
|
|
35488
35745
|
hasConflicts: boolean | null;
|
|
35489
35746
|
detailLevel?: "summary" | "detail" | undefined;
|
|
35747
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
35490
35748
|
} | null | undefined;
|
|
35491
35749
|
} | null | undefined;
|
|
35492
35750
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -35586,6 +35844,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35586
35844
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
35587
35845
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
35588
35846
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
35847
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
35589
35848
|
}, "strip", z.ZodTypeAny, {
|
|
35590
35849
|
number: number;
|
|
35591
35850
|
title: string;
|
|
@@ -35599,6 +35858,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35599
35858
|
requiredChecksPassed: boolean | null;
|
|
35600
35859
|
canMerge: boolean | null;
|
|
35601
35860
|
hasConflicts: boolean | null;
|
|
35861
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
35602
35862
|
}, {
|
|
35603
35863
|
number: number;
|
|
35604
35864
|
title: string;
|
|
@@ -35612,6 +35872,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35612
35872
|
canMerge: boolean | null;
|
|
35613
35873
|
hasConflicts: boolean | null;
|
|
35614
35874
|
detailLevel?: "summary" | "detail" | undefined;
|
|
35875
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
35615
35876
|
}>>>>;
|
|
35616
35877
|
}, "strip", z.ZodTypeAny, {
|
|
35617
35878
|
archivedAt: string;
|
|
@@ -35637,6 +35898,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35637
35898
|
requiredChecksPassed: boolean | null;
|
|
35638
35899
|
canMerge: boolean | null;
|
|
35639
35900
|
hasConflicts: boolean | null;
|
|
35901
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
35640
35902
|
} | null | undefined;
|
|
35641
35903
|
}, {
|
|
35642
35904
|
archivedAt: string;
|
|
@@ -35662,6 +35924,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35662
35924
|
canMerge: boolean | null;
|
|
35663
35925
|
hasConflicts: boolean | null;
|
|
35664
35926
|
detailLevel?: "summary" | "detail" | undefined;
|
|
35927
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
35665
35928
|
} | null | undefined;
|
|
35666
35929
|
}>>>;
|
|
35667
35930
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -35711,6 +35974,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35711
35974
|
requiredChecksPassed: boolean | null;
|
|
35712
35975
|
canMerge: boolean | null;
|
|
35713
35976
|
hasConflicts: boolean | null;
|
|
35977
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
35714
35978
|
} | null | undefined;
|
|
35715
35979
|
} | null | undefined;
|
|
35716
35980
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -35765,6 +36029,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35765
36029
|
canMerge: boolean | null;
|
|
35766
36030
|
hasConflicts: boolean | null;
|
|
35767
36031
|
detailLevel?: "summary" | "detail" | undefined;
|
|
36032
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
35768
36033
|
} | null | undefined;
|
|
35769
36034
|
} | null | undefined;
|
|
35770
36035
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -35942,6 +36207,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35942
36207
|
requiredChecksPassed: boolean | null;
|
|
35943
36208
|
canMerge: boolean | null;
|
|
35944
36209
|
hasConflicts: boolean | null;
|
|
36210
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
35945
36211
|
} | null | undefined;
|
|
35946
36212
|
} | null | undefined;
|
|
35947
36213
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -36026,6 +36292,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
36026
36292
|
canMerge: boolean | null;
|
|
36027
36293
|
hasConflicts: boolean | null;
|
|
36028
36294
|
detailLevel?: "summary" | "detail" | undefined;
|
|
36295
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
36029
36296
|
} | null | undefined;
|
|
36030
36297
|
} | null | undefined;
|
|
36031
36298
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -36113,6 +36380,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
36113
36380
|
requiredChecksPassed: boolean | null;
|
|
36114
36381
|
canMerge: boolean | null;
|
|
36115
36382
|
hasConflicts: boolean | null;
|
|
36383
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
36116
36384
|
} | null | undefined;
|
|
36117
36385
|
} | null | undefined;
|
|
36118
36386
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -36200,6 +36468,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
36200
36468
|
canMerge: boolean | null;
|
|
36201
36469
|
hasConflicts: boolean | null;
|
|
36202
36470
|
detailLevel?: "summary" | "detail" | undefined;
|
|
36471
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
36203
36472
|
} | null | undefined;
|
|
36204
36473
|
} | null | undefined;
|
|
36205
36474
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -37795,6 +38064,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
37795
38064
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
37796
38065
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
37797
38066
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
38067
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
37798
38068
|
}, "strip", z.ZodTypeAny, {
|
|
37799
38069
|
number: number;
|
|
37800
38070
|
title: string;
|
|
@@ -37808,6 +38078,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
37808
38078
|
requiredChecksPassed: boolean | null;
|
|
37809
38079
|
canMerge: boolean | null;
|
|
37810
38080
|
hasConflicts: boolean | null;
|
|
38081
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
37811
38082
|
}, {
|
|
37812
38083
|
number: number;
|
|
37813
38084
|
title: string;
|
|
@@ -37821,6 +38092,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
37821
38092
|
canMerge: boolean | null;
|
|
37822
38093
|
hasConflicts: boolean | null;
|
|
37823
38094
|
detailLevel?: "summary" | "detail" | undefined;
|
|
38095
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
37824
38096
|
}>>>>;
|
|
37825
38097
|
}, "strip", z.ZodTypeAny, {
|
|
37826
38098
|
archivedAt: string;
|
|
@@ -37846,6 +38118,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
37846
38118
|
requiredChecksPassed: boolean | null;
|
|
37847
38119
|
canMerge: boolean | null;
|
|
37848
38120
|
hasConflicts: boolean | null;
|
|
38121
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
37849
38122
|
} | null | undefined;
|
|
37850
38123
|
}, {
|
|
37851
38124
|
archivedAt: string;
|
|
@@ -37871,6 +38144,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
37871
38144
|
canMerge: boolean | null;
|
|
37872
38145
|
hasConflicts: boolean | null;
|
|
37873
38146
|
detailLevel?: "summary" | "detail" | undefined;
|
|
38147
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
37874
38148
|
} | null | undefined;
|
|
37875
38149
|
}>>>;
|
|
37876
38150
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -37920,6 +38194,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
37920
38194
|
requiredChecksPassed: boolean | null;
|
|
37921
38195
|
canMerge: boolean | null;
|
|
37922
38196
|
hasConflicts: boolean | null;
|
|
38197
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
37923
38198
|
} | null | undefined;
|
|
37924
38199
|
} | null | undefined;
|
|
37925
38200
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -37974,6 +38249,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
37974
38249
|
canMerge: boolean | null;
|
|
37975
38250
|
hasConflicts: boolean | null;
|
|
37976
38251
|
detailLevel?: "summary" | "detail" | undefined;
|
|
38252
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
37977
38253
|
} | null | undefined;
|
|
37978
38254
|
} | null | undefined;
|
|
37979
38255
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -38035,6 +38311,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
38035
38311
|
requiredChecksPassed: boolean | null;
|
|
38036
38312
|
canMerge: boolean | null;
|
|
38037
38313
|
hasConflicts: boolean | null;
|
|
38314
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
38038
38315
|
} | null | undefined;
|
|
38039
38316
|
} | null | undefined;
|
|
38040
38317
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -38095,6 +38372,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
38095
38372
|
canMerge: boolean | null;
|
|
38096
38373
|
hasConflicts: boolean | null;
|
|
38097
38374
|
detailLevel?: "summary" | "detail" | undefined;
|
|
38375
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
38098
38376
|
} | null | undefined;
|
|
38099
38377
|
} | null | undefined;
|
|
38100
38378
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -38158,6 +38436,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
38158
38436
|
requiredChecksPassed: boolean | null;
|
|
38159
38437
|
canMerge: boolean | null;
|
|
38160
38438
|
hasConflicts: boolean | null;
|
|
38439
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
38161
38440
|
} | null | undefined;
|
|
38162
38441
|
} | null | undefined;
|
|
38163
38442
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -38221,6 +38500,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
38221
38500
|
canMerge: boolean | null;
|
|
38222
38501
|
hasConflicts: boolean | null;
|
|
38223
38502
|
detailLevel?: "summary" | "detail" | undefined;
|
|
38503
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
38224
38504
|
} | null | undefined;
|
|
38225
38505
|
} | null | undefined;
|
|
38226
38506
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -38965,6 +39245,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
38965
39245
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
38966
39246
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
38967
39247
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
39248
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
38968
39249
|
}, "strip", z.ZodTypeAny, {
|
|
38969
39250
|
number: number;
|
|
38970
39251
|
title: string;
|
|
@@ -38978,6 +39259,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
38978
39259
|
requiredChecksPassed: boolean | null;
|
|
38979
39260
|
canMerge: boolean | null;
|
|
38980
39261
|
hasConflicts: boolean | null;
|
|
39262
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
38981
39263
|
}, {
|
|
38982
39264
|
number: number;
|
|
38983
39265
|
title: string;
|
|
@@ -38991,6 +39273,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
38991
39273
|
canMerge: boolean | null;
|
|
38992
39274
|
hasConflicts: boolean | null;
|
|
38993
39275
|
detailLevel?: "summary" | "detail" | undefined;
|
|
39276
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
38994
39277
|
}>>>;
|
|
38995
39278
|
pullRequestError: z.ZodNullable<z.ZodObject<{
|
|
38996
39279
|
code: z.ZodEnum<["NOT_GIT_REPO", "NOT_ALLOWED", "MERGE_CONFLICT", "UNKNOWN"]>;
|
|
@@ -39023,6 +39306,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
39023
39306
|
requiredChecksPassed: boolean | null;
|
|
39024
39307
|
canMerge: boolean | null;
|
|
39025
39308
|
hasConflicts: boolean | null;
|
|
39309
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
39026
39310
|
} | null;
|
|
39027
39311
|
requestId: string;
|
|
39028
39312
|
subscriptionId: string;
|
|
@@ -39102,6 +39386,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
39102
39386
|
canMerge: boolean | null;
|
|
39103
39387
|
hasConflicts: boolean | null;
|
|
39104
39388
|
detailLevel?: "summary" | "detail" | undefined;
|
|
39389
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
39105
39390
|
} | null;
|
|
39106
39391
|
requestId: string;
|
|
39107
39392
|
subscriptionId: string;
|
|
@@ -39184,6 +39469,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
39184
39469
|
requiredChecksPassed: boolean | null;
|
|
39185
39470
|
canMerge: boolean | null;
|
|
39186
39471
|
hasConflicts: boolean | null;
|
|
39472
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
39187
39473
|
} | null;
|
|
39188
39474
|
requestId: string;
|
|
39189
39475
|
subscriptionId: string;
|
|
@@ -39266,6 +39552,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
39266
39552
|
canMerge: boolean | null;
|
|
39267
39553
|
hasConflicts: boolean | null;
|
|
39268
39554
|
detailLevel?: "summary" | "detail" | undefined;
|
|
39555
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
39269
39556
|
} | null;
|
|
39270
39557
|
requestId: string;
|
|
39271
39558
|
subscriptionId: string;
|
|
@@ -39557,6 +39844,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
39557
39844
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
39558
39845
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
39559
39846
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
39847
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
39560
39848
|
}, "strip", z.ZodTypeAny, {
|
|
39561
39849
|
number: number;
|
|
39562
39850
|
title: string;
|
|
@@ -39570,6 +39858,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
39570
39858
|
requiredChecksPassed: boolean | null;
|
|
39571
39859
|
canMerge: boolean | null;
|
|
39572
39860
|
hasConflicts: boolean | null;
|
|
39861
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
39573
39862
|
}, {
|
|
39574
39863
|
number: number;
|
|
39575
39864
|
title: string;
|
|
@@ -39583,6 +39872,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
39583
39872
|
canMerge: boolean | null;
|
|
39584
39873
|
hasConflicts: boolean | null;
|
|
39585
39874
|
detailLevel?: "summary" | "detail" | undefined;
|
|
39875
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
39586
39876
|
}>>>;
|
|
39587
39877
|
pullRequestError: z.ZodNullable<z.ZodObject<{
|
|
39588
39878
|
code: z.ZodEnum<["NOT_GIT_REPO", "NOT_ALLOWED", "MERGE_CONFLICT", "UNKNOWN"]>;
|
|
@@ -39612,6 +39902,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
39612
39902
|
requiredChecksPassed: boolean | null;
|
|
39613
39903
|
canMerge: boolean | null;
|
|
39614
39904
|
hasConflicts: boolean | null;
|
|
39905
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
39615
39906
|
} | null;
|
|
39616
39907
|
git: {
|
|
39617
39908
|
repoRoot: null;
|
|
@@ -39689,6 +39980,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
39689
39980
|
canMerge: boolean | null;
|
|
39690
39981
|
hasConflicts: boolean | null;
|
|
39691
39982
|
detailLevel?: "summary" | "detail" | undefined;
|
|
39983
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
39692
39984
|
} | null;
|
|
39693
39985
|
git: {
|
|
39694
39986
|
repoRoot: null;
|
|
@@ -39769,6 +40061,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
39769
40061
|
requiredChecksPassed: boolean | null;
|
|
39770
40062
|
canMerge: boolean | null;
|
|
39771
40063
|
hasConflicts: boolean | null;
|
|
40064
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
39772
40065
|
} | null;
|
|
39773
40066
|
git: {
|
|
39774
40067
|
repoRoot: null;
|
|
@@ -39849,6 +40142,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
39849
40142
|
canMerge: boolean | null;
|
|
39850
40143
|
hasConflicts: boolean | null;
|
|
39851
40144
|
detailLevel?: "summary" | "detail" | undefined;
|
|
40145
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
39852
40146
|
} | null;
|
|
39853
40147
|
git: {
|
|
39854
40148
|
repoRoot: null;
|
|
@@ -40710,6 +41004,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
40710
41004
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
40711
41005
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
40712
41006
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
41007
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
40713
41008
|
}, "strip", z.ZodTypeAny, {
|
|
40714
41009
|
number: number;
|
|
40715
41010
|
title: string;
|
|
@@ -40723,6 +41018,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
40723
41018
|
requiredChecksPassed: boolean | null;
|
|
40724
41019
|
canMerge: boolean | null;
|
|
40725
41020
|
hasConflicts: boolean | null;
|
|
41021
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
40726
41022
|
}, {
|
|
40727
41023
|
number: number;
|
|
40728
41024
|
title: string;
|
|
@@ -40736,6 +41032,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
40736
41032
|
canMerge: boolean | null;
|
|
40737
41033
|
hasConflicts: boolean | null;
|
|
40738
41034
|
detailLevel?: "summary" | "detail" | undefined;
|
|
41035
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
40739
41036
|
}>>;
|
|
40740
41037
|
githubFeaturesEnabled: z.ZodBoolean;
|
|
40741
41038
|
error: z.ZodNullable<z.ZodObject<{
|
|
@@ -40767,6 +41064,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
40767
41064
|
requiredChecksPassed: boolean | null;
|
|
40768
41065
|
canMerge: boolean | null;
|
|
40769
41066
|
hasConflicts: boolean | null;
|
|
41067
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
40770
41068
|
} | null;
|
|
40771
41069
|
cwd: string;
|
|
40772
41070
|
requestId: string;
|
|
@@ -40789,6 +41087,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
40789
41087
|
canMerge: boolean | null;
|
|
40790
41088
|
hasConflicts: boolean | null;
|
|
40791
41089
|
detailLevel?: "summary" | "detail" | undefined;
|
|
41090
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
40792
41091
|
} | null;
|
|
40793
41092
|
cwd: string;
|
|
40794
41093
|
requestId: string;
|
|
@@ -40814,6 +41113,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
40814
41113
|
requiredChecksPassed: boolean | null;
|
|
40815
41114
|
canMerge: boolean | null;
|
|
40816
41115
|
hasConflicts: boolean | null;
|
|
41116
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
40817
41117
|
} | null;
|
|
40818
41118
|
cwd: string;
|
|
40819
41119
|
requestId: string;
|
|
@@ -40839,6 +41139,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
40839
41139
|
canMerge: boolean | null;
|
|
40840
41140
|
hasConflicts: boolean | null;
|
|
40841
41141
|
detailLevel?: "summary" | "detail" | undefined;
|
|
41142
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
40842
41143
|
} | null;
|
|
40843
41144
|
cwd: string;
|
|
40844
41145
|
requestId: string;
|
|
@@ -41481,7 +41782,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
41481
41782
|
type: z.ZodLiteral<"junction_worktree_archive_response">;
|
|
41482
41783
|
payload: z.ZodObject<{
|
|
41483
41784
|
success: z.ZodBoolean;
|
|
41484
|
-
|
|
41785
|
+
archivedAgentIds: z.ZodArray<z.ZodString, "many">;
|
|
41786
|
+
archivedAt: z.ZodNullable<z.ZodString>;
|
|
41485
41787
|
error: z.ZodNullable<z.ZodObject<{
|
|
41486
41788
|
code: z.ZodEnum<["NOT_GIT_REPO", "NOT_ALLOWED", "MERGE_CONFLICT", "UNKNOWN"]>;
|
|
41487
41789
|
message: z.ZodString;
|
|
@@ -41498,17 +41800,19 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
41498
41800
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
41499
41801
|
message: string;
|
|
41500
41802
|
} | null;
|
|
41803
|
+
archivedAt: string | null;
|
|
41501
41804
|
requestId: string;
|
|
41502
41805
|
success: boolean;
|
|
41503
|
-
|
|
41806
|
+
archivedAgentIds: string[];
|
|
41504
41807
|
}, {
|
|
41505
41808
|
error: {
|
|
41506
41809
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
41507
41810
|
message: string;
|
|
41508
41811
|
} | null;
|
|
41812
|
+
archivedAt: string | null;
|
|
41509
41813
|
requestId: string;
|
|
41510
41814
|
success: boolean;
|
|
41511
|
-
|
|
41815
|
+
archivedAgentIds: string[];
|
|
41512
41816
|
}>;
|
|
41513
41817
|
}, "strip", z.ZodTypeAny, {
|
|
41514
41818
|
type: "junction_worktree_archive_response";
|
|
@@ -41517,9 +41821,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
41517
41821
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
41518
41822
|
message: string;
|
|
41519
41823
|
} | null;
|
|
41824
|
+
archivedAt: string | null;
|
|
41520
41825
|
requestId: string;
|
|
41521
41826
|
success: boolean;
|
|
41522
|
-
|
|
41827
|
+
archivedAgentIds: string[];
|
|
41523
41828
|
};
|
|
41524
41829
|
}, {
|
|
41525
41830
|
type: "junction_worktree_archive_response";
|
|
@@ -41528,9 +41833,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
41528
41833
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
41529
41834
|
message: string;
|
|
41530
41835
|
} | null;
|
|
41836
|
+
archivedAt: string | null;
|
|
41531
41837
|
requestId: string;
|
|
41532
41838
|
success: boolean;
|
|
41533
|
-
|
|
41839
|
+
archivedAgentIds: string[];
|
|
41534
41840
|
};
|
|
41535
41841
|
}>, z.ZodObject<{
|
|
41536
41842
|
type: z.ZodLiteral<"file_explorer_response">;
|
|
@@ -44005,6 +44311,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
44005
44311
|
requiredChecksPassed: boolean | null;
|
|
44006
44312
|
canMerge: boolean | null;
|
|
44007
44313
|
hasConflicts: boolean | null;
|
|
44314
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
44008
44315
|
} | null | undefined;
|
|
44009
44316
|
} | null | undefined;
|
|
44010
44317
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -44155,6 +44462,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
44155
44462
|
requiredChecksPassed: boolean | null;
|
|
44156
44463
|
canMerge: boolean | null;
|
|
44157
44464
|
hasConflicts: boolean | null;
|
|
44465
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
44158
44466
|
} | null | undefined;
|
|
44159
44467
|
} | null | undefined;
|
|
44160
44468
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -44215,6 +44523,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
44215
44523
|
requiredChecksPassed: boolean | null;
|
|
44216
44524
|
canMerge: boolean | null;
|
|
44217
44525
|
hasConflicts: boolean | null;
|
|
44526
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
44218
44527
|
} | null | undefined;
|
|
44219
44528
|
} | null | undefined;
|
|
44220
44529
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -44310,6 +44619,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
44310
44619
|
requiredChecksPassed: boolean | null;
|
|
44311
44620
|
canMerge: boolean | null;
|
|
44312
44621
|
hasConflicts: boolean | null;
|
|
44622
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
44313
44623
|
} | null | undefined;
|
|
44314
44624
|
} | null | undefined;
|
|
44315
44625
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -44569,6 +44879,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
44569
44879
|
requiredChecksPassed: boolean | null;
|
|
44570
44880
|
canMerge: boolean | null;
|
|
44571
44881
|
hasConflicts: boolean | null;
|
|
44882
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
44572
44883
|
} | null | undefined;
|
|
44573
44884
|
} | null | undefined;
|
|
44574
44885
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -44699,6 +45010,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
44699
45010
|
requiredChecksPassed: boolean | null;
|
|
44700
45011
|
canMerge: boolean | null;
|
|
44701
45012
|
hasConflicts: boolean | null;
|
|
45013
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
44702
45014
|
} | null;
|
|
44703
45015
|
requestId: string;
|
|
44704
45016
|
subscriptionId: string;
|
|
@@ -44781,6 +45093,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
44781
45093
|
requiredChecksPassed: boolean | null;
|
|
44782
45094
|
canMerge: boolean | null;
|
|
44783
45095
|
hasConflicts: boolean | null;
|
|
45096
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
44784
45097
|
} | null;
|
|
44785
45098
|
git: {
|
|
44786
45099
|
repoRoot: null;
|
|
@@ -44984,6 +45297,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
44984
45297
|
requiredChecksPassed: boolean | null;
|
|
44985
45298
|
canMerge: boolean | null;
|
|
44986
45299
|
hasConflicts: boolean | null;
|
|
45300
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
44987
45301
|
} | null;
|
|
44988
45302
|
cwd: string;
|
|
44989
45303
|
requestId: string;
|
|
@@ -45121,9 +45435,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
45121
45435
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
45122
45436
|
message: string;
|
|
45123
45437
|
} | null;
|
|
45438
|
+
archivedAt: string | null;
|
|
45124
45439
|
requestId: string;
|
|
45125
45440
|
success: boolean;
|
|
45126
|
-
|
|
45441
|
+
archivedAgentIds: string[];
|
|
45127
45442
|
};
|
|
45128
45443
|
} | {
|
|
45129
45444
|
type: "file_explorer_response";
|
|
@@ -45683,6 +45998,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
45683
45998
|
canMerge: boolean | null;
|
|
45684
45999
|
hasConflicts: boolean | null;
|
|
45685
46000
|
detailLevel?: "summary" | "detail" | undefined;
|
|
46001
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
45686
46002
|
} | null | undefined;
|
|
45687
46003
|
} | null | undefined;
|
|
45688
46004
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -45833,6 +46149,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
45833
46149
|
canMerge: boolean | null;
|
|
45834
46150
|
hasConflicts: boolean | null;
|
|
45835
46151
|
detailLevel?: "summary" | "detail" | undefined;
|
|
46152
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
45836
46153
|
} | null | undefined;
|
|
45837
46154
|
} | null | undefined;
|
|
45838
46155
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -45893,6 +46210,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
45893
46210
|
canMerge: boolean | null;
|
|
45894
46211
|
hasConflicts: boolean | null;
|
|
45895
46212
|
detailLevel?: "summary" | "detail" | undefined;
|
|
46213
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
45896
46214
|
} | null | undefined;
|
|
45897
46215
|
} | null | undefined;
|
|
45898
46216
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -45988,6 +46306,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
45988
46306
|
canMerge: boolean | null;
|
|
45989
46307
|
hasConflicts: boolean | null;
|
|
45990
46308
|
detailLevel?: "summary" | "detail" | undefined;
|
|
46309
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
45991
46310
|
} | null | undefined;
|
|
45992
46311
|
} | null | undefined;
|
|
45993
46312
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -46247,6 +46566,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
46247
46566
|
canMerge: boolean | null;
|
|
46248
46567
|
hasConflicts: boolean | null;
|
|
46249
46568
|
detailLevel?: "summary" | "detail" | undefined;
|
|
46569
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
46250
46570
|
} | null | undefined;
|
|
46251
46571
|
} | null | undefined;
|
|
46252
46572
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -46377,6 +46697,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
46377
46697
|
canMerge: boolean | null;
|
|
46378
46698
|
hasConflicts: boolean | null;
|
|
46379
46699
|
detailLevel?: "summary" | "detail" | undefined;
|
|
46700
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
46380
46701
|
} | null;
|
|
46381
46702
|
requestId: string;
|
|
46382
46703
|
subscriptionId: string;
|
|
@@ -46459,6 +46780,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
46459
46780
|
canMerge: boolean | null;
|
|
46460
46781
|
hasConflicts: boolean | null;
|
|
46461
46782
|
detailLevel?: "summary" | "detail" | undefined;
|
|
46783
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
46462
46784
|
} | null;
|
|
46463
46785
|
git: {
|
|
46464
46786
|
repoRoot: null;
|
|
@@ -46662,6 +46984,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
46662
46984
|
canMerge: boolean | null;
|
|
46663
46985
|
hasConflicts: boolean | null;
|
|
46664
46986
|
detailLevel?: "summary" | "detail" | undefined;
|
|
46987
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
46665
46988
|
} | null;
|
|
46666
46989
|
cwd: string;
|
|
46667
46990
|
requestId: string;
|
|
@@ -46799,9 +47122,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
46799
47122
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
46800
47123
|
message: string;
|
|
46801
47124
|
} | null;
|
|
47125
|
+
archivedAt: string | null;
|
|
46802
47126
|
requestId: string;
|
|
46803
47127
|
success: boolean;
|
|
46804
|
-
|
|
47128
|
+
archivedAgentIds: string[];
|
|
46805
47129
|
};
|
|
46806
47130
|
} | {
|
|
46807
47131
|
type: "file_explorer_response";
|
|
@@ -50668,6 +50992,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
50668
50992
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
50669
50993
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
50670
50994
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
50995
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
50671
50996
|
}, "strip", z.ZodTypeAny, {
|
|
50672
50997
|
number: number;
|
|
50673
50998
|
title: string;
|
|
@@ -50681,6 +51006,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
50681
51006
|
requiredChecksPassed: boolean | null;
|
|
50682
51007
|
canMerge: boolean | null;
|
|
50683
51008
|
hasConflicts: boolean | null;
|
|
51009
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
50684
51010
|
}, {
|
|
50685
51011
|
number: number;
|
|
50686
51012
|
title: string;
|
|
@@ -50694,6 +51020,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
50694
51020
|
canMerge: boolean | null;
|
|
50695
51021
|
hasConflicts: boolean | null;
|
|
50696
51022
|
detailLevel?: "summary" | "detail" | undefined;
|
|
51023
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
50697
51024
|
}>>>>;
|
|
50698
51025
|
}, "strip", z.ZodTypeAny, {
|
|
50699
51026
|
archivedAt: string;
|
|
@@ -50719,6 +51046,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
50719
51046
|
requiredChecksPassed: boolean | null;
|
|
50720
51047
|
canMerge: boolean | null;
|
|
50721
51048
|
hasConflicts: boolean | null;
|
|
51049
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
50722
51050
|
} | null | undefined;
|
|
50723
51051
|
}, {
|
|
50724
51052
|
archivedAt: string;
|
|
@@ -50744,6 +51072,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
50744
51072
|
canMerge: boolean | null;
|
|
50745
51073
|
hasConflicts: boolean | null;
|
|
50746
51074
|
detailLevel?: "summary" | "detail" | undefined;
|
|
51075
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
50747
51076
|
} | null | undefined;
|
|
50748
51077
|
}>>>;
|
|
50749
51078
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -50793,6 +51122,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
50793
51122
|
requiredChecksPassed: boolean | null;
|
|
50794
51123
|
canMerge: boolean | null;
|
|
50795
51124
|
hasConflicts: boolean | null;
|
|
51125
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
50796
51126
|
} | null | undefined;
|
|
50797
51127
|
} | null | undefined;
|
|
50798
51128
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -50847,6 +51177,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
50847
51177
|
canMerge: boolean | null;
|
|
50848
51178
|
hasConflicts: boolean | null;
|
|
50849
51179
|
detailLevel?: "summary" | "detail" | undefined;
|
|
51180
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
50850
51181
|
} | null | undefined;
|
|
50851
51182
|
} | null | undefined;
|
|
50852
51183
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -51022,6 +51353,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
51022
51353
|
requiredChecksPassed: boolean | null;
|
|
51023
51354
|
canMerge: boolean | null;
|
|
51024
51355
|
hasConflicts: boolean | null;
|
|
51356
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
51025
51357
|
} | null | undefined;
|
|
51026
51358
|
} | null | undefined;
|
|
51027
51359
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -51105,6 +51437,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
51105
51437
|
canMerge: boolean | null;
|
|
51106
51438
|
hasConflicts: boolean | null;
|
|
51107
51439
|
detailLevel?: "summary" | "detail" | undefined;
|
|
51440
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
51108
51441
|
} | null | undefined;
|
|
51109
51442
|
} | null | undefined;
|
|
51110
51443
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -51200,6 +51533,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
51200
51533
|
requiredChecksPassed: boolean | null;
|
|
51201
51534
|
canMerge: boolean | null;
|
|
51202
51535
|
hasConflicts: boolean | null;
|
|
51536
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
51203
51537
|
} | null | undefined;
|
|
51204
51538
|
} | null | undefined;
|
|
51205
51539
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -51289,6 +51623,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
51289
51623
|
canMerge: boolean | null;
|
|
51290
51624
|
hasConflicts: boolean | null;
|
|
51291
51625
|
detailLevel?: "summary" | "detail" | undefined;
|
|
51626
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
51292
51627
|
} | null | undefined;
|
|
51293
51628
|
} | null | undefined;
|
|
51294
51629
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -51812,6 +52147,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
51812
52147
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
51813
52148
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
51814
52149
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
52150
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
51815
52151
|
}, "strip", z.ZodTypeAny, {
|
|
51816
52152
|
number: number;
|
|
51817
52153
|
title: string;
|
|
@@ -51825,6 +52161,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
51825
52161
|
requiredChecksPassed: boolean | null;
|
|
51826
52162
|
canMerge: boolean | null;
|
|
51827
52163
|
hasConflicts: boolean | null;
|
|
52164
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
51828
52165
|
}, {
|
|
51829
52166
|
number: number;
|
|
51830
52167
|
title: string;
|
|
@@ -51838,6 +52175,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
51838
52175
|
canMerge: boolean | null;
|
|
51839
52176
|
hasConflicts: boolean | null;
|
|
51840
52177
|
detailLevel?: "summary" | "detail" | undefined;
|
|
52178
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
51841
52179
|
}>>>>;
|
|
51842
52180
|
}, "strip", z.ZodTypeAny, {
|
|
51843
52181
|
archivedAt: string;
|
|
@@ -51863,6 +52201,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
51863
52201
|
requiredChecksPassed: boolean | null;
|
|
51864
52202
|
canMerge: boolean | null;
|
|
51865
52203
|
hasConflicts: boolean | null;
|
|
52204
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
51866
52205
|
} | null | undefined;
|
|
51867
52206
|
}, {
|
|
51868
52207
|
archivedAt: string;
|
|
@@ -51888,6 +52227,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
51888
52227
|
canMerge: boolean | null;
|
|
51889
52228
|
hasConflicts: boolean | null;
|
|
51890
52229
|
detailLevel?: "summary" | "detail" | undefined;
|
|
52230
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
51891
52231
|
} | null | undefined;
|
|
51892
52232
|
}>>>;
|
|
51893
52233
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -51937,6 +52277,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
51937
52277
|
requiredChecksPassed: boolean | null;
|
|
51938
52278
|
canMerge: boolean | null;
|
|
51939
52279
|
hasConflicts: boolean | null;
|
|
52280
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
51940
52281
|
} | null | undefined;
|
|
51941
52282
|
} | null | undefined;
|
|
51942
52283
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -51991,6 +52332,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
51991
52332
|
canMerge: boolean | null;
|
|
51992
52333
|
hasConflicts: boolean | null;
|
|
51993
52334
|
detailLevel?: "summary" | "detail" | undefined;
|
|
52335
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
51994
52336
|
} | null | undefined;
|
|
51995
52337
|
} | null | undefined;
|
|
51996
52338
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -52049,6 +52391,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
52049
52391
|
requiredChecksPassed: boolean | null;
|
|
52050
52392
|
canMerge: boolean | null;
|
|
52051
52393
|
hasConflicts: boolean | null;
|
|
52394
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
52052
52395
|
} | null | undefined;
|
|
52053
52396
|
} | null | undefined;
|
|
52054
52397
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -52107,6 +52450,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
52107
52450
|
canMerge: boolean | null;
|
|
52108
52451
|
hasConflicts: boolean | null;
|
|
52109
52452
|
detailLevel?: "summary" | "detail" | undefined;
|
|
52453
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
52110
52454
|
} | null | undefined;
|
|
52111
52455
|
} | null | undefined;
|
|
52112
52456
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -52168,6 +52512,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
52168
52512
|
requiredChecksPassed: boolean | null;
|
|
52169
52513
|
canMerge: boolean | null;
|
|
52170
52514
|
hasConflicts: boolean | null;
|
|
52515
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
52171
52516
|
} | null | undefined;
|
|
52172
52517
|
} | null | undefined;
|
|
52173
52518
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -52229,6 +52574,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
52229
52574
|
canMerge: boolean | null;
|
|
52230
52575
|
hasConflicts: boolean | null;
|
|
52231
52576
|
detailLevel?: "summary" | "detail" | undefined;
|
|
52577
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
52232
52578
|
} | null | undefined;
|
|
52233
52579
|
} | null | undefined;
|
|
52234
52580
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -52296,6 +52642,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
52296
52642
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
52297
52643
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
52298
52644
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
52645
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
52299
52646
|
}, "strip", z.ZodTypeAny, {
|
|
52300
52647
|
number: number;
|
|
52301
52648
|
title: string;
|
|
@@ -52309,6 +52656,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
52309
52656
|
requiredChecksPassed: boolean | null;
|
|
52310
52657
|
canMerge: boolean | null;
|
|
52311
52658
|
hasConflicts: boolean | null;
|
|
52659
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
52312
52660
|
}, {
|
|
52313
52661
|
number: number;
|
|
52314
52662
|
title: string;
|
|
@@ -52322,6 +52670,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
52322
52670
|
canMerge: boolean | null;
|
|
52323
52671
|
hasConflicts: boolean | null;
|
|
52324
52672
|
detailLevel?: "summary" | "detail" | undefined;
|
|
52673
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
52325
52674
|
}>>>>;
|
|
52326
52675
|
}, "strip", z.ZodTypeAny, {
|
|
52327
52676
|
archivedAt: string;
|
|
@@ -52347,6 +52696,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
52347
52696
|
requiredChecksPassed: boolean | null;
|
|
52348
52697
|
canMerge: boolean | null;
|
|
52349
52698
|
hasConflicts: boolean | null;
|
|
52699
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
52350
52700
|
} | null | undefined;
|
|
52351
52701
|
}, {
|
|
52352
52702
|
archivedAt: string;
|
|
@@ -52372,6 +52722,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
52372
52722
|
canMerge: boolean | null;
|
|
52373
52723
|
hasConflicts: boolean | null;
|
|
52374
52724
|
detailLevel?: "summary" | "detail" | undefined;
|
|
52725
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
52375
52726
|
} | null | undefined;
|
|
52376
52727
|
}>>>;
|
|
52377
52728
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -52421,6 +52772,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
52421
52772
|
requiredChecksPassed: boolean | null;
|
|
52422
52773
|
canMerge: boolean | null;
|
|
52423
52774
|
hasConflicts: boolean | null;
|
|
52775
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
52424
52776
|
} | null | undefined;
|
|
52425
52777
|
} | null | undefined;
|
|
52426
52778
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -52475,6 +52827,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
52475
52827
|
canMerge: boolean | null;
|
|
52476
52828
|
hasConflicts: boolean | null;
|
|
52477
52829
|
detailLevel?: "summary" | "detail" | undefined;
|
|
52830
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
52478
52831
|
} | null | undefined;
|
|
52479
52832
|
} | null | undefined;
|
|
52480
52833
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -52649,6 +53002,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
52649
53002
|
requiredChecksPassed: boolean | null;
|
|
52650
53003
|
canMerge: boolean | null;
|
|
52651
53004
|
hasConflicts: boolean | null;
|
|
53005
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
52652
53006
|
} | null | undefined;
|
|
52653
53007
|
} | null | undefined;
|
|
52654
53008
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -52731,6 +53085,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
52731
53085
|
canMerge: boolean | null;
|
|
52732
53086
|
hasConflicts: boolean | null;
|
|
52733
53087
|
detailLevel?: "summary" | "detail" | undefined;
|
|
53088
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
52734
53089
|
} | null | undefined;
|
|
52735
53090
|
} | null | undefined;
|
|
52736
53091
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -52828,6 +53183,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
52828
53183
|
requiredChecksPassed: boolean | null;
|
|
52829
53184
|
canMerge: boolean | null;
|
|
52830
53185
|
hasConflicts: boolean | null;
|
|
53186
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
52831
53187
|
} | null | undefined;
|
|
52832
53188
|
} | null | undefined;
|
|
52833
53189
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -52919,6 +53275,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
52919
53275
|
canMerge: boolean | null;
|
|
52920
53276
|
hasConflicts: boolean | null;
|
|
52921
53277
|
detailLevel?: "summary" | "detail" | undefined;
|
|
53278
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
52922
53279
|
} | null | undefined;
|
|
52923
53280
|
} | null | undefined;
|
|
52924
53281
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -53013,6 +53370,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
53013
53370
|
requiredChecksPassed: boolean | null;
|
|
53014
53371
|
canMerge: boolean | null;
|
|
53015
53372
|
hasConflicts: boolean | null;
|
|
53373
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
53016
53374
|
} | null | undefined;
|
|
53017
53375
|
} | null | undefined;
|
|
53018
53376
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -53107,6 +53465,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
53107
53465
|
canMerge: boolean | null;
|
|
53108
53466
|
hasConflicts: boolean | null;
|
|
53109
53467
|
detailLevel?: "summary" | "detail" | undefined;
|
|
53468
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
53110
53469
|
} | null | undefined;
|
|
53111
53470
|
} | null | undefined;
|
|
53112
53471
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -53206,6 +53565,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
53206
53565
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
53207
53566
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
53208
53567
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
53568
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
53209
53569
|
}, "strip", z.ZodTypeAny, {
|
|
53210
53570
|
number: number;
|
|
53211
53571
|
title: string;
|
|
@@ -53219,6 +53579,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
53219
53579
|
requiredChecksPassed: boolean | null;
|
|
53220
53580
|
canMerge: boolean | null;
|
|
53221
53581
|
hasConflicts: boolean | null;
|
|
53582
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
53222
53583
|
}, {
|
|
53223
53584
|
number: number;
|
|
53224
53585
|
title: string;
|
|
@@ -53232,6 +53593,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
53232
53593
|
canMerge: boolean | null;
|
|
53233
53594
|
hasConflicts: boolean | null;
|
|
53234
53595
|
detailLevel?: "summary" | "detail" | undefined;
|
|
53596
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
53235
53597
|
}>>>>;
|
|
53236
53598
|
}, "strip", z.ZodTypeAny, {
|
|
53237
53599
|
archivedAt: string;
|
|
@@ -53257,6 +53619,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
53257
53619
|
requiredChecksPassed: boolean | null;
|
|
53258
53620
|
canMerge: boolean | null;
|
|
53259
53621
|
hasConflicts: boolean | null;
|
|
53622
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
53260
53623
|
} | null | undefined;
|
|
53261
53624
|
}, {
|
|
53262
53625
|
archivedAt: string;
|
|
@@ -53282,6 +53645,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
53282
53645
|
canMerge: boolean | null;
|
|
53283
53646
|
hasConflicts: boolean | null;
|
|
53284
53647
|
detailLevel?: "summary" | "detail" | undefined;
|
|
53648
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
53285
53649
|
} | null | undefined;
|
|
53286
53650
|
}>>>;
|
|
53287
53651
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -53331,6 +53695,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
53331
53695
|
requiredChecksPassed: boolean | null;
|
|
53332
53696
|
canMerge: boolean | null;
|
|
53333
53697
|
hasConflicts: boolean | null;
|
|
53698
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
53334
53699
|
} | null | undefined;
|
|
53335
53700
|
} | null | undefined;
|
|
53336
53701
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -53385,6 +53750,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
53385
53750
|
canMerge: boolean | null;
|
|
53386
53751
|
hasConflicts: boolean | null;
|
|
53387
53752
|
detailLevel?: "summary" | "detail" | undefined;
|
|
53753
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
53388
53754
|
} | null | undefined;
|
|
53389
53755
|
} | null | undefined;
|
|
53390
53756
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -53562,6 +53928,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
53562
53928
|
requiredChecksPassed: boolean | null;
|
|
53563
53929
|
canMerge: boolean | null;
|
|
53564
53930
|
hasConflicts: boolean | null;
|
|
53931
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
53565
53932
|
} | null | undefined;
|
|
53566
53933
|
} | null | undefined;
|
|
53567
53934
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -53646,6 +54013,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
53646
54013
|
canMerge: boolean | null;
|
|
53647
54014
|
hasConflicts: boolean | null;
|
|
53648
54015
|
detailLevel?: "summary" | "detail" | undefined;
|
|
54016
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
53649
54017
|
} | null | undefined;
|
|
53650
54018
|
} | null | undefined;
|
|
53651
54019
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -53733,6 +54101,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
53733
54101
|
requiredChecksPassed: boolean | null;
|
|
53734
54102
|
canMerge: boolean | null;
|
|
53735
54103
|
hasConflicts: boolean | null;
|
|
54104
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
53736
54105
|
} | null | undefined;
|
|
53737
54106
|
} | null | undefined;
|
|
53738
54107
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -53820,6 +54189,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
53820
54189
|
canMerge: boolean | null;
|
|
53821
54190
|
hasConflicts: boolean | null;
|
|
53822
54191
|
detailLevel?: "summary" | "detail" | undefined;
|
|
54192
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
53823
54193
|
} | null | undefined;
|
|
53824
54194
|
} | null | undefined;
|
|
53825
54195
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -55415,6 +55785,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
55415
55785
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
55416
55786
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
55417
55787
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
55788
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
55418
55789
|
}, "strip", z.ZodTypeAny, {
|
|
55419
55790
|
number: number;
|
|
55420
55791
|
title: string;
|
|
@@ -55428,6 +55799,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
55428
55799
|
requiredChecksPassed: boolean | null;
|
|
55429
55800
|
canMerge: boolean | null;
|
|
55430
55801
|
hasConflicts: boolean | null;
|
|
55802
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
55431
55803
|
}, {
|
|
55432
55804
|
number: number;
|
|
55433
55805
|
title: string;
|
|
@@ -55441,6 +55813,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
55441
55813
|
canMerge: boolean | null;
|
|
55442
55814
|
hasConflicts: boolean | null;
|
|
55443
55815
|
detailLevel?: "summary" | "detail" | undefined;
|
|
55816
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
55444
55817
|
}>>>>;
|
|
55445
55818
|
}, "strip", z.ZodTypeAny, {
|
|
55446
55819
|
archivedAt: string;
|
|
@@ -55466,6 +55839,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
55466
55839
|
requiredChecksPassed: boolean | null;
|
|
55467
55840
|
canMerge: boolean | null;
|
|
55468
55841
|
hasConflicts: boolean | null;
|
|
55842
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
55469
55843
|
} | null | undefined;
|
|
55470
55844
|
}, {
|
|
55471
55845
|
archivedAt: string;
|
|
@@ -55491,6 +55865,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
55491
55865
|
canMerge: boolean | null;
|
|
55492
55866
|
hasConflicts: boolean | null;
|
|
55493
55867
|
detailLevel?: "summary" | "detail" | undefined;
|
|
55868
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
55494
55869
|
} | null | undefined;
|
|
55495
55870
|
}>>>;
|
|
55496
55871
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -55540,6 +55915,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
55540
55915
|
requiredChecksPassed: boolean | null;
|
|
55541
55916
|
canMerge: boolean | null;
|
|
55542
55917
|
hasConflicts: boolean | null;
|
|
55918
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
55543
55919
|
} | null | undefined;
|
|
55544
55920
|
} | null | undefined;
|
|
55545
55921
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -55594,6 +55970,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
55594
55970
|
canMerge: boolean | null;
|
|
55595
55971
|
hasConflicts: boolean | null;
|
|
55596
55972
|
detailLevel?: "summary" | "detail" | undefined;
|
|
55973
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
55597
55974
|
} | null | undefined;
|
|
55598
55975
|
} | null | undefined;
|
|
55599
55976
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -55655,6 +56032,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
55655
56032
|
requiredChecksPassed: boolean | null;
|
|
55656
56033
|
canMerge: boolean | null;
|
|
55657
56034
|
hasConflicts: boolean | null;
|
|
56035
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
55658
56036
|
} | null | undefined;
|
|
55659
56037
|
} | null | undefined;
|
|
55660
56038
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -55715,6 +56093,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
55715
56093
|
canMerge: boolean | null;
|
|
55716
56094
|
hasConflicts: boolean | null;
|
|
55717
56095
|
detailLevel?: "summary" | "detail" | undefined;
|
|
56096
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
55718
56097
|
} | null | undefined;
|
|
55719
56098
|
} | null | undefined;
|
|
55720
56099
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -55778,6 +56157,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
55778
56157
|
requiredChecksPassed: boolean | null;
|
|
55779
56158
|
canMerge: boolean | null;
|
|
55780
56159
|
hasConflicts: boolean | null;
|
|
56160
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
55781
56161
|
} | null | undefined;
|
|
55782
56162
|
} | null | undefined;
|
|
55783
56163
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -55841,6 +56221,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
55841
56221
|
canMerge: boolean | null;
|
|
55842
56222
|
hasConflicts: boolean | null;
|
|
55843
56223
|
detailLevel?: "summary" | "detail" | undefined;
|
|
56224
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
55844
56225
|
} | null | undefined;
|
|
55845
56226
|
} | null | undefined;
|
|
55846
56227
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -56585,6 +56966,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
56585
56966
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
56586
56967
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
56587
56968
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
56969
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
56588
56970
|
}, "strip", z.ZodTypeAny, {
|
|
56589
56971
|
number: number;
|
|
56590
56972
|
title: string;
|
|
@@ -56598,6 +56980,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
56598
56980
|
requiredChecksPassed: boolean | null;
|
|
56599
56981
|
canMerge: boolean | null;
|
|
56600
56982
|
hasConflicts: boolean | null;
|
|
56983
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
56601
56984
|
}, {
|
|
56602
56985
|
number: number;
|
|
56603
56986
|
title: string;
|
|
@@ -56611,6 +56994,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
56611
56994
|
canMerge: boolean | null;
|
|
56612
56995
|
hasConflicts: boolean | null;
|
|
56613
56996
|
detailLevel?: "summary" | "detail" | undefined;
|
|
56997
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
56614
56998
|
}>>>;
|
|
56615
56999
|
pullRequestError: z.ZodNullable<z.ZodObject<{
|
|
56616
57000
|
code: z.ZodEnum<["NOT_GIT_REPO", "NOT_ALLOWED", "MERGE_CONFLICT", "UNKNOWN"]>;
|
|
@@ -56643,6 +57027,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
56643
57027
|
requiredChecksPassed: boolean | null;
|
|
56644
57028
|
canMerge: boolean | null;
|
|
56645
57029
|
hasConflicts: boolean | null;
|
|
57030
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
56646
57031
|
} | null;
|
|
56647
57032
|
requestId: string;
|
|
56648
57033
|
subscriptionId: string;
|
|
@@ -56722,6 +57107,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
56722
57107
|
canMerge: boolean | null;
|
|
56723
57108
|
hasConflicts: boolean | null;
|
|
56724
57109
|
detailLevel?: "summary" | "detail" | undefined;
|
|
57110
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
56725
57111
|
} | null;
|
|
56726
57112
|
requestId: string;
|
|
56727
57113
|
subscriptionId: string;
|
|
@@ -56804,6 +57190,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
56804
57190
|
requiredChecksPassed: boolean | null;
|
|
56805
57191
|
canMerge: boolean | null;
|
|
56806
57192
|
hasConflicts: boolean | null;
|
|
57193
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
56807
57194
|
} | null;
|
|
56808
57195
|
requestId: string;
|
|
56809
57196
|
subscriptionId: string;
|
|
@@ -56886,6 +57273,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
56886
57273
|
canMerge: boolean | null;
|
|
56887
57274
|
hasConflicts: boolean | null;
|
|
56888
57275
|
detailLevel?: "summary" | "detail" | undefined;
|
|
57276
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
56889
57277
|
} | null;
|
|
56890
57278
|
requestId: string;
|
|
56891
57279
|
subscriptionId: string;
|
|
@@ -57177,6 +57565,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
57177
57565
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
57178
57566
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
57179
57567
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
57568
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
57180
57569
|
}, "strip", z.ZodTypeAny, {
|
|
57181
57570
|
number: number;
|
|
57182
57571
|
title: string;
|
|
@@ -57190,6 +57579,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
57190
57579
|
requiredChecksPassed: boolean | null;
|
|
57191
57580
|
canMerge: boolean | null;
|
|
57192
57581
|
hasConflicts: boolean | null;
|
|
57582
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
57193
57583
|
}, {
|
|
57194
57584
|
number: number;
|
|
57195
57585
|
title: string;
|
|
@@ -57203,6 +57593,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
57203
57593
|
canMerge: boolean | null;
|
|
57204
57594
|
hasConflicts: boolean | null;
|
|
57205
57595
|
detailLevel?: "summary" | "detail" | undefined;
|
|
57596
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
57206
57597
|
}>>>;
|
|
57207
57598
|
pullRequestError: z.ZodNullable<z.ZodObject<{
|
|
57208
57599
|
code: z.ZodEnum<["NOT_GIT_REPO", "NOT_ALLOWED", "MERGE_CONFLICT", "UNKNOWN"]>;
|
|
@@ -57232,6 +57623,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
57232
57623
|
requiredChecksPassed: boolean | null;
|
|
57233
57624
|
canMerge: boolean | null;
|
|
57234
57625
|
hasConflicts: boolean | null;
|
|
57626
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
57235
57627
|
} | null;
|
|
57236
57628
|
git: {
|
|
57237
57629
|
repoRoot: null;
|
|
@@ -57309,6 +57701,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
57309
57701
|
canMerge: boolean | null;
|
|
57310
57702
|
hasConflicts: boolean | null;
|
|
57311
57703
|
detailLevel?: "summary" | "detail" | undefined;
|
|
57704
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
57312
57705
|
} | null;
|
|
57313
57706
|
git: {
|
|
57314
57707
|
repoRoot: null;
|
|
@@ -57389,6 +57782,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
57389
57782
|
requiredChecksPassed: boolean | null;
|
|
57390
57783
|
canMerge: boolean | null;
|
|
57391
57784
|
hasConflicts: boolean | null;
|
|
57785
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
57392
57786
|
} | null;
|
|
57393
57787
|
git: {
|
|
57394
57788
|
repoRoot: null;
|
|
@@ -57469,6 +57863,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
57469
57863
|
canMerge: boolean | null;
|
|
57470
57864
|
hasConflicts: boolean | null;
|
|
57471
57865
|
detailLevel?: "summary" | "detail" | undefined;
|
|
57866
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
57472
57867
|
} | null;
|
|
57473
57868
|
git: {
|
|
57474
57869
|
repoRoot: null;
|
|
@@ -58330,6 +58725,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
58330
58725
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
58331
58726
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
58332
58727
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
58728
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
58333
58729
|
}, "strip", z.ZodTypeAny, {
|
|
58334
58730
|
number: number;
|
|
58335
58731
|
title: string;
|
|
@@ -58343,6 +58739,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
58343
58739
|
requiredChecksPassed: boolean | null;
|
|
58344
58740
|
canMerge: boolean | null;
|
|
58345
58741
|
hasConflicts: boolean | null;
|
|
58742
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
58346
58743
|
}, {
|
|
58347
58744
|
number: number;
|
|
58348
58745
|
title: string;
|
|
@@ -58356,6 +58753,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
58356
58753
|
canMerge: boolean | null;
|
|
58357
58754
|
hasConflicts: boolean | null;
|
|
58358
58755
|
detailLevel?: "summary" | "detail" | undefined;
|
|
58756
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
58359
58757
|
}>>;
|
|
58360
58758
|
githubFeaturesEnabled: z.ZodBoolean;
|
|
58361
58759
|
error: z.ZodNullable<z.ZodObject<{
|
|
@@ -58387,6 +58785,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
58387
58785
|
requiredChecksPassed: boolean | null;
|
|
58388
58786
|
canMerge: boolean | null;
|
|
58389
58787
|
hasConflicts: boolean | null;
|
|
58788
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
58390
58789
|
} | null;
|
|
58391
58790
|
cwd: string;
|
|
58392
58791
|
requestId: string;
|
|
@@ -58409,6 +58808,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
58409
58808
|
canMerge: boolean | null;
|
|
58410
58809
|
hasConflicts: boolean | null;
|
|
58411
58810
|
detailLevel?: "summary" | "detail" | undefined;
|
|
58811
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
58412
58812
|
} | null;
|
|
58413
58813
|
cwd: string;
|
|
58414
58814
|
requestId: string;
|
|
@@ -58434,6 +58834,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
58434
58834
|
requiredChecksPassed: boolean | null;
|
|
58435
58835
|
canMerge: boolean | null;
|
|
58436
58836
|
hasConflicts: boolean | null;
|
|
58837
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
58437
58838
|
} | null;
|
|
58438
58839
|
cwd: string;
|
|
58439
58840
|
requestId: string;
|
|
@@ -58459,6 +58860,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
58459
58860
|
canMerge: boolean | null;
|
|
58460
58861
|
hasConflicts: boolean | null;
|
|
58461
58862
|
detailLevel?: "summary" | "detail" | undefined;
|
|
58863
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
58462
58864
|
} | null;
|
|
58463
58865
|
cwd: string;
|
|
58464
58866
|
requestId: string;
|
|
@@ -59101,7 +59503,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
59101
59503
|
type: z.ZodLiteral<"junction_worktree_archive_response">;
|
|
59102
59504
|
payload: z.ZodObject<{
|
|
59103
59505
|
success: z.ZodBoolean;
|
|
59104
|
-
|
|
59506
|
+
archivedAgentIds: z.ZodArray<z.ZodString, "many">;
|
|
59507
|
+
archivedAt: z.ZodNullable<z.ZodString>;
|
|
59105
59508
|
error: z.ZodNullable<z.ZodObject<{
|
|
59106
59509
|
code: z.ZodEnum<["NOT_GIT_REPO", "NOT_ALLOWED", "MERGE_CONFLICT", "UNKNOWN"]>;
|
|
59107
59510
|
message: z.ZodString;
|
|
@@ -59118,17 +59521,19 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
59118
59521
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
59119
59522
|
message: string;
|
|
59120
59523
|
} | null;
|
|
59524
|
+
archivedAt: string | null;
|
|
59121
59525
|
requestId: string;
|
|
59122
59526
|
success: boolean;
|
|
59123
|
-
|
|
59527
|
+
archivedAgentIds: string[];
|
|
59124
59528
|
}, {
|
|
59125
59529
|
error: {
|
|
59126
59530
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
59127
59531
|
message: string;
|
|
59128
59532
|
} | null;
|
|
59533
|
+
archivedAt: string | null;
|
|
59129
59534
|
requestId: string;
|
|
59130
59535
|
success: boolean;
|
|
59131
|
-
|
|
59536
|
+
archivedAgentIds: string[];
|
|
59132
59537
|
}>;
|
|
59133
59538
|
}, "strip", z.ZodTypeAny, {
|
|
59134
59539
|
type: "junction_worktree_archive_response";
|
|
@@ -59137,9 +59542,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
59137
59542
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
59138
59543
|
message: string;
|
|
59139
59544
|
} | null;
|
|
59545
|
+
archivedAt: string | null;
|
|
59140
59546
|
requestId: string;
|
|
59141
59547
|
success: boolean;
|
|
59142
|
-
|
|
59548
|
+
archivedAgentIds: string[];
|
|
59143
59549
|
};
|
|
59144
59550
|
}, {
|
|
59145
59551
|
type: "junction_worktree_archive_response";
|
|
@@ -59148,9 +59554,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
59148
59554
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
59149
59555
|
message: string;
|
|
59150
59556
|
} | null;
|
|
59557
|
+
archivedAt: string | null;
|
|
59151
59558
|
requestId: string;
|
|
59152
59559
|
success: boolean;
|
|
59153
|
-
|
|
59560
|
+
archivedAgentIds: string[];
|
|
59154
59561
|
};
|
|
59155
59562
|
}>, z.ZodObject<{
|
|
59156
59563
|
type: z.ZodLiteral<"file_explorer_response">;
|
|
@@ -61625,6 +62032,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
61625
62032
|
requiredChecksPassed: boolean | null;
|
|
61626
62033
|
canMerge: boolean | null;
|
|
61627
62034
|
hasConflicts: boolean | null;
|
|
62035
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
61628
62036
|
} | null | undefined;
|
|
61629
62037
|
} | null | undefined;
|
|
61630
62038
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -61775,6 +62183,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
61775
62183
|
requiredChecksPassed: boolean | null;
|
|
61776
62184
|
canMerge: boolean | null;
|
|
61777
62185
|
hasConflicts: boolean | null;
|
|
62186
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
61778
62187
|
} | null | undefined;
|
|
61779
62188
|
} | null | undefined;
|
|
61780
62189
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -61835,6 +62244,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
61835
62244
|
requiredChecksPassed: boolean | null;
|
|
61836
62245
|
canMerge: boolean | null;
|
|
61837
62246
|
hasConflicts: boolean | null;
|
|
62247
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
61838
62248
|
} | null | undefined;
|
|
61839
62249
|
} | null | undefined;
|
|
61840
62250
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -61930,6 +62340,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
61930
62340
|
requiredChecksPassed: boolean | null;
|
|
61931
62341
|
canMerge: boolean | null;
|
|
61932
62342
|
hasConflicts: boolean | null;
|
|
62343
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
61933
62344
|
} | null | undefined;
|
|
61934
62345
|
} | null | undefined;
|
|
61935
62346
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -62189,6 +62600,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
62189
62600
|
requiredChecksPassed: boolean | null;
|
|
62190
62601
|
canMerge: boolean | null;
|
|
62191
62602
|
hasConflicts: boolean | null;
|
|
62603
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
62192
62604
|
} | null | undefined;
|
|
62193
62605
|
} | null | undefined;
|
|
62194
62606
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -62319,6 +62731,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
62319
62731
|
requiredChecksPassed: boolean | null;
|
|
62320
62732
|
canMerge: boolean | null;
|
|
62321
62733
|
hasConflicts: boolean | null;
|
|
62734
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
62322
62735
|
} | null;
|
|
62323
62736
|
requestId: string;
|
|
62324
62737
|
subscriptionId: string;
|
|
@@ -62401,6 +62814,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
62401
62814
|
requiredChecksPassed: boolean | null;
|
|
62402
62815
|
canMerge: boolean | null;
|
|
62403
62816
|
hasConflicts: boolean | null;
|
|
62817
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
62404
62818
|
} | null;
|
|
62405
62819
|
git: {
|
|
62406
62820
|
repoRoot: null;
|
|
@@ -62604,6 +63018,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
62604
63018
|
requiredChecksPassed: boolean | null;
|
|
62605
63019
|
canMerge: boolean | null;
|
|
62606
63020
|
hasConflicts: boolean | null;
|
|
63021
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
62607
63022
|
} | null;
|
|
62608
63023
|
cwd: string;
|
|
62609
63024
|
requestId: string;
|
|
@@ -62741,9 +63156,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
62741
63156
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
62742
63157
|
message: string;
|
|
62743
63158
|
} | null;
|
|
63159
|
+
archivedAt: string | null;
|
|
62744
63160
|
requestId: string;
|
|
62745
63161
|
success: boolean;
|
|
62746
|
-
|
|
63162
|
+
archivedAgentIds: string[];
|
|
62747
63163
|
};
|
|
62748
63164
|
} | {
|
|
62749
63165
|
type: "file_explorer_response";
|
|
@@ -63303,6 +63719,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
63303
63719
|
canMerge: boolean | null;
|
|
63304
63720
|
hasConflicts: boolean | null;
|
|
63305
63721
|
detailLevel?: "summary" | "detail" | undefined;
|
|
63722
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
63306
63723
|
} | null | undefined;
|
|
63307
63724
|
} | null | undefined;
|
|
63308
63725
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -63453,6 +63870,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
63453
63870
|
canMerge: boolean | null;
|
|
63454
63871
|
hasConflicts: boolean | null;
|
|
63455
63872
|
detailLevel?: "summary" | "detail" | undefined;
|
|
63873
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
63456
63874
|
} | null | undefined;
|
|
63457
63875
|
} | null | undefined;
|
|
63458
63876
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -63513,6 +63931,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
63513
63931
|
canMerge: boolean | null;
|
|
63514
63932
|
hasConflicts: boolean | null;
|
|
63515
63933
|
detailLevel?: "summary" | "detail" | undefined;
|
|
63934
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
63516
63935
|
} | null | undefined;
|
|
63517
63936
|
} | null | undefined;
|
|
63518
63937
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -63608,6 +64027,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
63608
64027
|
canMerge: boolean | null;
|
|
63609
64028
|
hasConflicts: boolean | null;
|
|
63610
64029
|
detailLevel?: "summary" | "detail" | undefined;
|
|
64030
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
63611
64031
|
} | null | undefined;
|
|
63612
64032
|
} | null | undefined;
|
|
63613
64033
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -63867,6 +64287,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
63867
64287
|
canMerge: boolean | null;
|
|
63868
64288
|
hasConflicts: boolean | null;
|
|
63869
64289
|
detailLevel?: "summary" | "detail" | undefined;
|
|
64290
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
63870
64291
|
} | null | undefined;
|
|
63871
64292
|
} | null | undefined;
|
|
63872
64293
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -63997,6 +64418,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
63997
64418
|
canMerge: boolean | null;
|
|
63998
64419
|
hasConflicts: boolean | null;
|
|
63999
64420
|
detailLevel?: "summary" | "detail" | undefined;
|
|
64421
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
64000
64422
|
} | null;
|
|
64001
64423
|
requestId: string;
|
|
64002
64424
|
subscriptionId: string;
|
|
@@ -64079,6 +64501,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
64079
64501
|
canMerge: boolean | null;
|
|
64080
64502
|
hasConflicts: boolean | null;
|
|
64081
64503
|
detailLevel?: "summary" | "detail" | undefined;
|
|
64504
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
64082
64505
|
} | null;
|
|
64083
64506
|
git: {
|
|
64084
64507
|
repoRoot: null;
|
|
@@ -64282,6 +64705,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
64282
64705
|
canMerge: boolean | null;
|
|
64283
64706
|
hasConflicts: boolean | null;
|
|
64284
64707
|
detailLevel?: "summary" | "detail" | undefined;
|
|
64708
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
64285
64709
|
} | null;
|
|
64286
64710
|
cwd: string;
|
|
64287
64711
|
requestId: string;
|
|
@@ -64419,9 +64843,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
64419
64843
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
64420
64844
|
message: string;
|
|
64421
64845
|
} | null;
|
|
64846
|
+
archivedAt: string | null;
|
|
64422
64847
|
requestId: string;
|
|
64423
64848
|
success: boolean;
|
|
64424
|
-
|
|
64849
|
+
archivedAgentIds: string[];
|
|
64425
64850
|
};
|
|
64426
64851
|
} | {
|
|
64427
64852
|
type: "file_explorer_response";
|