@junctionpanel/server 0.1.79 → 0.1.81
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 +9 -10
- package/dist/server/server/session.js.map +1 -1
- package/dist/server/shared/messages.d.ts +401 -0
- package/dist/server/shared/messages.d.ts.map +1 -1
- package/dist/server/shared/messages.js +1 -0
- package/dist/server/shared/messages.js.map +1 -1
- package/dist/server/utils/checkout-git.d.ts +3 -0
- package/dist/server/utils/checkout-git.d.ts.map +1 -1
- package/dist/server/utils/checkout-git.js +107 -29
- 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;
|
|
@@ -18640,6 +18775,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
18640
18775
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
18641
18776
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
18642
18777
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
18778
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
18643
18779
|
}, "strip", z.ZodTypeAny, {
|
|
18644
18780
|
number: number;
|
|
18645
18781
|
title: string;
|
|
@@ -18653,6 +18789,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
18653
18789
|
requiredChecksPassed: boolean | null;
|
|
18654
18790
|
canMerge: boolean | null;
|
|
18655
18791
|
hasConflicts: boolean | null;
|
|
18792
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
18656
18793
|
}, {
|
|
18657
18794
|
number: number;
|
|
18658
18795
|
title: string;
|
|
@@ -18666,6 +18803,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
18666
18803
|
canMerge: boolean | null;
|
|
18667
18804
|
hasConflicts: boolean | null;
|
|
18668
18805
|
detailLevel?: "summary" | "detail" | undefined;
|
|
18806
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
18669
18807
|
}>>>>;
|
|
18670
18808
|
}, "strip", z.ZodTypeAny, {
|
|
18671
18809
|
archivedAt: string;
|
|
@@ -18691,6 +18829,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
18691
18829
|
requiredChecksPassed: boolean | null;
|
|
18692
18830
|
canMerge: boolean | null;
|
|
18693
18831
|
hasConflicts: boolean | null;
|
|
18832
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
18694
18833
|
} | null | undefined;
|
|
18695
18834
|
}, {
|
|
18696
18835
|
archivedAt: string;
|
|
@@ -18716,6 +18855,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
18716
18855
|
canMerge: boolean | null;
|
|
18717
18856
|
hasConflicts: boolean | null;
|
|
18718
18857
|
detailLevel?: "summary" | "detail" | undefined;
|
|
18858
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
18719
18859
|
} | null | undefined;
|
|
18720
18860
|
}>>>;
|
|
18721
18861
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -18765,6 +18905,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
18765
18905
|
requiredChecksPassed: boolean | null;
|
|
18766
18906
|
canMerge: boolean | null;
|
|
18767
18907
|
hasConflicts: boolean | null;
|
|
18908
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
18768
18909
|
} | null | undefined;
|
|
18769
18910
|
} | null | undefined;
|
|
18770
18911
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -18819,6 +18960,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
18819
18960
|
canMerge: boolean | null;
|
|
18820
18961
|
hasConflicts: boolean | null;
|
|
18821
18962
|
detailLevel?: "summary" | "detail" | undefined;
|
|
18963
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
18822
18964
|
} | null | undefined;
|
|
18823
18965
|
} | null | undefined;
|
|
18824
18966
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -18994,6 +19136,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
18994
19136
|
requiredChecksPassed: boolean | null;
|
|
18995
19137
|
canMerge: boolean | null;
|
|
18996
19138
|
hasConflicts: boolean | null;
|
|
19139
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
18997
19140
|
} | null | undefined;
|
|
18998
19141
|
} | null | undefined;
|
|
18999
19142
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -19077,6 +19220,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
19077
19220
|
canMerge: boolean | null;
|
|
19078
19221
|
hasConflicts: boolean | null;
|
|
19079
19222
|
detailLevel?: "summary" | "detail" | undefined;
|
|
19223
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
19080
19224
|
} | null | undefined;
|
|
19081
19225
|
} | null | undefined;
|
|
19082
19226
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -19172,6 +19316,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
19172
19316
|
requiredChecksPassed: boolean | null;
|
|
19173
19317
|
canMerge: boolean | null;
|
|
19174
19318
|
hasConflicts: boolean | null;
|
|
19319
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
19175
19320
|
} | null | undefined;
|
|
19176
19321
|
} | null | undefined;
|
|
19177
19322
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -19261,6 +19406,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
19261
19406
|
canMerge: boolean | null;
|
|
19262
19407
|
hasConflicts: boolean | null;
|
|
19263
19408
|
detailLevel?: "summary" | "detail" | undefined;
|
|
19409
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
19264
19410
|
} | null | undefined;
|
|
19265
19411
|
} | null | undefined;
|
|
19266
19412
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -19784,6 +19930,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
19784
19930
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
19785
19931
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
19786
19932
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
19933
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
19787
19934
|
}, "strip", z.ZodTypeAny, {
|
|
19788
19935
|
number: number;
|
|
19789
19936
|
title: string;
|
|
@@ -19797,6 +19944,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
19797
19944
|
requiredChecksPassed: boolean | null;
|
|
19798
19945
|
canMerge: boolean | null;
|
|
19799
19946
|
hasConflicts: boolean | null;
|
|
19947
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
19800
19948
|
}, {
|
|
19801
19949
|
number: number;
|
|
19802
19950
|
title: string;
|
|
@@ -19810,6 +19958,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
19810
19958
|
canMerge: boolean | null;
|
|
19811
19959
|
hasConflicts: boolean | null;
|
|
19812
19960
|
detailLevel?: "summary" | "detail" | undefined;
|
|
19961
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
19813
19962
|
}>>>>;
|
|
19814
19963
|
}, "strip", z.ZodTypeAny, {
|
|
19815
19964
|
archivedAt: string;
|
|
@@ -19835,6 +19984,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
19835
19984
|
requiredChecksPassed: boolean | null;
|
|
19836
19985
|
canMerge: boolean | null;
|
|
19837
19986
|
hasConflicts: boolean | null;
|
|
19987
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
19838
19988
|
} | null | undefined;
|
|
19839
19989
|
}, {
|
|
19840
19990
|
archivedAt: string;
|
|
@@ -19860,6 +20010,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
19860
20010
|
canMerge: boolean | null;
|
|
19861
20011
|
hasConflicts: boolean | null;
|
|
19862
20012
|
detailLevel?: "summary" | "detail" | undefined;
|
|
20013
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
19863
20014
|
} | null | undefined;
|
|
19864
20015
|
}>>>;
|
|
19865
20016
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -19909,6 +20060,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
19909
20060
|
requiredChecksPassed: boolean | null;
|
|
19910
20061
|
canMerge: boolean | null;
|
|
19911
20062
|
hasConflicts: boolean | null;
|
|
20063
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
19912
20064
|
} | null | undefined;
|
|
19913
20065
|
} | null | undefined;
|
|
19914
20066
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -19963,6 +20115,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
19963
20115
|
canMerge: boolean | null;
|
|
19964
20116
|
hasConflicts: boolean | null;
|
|
19965
20117
|
detailLevel?: "summary" | "detail" | undefined;
|
|
20118
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
19966
20119
|
} | null | undefined;
|
|
19967
20120
|
} | null | undefined;
|
|
19968
20121
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -20021,6 +20174,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20021
20174
|
requiredChecksPassed: boolean | null;
|
|
20022
20175
|
canMerge: boolean | null;
|
|
20023
20176
|
hasConflicts: boolean | null;
|
|
20177
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
20024
20178
|
} | null | undefined;
|
|
20025
20179
|
} | null | undefined;
|
|
20026
20180
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -20079,6 +20233,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20079
20233
|
canMerge: boolean | null;
|
|
20080
20234
|
hasConflicts: boolean | null;
|
|
20081
20235
|
detailLevel?: "summary" | "detail" | undefined;
|
|
20236
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
20082
20237
|
} | null | undefined;
|
|
20083
20238
|
} | null | undefined;
|
|
20084
20239
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -20140,6 +20295,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20140
20295
|
requiredChecksPassed: boolean | null;
|
|
20141
20296
|
canMerge: boolean | null;
|
|
20142
20297
|
hasConflicts: boolean | null;
|
|
20298
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
20143
20299
|
} | null | undefined;
|
|
20144
20300
|
} | null | undefined;
|
|
20145
20301
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -20201,6 +20357,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20201
20357
|
canMerge: boolean | null;
|
|
20202
20358
|
hasConflicts: boolean | null;
|
|
20203
20359
|
detailLevel?: "summary" | "detail" | undefined;
|
|
20360
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
20204
20361
|
} | null | undefined;
|
|
20205
20362
|
} | null | undefined;
|
|
20206
20363
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -20268,6 +20425,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20268
20425
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
20269
20426
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
20270
20427
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
20428
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
20271
20429
|
}, "strip", z.ZodTypeAny, {
|
|
20272
20430
|
number: number;
|
|
20273
20431
|
title: string;
|
|
@@ -20281,6 +20439,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20281
20439
|
requiredChecksPassed: boolean | null;
|
|
20282
20440
|
canMerge: boolean | null;
|
|
20283
20441
|
hasConflicts: boolean | null;
|
|
20442
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
20284
20443
|
}, {
|
|
20285
20444
|
number: number;
|
|
20286
20445
|
title: string;
|
|
@@ -20294,6 +20453,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20294
20453
|
canMerge: boolean | null;
|
|
20295
20454
|
hasConflicts: boolean | null;
|
|
20296
20455
|
detailLevel?: "summary" | "detail" | undefined;
|
|
20456
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
20297
20457
|
}>>>>;
|
|
20298
20458
|
}, "strip", z.ZodTypeAny, {
|
|
20299
20459
|
archivedAt: string;
|
|
@@ -20319,6 +20479,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20319
20479
|
requiredChecksPassed: boolean | null;
|
|
20320
20480
|
canMerge: boolean | null;
|
|
20321
20481
|
hasConflicts: boolean | null;
|
|
20482
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
20322
20483
|
} | null | undefined;
|
|
20323
20484
|
}, {
|
|
20324
20485
|
archivedAt: string;
|
|
@@ -20344,6 +20505,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20344
20505
|
canMerge: boolean | null;
|
|
20345
20506
|
hasConflicts: boolean | null;
|
|
20346
20507
|
detailLevel?: "summary" | "detail" | undefined;
|
|
20508
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
20347
20509
|
} | null | undefined;
|
|
20348
20510
|
}>>>;
|
|
20349
20511
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -20393,6 +20555,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20393
20555
|
requiredChecksPassed: boolean | null;
|
|
20394
20556
|
canMerge: boolean | null;
|
|
20395
20557
|
hasConflicts: boolean | null;
|
|
20558
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
20396
20559
|
} | null | undefined;
|
|
20397
20560
|
} | null | undefined;
|
|
20398
20561
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -20447,6 +20610,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20447
20610
|
canMerge: boolean | null;
|
|
20448
20611
|
hasConflicts: boolean | null;
|
|
20449
20612
|
detailLevel?: "summary" | "detail" | undefined;
|
|
20613
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
20450
20614
|
} | null | undefined;
|
|
20451
20615
|
} | null | undefined;
|
|
20452
20616
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -20621,6 +20785,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20621
20785
|
requiredChecksPassed: boolean | null;
|
|
20622
20786
|
canMerge: boolean | null;
|
|
20623
20787
|
hasConflicts: boolean | null;
|
|
20788
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
20624
20789
|
} | null | undefined;
|
|
20625
20790
|
} | null | undefined;
|
|
20626
20791
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -20703,6 +20868,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20703
20868
|
canMerge: boolean | null;
|
|
20704
20869
|
hasConflicts: boolean | null;
|
|
20705
20870
|
detailLevel?: "summary" | "detail" | undefined;
|
|
20871
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
20706
20872
|
} | null | undefined;
|
|
20707
20873
|
} | null | undefined;
|
|
20708
20874
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -20800,6 +20966,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20800
20966
|
requiredChecksPassed: boolean | null;
|
|
20801
20967
|
canMerge: boolean | null;
|
|
20802
20968
|
hasConflicts: boolean | null;
|
|
20969
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
20803
20970
|
} | null | undefined;
|
|
20804
20971
|
} | null | undefined;
|
|
20805
20972
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -20891,6 +21058,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20891
21058
|
canMerge: boolean | null;
|
|
20892
21059
|
hasConflicts: boolean | null;
|
|
20893
21060
|
detailLevel?: "summary" | "detail" | undefined;
|
|
21061
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
20894
21062
|
} | null | undefined;
|
|
20895
21063
|
} | null | undefined;
|
|
20896
21064
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -20985,6 +21153,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
20985
21153
|
requiredChecksPassed: boolean | null;
|
|
20986
21154
|
canMerge: boolean | null;
|
|
20987
21155
|
hasConflicts: boolean | null;
|
|
21156
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
20988
21157
|
} | null | undefined;
|
|
20989
21158
|
} | null | undefined;
|
|
20990
21159
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -21079,6 +21248,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
21079
21248
|
canMerge: boolean | null;
|
|
21080
21249
|
hasConflicts: boolean | null;
|
|
21081
21250
|
detailLevel?: "summary" | "detail" | undefined;
|
|
21251
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
21082
21252
|
} | null | undefined;
|
|
21083
21253
|
} | null | undefined;
|
|
21084
21254
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -21178,6 +21348,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
21178
21348
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
21179
21349
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
21180
21350
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
21351
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
21181
21352
|
}, "strip", z.ZodTypeAny, {
|
|
21182
21353
|
number: number;
|
|
21183
21354
|
title: string;
|
|
@@ -21191,6 +21362,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
21191
21362
|
requiredChecksPassed: boolean | null;
|
|
21192
21363
|
canMerge: boolean | null;
|
|
21193
21364
|
hasConflicts: boolean | null;
|
|
21365
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
21194
21366
|
}, {
|
|
21195
21367
|
number: number;
|
|
21196
21368
|
title: string;
|
|
@@ -21204,6 +21376,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
21204
21376
|
canMerge: boolean | null;
|
|
21205
21377
|
hasConflicts: boolean | null;
|
|
21206
21378
|
detailLevel?: "summary" | "detail" | undefined;
|
|
21379
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
21207
21380
|
}>>>>;
|
|
21208
21381
|
}, "strip", z.ZodTypeAny, {
|
|
21209
21382
|
archivedAt: string;
|
|
@@ -21229,6 +21402,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
21229
21402
|
requiredChecksPassed: boolean | null;
|
|
21230
21403
|
canMerge: boolean | null;
|
|
21231
21404
|
hasConflicts: boolean | null;
|
|
21405
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
21232
21406
|
} | null | undefined;
|
|
21233
21407
|
}, {
|
|
21234
21408
|
archivedAt: string;
|
|
@@ -21254,6 +21428,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
21254
21428
|
canMerge: boolean | null;
|
|
21255
21429
|
hasConflicts: boolean | null;
|
|
21256
21430
|
detailLevel?: "summary" | "detail" | undefined;
|
|
21431
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
21257
21432
|
} | null | undefined;
|
|
21258
21433
|
}>>>;
|
|
21259
21434
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -21303,6 +21478,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
21303
21478
|
requiredChecksPassed: boolean | null;
|
|
21304
21479
|
canMerge: boolean | null;
|
|
21305
21480
|
hasConflicts: boolean | null;
|
|
21481
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
21306
21482
|
} | null | undefined;
|
|
21307
21483
|
} | null | undefined;
|
|
21308
21484
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -21357,6 +21533,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
21357
21533
|
canMerge: boolean | null;
|
|
21358
21534
|
hasConflicts: boolean | null;
|
|
21359
21535
|
detailLevel?: "summary" | "detail" | undefined;
|
|
21536
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
21360
21537
|
} | null | undefined;
|
|
21361
21538
|
} | null | undefined;
|
|
21362
21539
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -21534,6 +21711,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
21534
21711
|
requiredChecksPassed: boolean | null;
|
|
21535
21712
|
canMerge: boolean | null;
|
|
21536
21713
|
hasConflicts: boolean | null;
|
|
21714
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
21537
21715
|
} | null | undefined;
|
|
21538
21716
|
} | null | undefined;
|
|
21539
21717
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -21618,6 +21796,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
21618
21796
|
canMerge: boolean | null;
|
|
21619
21797
|
hasConflicts: boolean | null;
|
|
21620
21798
|
detailLevel?: "summary" | "detail" | undefined;
|
|
21799
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
21621
21800
|
} | null | undefined;
|
|
21622
21801
|
} | null | undefined;
|
|
21623
21802
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -21705,6 +21884,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
21705
21884
|
requiredChecksPassed: boolean | null;
|
|
21706
21885
|
canMerge: boolean | null;
|
|
21707
21886
|
hasConflicts: boolean | null;
|
|
21887
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
21708
21888
|
} | null | undefined;
|
|
21709
21889
|
} | null | undefined;
|
|
21710
21890
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -21792,6 +21972,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
21792
21972
|
canMerge: boolean | null;
|
|
21793
21973
|
hasConflicts: boolean | null;
|
|
21794
21974
|
detailLevel?: "summary" | "detail" | undefined;
|
|
21975
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
21795
21976
|
} | null | undefined;
|
|
21796
21977
|
} | null | undefined;
|
|
21797
21978
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -23387,6 +23568,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
23387
23568
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
23388
23569
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
23389
23570
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
23571
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
23390
23572
|
}, "strip", z.ZodTypeAny, {
|
|
23391
23573
|
number: number;
|
|
23392
23574
|
title: string;
|
|
@@ -23400,6 +23582,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
23400
23582
|
requiredChecksPassed: boolean | null;
|
|
23401
23583
|
canMerge: boolean | null;
|
|
23402
23584
|
hasConflicts: boolean | null;
|
|
23585
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
23403
23586
|
}, {
|
|
23404
23587
|
number: number;
|
|
23405
23588
|
title: string;
|
|
@@ -23413,6 +23596,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
23413
23596
|
canMerge: boolean | null;
|
|
23414
23597
|
hasConflicts: boolean | null;
|
|
23415
23598
|
detailLevel?: "summary" | "detail" | undefined;
|
|
23599
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
23416
23600
|
}>>>>;
|
|
23417
23601
|
}, "strip", z.ZodTypeAny, {
|
|
23418
23602
|
archivedAt: string;
|
|
@@ -23438,6 +23622,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
23438
23622
|
requiredChecksPassed: boolean | null;
|
|
23439
23623
|
canMerge: boolean | null;
|
|
23440
23624
|
hasConflicts: boolean | null;
|
|
23625
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
23441
23626
|
} | null | undefined;
|
|
23442
23627
|
}, {
|
|
23443
23628
|
archivedAt: string;
|
|
@@ -23463,6 +23648,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
23463
23648
|
canMerge: boolean | null;
|
|
23464
23649
|
hasConflicts: boolean | null;
|
|
23465
23650
|
detailLevel?: "summary" | "detail" | undefined;
|
|
23651
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
23466
23652
|
} | null | undefined;
|
|
23467
23653
|
}>>>;
|
|
23468
23654
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -23512,6 +23698,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
23512
23698
|
requiredChecksPassed: boolean | null;
|
|
23513
23699
|
canMerge: boolean | null;
|
|
23514
23700
|
hasConflicts: boolean | null;
|
|
23701
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
23515
23702
|
} | null | undefined;
|
|
23516
23703
|
} | null | undefined;
|
|
23517
23704
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -23566,6 +23753,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
23566
23753
|
canMerge: boolean | null;
|
|
23567
23754
|
hasConflicts: boolean | null;
|
|
23568
23755
|
detailLevel?: "summary" | "detail" | undefined;
|
|
23756
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
23569
23757
|
} | null | undefined;
|
|
23570
23758
|
} | null | undefined;
|
|
23571
23759
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -23627,6 +23815,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
23627
23815
|
requiredChecksPassed: boolean | null;
|
|
23628
23816
|
canMerge: boolean | null;
|
|
23629
23817
|
hasConflicts: boolean | null;
|
|
23818
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
23630
23819
|
} | null | undefined;
|
|
23631
23820
|
} | null | undefined;
|
|
23632
23821
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -23687,6 +23876,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
23687
23876
|
canMerge: boolean | null;
|
|
23688
23877
|
hasConflicts: boolean | null;
|
|
23689
23878
|
detailLevel?: "summary" | "detail" | undefined;
|
|
23879
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
23690
23880
|
} | null | undefined;
|
|
23691
23881
|
} | null | undefined;
|
|
23692
23882
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -23750,6 +23940,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
23750
23940
|
requiredChecksPassed: boolean | null;
|
|
23751
23941
|
canMerge: boolean | null;
|
|
23752
23942
|
hasConflicts: boolean | null;
|
|
23943
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
23753
23944
|
} | null | undefined;
|
|
23754
23945
|
} | null | undefined;
|
|
23755
23946
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -23813,6 +24004,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
23813
24004
|
canMerge: boolean | null;
|
|
23814
24005
|
hasConflicts: boolean | null;
|
|
23815
24006
|
detailLevel?: "summary" | "detail" | undefined;
|
|
24007
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
23816
24008
|
} | null | undefined;
|
|
23817
24009
|
} | null | undefined;
|
|
23818
24010
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -24557,6 +24749,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
24557
24749
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
24558
24750
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
24559
24751
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
24752
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
24560
24753
|
}, "strip", z.ZodTypeAny, {
|
|
24561
24754
|
number: number;
|
|
24562
24755
|
title: string;
|
|
@@ -24570,6 +24763,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
24570
24763
|
requiredChecksPassed: boolean | null;
|
|
24571
24764
|
canMerge: boolean | null;
|
|
24572
24765
|
hasConflicts: boolean | null;
|
|
24766
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
24573
24767
|
}, {
|
|
24574
24768
|
number: number;
|
|
24575
24769
|
title: string;
|
|
@@ -24583,6 +24777,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
24583
24777
|
canMerge: boolean | null;
|
|
24584
24778
|
hasConflicts: boolean | null;
|
|
24585
24779
|
detailLevel?: "summary" | "detail" | undefined;
|
|
24780
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
24586
24781
|
}>>>;
|
|
24587
24782
|
pullRequestError: z.ZodNullable<z.ZodObject<{
|
|
24588
24783
|
code: z.ZodEnum<["NOT_GIT_REPO", "NOT_ALLOWED", "MERGE_CONFLICT", "UNKNOWN"]>;
|
|
@@ -24615,6 +24810,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
24615
24810
|
requiredChecksPassed: boolean | null;
|
|
24616
24811
|
canMerge: boolean | null;
|
|
24617
24812
|
hasConflicts: boolean | null;
|
|
24813
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
24618
24814
|
} | null;
|
|
24619
24815
|
requestId: string;
|
|
24620
24816
|
subscriptionId: string;
|
|
@@ -24694,6 +24890,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
24694
24890
|
canMerge: boolean | null;
|
|
24695
24891
|
hasConflicts: boolean | null;
|
|
24696
24892
|
detailLevel?: "summary" | "detail" | undefined;
|
|
24893
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
24697
24894
|
} | null;
|
|
24698
24895
|
requestId: string;
|
|
24699
24896
|
subscriptionId: string;
|
|
@@ -24776,6 +24973,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
24776
24973
|
requiredChecksPassed: boolean | null;
|
|
24777
24974
|
canMerge: boolean | null;
|
|
24778
24975
|
hasConflicts: boolean | null;
|
|
24976
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
24779
24977
|
} | null;
|
|
24780
24978
|
requestId: string;
|
|
24781
24979
|
subscriptionId: string;
|
|
@@ -24858,6 +25056,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
24858
25056
|
canMerge: boolean | null;
|
|
24859
25057
|
hasConflicts: boolean | null;
|
|
24860
25058
|
detailLevel?: "summary" | "detail" | undefined;
|
|
25059
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
24861
25060
|
} | null;
|
|
24862
25061
|
requestId: string;
|
|
24863
25062
|
subscriptionId: string;
|
|
@@ -25149,6 +25348,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
25149
25348
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
25150
25349
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
25151
25350
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
25351
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
25152
25352
|
}, "strip", z.ZodTypeAny, {
|
|
25153
25353
|
number: number;
|
|
25154
25354
|
title: string;
|
|
@@ -25162,6 +25362,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
25162
25362
|
requiredChecksPassed: boolean | null;
|
|
25163
25363
|
canMerge: boolean | null;
|
|
25164
25364
|
hasConflicts: boolean | null;
|
|
25365
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
25165
25366
|
}, {
|
|
25166
25367
|
number: number;
|
|
25167
25368
|
title: string;
|
|
@@ -25175,6 +25376,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
25175
25376
|
canMerge: boolean | null;
|
|
25176
25377
|
hasConflicts: boolean | null;
|
|
25177
25378
|
detailLevel?: "summary" | "detail" | undefined;
|
|
25379
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
25178
25380
|
}>>>;
|
|
25179
25381
|
pullRequestError: z.ZodNullable<z.ZodObject<{
|
|
25180
25382
|
code: z.ZodEnum<["NOT_GIT_REPO", "NOT_ALLOWED", "MERGE_CONFLICT", "UNKNOWN"]>;
|
|
@@ -25204,6 +25406,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
25204
25406
|
requiredChecksPassed: boolean | null;
|
|
25205
25407
|
canMerge: boolean | null;
|
|
25206
25408
|
hasConflicts: boolean | null;
|
|
25409
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
25207
25410
|
} | null;
|
|
25208
25411
|
git: {
|
|
25209
25412
|
repoRoot: null;
|
|
@@ -25281,6 +25484,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
25281
25484
|
canMerge: boolean | null;
|
|
25282
25485
|
hasConflicts: boolean | null;
|
|
25283
25486
|
detailLevel?: "summary" | "detail" | undefined;
|
|
25487
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
25284
25488
|
} | null;
|
|
25285
25489
|
git: {
|
|
25286
25490
|
repoRoot: null;
|
|
@@ -25361,6 +25565,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
25361
25565
|
requiredChecksPassed: boolean | null;
|
|
25362
25566
|
canMerge: boolean | null;
|
|
25363
25567
|
hasConflicts: boolean | null;
|
|
25568
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
25364
25569
|
} | null;
|
|
25365
25570
|
git: {
|
|
25366
25571
|
repoRoot: null;
|
|
@@ -25441,6 +25646,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
25441
25646
|
canMerge: boolean | null;
|
|
25442
25647
|
hasConflicts: boolean | null;
|
|
25443
25648
|
detailLevel?: "summary" | "detail" | undefined;
|
|
25649
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
25444
25650
|
} | null;
|
|
25445
25651
|
git: {
|
|
25446
25652
|
repoRoot: null;
|
|
@@ -26302,6 +26508,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
26302
26508
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
26303
26509
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
26304
26510
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
26511
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
26305
26512
|
}, "strip", z.ZodTypeAny, {
|
|
26306
26513
|
number: number;
|
|
26307
26514
|
title: string;
|
|
@@ -26315,6 +26522,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
26315
26522
|
requiredChecksPassed: boolean | null;
|
|
26316
26523
|
canMerge: boolean | null;
|
|
26317
26524
|
hasConflicts: boolean | null;
|
|
26525
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
26318
26526
|
}, {
|
|
26319
26527
|
number: number;
|
|
26320
26528
|
title: string;
|
|
@@ -26328,6 +26536,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
26328
26536
|
canMerge: boolean | null;
|
|
26329
26537
|
hasConflicts: boolean | null;
|
|
26330
26538
|
detailLevel?: "summary" | "detail" | undefined;
|
|
26539
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
26331
26540
|
}>>;
|
|
26332
26541
|
githubFeaturesEnabled: z.ZodBoolean;
|
|
26333
26542
|
error: z.ZodNullable<z.ZodObject<{
|
|
@@ -26359,6 +26568,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
26359
26568
|
requiredChecksPassed: boolean | null;
|
|
26360
26569
|
canMerge: boolean | null;
|
|
26361
26570
|
hasConflicts: boolean | null;
|
|
26571
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
26362
26572
|
} | null;
|
|
26363
26573
|
cwd: string;
|
|
26364
26574
|
requestId: string;
|
|
@@ -26381,6 +26591,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
26381
26591
|
canMerge: boolean | null;
|
|
26382
26592
|
hasConflicts: boolean | null;
|
|
26383
26593
|
detailLevel?: "summary" | "detail" | undefined;
|
|
26594
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
26384
26595
|
} | null;
|
|
26385
26596
|
cwd: string;
|
|
26386
26597
|
requestId: string;
|
|
@@ -26406,6 +26617,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
26406
26617
|
requiredChecksPassed: boolean | null;
|
|
26407
26618
|
canMerge: boolean | null;
|
|
26408
26619
|
hasConflicts: boolean | null;
|
|
26620
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
26409
26621
|
} | null;
|
|
26410
26622
|
cwd: string;
|
|
26411
26623
|
requestId: string;
|
|
@@ -26431,6 +26643,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
26431
26643
|
canMerge: boolean | null;
|
|
26432
26644
|
hasConflicts: boolean | null;
|
|
26433
26645
|
detailLevel?: "summary" | "detail" | undefined;
|
|
26646
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
26434
26647
|
} | null;
|
|
26435
26648
|
cwd: string;
|
|
26436
26649
|
requestId: string;
|
|
@@ -33058,6 +33271,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
33058
33271
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
33059
33272
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
33060
33273
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
33274
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
33061
33275
|
}, "strip", z.ZodTypeAny, {
|
|
33062
33276
|
number: number;
|
|
33063
33277
|
title: string;
|
|
@@ -33071,6 +33285,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
33071
33285
|
requiredChecksPassed: boolean | null;
|
|
33072
33286
|
canMerge: boolean | null;
|
|
33073
33287
|
hasConflicts: boolean | null;
|
|
33288
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
33074
33289
|
}, {
|
|
33075
33290
|
number: number;
|
|
33076
33291
|
title: string;
|
|
@@ -33084,6 +33299,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
33084
33299
|
canMerge: boolean | null;
|
|
33085
33300
|
hasConflicts: boolean | null;
|
|
33086
33301
|
detailLevel?: "summary" | "detail" | undefined;
|
|
33302
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
33087
33303
|
}>>>>;
|
|
33088
33304
|
}, "strip", z.ZodTypeAny, {
|
|
33089
33305
|
archivedAt: string;
|
|
@@ -33109,6 +33325,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
33109
33325
|
requiredChecksPassed: boolean | null;
|
|
33110
33326
|
canMerge: boolean | null;
|
|
33111
33327
|
hasConflicts: boolean | null;
|
|
33328
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
33112
33329
|
} | null | undefined;
|
|
33113
33330
|
}, {
|
|
33114
33331
|
archivedAt: string;
|
|
@@ -33134,6 +33351,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
33134
33351
|
canMerge: boolean | null;
|
|
33135
33352
|
hasConflicts: boolean | null;
|
|
33136
33353
|
detailLevel?: "summary" | "detail" | undefined;
|
|
33354
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
33137
33355
|
} | null | undefined;
|
|
33138
33356
|
}>>>;
|
|
33139
33357
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -33183,6 +33401,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
33183
33401
|
requiredChecksPassed: boolean | null;
|
|
33184
33402
|
canMerge: boolean | null;
|
|
33185
33403
|
hasConflicts: boolean | null;
|
|
33404
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
33186
33405
|
} | null | undefined;
|
|
33187
33406
|
} | null | undefined;
|
|
33188
33407
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -33237,6 +33456,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
33237
33456
|
canMerge: boolean | null;
|
|
33238
33457
|
hasConflicts: boolean | null;
|
|
33239
33458
|
detailLevel?: "summary" | "detail" | undefined;
|
|
33459
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
33240
33460
|
} | null | undefined;
|
|
33241
33461
|
} | null | undefined;
|
|
33242
33462
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -33412,6 +33632,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
33412
33632
|
requiredChecksPassed: boolean | null;
|
|
33413
33633
|
canMerge: boolean | null;
|
|
33414
33634
|
hasConflicts: boolean | null;
|
|
33635
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
33415
33636
|
} | null | undefined;
|
|
33416
33637
|
} | null | undefined;
|
|
33417
33638
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -33495,6 +33716,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
33495
33716
|
canMerge: boolean | null;
|
|
33496
33717
|
hasConflicts: boolean | null;
|
|
33497
33718
|
detailLevel?: "summary" | "detail" | undefined;
|
|
33719
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
33498
33720
|
} | null | undefined;
|
|
33499
33721
|
} | null | undefined;
|
|
33500
33722
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -33590,6 +33812,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
33590
33812
|
requiredChecksPassed: boolean | null;
|
|
33591
33813
|
canMerge: boolean | null;
|
|
33592
33814
|
hasConflicts: boolean | null;
|
|
33815
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
33593
33816
|
} | null | undefined;
|
|
33594
33817
|
} | null | undefined;
|
|
33595
33818
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -33679,6 +33902,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
33679
33902
|
canMerge: boolean | null;
|
|
33680
33903
|
hasConflicts: boolean | null;
|
|
33681
33904
|
detailLevel?: "summary" | "detail" | undefined;
|
|
33905
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
33682
33906
|
} | null | undefined;
|
|
33683
33907
|
} | null | undefined;
|
|
33684
33908
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -34202,6 +34426,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34202
34426
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
34203
34427
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
34204
34428
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
34429
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
34205
34430
|
}, "strip", z.ZodTypeAny, {
|
|
34206
34431
|
number: number;
|
|
34207
34432
|
title: string;
|
|
@@ -34215,6 +34440,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34215
34440
|
requiredChecksPassed: boolean | null;
|
|
34216
34441
|
canMerge: boolean | null;
|
|
34217
34442
|
hasConflicts: boolean | null;
|
|
34443
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
34218
34444
|
}, {
|
|
34219
34445
|
number: number;
|
|
34220
34446
|
title: string;
|
|
@@ -34228,6 +34454,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34228
34454
|
canMerge: boolean | null;
|
|
34229
34455
|
hasConflicts: boolean | null;
|
|
34230
34456
|
detailLevel?: "summary" | "detail" | undefined;
|
|
34457
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
34231
34458
|
}>>>>;
|
|
34232
34459
|
}, "strip", z.ZodTypeAny, {
|
|
34233
34460
|
archivedAt: string;
|
|
@@ -34253,6 +34480,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34253
34480
|
requiredChecksPassed: boolean | null;
|
|
34254
34481
|
canMerge: boolean | null;
|
|
34255
34482
|
hasConflicts: boolean | null;
|
|
34483
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
34256
34484
|
} | null | undefined;
|
|
34257
34485
|
}, {
|
|
34258
34486
|
archivedAt: string;
|
|
@@ -34278,6 +34506,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34278
34506
|
canMerge: boolean | null;
|
|
34279
34507
|
hasConflicts: boolean | null;
|
|
34280
34508
|
detailLevel?: "summary" | "detail" | undefined;
|
|
34509
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
34281
34510
|
} | null | undefined;
|
|
34282
34511
|
}>>>;
|
|
34283
34512
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -34327,6 +34556,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34327
34556
|
requiredChecksPassed: boolean | null;
|
|
34328
34557
|
canMerge: boolean | null;
|
|
34329
34558
|
hasConflicts: boolean | null;
|
|
34559
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
34330
34560
|
} | null | undefined;
|
|
34331
34561
|
} | null | undefined;
|
|
34332
34562
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -34381,6 +34611,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34381
34611
|
canMerge: boolean | null;
|
|
34382
34612
|
hasConflicts: boolean | null;
|
|
34383
34613
|
detailLevel?: "summary" | "detail" | undefined;
|
|
34614
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
34384
34615
|
} | null | undefined;
|
|
34385
34616
|
} | null | undefined;
|
|
34386
34617
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -34439,6 +34670,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34439
34670
|
requiredChecksPassed: boolean | null;
|
|
34440
34671
|
canMerge: boolean | null;
|
|
34441
34672
|
hasConflicts: boolean | null;
|
|
34673
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
34442
34674
|
} | null | undefined;
|
|
34443
34675
|
} | null | undefined;
|
|
34444
34676
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -34497,6 +34729,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34497
34729
|
canMerge: boolean | null;
|
|
34498
34730
|
hasConflicts: boolean | null;
|
|
34499
34731
|
detailLevel?: "summary" | "detail" | undefined;
|
|
34732
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
34500
34733
|
} | null | undefined;
|
|
34501
34734
|
} | null | undefined;
|
|
34502
34735
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -34558,6 +34791,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34558
34791
|
requiredChecksPassed: boolean | null;
|
|
34559
34792
|
canMerge: boolean | null;
|
|
34560
34793
|
hasConflicts: boolean | null;
|
|
34794
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
34561
34795
|
} | null | undefined;
|
|
34562
34796
|
} | null | undefined;
|
|
34563
34797
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -34619,6 +34853,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34619
34853
|
canMerge: boolean | null;
|
|
34620
34854
|
hasConflicts: boolean | null;
|
|
34621
34855
|
detailLevel?: "summary" | "detail" | undefined;
|
|
34856
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
34622
34857
|
} | null | undefined;
|
|
34623
34858
|
} | null | undefined;
|
|
34624
34859
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -34686,6 +34921,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34686
34921
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
34687
34922
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
34688
34923
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
34924
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
34689
34925
|
}, "strip", z.ZodTypeAny, {
|
|
34690
34926
|
number: number;
|
|
34691
34927
|
title: string;
|
|
@@ -34699,6 +34935,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34699
34935
|
requiredChecksPassed: boolean | null;
|
|
34700
34936
|
canMerge: boolean | null;
|
|
34701
34937
|
hasConflicts: boolean | null;
|
|
34938
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
34702
34939
|
}, {
|
|
34703
34940
|
number: number;
|
|
34704
34941
|
title: string;
|
|
@@ -34712,6 +34949,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34712
34949
|
canMerge: boolean | null;
|
|
34713
34950
|
hasConflicts: boolean | null;
|
|
34714
34951
|
detailLevel?: "summary" | "detail" | undefined;
|
|
34952
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
34715
34953
|
}>>>>;
|
|
34716
34954
|
}, "strip", z.ZodTypeAny, {
|
|
34717
34955
|
archivedAt: string;
|
|
@@ -34737,6 +34975,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34737
34975
|
requiredChecksPassed: boolean | null;
|
|
34738
34976
|
canMerge: boolean | null;
|
|
34739
34977
|
hasConflicts: boolean | null;
|
|
34978
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
34740
34979
|
} | null | undefined;
|
|
34741
34980
|
}, {
|
|
34742
34981
|
archivedAt: string;
|
|
@@ -34762,6 +35001,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34762
35001
|
canMerge: boolean | null;
|
|
34763
35002
|
hasConflicts: boolean | null;
|
|
34764
35003
|
detailLevel?: "summary" | "detail" | undefined;
|
|
35004
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
34765
35005
|
} | null | undefined;
|
|
34766
35006
|
}>>>;
|
|
34767
35007
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -34811,6 +35051,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34811
35051
|
requiredChecksPassed: boolean | null;
|
|
34812
35052
|
canMerge: boolean | null;
|
|
34813
35053
|
hasConflicts: boolean | null;
|
|
35054
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
34814
35055
|
} | null | undefined;
|
|
34815
35056
|
} | null | undefined;
|
|
34816
35057
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -34865,6 +35106,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
34865
35106
|
canMerge: boolean | null;
|
|
34866
35107
|
hasConflicts: boolean | null;
|
|
34867
35108
|
detailLevel?: "summary" | "detail" | undefined;
|
|
35109
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
34868
35110
|
} | null | undefined;
|
|
34869
35111
|
} | null | undefined;
|
|
34870
35112
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -35039,6 +35281,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35039
35281
|
requiredChecksPassed: boolean | null;
|
|
35040
35282
|
canMerge: boolean | null;
|
|
35041
35283
|
hasConflicts: boolean | null;
|
|
35284
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
35042
35285
|
} | null | undefined;
|
|
35043
35286
|
} | null | undefined;
|
|
35044
35287
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -35121,6 +35364,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35121
35364
|
canMerge: boolean | null;
|
|
35122
35365
|
hasConflicts: boolean | null;
|
|
35123
35366
|
detailLevel?: "summary" | "detail" | undefined;
|
|
35367
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
35124
35368
|
} | null | undefined;
|
|
35125
35369
|
} | null | undefined;
|
|
35126
35370
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -35218,6 +35462,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35218
35462
|
requiredChecksPassed: boolean | null;
|
|
35219
35463
|
canMerge: boolean | null;
|
|
35220
35464
|
hasConflicts: boolean | null;
|
|
35465
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
35221
35466
|
} | null | undefined;
|
|
35222
35467
|
} | null | undefined;
|
|
35223
35468
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -35309,6 +35554,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35309
35554
|
canMerge: boolean | null;
|
|
35310
35555
|
hasConflicts: boolean | null;
|
|
35311
35556
|
detailLevel?: "summary" | "detail" | undefined;
|
|
35557
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
35312
35558
|
} | null | undefined;
|
|
35313
35559
|
} | null | undefined;
|
|
35314
35560
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -35403,6 +35649,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35403
35649
|
requiredChecksPassed: boolean | null;
|
|
35404
35650
|
canMerge: boolean | null;
|
|
35405
35651
|
hasConflicts: boolean | null;
|
|
35652
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
35406
35653
|
} | null | undefined;
|
|
35407
35654
|
} | null | undefined;
|
|
35408
35655
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -35497,6 +35744,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35497
35744
|
canMerge: boolean | null;
|
|
35498
35745
|
hasConflicts: boolean | null;
|
|
35499
35746
|
detailLevel?: "summary" | "detail" | undefined;
|
|
35747
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
35500
35748
|
} | null | undefined;
|
|
35501
35749
|
} | null | undefined;
|
|
35502
35750
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -35596,6 +35844,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35596
35844
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
35597
35845
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
35598
35846
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
35847
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
35599
35848
|
}, "strip", z.ZodTypeAny, {
|
|
35600
35849
|
number: number;
|
|
35601
35850
|
title: string;
|
|
@@ -35609,6 +35858,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35609
35858
|
requiredChecksPassed: boolean | null;
|
|
35610
35859
|
canMerge: boolean | null;
|
|
35611
35860
|
hasConflicts: boolean | null;
|
|
35861
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
35612
35862
|
}, {
|
|
35613
35863
|
number: number;
|
|
35614
35864
|
title: string;
|
|
@@ -35622,6 +35872,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35622
35872
|
canMerge: boolean | null;
|
|
35623
35873
|
hasConflicts: boolean | null;
|
|
35624
35874
|
detailLevel?: "summary" | "detail" | undefined;
|
|
35875
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
35625
35876
|
}>>>>;
|
|
35626
35877
|
}, "strip", z.ZodTypeAny, {
|
|
35627
35878
|
archivedAt: string;
|
|
@@ -35647,6 +35898,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35647
35898
|
requiredChecksPassed: boolean | null;
|
|
35648
35899
|
canMerge: boolean | null;
|
|
35649
35900
|
hasConflicts: boolean | null;
|
|
35901
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
35650
35902
|
} | null | undefined;
|
|
35651
35903
|
}, {
|
|
35652
35904
|
archivedAt: string;
|
|
@@ -35672,6 +35924,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35672
35924
|
canMerge: boolean | null;
|
|
35673
35925
|
hasConflicts: boolean | null;
|
|
35674
35926
|
detailLevel?: "summary" | "detail" | undefined;
|
|
35927
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
35675
35928
|
} | null | undefined;
|
|
35676
35929
|
}>>>;
|
|
35677
35930
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -35721,6 +35974,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35721
35974
|
requiredChecksPassed: boolean | null;
|
|
35722
35975
|
canMerge: boolean | null;
|
|
35723
35976
|
hasConflicts: boolean | null;
|
|
35977
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
35724
35978
|
} | null | undefined;
|
|
35725
35979
|
} | null | undefined;
|
|
35726
35980
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -35775,6 +36029,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35775
36029
|
canMerge: boolean | null;
|
|
35776
36030
|
hasConflicts: boolean | null;
|
|
35777
36031
|
detailLevel?: "summary" | "detail" | undefined;
|
|
36032
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
35778
36033
|
} | null | undefined;
|
|
35779
36034
|
} | null | undefined;
|
|
35780
36035
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -35952,6 +36207,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
35952
36207
|
requiredChecksPassed: boolean | null;
|
|
35953
36208
|
canMerge: boolean | null;
|
|
35954
36209
|
hasConflicts: boolean | null;
|
|
36210
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
35955
36211
|
} | null | undefined;
|
|
35956
36212
|
} | null | undefined;
|
|
35957
36213
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -36036,6 +36292,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
36036
36292
|
canMerge: boolean | null;
|
|
36037
36293
|
hasConflicts: boolean | null;
|
|
36038
36294
|
detailLevel?: "summary" | "detail" | undefined;
|
|
36295
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
36039
36296
|
} | null | undefined;
|
|
36040
36297
|
} | null | undefined;
|
|
36041
36298
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -36123,6 +36380,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
36123
36380
|
requiredChecksPassed: boolean | null;
|
|
36124
36381
|
canMerge: boolean | null;
|
|
36125
36382
|
hasConflicts: boolean | null;
|
|
36383
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
36126
36384
|
} | null | undefined;
|
|
36127
36385
|
} | null | undefined;
|
|
36128
36386
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -36210,6 +36468,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
36210
36468
|
canMerge: boolean | null;
|
|
36211
36469
|
hasConflicts: boolean | null;
|
|
36212
36470
|
detailLevel?: "summary" | "detail" | undefined;
|
|
36471
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
36213
36472
|
} | null | undefined;
|
|
36214
36473
|
} | null | undefined;
|
|
36215
36474
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -37805,6 +38064,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
37805
38064
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
37806
38065
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
37807
38066
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
38067
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
37808
38068
|
}, "strip", z.ZodTypeAny, {
|
|
37809
38069
|
number: number;
|
|
37810
38070
|
title: string;
|
|
@@ -37818,6 +38078,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
37818
38078
|
requiredChecksPassed: boolean | null;
|
|
37819
38079
|
canMerge: boolean | null;
|
|
37820
38080
|
hasConflicts: boolean | null;
|
|
38081
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
37821
38082
|
}, {
|
|
37822
38083
|
number: number;
|
|
37823
38084
|
title: string;
|
|
@@ -37831,6 +38092,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
37831
38092
|
canMerge: boolean | null;
|
|
37832
38093
|
hasConflicts: boolean | null;
|
|
37833
38094
|
detailLevel?: "summary" | "detail" | undefined;
|
|
38095
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
37834
38096
|
}>>>>;
|
|
37835
38097
|
}, "strip", z.ZodTypeAny, {
|
|
37836
38098
|
archivedAt: string;
|
|
@@ -37856,6 +38118,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
37856
38118
|
requiredChecksPassed: boolean | null;
|
|
37857
38119
|
canMerge: boolean | null;
|
|
37858
38120
|
hasConflicts: boolean | null;
|
|
38121
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
37859
38122
|
} | null | undefined;
|
|
37860
38123
|
}, {
|
|
37861
38124
|
archivedAt: string;
|
|
@@ -37881,6 +38144,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
37881
38144
|
canMerge: boolean | null;
|
|
37882
38145
|
hasConflicts: boolean | null;
|
|
37883
38146
|
detailLevel?: "summary" | "detail" | undefined;
|
|
38147
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
37884
38148
|
} | null | undefined;
|
|
37885
38149
|
}>>>;
|
|
37886
38150
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -37930,6 +38194,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
37930
38194
|
requiredChecksPassed: boolean | null;
|
|
37931
38195
|
canMerge: boolean | null;
|
|
37932
38196
|
hasConflicts: boolean | null;
|
|
38197
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
37933
38198
|
} | null | undefined;
|
|
37934
38199
|
} | null | undefined;
|
|
37935
38200
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -37984,6 +38249,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
37984
38249
|
canMerge: boolean | null;
|
|
37985
38250
|
hasConflicts: boolean | null;
|
|
37986
38251
|
detailLevel?: "summary" | "detail" | undefined;
|
|
38252
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
37987
38253
|
} | null | undefined;
|
|
37988
38254
|
} | null | undefined;
|
|
37989
38255
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -38045,6 +38311,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
38045
38311
|
requiredChecksPassed: boolean | null;
|
|
38046
38312
|
canMerge: boolean | null;
|
|
38047
38313
|
hasConflicts: boolean | null;
|
|
38314
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
38048
38315
|
} | null | undefined;
|
|
38049
38316
|
} | null | undefined;
|
|
38050
38317
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -38105,6 +38372,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
38105
38372
|
canMerge: boolean | null;
|
|
38106
38373
|
hasConflicts: boolean | null;
|
|
38107
38374
|
detailLevel?: "summary" | "detail" | undefined;
|
|
38375
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
38108
38376
|
} | null | undefined;
|
|
38109
38377
|
} | null | undefined;
|
|
38110
38378
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -38168,6 +38436,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
38168
38436
|
requiredChecksPassed: boolean | null;
|
|
38169
38437
|
canMerge: boolean | null;
|
|
38170
38438
|
hasConflicts: boolean | null;
|
|
38439
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
38171
38440
|
} | null | undefined;
|
|
38172
38441
|
} | null | undefined;
|
|
38173
38442
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -38231,6 +38500,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
38231
38500
|
canMerge: boolean | null;
|
|
38232
38501
|
hasConflicts: boolean | null;
|
|
38233
38502
|
detailLevel?: "summary" | "detail" | undefined;
|
|
38503
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
38234
38504
|
} | null | undefined;
|
|
38235
38505
|
} | null | undefined;
|
|
38236
38506
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -38975,6 +39245,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
38975
39245
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
38976
39246
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
38977
39247
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
39248
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
38978
39249
|
}, "strip", z.ZodTypeAny, {
|
|
38979
39250
|
number: number;
|
|
38980
39251
|
title: string;
|
|
@@ -38988,6 +39259,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
38988
39259
|
requiredChecksPassed: boolean | null;
|
|
38989
39260
|
canMerge: boolean | null;
|
|
38990
39261
|
hasConflicts: boolean | null;
|
|
39262
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
38991
39263
|
}, {
|
|
38992
39264
|
number: number;
|
|
38993
39265
|
title: string;
|
|
@@ -39001,6 +39273,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
39001
39273
|
canMerge: boolean | null;
|
|
39002
39274
|
hasConflicts: boolean | null;
|
|
39003
39275
|
detailLevel?: "summary" | "detail" | undefined;
|
|
39276
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
39004
39277
|
}>>>;
|
|
39005
39278
|
pullRequestError: z.ZodNullable<z.ZodObject<{
|
|
39006
39279
|
code: z.ZodEnum<["NOT_GIT_REPO", "NOT_ALLOWED", "MERGE_CONFLICT", "UNKNOWN"]>;
|
|
@@ -39033,6 +39306,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
39033
39306
|
requiredChecksPassed: boolean | null;
|
|
39034
39307
|
canMerge: boolean | null;
|
|
39035
39308
|
hasConflicts: boolean | null;
|
|
39309
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
39036
39310
|
} | null;
|
|
39037
39311
|
requestId: string;
|
|
39038
39312
|
subscriptionId: string;
|
|
@@ -39112,6 +39386,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
39112
39386
|
canMerge: boolean | null;
|
|
39113
39387
|
hasConflicts: boolean | null;
|
|
39114
39388
|
detailLevel?: "summary" | "detail" | undefined;
|
|
39389
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
39115
39390
|
} | null;
|
|
39116
39391
|
requestId: string;
|
|
39117
39392
|
subscriptionId: string;
|
|
@@ -39194,6 +39469,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
39194
39469
|
requiredChecksPassed: boolean | null;
|
|
39195
39470
|
canMerge: boolean | null;
|
|
39196
39471
|
hasConflicts: boolean | null;
|
|
39472
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
39197
39473
|
} | null;
|
|
39198
39474
|
requestId: string;
|
|
39199
39475
|
subscriptionId: string;
|
|
@@ -39276,6 +39552,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
39276
39552
|
canMerge: boolean | null;
|
|
39277
39553
|
hasConflicts: boolean | null;
|
|
39278
39554
|
detailLevel?: "summary" | "detail" | undefined;
|
|
39555
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
39279
39556
|
} | null;
|
|
39280
39557
|
requestId: string;
|
|
39281
39558
|
subscriptionId: string;
|
|
@@ -39567,6 +39844,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
39567
39844
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
39568
39845
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
39569
39846
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
39847
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
39570
39848
|
}, "strip", z.ZodTypeAny, {
|
|
39571
39849
|
number: number;
|
|
39572
39850
|
title: string;
|
|
@@ -39580,6 +39858,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
39580
39858
|
requiredChecksPassed: boolean | null;
|
|
39581
39859
|
canMerge: boolean | null;
|
|
39582
39860
|
hasConflicts: boolean | null;
|
|
39861
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
39583
39862
|
}, {
|
|
39584
39863
|
number: number;
|
|
39585
39864
|
title: string;
|
|
@@ -39593,6 +39872,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
39593
39872
|
canMerge: boolean | null;
|
|
39594
39873
|
hasConflicts: boolean | null;
|
|
39595
39874
|
detailLevel?: "summary" | "detail" | undefined;
|
|
39875
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
39596
39876
|
}>>>;
|
|
39597
39877
|
pullRequestError: z.ZodNullable<z.ZodObject<{
|
|
39598
39878
|
code: z.ZodEnum<["NOT_GIT_REPO", "NOT_ALLOWED", "MERGE_CONFLICT", "UNKNOWN"]>;
|
|
@@ -39622,6 +39902,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
39622
39902
|
requiredChecksPassed: boolean | null;
|
|
39623
39903
|
canMerge: boolean | null;
|
|
39624
39904
|
hasConflicts: boolean | null;
|
|
39905
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
39625
39906
|
} | null;
|
|
39626
39907
|
git: {
|
|
39627
39908
|
repoRoot: null;
|
|
@@ -39699,6 +39980,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
39699
39980
|
canMerge: boolean | null;
|
|
39700
39981
|
hasConflicts: boolean | null;
|
|
39701
39982
|
detailLevel?: "summary" | "detail" | undefined;
|
|
39983
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
39702
39984
|
} | null;
|
|
39703
39985
|
git: {
|
|
39704
39986
|
repoRoot: null;
|
|
@@ -39779,6 +40061,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
39779
40061
|
requiredChecksPassed: boolean | null;
|
|
39780
40062
|
canMerge: boolean | null;
|
|
39781
40063
|
hasConflicts: boolean | null;
|
|
40064
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
39782
40065
|
} | null;
|
|
39783
40066
|
git: {
|
|
39784
40067
|
repoRoot: null;
|
|
@@ -39859,6 +40142,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
39859
40142
|
canMerge: boolean | null;
|
|
39860
40143
|
hasConflicts: boolean | null;
|
|
39861
40144
|
detailLevel?: "summary" | "detail" | undefined;
|
|
40145
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
39862
40146
|
} | null;
|
|
39863
40147
|
git: {
|
|
39864
40148
|
repoRoot: null;
|
|
@@ -40720,6 +41004,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
40720
41004
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
40721
41005
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
40722
41006
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
41007
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
40723
41008
|
}, "strip", z.ZodTypeAny, {
|
|
40724
41009
|
number: number;
|
|
40725
41010
|
title: string;
|
|
@@ -40733,6 +41018,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
40733
41018
|
requiredChecksPassed: boolean | null;
|
|
40734
41019
|
canMerge: boolean | null;
|
|
40735
41020
|
hasConflicts: boolean | null;
|
|
41021
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
40736
41022
|
}, {
|
|
40737
41023
|
number: number;
|
|
40738
41024
|
title: string;
|
|
@@ -40746,6 +41032,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
40746
41032
|
canMerge: boolean | null;
|
|
40747
41033
|
hasConflicts: boolean | null;
|
|
40748
41034
|
detailLevel?: "summary" | "detail" | undefined;
|
|
41035
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
40749
41036
|
}>>;
|
|
40750
41037
|
githubFeaturesEnabled: z.ZodBoolean;
|
|
40751
41038
|
error: z.ZodNullable<z.ZodObject<{
|
|
@@ -40777,6 +41064,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
40777
41064
|
requiredChecksPassed: boolean | null;
|
|
40778
41065
|
canMerge: boolean | null;
|
|
40779
41066
|
hasConflicts: boolean | null;
|
|
41067
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
40780
41068
|
} | null;
|
|
40781
41069
|
cwd: string;
|
|
40782
41070
|
requestId: string;
|
|
@@ -40799,6 +41087,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
40799
41087
|
canMerge: boolean | null;
|
|
40800
41088
|
hasConflicts: boolean | null;
|
|
40801
41089
|
detailLevel?: "summary" | "detail" | undefined;
|
|
41090
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
40802
41091
|
} | null;
|
|
40803
41092
|
cwd: string;
|
|
40804
41093
|
requestId: string;
|
|
@@ -40824,6 +41113,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
40824
41113
|
requiredChecksPassed: boolean | null;
|
|
40825
41114
|
canMerge: boolean | null;
|
|
40826
41115
|
hasConflicts: boolean | null;
|
|
41116
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
40827
41117
|
} | null;
|
|
40828
41118
|
cwd: string;
|
|
40829
41119
|
requestId: string;
|
|
@@ -40849,6 +41139,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
40849
41139
|
canMerge: boolean | null;
|
|
40850
41140
|
hasConflicts: boolean | null;
|
|
40851
41141
|
detailLevel?: "summary" | "detail" | undefined;
|
|
41142
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
40852
41143
|
} | null;
|
|
40853
41144
|
cwd: string;
|
|
40854
41145
|
requestId: string;
|
|
@@ -44020,6 +44311,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
44020
44311
|
requiredChecksPassed: boolean | null;
|
|
44021
44312
|
canMerge: boolean | null;
|
|
44022
44313
|
hasConflicts: boolean | null;
|
|
44314
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
44023
44315
|
} | null | undefined;
|
|
44024
44316
|
} | null | undefined;
|
|
44025
44317
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -44170,6 +44462,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
44170
44462
|
requiredChecksPassed: boolean | null;
|
|
44171
44463
|
canMerge: boolean | null;
|
|
44172
44464
|
hasConflicts: boolean | null;
|
|
44465
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
44173
44466
|
} | null | undefined;
|
|
44174
44467
|
} | null | undefined;
|
|
44175
44468
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -44230,6 +44523,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
44230
44523
|
requiredChecksPassed: boolean | null;
|
|
44231
44524
|
canMerge: boolean | null;
|
|
44232
44525
|
hasConflicts: boolean | null;
|
|
44526
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
44233
44527
|
} | null | undefined;
|
|
44234
44528
|
} | null | undefined;
|
|
44235
44529
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -44325,6 +44619,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
44325
44619
|
requiredChecksPassed: boolean | null;
|
|
44326
44620
|
canMerge: boolean | null;
|
|
44327
44621
|
hasConflicts: boolean | null;
|
|
44622
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
44328
44623
|
} | null | undefined;
|
|
44329
44624
|
} | null | undefined;
|
|
44330
44625
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -44584,6 +44879,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
44584
44879
|
requiredChecksPassed: boolean | null;
|
|
44585
44880
|
canMerge: boolean | null;
|
|
44586
44881
|
hasConflicts: boolean | null;
|
|
44882
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
44587
44883
|
} | null | undefined;
|
|
44588
44884
|
} | null | undefined;
|
|
44589
44885
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -44714,6 +45010,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
44714
45010
|
requiredChecksPassed: boolean | null;
|
|
44715
45011
|
canMerge: boolean | null;
|
|
44716
45012
|
hasConflicts: boolean | null;
|
|
45013
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
44717
45014
|
} | null;
|
|
44718
45015
|
requestId: string;
|
|
44719
45016
|
subscriptionId: string;
|
|
@@ -44796,6 +45093,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
44796
45093
|
requiredChecksPassed: boolean | null;
|
|
44797
45094
|
canMerge: boolean | null;
|
|
44798
45095
|
hasConflicts: boolean | null;
|
|
45096
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
44799
45097
|
} | null;
|
|
44800
45098
|
git: {
|
|
44801
45099
|
repoRoot: null;
|
|
@@ -44999,6 +45297,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
44999
45297
|
requiredChecksPassed: boolean | null;
|
|
45000
45298
|
canMerge: boolean | null;
|
|
45001
45299
|
hasConflicts: boolean | null;
|
|
45300
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
45002
45301
|
} | null;
|
|
45003
45302
|
cwd: string;
|
|
45004
45303
|
requestId: string;
|
|
@@ -45699,6 +45998,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
45699
45998
|
canMerge: boolean | null;
|
|
45700
45999
|
hasConflicts: boolean | null;
|
|
45701
46000
|
detailLevel?: "summary" | "detail" | undefined;
|
|
46001
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
45702
46002
|
} | null | undefined;
|
|
45703
46003
|
} | null | undefined;
|
|
45704
46004
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -45849,6 +46149,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
45849
46149
|
canMerge: boolean | null;
|
|
45850
46150
|
hasConflicts: boolean | null;
|
|
45851
46151
|
detailLevel?: "summary" | "detail" | undefined;
|
|
46152
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
45852
46153
|
} | null | undefined;
|
|
45853
46154
|
} | null | undefined;
|
|
45854
46155
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -45909,6 +46210,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
45909
46210
|
canMerge: boolean | null;
|
|
45910
46211
|
hasConflicts: boolean | null;
|
|
45911
46212
|
detailLevel?: "summary" | "detail" | undefined;
|
|
46213
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
45912
46214
|
} | null | undefined;
|
|
45913
46215
|
} | null | undefined;
|
|
45914
46216
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -46004,6 +46306,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
46004
46306
|
canMerge: boolean | null;
|
|
46005
46307
|
hasConflicts: boolean | null;
|
|
46006
46308
|
detailLevel?: "summary" | "detail" | undefined;
|
|
46309
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
46007
46310
|
} | null | undefined;
|
|
46008
46311
|
} | null | undefined;
|
|
46009
46312
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -46263,6 +46566,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
46263
46566
|
canMerge: boolean | null;
|
|
46264
46567
|
hasConflicts: boolean | null;
|
|
46265
46568
|
detailLevel?: "summary" | "detail" | undefined;
|
|
46569
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
46266
46570
|
} | null | undefined;
|
|
46267
46571
|
} | null | undefined;
|
|
46268
46572
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -46393,6 +46697,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
46393
46697
|
canMerge: boolean | null;
|
|
46394
46698
|
hasConflicts: boolean | null;
|
|
46395
46699
|
detailLevel?: "summary" | "detail" | undefined;
|
|
46700
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
46396
46701
|
} | null;
|
|
46397
46702
|
requestId: string;
|
|
46398
46703
|
subscriptionId: string;
|
|
@@ -46475,6 +46780,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
46475
46780
|
canMerge: boolean | null;
|
|
46476
46781
|
hasConflicts: boolean | null;
|
|
46477
46782
|
detailLevel?: "summary" | "detail" | undefined;
|
|
46783
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
46478
46784
|
} | null;
|
|
46479
46785
|
git: {
|
|
46480
46786
|
repoRoot: null;
|
|
@@ -46678,6 +46984,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
46678
46984
|
canMerge: boolean | null;
|
|
46679
46985
|
hasConflicts: boolean | null;
|
|
46680
46986
|
detailLevel?: "summary" | "detail" | undefined;
|
|
46987
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
46681
46988
|
} | null;
|
|
46682
46989
|
cwd: string;
|
|
46683
46990
|
requestId: string;
|
|
@@ -50685,6 +50992,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
50685
50992
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
50686
50993
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
50687
50994
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
50995
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
50688
50996
|
}, "strip", z.ZodTypeAny, {
|
|
50689
50997
|
number: number;
|
|
50690
50998
|
title: string;
|
|
@@ -50698,6 +51006,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
50698
51006
|
requiredChecksPassed: boolean | null;
|
|
50699
51007
|
canMerge: boolean | null;
|
|
50700
51008
|
hasConflicts: boolean | null;
|
|
51009
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
50701
51010
|
}, {
|
|
50702
51011
|
number: number;
|
|
50703
51012
|
title: string;
|
|
@@ -50711,6 +51020,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
50711
51020
|
canMerge: boolean | null;
|
|
50712
51021
|
hasConflicts: boolean | null;
|
|
50713
51022
|
detailLevel?: "summary" | "detail" | undefined;
|
|
51023
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
50714
51024
|
}>>>>;
|
|
50715
51025
|
}, "strip", z.ZodTypeAny, {
|
|
50716
51026
|
archivedAt: string;
|
|
@@ -50736,6 +51046,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
50736
51046
|
requiredChecksPassed: boolean | null;
|
|
50737
51047
|
canMerge: boolean | null;
|
|
50738
51048
|
hasConflicts: boolean | null;
|
|
51049
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
50739
51050
|
} | null | undefined;
|
|
50740
51051
|
}, {
|
|
50741
51052
|
archivedAt: string;
|
|
@@ -50761,6 +51072,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
50761
51072
|
canMerge: boolean | null;
|
|
50762
51073
|
hasConflicts: boolean | null;
|
|
50763
51074
|
detailLevel?: "summary" | "detail" | undefined;
|
|
51075
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
50764
51076
|
} | null | undefined;
|
|
50765
51077
|
}>>>;
|
|
50766
51078
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -50810,6 +51122,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
50810
51122
|
requiredChecksPassed: boolean | null;
|
|
50811
51123
|
canMerge: boolean | null;
|
|
50812
51124
|
hasConflicts: boolean | null;
|
|
51125
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
50813
51126
|
} | null | undefined;
|
|
50814
51127
|
} | null | undefined;
|
|
50815
51128
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -50864,6 +51177,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
50864
51177
|
canMerge: boolean | null;
|
|
50865
51178
|
hasConflicts: boolean | null;
|
|
50866
51179
|
detailLevel?: "summary" | "detail" | undefined;
|
|
51180
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
50867
51181
|
} | null | undefined;
|
|
50868
51182
|
} | null | undefined;
|
|
50869
51183
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -51039,6 +51353,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
51039
51353
|
requiredChecksPassed: boolean | null;
|
|
51040
51354
|
canMerge: boolean | null;
|
|
51041
51355
|
hasConflicts: boolean | null;
|
|
51356
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
51042
51357
|
} | null | undefined;
|
|
51043
51358
|
} | null | undefined;
|
|
51044
51359
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -51122,6 +51437,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
51122
51437
|
canMerge: boolean | null;
|
|
51123
51438
|
hasConflicts: boolean | null;
|
|
51124
51439
|
detailLevel?: "summary" | "detail" | undefined;
|
|
51440
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
51125
51441
|
} | null | undefined;
|
|
51126
51442
|
} | null | undefined;
|
|
51127
51443
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -51217,6 +51533,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
51217
51533
|
requiredChecksPassed: boolean | null;
|
|
51218
51534
|
canMerge: boolean | null;
|
|
51219
51535
|
hasConflicts: boolean | null;
|
|
51536
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
51220
51537
|
} | null | undefined;
|
|
51221
51538
|
} | null | undefined;
|
|
51222
51539
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -51306,6 +51623,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
51306
51623
|
canMerge: boolean | null;
|
|
51307
51624
|
hasConflicts: boolean | null;
|
|
51308
51625
|
detailLevel?: "summary" | "detail" | undefined;
|
|
51626
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
51309
51627
|
} | null | undefined;
|
|
51310
51628
|
} | null | undefined;
|
|
51311
51629
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -51829,6 +52147,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
51829
52147
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
51830
52148
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
51831
52149
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
52150
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
51832
52151
|
}, "strip", z.ZodTypeAny, {
|
|
51833
52152
|
number: number;
|
|
51834
52153
|
title: string;
|
|
@@ -51842,6 +52161,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
51842
52161
|
requiredChecksPassed: boolean | null;
|
|
51843
52162
|
canMerge: boolean | null;
|
|
51844
52163
|
hasConflicts: boolean | null;
|
|
52164
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
51845
52165
|
}, {
|
|
51846
52166
|
number: number;
|
|
51847
52167
|
title: string;
|
|
@@ -51855,6 +52175,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
51855
52175
|
canMerge: boolean | null;
|
|
51856
52176
|
hasConflicts: boolean | null;
|
|
51857
52177
|
detailLevel?: "summary" | "detail" | undefined;
|
|
52178
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
51858
52179
|
}>>>>;
|
|
51859
52180
|
}, "strip", z.ZodTypeAny, {
|
|
51860
52181
|
archivedAt: string;
|
|
@@ -51880,6 +52201,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
51880
52201
|
requiredChecksPassed: boolean | null;
|
|
51881
52202
|
canMerge: boolean | null;
|
|
51882
52203
|
hasConflicts: boolean | null;
|
|
52204
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
51883
52205
|
} | null | undefined;
|
|
51884
52206
|
}, {
|
|
51885
52207
|
archivedAt: string;
|
|
@@ -51905,6 +52227,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
51905
52227
|
canMerge: boolean | null;
|
|
51906
52228
|
hasConflicts: boolean | null;
|
|
51907
52229
|
detailLevel?: "summary" | "detail" | undefined;
|
|
52230
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
51908
52231
|
} | null | undefined;
|
|
51909
52232
|
}>>>;
|
|
51910
52233
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -51954,6 +52277,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
51954
52277
|
requiredChecksPassed: boolean | null;
|
|
51955
52278
|
canMerge: boolean | null;
|
|
51956
52279
|
hasConflicts: boolean | null;
|
|
52280
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
51957
52281
|
} | null | undefined;
|
|
51958
52282
|
} | null | undefined;
|
|
51959
52283
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -52008,6 +52332,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
52008
52332
|
canMerge: boolean | null;
|
|
52009
52333
|
hasConflicts: boolean | null;
|
|
52010
52334
|
detailLevel?: "summary" | "detail" | undefined;
|
|
52335
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
52011
52336
|
} | null | undefined;
|
|
52012
52337
|
} | null | undefined;
|
|
52013
52338
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -52066,6 +52391,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
52066
52391
|
requiredChecksPassed: boolean | null;
|
|
52067
52392
|
canMerge: boolean | null;
|
|
52068
52393
|
hasConflicts: boolean | null;
|
|
52394
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
52069
52395
|
} | null | undefined;
|
|
52070
52396
|
} | null | undefined;
|
|
52071
52397
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -52124,6 +52450,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
52124
52450
|
canMerge: boolean | null;
|
|
52125
52451
|
hasConflicts: boolean | null;
|
|
52126
52452
|
detailLevel?: "summary" | "detail" | undefined;
|
|
52453
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
52127
52454
|
} | null | undefined;
|
|
52128
52455
|
} | null | undefined;
|
|
52129
52456
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -52185,6 +52512,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
52185
52512
|
requiredChecksPassed: boolean | null;
|
|
52186
52513
|
canMerge: boolean | null;
|
|
52187
52514
|
hasConflicts: boolean | null;
|
|
52515
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
52188
52516
|
} | null | undefined;
|
|
52189
52517
|
} | null | undefined;
|
|
52190
52518
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -52246,6 +52574,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
52246
52574
|
canMerge: boolean | null;
|
|
52247
52575
|
hasConflicts: boolean | null;
|
|
52248
52576
|
detailLevel?: "summary" | "detail" | undefined;
|
|
52577
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
52249
52578
|
} | null | undefined;
|
|
52250
52579
|
} | null | undefined;
|
|
52251
52580
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -52313,6 +52642,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
52313
52642
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
52314
52643
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
52315
52644
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
52645
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
52316
52646
|
}, "strip", z.ZodTypeAny, {
|
|
52317
52647
|
number: number;
|
|
52318
52648
|
title: string;
|
|
@@ -52326,6 +52656,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
52326
52656
|
requiredChecksPassed: boolean | null;
|
|
52327
52657
|
canMerge: boolean | null;
|
|
52328
52658
|
hasConflicts: boolean | null;
|
|
52659
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
52329
52660
|
}, {
|
|
52330
52661
|
number: number;
|
|
52331
52662
|
title: string;
|
|
@@ -52339,6 +52670,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
52339
52670
|
canMerge: boolean | null;
|
|
52340
52671
|
hasConflicts: boolean | null;
|
|
52341
52672
|
detailLevel?: "summary" | "detail" | undefined;
|
|
52673
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
52342
52674
|
}>>>>;
|
|
52343
52675
|
}, "strip", z.ZodTypeAny, {
|
|
52344
52676
|
archivedAt: string;
|
|
@@ -52364,6 +52696,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
52364
52696
|
requiredChecksPassed: boolean | null;
|
|
52365
52697
|
canMerge: boolean | null;
|
|
52366
52698
|
hasConflicts: boolean | null;
|
|
52699
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
52367
52700
|
} | null | undefined;
|
|
52368
52701
|
}, {
|
|
52369
52702
|
archivedAt: string;
|
|
@@ -52389,6 +52722,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
52389
52722
|
canMerge: boolean | null;
|
|
52390
52723
|
hasConflicts: boolean | null;
|
|
52391
52724
|
detailLevel?: "summary" | "detail" | undefined;
|
|
52725
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
52392
52726
|
} | null | undefined;
|
|
52393
52727
|
}>>>;
|
|
52394
52728
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -52438,6 +52772,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
52438
52772
|
requiredChecksPassed: boolean | null;
|
|
52439
52773
|
canMerge: boolean | null;
|
|
52440
52774
|
hasConflicts: boolean | null;
|
|
52775
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
52441
52776
|
} | null | undefined;
|
|
52442
52777
|
} | null | undefined;
|
|
52443
52778
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -52492,6 +52827,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
52492
52827
|
canMerge: boolean | null;
|
|
52493
52828
|
hasConflicts: boolean | null;
|
|
52494
52829
|
detailLevel?: "summary" | "detail" | undefined;
|
|
52830
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
52495
52831
|
} | null | undefined;
|
|
52496
52832
|
} | null | undefined;
|
|
52497
52833
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -52666,6 +53002,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
52666
53002
|
requiredChecksPassed: boolean | null;
|
|
52667
53003
|
canMerge: boolean | null;
|
|
52668
53004
|
hasConflicts: boolean | null;
|
|
53005
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
52669
53006
|
} | null | undefined;
|
|
52670
53007
|
} | null | undefined;
|
|
52671
53008
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -52748,6 +53085,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
52748
53085
|
canMerge: boolean | null;
|
|
52749
53086
|
hasConflicts: boolean | null;
|
|
52750
53087
|
detailLevel?: "summary" | "detail" | undefined;
|
|
53088
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
52751
53089
|
} | null | undefined;
|
|
52752
53090
|
} | null | undefined;
|
|
52753
53091
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -52845,6 +53183,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
52845
53183
|
requiredChecksPassed: boolean | null;
|
|
52846
53184
|
canMerge: boolean | null;
|
|
52847
53185
|
hasConflicts: boolean | null;
|
|
53186
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
52848
53187
|
} | null | undefined;
|
|
52849
53188
|
} | null | undefined;
|
|
52850
53189
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -52936,6 +53275,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
52936
53275
|
canMerge: boolean | null;
|
|
52937
53276
|
hasConflicts: boolean | null;
|
|
52938
53277
|
detailLevel?: "summary" | "detail" | undefined;
|
|
53278
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
52939
53279
|
} | null | undefined;
|
|
52940
53280
|
} | null | undefined;
|
|
52941
53281
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -53030,6 +53370,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
53030
53370
|
requiredChecksPassed: boolean | null;
|
|
53031
53371
|
canMerge: boolean | null;
|
|
53032
53372
|
hasConflicts: boolean | null;
|
|
53373
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
53033
53374
|
} | null | undefined;
|
|
53034
53375
|
} | null | undefined;
|
|
53035
53376
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -53124,6 +53465,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
53124
53465
|
canMerge: boolean | null;
|
|
53125
53466
|
hasConflicts: boolean | null;
|
|
53126
53467
|
detailLevel?: "summary" | "detail" | undefined;
|
|
53468
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
53127
53469
|
} | null | undefined;
|
|
53128
53470
|
} | null | undefined;
|
|
53129
53471
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -53223,6 +53565,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
53223
53565
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
53224
53566
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
53225
53567
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
53568
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
53226
53569
|
}, "strip", z.ZodTypeAny, {
|
|
53227
53570
|
number: number;
|
|
53228
53571
|
title: string;
|
|
@@ -53236,6 +53579,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
53236
53579
|
requiredChecksPassed: boolean | null;
|
|
53237
53580
|
canMerge: boolean | null;
|
|
53238
53581
|
hasConflicts: boolean | null;
|
|
53582
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
53239
53583
|
}, {
|
|
53240
53584
|
number: number;
|
|
53241
53585
|
title: string;
|
|
@@ -53249,6 +53593,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
53249
53593
|
canMerge: boolean | null;
|
|
53250
53594
|
hasConflicts: boolean | null;
|
|
53251
53595
|
detailLevel?: "summary" | "detail" | undefined;
|
|
53596
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
53252
53597
|
}>>>>;
|
|
53253
53598
|
}, "strip", z.ZodTypeAny, {
|
|
53254
53599
|
archivedAt: string;
|
|
@@ -53274,6 +53619,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
53274
53619
|
requiredChecksPassed: boolean | null;
|
|
53275
53620
|
canMerge: boolean | null;
|
|
53276
53621
|
hasConflicts: boolean | null;
|
|
53622
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
53277
53623
|
} | null | undefined;
|
|
53278
53624
|
}, {
|
|
53279
53625
|
archivedAt: string;
|
|
@@ -53299,6 +53645,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
53299
53645
|
canMerge: boolean | null;
|
|
53300
53646
|
hasConflicts: boolean | null;
|
|
53301
53647
|
detailLevel?: "summary" | "detail" | undefined;
|
|
53648
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
53302
53649
|
} | null | undefined;
|
|
53303
53650
|
}>>>;
|
|
53304
53651
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -53348,6 +53695,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
53348
53695
|
requiredChecksPassed: boolean | null;
|
|
53349
53696
|
canMerge: boolean | null;
|
|
53350
53697
|
hasConflicts: boolean | null;
|
|
53698
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
53351
53699
|
} | null | undefined;
|
|
53352
53700
|
} | null | undefined;
|
|
53353
53701
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -53402,6 +53750,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
53402
53750
|
canMerge: boolean | null;
|
|
53403
53751
|
hasConflicts: boolean | null;
|
|
53404
53752
|
detailLevel?: "summary" | "detail" | undefined;
|
|
53753
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
53405
53754
|
} | null | undefined;
|
|
53406
53755
|
} | null | undefined;
|
|
53407
53756
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -53579,6 +53928,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
53579
53928
|
requiredChecksPassed: boolean | null;
|
|
53580
53929
|
canMerge: boolean | null;
|
|
53581
53930
|
hasConflicts: boolean | null;
|
|
53931
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
53582
53932
|
} | null | undefined;
|
|
53583
53933
|
} | null | undefined;
|
|
53584
53934
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -53663,6 +54013,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
53663
54013
|
canMerge: boolean | null;
|
|
53664
54014
|
hasConflicts: boolean | null;
|
|
53665
54015
|
detailLevel?: "summary" | "detail" | undefined;
|
|
54016
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
53666
54017
|
} | null | undefined;
|
|
53667
54018
|
} | null | undefined;
|
|
53668
54019
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -53750,6 +54101,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
53750
54101
|
requiredChecksPassed: boolean | null;
|
|
53751
54102
|
canMerge: boolean | null;
|
|
53752
54103
|
hasConflicts: boolean | null;
|
|
54104
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
53753
54105
|
} | null | undefined;
|
|
53754
54106
|
} | null | undefined;
|
|
53755
54107
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -53837,6 +54189,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
53837
54189
|
canMerge: boolean | null;
|
|
53838
54190
|
hasConflicts: boolean | null;
|
|
53839
54191
|
detailLevel?: "summary" | "detail" | undefined;
|
|
54192
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
53840
54193
|
} | null | undefined;
|
|
53841
54194
|
} | null | undefined;
|
|
53842
54195
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -55432,6 +55785,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
55432
55785
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
55433
55786
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
55434
55787
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
55788
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
55435
55789
|
}, "strip", z.ZodTypeAny, {
|
|
55436
55790
|
number: number;
|
|
55437
55791
|
title: string;
|
|
@@ -55445,6 +55799,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
55445
55799
|
requiredChecksPassed: boolean | null;
|
|
55446
55800
|
canMerge: boolean | null;
|
|
55447
55801
|
hasConflicts: boolean | null;
|
|
55802
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
55448
55803
|
}, {
|
|
55449
55804
|
number: number;
|
|
55450
55805
|
title: string;
|
|
@@ -55458,6 +55813,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
55458
55813
|
canMerge: boolean | null;
|
|
55459
55814
|
hasConflicts: boolean | null;
|
|
55460
55815
|
detailLevel?: "summary" | "detail" | undefined;
|
|
55816
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
55461
55817
|
}>>>>;
|
|
55462
55818
|
}, "strip", z.ZodTypeAny, {
|
|
55463
55819
|
archivedAt: string;
|
|
@@ -55483,6 +55839,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
55483
55839
|
requiredChecksPassed: boolean | null;
|
|
55484
55840
|
canMerge: boolean | null;
|
|
55485
55841
|
hasConflicts: boolean | null;
|
|
55842
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
55486
55843
|
} | null | undefined;
|
|
55487
55844
|
}, {
|
|
55488
55845
|
archivedAt: string;
|
|
@@ -55508,6 +55865,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
55508
55865
|
canMerge: boolean | null;
|
|
55509
55866
|
hasConflicts: boolean | null;
|
|
55510
55867
|
detailLevel?: "summary" | "detail" | undefined;
|
|
55868
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
55511
55869
|
} | null | undefined;
|
|
55512
55870
|
}>>>;
|
|
55513
55871
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -55557,6 +55915,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
55557
55915
|
requiredChecksPassed: boolean | null;
|
|
55558
55916
|
canMerge: boolean | null;
|
|
55559
55917
|
hasConflicts: boolean | null;
|
|
55918
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
55560
55919
|
} | null | undefined;
|
|
55561
55920
|
} | null | undefined;
|
|
55562
55921
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -55611,6 +55970,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
55611
55970
|
canMerge: boolean | null;
|
|
55612
55971
|
hasConflicts: boolean | null;
|
|
55613
55972
|
detailLevel?: "summary" | "detail" | undefined;
|
|
55973
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
55614
55974
|
} | null | undefined;
|
|
55615
55975
|
} | null | undefined;
|
|
55616
55976
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -55672,6 +56032,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
55672
56032
|
requiredChecksPassed: boolean | null;
|
|
55673
56033
|
canMerge: boolean | null;
|
|
55674
56034
|
hasConflicts: boolean | null;
|
|
56035
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
55675
56036
|
} | null | undefined;
|
|
55676
56037
|
} | null | undefined;
|
|
55677
56038
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -55732,6 +56093,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
55732
56093
|
canMerge: boolean | null;
|
|
55733
56094
|
hasConflicts: boolean | null;
|
|
55734
56095
|
detailLevel?: "summary" | "detail" | undefined;
|
|
56096
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
55735
56097
|
} | null | undefined;
|
|
55736
56098
|
} | null | undefined;
|
|
55737
56099
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -55795,6 +56157,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
55795
56157
|
requiredChecksPassed: boolean | null;
|
|
55796
56158
|
canMerge: boolean | null;
|
|
55797
56159
|
hasConflicts: boolean | null;
|
|
56160
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
55798
56161
|
} | null | undefined;
|
|
55799
56162
|
} | null | undefined;
|
|
55800
56163
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -55858,6 +56221,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
55858
56221
|
canMerge: boolean | null;
|
|
55859
56222
|
hasConflicts: boolean | null;
|
|
55860
56223
|
detailLevel?: "summary" | "detail" | undefined;
|
|
56224
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
55861
56225
|
} | null | undefined;
|
|
55862
56226
|
} | null | undefined;
|
|
55863
56227
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -56602,6 +56966,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
56602
56966
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
56603
56967
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
56604
56968
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
56969
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
56605
56970
|
}, "strip", z.ZodTypeAny, {
|
|
56606
56971
|
number: number;
|
|
56607
56972
|
title: string;
|
|
@@ -56615,6 +56980,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
56615
56980
|
requiredChecksPassed: boolean | null;
|
|
56616
56981
|
canMerge: boolean | null;
|
|
56617
56982
|
hasConflicts: boolean | null;
|
|
56983
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
56618
56984
|
}, {
|
|
56619
56985
|
number: number;
|
|
56620
56986
|
title: string;
|
|
@@ -56628,6 +56994,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
56628
56994
|
canMerge: boolean | null;
|
|
56629
56995
|
hasConflicts: boolean | null;
|
|
56630
56996
|
detailLevel?: "summary" | "detail" | undefined;
|
|
56997
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
56631
56998
|
}>>>;
|
|
56632
56999
|
pullRequestError: z.ZodNullable<z.ZodObject<{
|
|
56633
57000
|
code: z.ZodEnum<["NOT_GIT_REPO", "NOT_ALLOWED", "MERGE_CONFLICT", "UNKNOWN"]>;
|
|
@@ -56660,6 +57027,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
56660
57027
|
requiredChecksPassed: boolean | null;
|
|
56661
57028
|
canMerge: boolean | null;
|
|
56662
57029
|
hasConflicts: boolean | null;
|
|
57030
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
56663
57031
|
} | null;
|
|
56664
57032
|
requestId: string;
|
|
56665
57033
|
subscriptionId: string;
|
|
@@ -56739,6 +57107,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
56739
57107
|
canMerge: boolean | null;
|
|
56740
57108
|
hasConflicts: boolean | null;
|
|
56741
57109
|
detailLevel?: "summary" | "detail" | undefined;
|
|
57110
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
56742
57111
|
} | null;
|
|
56743
57112
|
requestId: string;
|
|
56744
57113
|
subscriptionId: string;
|
|
@@ -56821,6 +57190,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
56821
57190
|
requiredChecksPassed: boolean | null;
|
|
56822
57191
|
canMerge: boolean | null;
|
|
56823
57192
|
hasConflicts: boolean | null;
|
|
57193
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
56824
57194
|
} | null;
|
|
56825
57195
|
requestId: string;
|
|
56826
57196
|
subscriptionId: string;
|
|
@@ -56903,6 +57273,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
56903
57273
|
canMerge: boolean | null;
|
|
56904
57274
|
hasConflicts: boolean | null;
|
|
56905
57275
|
detailLevel?: "summary" | "detail" | undefined;
|
|
57276
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
56906
57277
|
} | null;
|
|
56907
57278
|
requestId: string;
|
|
56908
57279
|
subscriptionId: string;
|
|
@@ -57194,6 +57565,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
57194
57565
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
57195
57566
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
57196
57567
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
57568
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
57197
57569
|
}, "strip", z.ZodTypeAny, {
|
|
57198
57570
|
number: number;
|
|
57199
57571
|
title: string;
|
|
@@ -57207,6 +57579,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
57207
57579
|
requiredChecksPassed: boolean | null;
|
|
57208
57580
|
canMerge: boolean | null;
|
|
57209
57581
|
hasConflicts: boolean | null;
|
|
57582
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
57210
57583
|
}, {
|
|
57211
57584
|
number: number;
|
|
57212
57585
|
title: string;
|
|
@@ -57220,6 +57593,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
57220
57593
|
canMerge: boolean | null;
|
|
57221
57594
|
hasConflicts: boolean | null;
|
|
57222
57595
|
detailLevel?: "summary" | "detail" | undefined;
|
|
57596
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
57223
57597
|
}>>>;
|
|
57224
57598
|
pullRequestError: z.ZodNullable<z.ZodObject<{
|
|
57225
57599
|
code: z.ZodEnum<["NOT_GIT_REPO", "NOT_ALLOWED", "MERGE_CONFLICT", "UNKNOWN"]>;
|
|
@@ -57249,6 +57623,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
57249
57623
|
requiredChecksPassed: boolean | null;
|
|
57250
57624
|
canMerge: boolean | null;
|
|
57251
57625
|
hasConflicts: boolean | null;
|
|
57626
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
57252
57627
|
} | null;
|
|
57253
57628
|
git: {
|
|
57254
57629
|
repoRoot: null;
|
|
@@ -57326,6 +57701,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
57326
57701
|
canMerge: boolean | null;
|
|
57327
57702
|
hasConflicts: boolean | null;
|
|
57328
57703
|
detailLevel?: "summary" | "detail" | undefined;
|
|
57704
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
57329
57705
|
} | null;
|
|
57330
57706
|
git: {
|
|
57331
57707
|
repoRoot: null;
|
|
@@ -57406,6 +57782,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
57406
57782
|
requiredChecksPassed: boolean | null;
|
|
57407
57783
|
canMerge: boolean | null;
|
|
57408
57784
|
hasConflicts: boolean | null;
|
|
57785
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
57409
57786
|
} | null;
|
|
57410
57787
|
git: {
|
|
57411
57788
|
repoRoot: null;
|
|
@@ -57486,6 +57863,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
57486
57863
|
canMerge: boolean | null;
|
|
57487
57864
|
hasConflicts: boolean | null;
|
|
57488
57865
|
detailLevel?: "summary" | "detail" | undefined;
|
|
57866
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
57489
57867
|
} | null;
|
|
57490
57868
|
git: {
|
|
57491
57869
|
repoRoot: null;
|
|
@@ -58347,6 +58725,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
58347
58725
|
requiredChecksPassed: z.ZodNullable<z.ZodBoolean>;
|
|
58348
58726
|
canMerge: z.ZodNullable<z.ZodBoolean>;
|
|
58349
58727
|
hasConflicts: z.ZodNullable<z.ZodBoolean>;
|
|
58728
|
+
hasNonRequiredFailingChecks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
58350
58729
|
}, "strip", z.ZodTypeAny, {
|
|
58351
58730
|
number: number;
|
|
58352
58731
|
title: string;
|
|
@@ -58360,6 +58739,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
58360
58739
|
requiredChecksPassed: boolean | null;
|
|
58361
58740
|
canMerge: boolean | null;
|
|
58362
58741
|
hasConflicts: boolean | null;
|
|
58742
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
58363
58743
|
}, {
|
|
58364
58744
|
number: number;
|
|
58365
58745
|
title: string;
|
|
@@ -58373,6 +58753,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
58373
58753
|
canMerge: boolean | null;
|
|
58374
58754
|
hasConflicts: boolean | null;
|
|
58375
58755
|
detailLevel?: "summary" | "detail" | undefined;
|
|
58756
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
58376
58757
|
}>>;
|
|
58377
58758
|
githubFeaturesEnabled: z.ZodBoolean;
|
|
58378
58759
|
error: z.ZodNullable<z.ZodObject<{
|
|
@@ -58404,6 +58785,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
58404
58785
|
requiredChecksPassed: boolean | null;
|
|
58405
58786
|
canMerge: boolean | null;
|
|
58406
58787
|
hasConflicts: boolean | null;
|
|
58788
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
58407
58789
|
} | null;
|
|
58408
58790
|
cwd: string;
|
|
58409
58791
|
requestId: string;
|
|
@@ -58426,6 +58808,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
58426
58808
|
canMerge: boolean | null;
|
|
58427
58809
|
hasConflicts: boolean | null;
|
|
58428
58810
|
detailLevel?: "summary" | "detail" | undefined;
|
|
58811
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
58429
58812
|
} | null;
|
|
58430
58813
|
cwd: string;
|
|
58431
58814
|
requestId: string;
|
|
@@ -58451,6 +58834,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
58451
58834
|
requiredChecksPassed: boolean | null;
|
|
58452
58835
|
canMerge: boolean | null;
|
|
58453
58836
|
hasConflicts: boolean | null;
|
|
58837
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
58454
58838
|
} | null;
|
|
58455
58839
|
cwd: string;
|
|
58456
58840
|
requestId: string;
|
|
@@ -58476,6 +58860,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
58476
58860
|
canMerge: boolean | null;
|
|
58477
58861
|
hasConflicts: boolean | null;
|
|
58478
58862
|
detailLevel?: "summary" | "detail" | undefined;
|
|
58863
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
58479
58864
|
} | null;
|
|
58480
58865
|
cwd: string;
|
|
58481
58866
|
requestId: string;
|
|
@@ -61647,6 +62032,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
61647
62032
|
requiredChecksPassed: boolean | null;
|
|
61648
62033
|
canMerge: boolean | null;
|
|
61649
62034
|
hasConflicts: boolean | null;
|
|
62035
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
61650
62036
|
} | null | undefined;
|
|
61651
62037
|
} | null | undefined;
|
|
61652
62038
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -61797,6 +62183,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
61797
62183
|
requiredChecksPassed: boolean | null;
|
|
61798
62184
|
canMerge: boolean | null;
|
|
61799
62185
|
hasConflicts: boolean | null;
|
|
62186
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
61800
62187
|
} | null | undefined;
|
|
61801
62188
|
} | null | undefined;
|
|
61802
62189
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -61857,6 +62244,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
61857
62244
|
requiredChecksPassed: boolean | null;
|
|
61858
62245
|
canMerge: boolean | null;
|
|
61859
62246
|
hasConflicts: boolean | null;
|
|
62247
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
61860
62248
|
} | null | undefined;
|
|
61861
62249
|
} | null | undefined;
|
|
61862
62250
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -61952,6 +62340,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
61952
62340
|
requiredChecksPassed: boolean | null;
|
|
61953
62341
|
canMerge: boolean | null;
|
|
61954
62342
|
hasConflicts: boolean | null;
|
|
62343
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
61955
62344
|
} | null | undefined;
|
|
61956
62345
|
} | null | undefined;
|
|
61957
62346
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -62211,6 +62600,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
62211
62600
|
requiredChecksPassed: boolean | null;
|
|
62212
62601
|
canMerge: boolean | null;
|
|
62213
62602
|
hasConflicts: boolean | null;
|
|
62603
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
62214
62604
|
} | null | undefined;
|
|
62215
62605
|
} | null | undefined;
|
|
62216
62606
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -62341,6 +62731,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
62341
62731
|
requiredChecksPassed: boolean | null;
|
|
62342
62732
|
canMerge: boolean | null;
|
|
62343
62733
|
hasConflicts: boolean | null;
|
|
62734
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
62344
62735
|
} | null;
|
|
62345
62736
|
requestId: string;
|
|
62346
62737
|
subscriptionId: string;
|
|
@@ -62423,6 +62814,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
62423
62814
|
requiredChecksPassed: boolean | null;
|
|
62424
62815
|
canMerge: boolean | null;
|
|
62425
62816
|
hasConflicts: boolean | null;
|
|
62817
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
62426
62818
|
} | null;
|
|
62427
62819
|
git: {
|
|
62428
62820
|
repoRoot: null;
|
|
@@ -62626,6 +63018,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
62626
63018
|
requiredChecksPassed: boolean | null;
|
|
62627
63019
|
canMerge: boolean | null;
|
|
62628
63020
|
hasConflicts: boolean | null;
|
|
63021
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
62629
63022
|
} | null;
|
|
62630
63023
|
cwd: string;
|
|
62631
63024
|
requestId: string;
|
|
@@ -63326,6 +63719,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
63326
63719
|
canMerge: boolean | null;
|
|
63327
63720
|
hasConflicts: boolean | null;
|
|
63328
63721
|
detailLevel?: "summary" | "detail" | undefined;
|
|
63722
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
63329
63723
|
} | null | undefined;
|
|
63330
63724
|
} | null | undefined;
|
|
63331
63725
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -63476,6 +63870,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
63476
63870
|
canMerge: boolean | null;
|
|
63477
63871
|
hasConflicts: boolean | null;
|
|
63478
63872
|
detailLevel?: "summary" | "detail" | undefined;
|
|
63873
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
63479
63874
|
} | null | undefined;
|
|
63480
63875
|
} | null | undefined;
|
|
63481
63876
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -63536,6 +63931,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
63536
63931
|
canMerge: boolean | null;
|
|
63537
63932
|
hasConflicts: boolean | null;
|
|
63538
63933
|
detailLevel?: "summary" | "detail" | undefined;
|
|
63934
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
63539
63935
|
} | null | undefined;
|
|
63540
63936
|
} | null | undefined;
|
|
63541
63937
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -63631,6 +64027,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
63631
64027
|
canMerge: boolean | null;
|
|
63632
64028
|
hasConflicts: boolean | null;
|
|
63633
64029
|
detailLevel?: "summary" | "detail" | undefined;
|
|
64030
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
63634
64031
|
} | null | undefined;
|
|
63635
64032
|
} | null | undefined;
|
|
63636
64033
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -63890,6 +64287,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
63890
64287
|
canMerge: boolean | null;
|
|
63891
64288
|
hasConflicts: boolean | null;
|
|
63892
64289
|
detailLevel?: "summary" | "detail" | undefined;
|
|
64290
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
63893
64291
|
} | null | undefined;
|
|
63894
64292
|
} | null | undefined;
|
|
63895
64293
|
effectiveThinkingOptionId?: string | null | undefined;
|
|
@@ -64020,6 +64418,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
64020
64418
|
canMerge: boolean | null;
|
|
64021
64419
|
hasConflicts: boolean | null;
|
|
64022
64420
|
detailLevel?: "summary" | "detail" | undefined;
|
|
64421
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
64023
64422
|
} | null;
|
|
64024
64423
|
requestId: string;
|
|
64025
64424
|
subscriptionId: string;
|
|
@@ -64102,6 +64501,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
64102
64501
|
canMerge: boolean | null;
|
|
64103
64502
|
hasConflicts: boolean | null;
|
|
64104
64503
|
detailLevel?: "summary" | "detail" | undefined;
|
|
64504
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
64105
64505
|
} | null;
|
|
64106
64506
|
git: {
|
|
64107
64507
|
repoRoot: null;
|
|
@@ -64305,6 +64705,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
64305
64705
|
canMerge: boolean | null;
|
|
64306
64706
|
hasConflicts: boolean | null;
|
|
64307
64707
|
detailLevel?: "summary" | "detail" | undefined;
|
|
64708
|
+
hasNonRequiredFailingChecks?: boolean | null | undefined;
|
|
64308
64709
|
} | null;
|
|
64309
64710
|
cwd: string;
|
|
64310
64711
|
requestId: string;
|