@cat-factory/contracts 0.152.2 → 0.154.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/execution.d.ts +36 -2
- package/dist/execution.d.ts.map +1 -1
- package/dist/execution.js +8 -0
- package/dist/execution.js.map +1 -1
- package/dist/prReview.d.ts +133 -2
- package/dist/prReview.d.ts.map +1 -1
- package/dist/prReview.js +93 -0
- package/dist/prReview.js.map +1 -1
- package/dist/routes/agent-runs.d.ts +22 -2
- package/dist/routes/agent-runs.d.ts.map +1 -1
- package/dist/routes/execution.d.ts +88 -8
- package/dist/routes/execution.d.ts.map +1 -1
- package/dist/routes/human-review.d.ts +11 -1
- package/dist/routes/human-review.d.ts.map +1 -1
- package/dist/routes/human-test.d.ts +55 -5
- package/dist/routes/human-test.d.ts.map +1 -1
- package/dist/routes/prReview.d.ts +185 -2
- package/dist/routes/prReview.d.ts.map +1 -1
- package/dist/routes/prReview.js +23 -4
- package/dist/routes/prReview.js.map +1 -1
- package/dist/routes/visual-confirm.d.ts +33 -3
- package/dist/routes/visual-confirm.d.ts.map +1 -1
- package/dist/routes/workspaces.d.ts +22 -2
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/snapshot.d.ts +11 -1
- package/dist/snapshot.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/prReview.js
CHANGED
|
@@ -45,6 +45,39 @@ export const prReviewSliceSchema = v.object({
|
|
|
45
45
|
/** The repo-relative paths that make up the slice. */
|
|
46
46
|
paths: v.array(v.string()),
|
|
47
47
|
});
|
|
48
|
+
/**
|
|
49
|
+
* A finding's CHALLENGE lifecycle. A human can challenge a finding — optionally with a specific
|
|
50
|
+
* question / concern — which dispatches the read-only **Challenge Investigator** container agent
|
|
51
|
+
* to dig into the finding against the FULL source. Terminal verdicts:
|
|
52
|
+
* - `upheld` — the finding holds up AS WRITTEN (the investigator kept it, adding a justification
|
|
53
|
+
* but no revision to its body).
|
|
54
|
+
* - `amended` — the finding holds up AND the investigator strengthened/clarified it (some field —
|
|
55
|
+
* title / detail / severity / suggested fix — actually changed).
|
|
56
|
+
* - `retracted` — the finding does NOT hold up; it is auto-deselected and rendered struck-through
|
|
57
|
+
* beside its retraction justification.
|
|
58
|
+
*
|
|
59
|
+
* While the investigator runs the finding carries `investigating`. If its container job FAILS
|
|
60
|
+
* (crash / non-transient error) the challenge settles as `failed` — the finding is left exactly as
|
|
61
|
+
* it was (never dropped) and the review re-parks so the human can re-challenge or proceed, rather
|
|
62
|
+
* than the whole parked review failing over a non-critical second opinion.
|
|
63
|
+
*/
|
|
64
|
+
export const prReviewFindingChallengeSchema = v.object({
|
|
65
|
+
/**
|
|
66
|
+
* Lifecycle: `investigating` (agent in flight) → `upheld` (holds as-is) | `amended` (upheld +
|
|
67
|
+
* strengthened) | `retracted` (dropped) | `failed` (the investigation couldn't complete).
|
|
68
|
+
*/
|
|
69
|
+
status: v.picklist(['investigating', 'upheld', 'amended', 'retracted', 'failed']),
|
|
70
|
+
/**
|
|
71
|
+
* The human's specific challenge / question / concern, or null when they challenged with no
|
|
72
|
+
* text (the generic "dig deeper, justify the grounding, validate accuracy + relevance" prompt).
|
|
73
|
+
*/
|
|
74
|
+
question: v.optional(v.nullable(v.string())),
|
|
75
|
+
/**
|
|
76
|
+
* The investigator's justification — why the finding holds up (`upheld`/`amended`) or why it does
|
|
77
|
+
* not (`retracted`). For `failed` it carries the failure reason. Null while `investigating`.
|
|
78
|
+
*/
|
|
79
|
+
justification: v.optional(v.nullable(v.string())),
|
|
80
|
+
});
|
|
48
81
|
/**
|
|
49
82
|
* One prioritized review finding, id-stamped by the engine and anchored to a slice. Carries
|
|
50
83
|
* everything the window needs to render it and everything PR 3's resolutions consume (the
|
|
@@ -69,11 +102,19 @@ export const prReviewFindingSchema = v.object({
|
|
|
69
102
|
detail: v.string(),
|
|
70
103
|
/** A concrete suggested change, when the reviewer offered one. */
|
|
71
104
|
suggestedFix: v.optional(v.nullable(v.string())),
|
|
105
|
+
/**
|
|
106
|
+
* The finding's challenge state, when a human challenged it (see
|
|
107
|
+
* {@link prReviewFindingChallengeSchema}). Absent for an un-challenged finding.
|
|
108
|
+
*/
|
|
109
|
+
challenge: v.optional(v.nullable(prReviewFindingChallengeSchema)),
|
|
72
110
|
});
|
|
73
111
|
/**
|
|
74
112
|
* The PR-review lifecycle on a `pr-reviewer` step:
|
|
75
113
|
* - `reviewing`: the read-only reviewer container job is in flight (the agent dispatch).
|
|
76
114
|
* - `awaiting_selection`: parked; the human curates which findings matter through the window.
|
|
115
|
+
* - `challenging`: a human challenged a finding, so the read-only Challenge Investigator container
|
|
116
|
+
* job is in flight digging into it; the review returns to `awaiting_selection` once its verdict
|
|
117
|
+
* (strengthen the finding, or retract it) is applied.
|
|
77
118
|
* - `fixing` / `posting`: a resolution is executing — the Fixer is committing fixes onto the
|
|
78
119
|
* PR branch (`fixing`), or the selected findings are being posted as inline comments (`posting`).
|
|
79
120
|
* - `done`: the review is resolved (the human finished; PR 3: fixed / posted).
|
|
@@ -82,6 +123,7 @@ export const prReviewFindingSchema = v.object({
|
|
|
82
123
|
export const prReviewStatusSchema = v.picklist([
|
|
83
124
|
'reviewing',
|
|
84
125
|
'awaiting_selection',
|
|
126
|
+
'challenging',
|
|
85
127
|
'fixing',
|
|
86
128
|
'posting',
|
|
87
129
|
'done',
|
|
@@ -162,6 +204,15 @@ export const prReviewStepStateSchema = v.object({
|
|
|
162
204
|
prUrl: v.optional(v.nullable(v.string())),
|
|
163
205
|
/** Identifier of the model that produced the review, for transparency. */
|
|
164
206
|
model: v.optional(v.nullable(v.string())),
|
|
207
|
+
/**
|
|
208
|
+
* The PR head commit sha at the moment the review STARTED (captured when the reviewer was
|
|
209
|
+
* dispatched), or null when it couldn't be resolved (no VCS wired / older run). The `post`
|
|
210
|
+
* resolution compares it to the PR's CURRENT head: if the branch moved since the review, the
|
|
211
|
+
* frozen finding line numbers may now point at shifted/different code, so every finding is
|
|
212
|
+
* folded into the summary comment rather than anchored inline to a possibly-drifted line. Null
|
|
213
|
+
* ⇒ the drift check is skipped (the pre-existing per-line diff filtering still applies).
|
|
214
|
+
*/
|
|
215
|
+
reviewedHeadSha: v.optional(v.nullable(v.string())),
|
|
165
216
|
/**
|
|
166
217
|
* The outcome of the most recent `post` attempt (null until one runs). A partial or failed
|
|
167
218
|
* post keeps the review parked at `awaiting_selection` carrying this report, so the window
|
|
@@ -221,6 +272,36 @@ export const prReviewAgentOutputSchema = v.object({
|
|
|
221
272
|
detail: '',
|
|
222
273
|
})), []),
|
|
223
274
|
});
|
|
275
|
+
// ---- Challenge Investigator agent output ----------------------------------
|
|
276
|
+
/**
|
|
277
|
+
* The LENIENT structured shape the read-only **Challenge Investigator** container agent returns
|
|
278
|
+
* as `result.custom` when a human challenges a finding. The engine applies it to the challenged
|
|
279
|
+
* finding: an `upheld` verdict keeps the finding and strengthens/clarifies its body from any
|
|
280
|
+
* supplied `revised*` field (folding the justification in), while a `retracted` verdict
|
|
281
|
+
* auto-deselects the finding and records the justification beside it. Every field falls back to a
|
|
282
|
+
* safe default (`v.fallback`) — exactly like {@link prReviewAgentOutputSchema} — so a
|
|
283
|
+
* partially-malformed reply degrades sensibly (an unreadable verdict reads as `upheld`, KEEPING
|
|
284
|
+
* the finding rather than silently dropping it) instead of failing the run. This is the SINGLE
|
|
285
|
+
* source of truth for the investigator's output shape, consumed both by the agent kind's
|
|
286
|
+
* `defineStructuredOutput` (validation at completion) and the engine's coercion.
|
|
287
|
+
*/
|
|
288
|
+
export const prReviewChallengeOutputSchema = v.object({
|
|
289
|
+
/**
|
|
290
|
+
* Does the finding hold up? `upheld` keeps it (and may strengthen it via the `revised*` fields);
|
|
291
|
+
* `retracted` drops it from the selection because the challenge showed it is wrong / irrelevant.
|
|
292
|
+
*/
|
|
293
|
+
verdict: v.fallback(v.picklist(['upheld', 'retracted']), 'upheld'),
|
|
294
|
+
/** Why the finding holds up, or why it does not — surfaced beside the finding in the window. */
|
|
295
|
+
justification: v.fallback(v.string(), ''),
|
|
296
|
+
/** When upheld: a clarified / strengthened finding body replacing `detail` (optional). */
|
|
297
|
+
revisedDetail: v.fallback(v.optional(v.string()), undefined),
|
|
298
|
+
/** When upheld: a revised headline replacing `title` (optional). */
|
|
299
|
+
revisedTitle: v.fallback(v.optional(v.string()), undefined),
|
|
300
|
+
/** When upheld: a re-assessed severity (optional). */
|
|
301
|
+
revisedSeverity: v.fallback(v.optional(prReviewSeveritySchema), undefined),
|
|
302
|
+
/** When upheld: a revised concrete suggested fix replacing `suggestedFix` (optional). */
|
|
303
|
+
revisedSuggestedFix: v.fallback(v.optional(v.string()), undefined),
|
|
304
|
+
});
|
|
224
305
|
// ---- Request bodies -------------------------------------------------------
|
|
225
306
|
/**
|
|
226
307
|
* Resolve a parked PR review: the human's curated selection (`findingIds`) plus how to resolve
|
|
@@ -232,4 +313,16 @@ export const resolvePrReviewSchema = v.object({
|
|
|
232
313
|
action: v.optional(prReviewResolutionSchema, 'finish'),
|
|
233
314
|
findingIds: v.optional(v.array(v.string()), []),
|
|
234
315
|
});
|
|
316
|
+
/**
|
|
317
|
+
* Challenge a parked finding: dispatch the Challenge Investigator with an OPTIONAL specific
|
|
318
|
+
* concern. An omitted / blank `question` uses the generic prompt (dig deeper, justify the
|
|
319
|
+
* grounding, validate the finding is accurate + relevant). The finding is named in the path.
|
|
320
|
+
*/
|
|
321
|
+
export const challengePrReviewFindingSchema = v.object({
|
|
322
|
+
/**
|
|
323
|
+
* The specific challenge / question / concern for the investigator to dig into. Omitted or
|
|
324
|
+
* blank ⇒ the generic "dig deeper and validate this finding" prompt.
|
|
325
|
+
*/
|
|
326
|
+
question: v.optional(v.string()),
|
|
327
|
+
});
|
|
235
328
|
//# sourceMappingURL=prReview.js.map
|
package/dist/prReview.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"prReview.js","sourceRoot":"","sources":["../src/prReview.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAE5B,8EAA8E;AAC9E,kFAAkF;AAClF,8EAA8E;AAC9E,mFAAmF;AACnF,+EAA+E;AAC/E,kFAAkF;AAClF,iFAAiF;AACjF,4DAA4D;AAC5D,EAAE;AACF,kFAAkF;AAClF,2EAA2E;AAC3E,wFAAwF;AACxF,wFAAwF;AACxF,yFAAyF;AACzF,iEAAiE;AACjE,8EAA8E;AAE9E;;;GAGG;AACH,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,CAAC,QAAQ,CAAC,CAAC,SAAS,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC,CAAA;AAG7F,wEAAwE;AACxE,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,CAAC,QAAQ,CAAC;IAC/C,aAAa;IACb,UAAU;IACV,aAAa;IACb,iBAAiB;IACjB,OAAO;IACP,MAAM;IACN,OAAO;CACR,CAAC,CAAA;AAGF;;;;GAIG;AACH,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1C,0FAA0F;IAC1F,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE;IACd,+BAA+B;IAC/B,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,uCAAuC;IACvC,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,sDAAsD;IACtD,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;CAC3B,CAAC,CAAA;AAGF;;;;GAIG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,6EAA6E;IAC7E,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE;IACd,qFAAqF;IACrF,OAAO,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC;IAC3C,+CAA+C;IAC/C,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,uFAAuF;IACvF,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC;IACxC,+FAA+F;IAC/F,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;IAC3D,QAAQ,EAAE,sBAAsB;IAChC,QAAQ,EAAE,sBAAsB;IAChC,sBAAsB;IACtB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,kCAAkC;IAClC,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;IAClB,kEAAkE;IAClE,YAAY,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"prReview.js","sourceRoot":"","sources":["../src/prReview.ts"],"names":[],"mappings":"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"}
|
|
@@ -454,7 +454,7 @@ export declare const retryAgentRunContract: {
|
|
|
454
454
|
readonly messageId: v.StringSchema<undefined>;
|
|
455
455
|
}, undefined>, undefined>, undefined>;
|
|
456
456
|
readonly prReview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
457
|
-
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "fixing", "posting", "done", "skipped"], undefined>;
|
|
457
|
+
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "challenging", "fixing", "posting", "done", "skipped"], undefined>;
|
|
458
458
|
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
459
459
|
readonly slices: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
460
460
|
readonly id: v.StringSchema<undefined>;
|
|
@@ -473,11 +473,17 @@ export declare const retryAgentRunContract: {
|
|
|
473
473
|
readonly title: v.StringSchema<undefined>;
|
|
474
474
|
readonly detail: v.StringSchema<undefined>;
|
|
475
475
|
readonly suggestedFix: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
476
|
+
readonly challenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
477
|
+
readonly status: v.PicklistSchema<["investigating", "upheld", "amended", "retracted", "failed"], undefined>;
|
|
478
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
479
|
+
readonly justification: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
480
|
+
}, undefined>, undefined>, undefined>;
|
|
476
481
|
}, undefined>, undefined>, readonly []>;
|
|
477
482
|
readonly selectedFindingIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
478
483
|
readonly resolution: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["finish", "fix", "post"], undefined>, undefined>, undefined>;
|
|
479
484
|
readonly prUrl: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
480
485
|
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
486
|
+
readonly reviewedHeadSha: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
481
487
|
readonly postReport: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
482
488
|
readonly attempted: v.NumberSchema<undefined>;
|
|
483
489
|
readonly posted: v.NumberSchema<undefined>;
|
|
@@ -495,6 +501,10 @@ export declare const retryAgentRunContract: {
|
|
|
495
501
|
readonly postedBody: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
|
|
496
502
|
}, undefined>, undefined>, undefined>;
|
|
497
503
|
readonly pendingPrReviewPost: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
504
|
+
readonly pendingChallenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
505
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
506
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
507
|
+
}, undefined>, undefined>, undefined>;
|
|
498
508
|
readonly rework: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
499
509
|
readonly previousProposal: v.StringSchema<undefined>;
|
|
500
510
|
readonly feedback: v.StringSchema<undefined>;
|
|
@@ -1349,7 +1359,7 @@ export declare const stopAgentRunContract: {
|
|
|
1349
1359
|
readonly messageId: v.StringSchema<undefined>;
|
|
1350
1360
|
}, undefined>, undefined>, undefined>;
|
|
1351
1361
|
readonly prReview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1352
|
-
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "fixing", "posting", "done", "skipped"], undefined>;
|
|
1362
|
+
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "challenging", "fixing", "posting", "done", "skipped"], undefined>;
|
|
1353
1363
|
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1354
1364
|
readonly slices: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1355
1365
|
readonly id: v.StringSchema<undefined>;
|
|
@@ -1368,11 +1378,17 @@ export declare const stopAgentRunContract: {
|
|
|
1368
1378
|
readonly title: v.StringSchema<undefined>;
|
|
1369
1379
|
readonly detail: v.StringSchema<undefined>;
|
|
1370
1380
|
readonly suggestedFix: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1381
|
+
readonly challenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1382
|
+
readonly status: v.PicklistSchema<["investigating", "upheld", "amended", "retracted", "failed"], undefined>;
|
|
1383
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1384
|
+
readonly justification: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1385
|
+
}, undefined>, undefined>, undefined>;
|
|
1371
1386
|
}, undefined>, undefined>, readonly []>;
|
|
1372
1387
|
readonly selectedFindingIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
1373
1388
|
readonly resolution: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["finish", "fix", "post"], undefined>, undefined>, undefined>;
|
|
1374
1389
|
readonly prUrl: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1375
1390
|
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1391
|
+
readonly reviewedHeadSha: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1376
1392
|
readonly postReport: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1377
1393
|
readonly attempted: v.NumberSchema<undefined>;
|
|
1378
1394
|
readonly posted: v.NumberSchema<undefined>;
|
|
@@ -1390,6 +1406,10 @@ export declare const stopAgentRunContract: {
|
|
|
1390
1406
|
readonly postedBody: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
|
|
1391
1407
|
}, undefined>, undefined>, undefined>;
|
|
1392
1408
|
readonly pendingPrReviewPost: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
1409
|
+
readonly pendingChallenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1410
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
1411
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1412
|
+
}, undefined>, undefined>, undefined>;
|
|
1393
1413
|
readonly rework: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1394
1414
|
readonly previousProposal: v.StringSchema<undefined>;
|
|
1395
1415
|
readonly feedback: v.StringSchema<undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent-runs.d.ts","sourceRoot":"","sources":["../../src/routes/agent-runs.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAsB5B,eAAO,MAAM,qBAAqB
|
|
1
|
+
{"version":3,"file":"agent-runs.d.ts","sourceRoot":"","sources":["../../src/routes/agent-runs.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAsB5B,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMhC,CAAA;AAEF,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM/B,CAAA"}
|
|
@@ -413,7 +413,7 @@ export declare const startExecutionContract: {
|
|
|
413
413
|
readonly messageId: v.StringSchema<undefined>;
|
|
414
414
|
}, undefined>, undefined>, undefined>;
|
|
415
415
|
readonly prReview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
416
|
-
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "fixing", "posting", "done", "skipped"], undefined>;
|
|
416
|
+
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "challenging", "fixing", "posting", "done", "skipped"], undefined>;
|
|
417
417
|
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
418
418
|
readonly slices: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
419
419
|
readonly id: v.StringSchema<undefined>;
|
|
@@ -432,11 +432,17 @@ export declare const startExecutionContract: {
|
|
|
432
432
|
readonly title: v.StringSchema<undefined>;
|
|
433
433
|
readonly detail: v.StringSchema<undefined>;
|
|
434
434
|
readonly suggestedFix: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
435
|
+
readonly challenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
436
|
+
readonly status: v.PicklistSchema<["investigating", "upheld", "amended", "retracted", "failed"], undefined>;
|
|
437
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
438
|
+
readonly justification: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
439
|
+
}, undefined>, undefined>, undefined>;
|
|
435
440
|
}, undefined>, undefined>, readonly []>;
|
|
436
441
|
readonly selectedFindingIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
437
442
|
readonly resolution: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["finish", "fix", "post"], undefined>, undefined>, undefined>;
|
|
438
443
|
readonly prUrl: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
439
444
|
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
445
|
+
readonly reviewedHeadSha: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
440
446
|
readonly postReport: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
441
447
|
readonly attempted: v.NumberSchema<undefined>;
|
|
442
448
|
readonly posted: v.NumberSchema<undefined>;
|
|
@@ -454,6 +460,10 @@ export declare const startExecutionContract: {
|
|
|
454
460
|
readonly postedBody: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
|
|
455
461
|
}, undefined>, undefined>, undefined>;
|
|
456
462
|
readonly pendingPrReviewPost: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
463
|
+
readonly pendingChallenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
464
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
465
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
466
|
+
}, undefined>, undefined>, undefined>;
|
|
457
467
|
readonly rework: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
458
468
|
readonly previousProposal: v.StringSchema<undefined>;
|
|
459
469
|
readonly feedback: v.StringSchema<undefined>;
|
|
@@ -2004,7 +2014,7 @@ export declare const resumeSpendContract: {
|
|
|
2004
2014
|
readonly messageId: v.StringSchema<undefined>;
|
|
2005
2015
|
}, undefined>, undefined>, undefined>;
|
|
2006
2016
|
readonly prReview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2007
|
-
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "fixing", "posting", "done", "skipped"], undefined>;
|
|
2017
|
+
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "challenging", "fixing", "posting", "done", "skipped"], undefined>;
|
|
2008
2018
|
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2009
2019
|
readonly slices: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2010
2020
|
readonly id: v.StringSchema<undefined>;
|
|
@@ -2023,11 +2033,17 @@ export declare const resumeSpendContract: {
|
|
|
2023
2033
|
readonly title: v.StringSchema<undefined>;
|
|
2024
2034
|
readonly detail: v.StringSchema<undefined>;
|
|
2025
2035
|
readonly suggestedFix: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2036
|
+
readonly challenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2037
|
+
readonly status: v.PicklistSchema<["investigating", "upheld", "amended", "retracted", "failed"], undefined>;
|
|
2038
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2039
|
+
readonly justification: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2040
|
+
}, undefined>, undefined>, undefined>;
|
|
2026
2041
|
}, undefined>, undefined>, readonly []>;
|
|
2027
2042
|
readonly selectedFindingIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
2028
2043
|
readonly resolution: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["finish", "fix", "post"], undefined>, undefined>, undefined>;
|
|
2029
2044
|
readonly prUrl: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2030
2045
|
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2046
|
+
readonly reviewedHeadSha: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2031
2047
|
readonly postReport: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2032
2048
|
readonly attempted: v.NumberSchema<undefined>;
|
|
2033
2049
|
readonly posted: v.NumberSchema<undefined>;
|
|
@@ -2045,6 +2061,10 @@ export declare const resumeSpendContract: {
|
|
|
2045
2061
|
readonly postedBody: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
|
|
2046
2062
|
}, undefined>, undefined>, undefined>;
|
|
2047
2063
|
readonly pendingPrReviewPost: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
2064
|
+
readonly pendingChallenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2065
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
2066
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2067
|
+
}, undefined>, undefined>, undefined>;
|
|
2048
2068
|
readonly rework: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2049
2069
|
readonly previousProposal: v.StringSchema<undefined>;
|
|
2050
2070
|
readonly feedback: v.StringSchema<undefined>;
|
|
@@ -3126,7 +3146,7 @@ export declare const resolveDecisionContract: {
|
|
|
3126
3146
|
readonly messageId: v.StringSchema<undefined>;
|
|
3127
3147
|
}, undefined>, undefined>, undefined>;
|
|
3128
3148
|
readonly prReview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3129
|
-
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "fixing", "posting", "done", "skipped"], undefined>;
|
|
3149
|
+
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "challenging", "fixing", "posting", "done", "skipped"], undefined>;
|
|
3130
3150
|
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3131
3151
|
readonly slices: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3132
3152
|
readonly id: v.StringSchema<undefined>;
|
|
@@ -3145,11 +3165,17 @@ export declare const resolveDecisionContract: {
|
|
|
3145
3165
|
readonly title: v.StringSchema<undefined>;
|
|
3146
3166
|
readonly detail: v.StringSchema<undefined>;
|
|
3147
3167
|
readonly suggestedFix: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3168
|
+
readonly challenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3169
|
+
readonly status: v.PicklistSchema<["investigating", "upheld", "amended", "retracted", "failed"], undefined>;
|
|
3170
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3171
|
+
readonly justification: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3172
|
+
}, undefined>, undefined>, undefined>;
|
|
3148
3173
|
}, undefined>, undefined>, readonly []>;
|
|
3149
3174
|
readonly selectedFindingIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
3150
3175
|
readonly resolution: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["finish", "fix", "post"], undefined>, undefined>, undefined>;
|
|
3151
3176
|
readonly prUrl: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3152
3177
|
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3178
|
+
readonly reviewedHeadSha: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3153
3179
|
readonly postReport: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3154
3180
|
readonly attempted: v.NumberSchema<undefined>;
|
|
3155
3181
|
readonly posted: v.NumberSchema<undefined>;
|
|
@@ -3167,6 +3193,10 @@ export declare const resolveDecisionContract: {
|
|
|
3167
3193
|
readonly postedBody: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
|
|
3168
3194
|
}, undefined>, undefined>, undefined>;
|
|
3169
3195
|
readonly pendingPrReviewPost: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
3196
|
+
readonly pendingChallenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3197
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
3198
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3199
|
+
}, undefined>, undefined>, undefined>;
|
|
3170
3200
|
readonly rework: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3171
3201
|
readonly previousProposal: v.StringSchema<undefined>;
|
|
3172
3202
|
readonly feedback: v.StringSchema<undefined>;
|
|
@@ -3938,7 +3968,7 @@ export declare const approveStepContract: {
|
|
|
3938
3968
|
readonly messageId: v.StringSchema<undefined>;
|
|
3939
3969
|
}, undefined>, undefined>, undefined>;
|
|
3940
3970
|
readonly prReview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3941
|
-
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "fixing", "posting", "done", "skipped"], undefined>;
|
|
3971
|
+
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "challenging", "fixing", "posting", "done", "skipped"], undefined>;
|
|
3942
3972
|
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3943
3973
|
readonly slices: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3944
3974
|
readonly id: v.StringSchema<undefined>;
|
|
@@ -3957,11 +3987,17 @@ export declare const approveStepContract: {
|
|
|
3957
3987
|
readonly title: v.StringSchema<undefined>;
|
|
3958
3988
|
readonly detail: v.StringSchema<undefined>;
|
|
3959
3989
|
readonly suggestedFix: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3990
|
+
readonly challenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3991
|
+
readonly status: v.PicklistSchema<["investigating", "upheld", "amended", "retracted", "failed"], undefined>;
|
|
3992
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3993
|
+
readonly justification: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3994
|
+
}, undefined>, undefined>, undefined>;
|
|
3960
3995
|
}, undefined>, undefined>, readonly []>;
|
|
3961
3996
|
readonly selectedFindingIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
3962
3997
|
readonly resolution: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["finish", "fix", "post"], undefined>, undefined>, undefined>;
|
|
3963
3998
|
readonly prUrl: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3964
3999
|
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4000
|
+
readonly reviewedHeadSha: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3965
4001
|
readonly postReport: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3966
4002
|
readonly attempted: v.NumberSchema<undefined>;
|
|
3967
4003
|
readonly posted: v.NumberSchema<undefined>;
|
|
@@ -3979,6 +4015,10 @@ export declare const approveStepContract: {
|
|
|
3979
4015
|
readonly postedBody: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
|
|
3980
4016
|
}, undefined>, undefined>, undefined>;
|
|
3981
4017
|
readonly pendingPrReviewPost: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
4018
|
+
readonly pendingChallenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
4019
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
4020
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4021
|
+
}, undefined>, undefined>, undefined>;
|
|
3982
4022
|
readonly rework: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3983
4023
|
readonly previousProposal: v.StringSchema<undefined>;
|
|
3984
4024
|
readonly feedback: v.StringSchema<undefined>;
|
|
@@ -4764,7 +4804,7 @@ export declare const requestStepChangesContract: {
|
|
|
4764
4804
|
readonly messageId: v.StringSchema<undefined>;
|
|
4765
4805
|
}, undefined>, undefined>, undefined>;
|
|
4766
4806
|
readonly prReview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
4767
|
-
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "fixing", "posting", "done", "skipped"], undefined>;
|
|
4807
|
+
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "challenging", "fixing", "posting", "done", "skipped"], undefined>;
|
|
4768
4808
|
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4769
4809
|
readonly slices: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4770
4810
|
readonly id: v.StringSchema<undefined>;
|
|
@@ -4783,11 +4823,17 @@ export declare const requestStepChangesContract: {
|
|
|
4783
4823
|
readonly title: v.StringSchema<undefined>;
|
|
4784
4824
|
readonly detail: v.StringSchema<undefined>;
|
|
4785
4825
|
readonly suggestedFix: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4826
|
+
readonly challenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
4827
|
+
readonly status: v.PicklistSchema<["investigating", "upheld", "amended", "retracted", "failed"], undefined>;
|
|
4828
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4829
|
+
readonly justification: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4830
|
+
}, undefined>, undefined>, undefined>;
|
|
4786
4831
|
}, undefined>, undefined>, readonly []>;
|
|
4787
4832
|
readonly selectedFindingIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
4788
4833
|
readonly resolution: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["finish", "fix", "post"], undefined>, undefined>, undefined>;
|
|
4789
4834
|
readonly prUrl: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4790
4835
|
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4836
|
+
readonly reviewedHeadSha: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4791
4837
|
readonly postReport: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
4792
4838
|
readonly attempted: v.NumberSchema<undefined>;
|
|
4793
4839
|
readonly posted: v.NumberSchema<undefined>;
|
|
@@ -4805,6 +4851,10 @@ export declare const requestStepChangesContract: {
|
|
|
4805
4851
|
readonly postedBody: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
|
|
4806
4852
|
}, undefined>, undefined>, undefined>;
|
|
4807
4853
|
readonly pendingPrReviewPost: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
4854
|
+
readonly pendingChallenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
4855
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
4856
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4857
|
+
}, undefined>, undefined>, undefined>;
|
|
4808
4858
|
readonly rework: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
4809
4859
|
readonly previousProposal: v.StringSchema<undefined>;
|
|
4810
4860
|
readonly feedback: v.StringSchema<undefined>;
|
|
@@ -5576,7 +5626,7 @@ export declare const resolveStepExceededContract: {
|
|
|
5576
5626
|
readonly messageId: v.StringSchema<undefined>;
|
|
5577
5627
|
}, undefined>, undefined>, undefined>;
|
|
5578
5628
|
readonly prReview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
5579
|
-
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "fixing", "posting", "done", "skipped"], undefined>;
|
|
5629
|
+
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "challenging", "fixing", "posting", "done", "skipped"], undefined>;
|
|
5580
5630
|
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
5581
5631
|
readonly slices: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
5582
5632
|
readonly id: v.StringSchema<undefined>;
|
|
@@ -5595,11 +5645,17 @@ export declare const resolveStepExceededContract: {
|
|
|
5595
5645
|
readonly title: v.StringSchema<undefined>;
|
|
5596
5646
|
readonly detail: v.StringSchema<undefined>;
|
|
5597
5647
|
readonly suggestedFix: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
5648
|
+
readonly challenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
5649
|
+
readonly status: v.PicklistSchema<["investigating", "upheld", "amended", "retracted", "failed"], undefined>;
|
|
5650
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
5651
|
+
readonly justification: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
5652
|
+
}, undefined>, undefined>, undefined>;
|
|
5598
5653
|
}, undefined>, undefined>, readonly []>;
|
|
5599
5654
|
readonly selectedFindingIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
5600
5655
|
readonly resolution: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["finish", "fix", "post"], undefined>, undefined>, undefined>;
|
|
5601
5656
|
readonly prUrl: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
5602
5657
|
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
5658
|
+
readonly reviewedHeadSha: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
5603
5659
|
readonly postReport: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
5604
5660
|
readonly attempted: v.NumberSchema<undefined>;
|
|
5605
5661
|
readonly posted: v.NumberSchema<undefined>;
|
|
@@ -5617,6 +5673,10 @@ export declare const resolveStepExceededContract: {
|
|
|
5617
5673
|
readonly postedBody: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
|
|
5618
5674
|
}, undefined>, undefined>, undefined>;
|
|
5619
5675
|
readonly pendingPrReviewPost: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
5676
|
+
readonly pendingChallenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
5677
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
5678
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
5679
|
+
}, undefined>, undefined>, undefined>;
|
|
5620
5680
|
readonly rework: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
5621
5681
|
readonly previousProposal: v.StringSchema<undefined>;
|
|
5622
5682
|
readonly feedback: v.StringSchema<undefined>;
|
|
@@ -6386,7 +6446,7 @@ export declare const restartExecutionContract: {
|
|
|
6386
6446
|
readonly messageId: v.StringSchema<undefined>;
|
|
6387
6447
|
}, undefined>, undefined>, undefined>;
|
|
6388
6448
|
readonly prReview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
6389
|
-
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "fixing", "posting", "done", "skipped"], undefined>;
|
|
6449
|
+
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "challenging", "fixing", "posting", "done", "skipped"], undefined>;
|
|
6390
6450
|
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
6391
6451
|
readonly slices: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
6392
6452
|
readonly id: v.StringSchema<undefined>;
|
|
@@ -6405,11 +6465,17 @@ export declare const restartExecutionContract: {
|
|
|
6405
6465
|
readonly title: v.StringSchema<undefined>;
|
|
6406
6466
|
readonly detail: v.StringSchema<undefined>;
|
|
6407
6467
|
readonly suggestedFix: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
6468
|
+
readonly challenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
6469
|
+
readonly status: v.PicklistSchema<["investigating", "upheld", "amended", "retracted", "failed"], undefined>;
|
|
6470
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
6471
|
+
readonly justification: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
6472
|
+
}, undefined>, undefined>, undefined>;
|
|
6408
6473
|
}, undefined>, undefined>, readonly []>;
|
|
6409
6474
|
readonly selectedFindingIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
6410
6475
|
readonly resolution: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["finish", "fix", "post"], undefined>, undefined>, undefined>;
|
|
6411
6476
|
readonly prUrl: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
6412
6477
|
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
6478
|
+
readonly reviewedHeadSha: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
6413
6479
|
readonly postReport: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
6414
6480
|
readonly attempted: v.NumberSchema<undefined>;
|
|
6415
6481
|
readonly posted: v.NumberSchema<undefined>;
|
|
@@ -6427,6 +6493,10 @@ export declare const restartExecutionContract: {
|
|
|
6427
6493
|
readonly postedBody: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
|
|
6428
6494
|
}, undefined>, undefined>, undefined>;
|
|
6429
6495
|
readonly pendingPrReviewPost: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
6496
|
+
readonly pendingChallenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
6497
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
6498
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
6499
|
+
}, undefined>, undefined>, undefined>;
|
|
6430
6500
|
readonly rework: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
6431
6501
|
readonly previousProposal: v.StringSchema<undefined>;
|
|
6432
6502
|
readonly feedback: v.StringSchema<undefined>;
|
|
@@ -7198,7 +7268,7 @@ export declare const rejectStepContract: {
|
|
|
7198
7268
|
readonly messageId: v.StringSchema<undefined>;
|
|
7199
7269
|
}, undefined>, undefined>, undefined>;
|
|
7200
7270
|
readonly prReview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
7201
|
-
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "fixing", "posting", "done", "skipped"], undefined>;
|
|
7271
|
+
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "challenging", "fixing", "posting", "done", "skipped"], undefined>;
|
|
7202
7272
|
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
7203
7273
|
readonly slices: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
7204
7274
|
readonly id: v.StringSchema<undefined>;
|
|
@@ -7217,11 +7287,17 @@ export declare const rejectStepContract: {
|
|
|
7217
7287
|
readonly title: v.StringSchema<undefined>;
|
|
7218
7288
|
readonly detail: v.StringSchema<undefined>;
|
|
7219
7289
|
readonly suggestedFix: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
7290
|
+
readonly challenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
7291
|
+
readonly status: v.PicklistSchema<["investigating", "upheld", "amended", "retracted", "failed"], undefined>;
|
|
7292
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
7293
|
+
readonly justification: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
7294
|
+
}, undefined>, undefined>, undefined>;
|
|
7220
7295
|
}, undefined>, undefined>, readonly []>;
|
|
7221
7296
|
readonly selectedFindingIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
7222
7297
|
readonly resolution: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["finish", "fix", "post"], undefined>, undefined>, undefined>;
|
|
7223
7298
|
readonly prUrl: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
7224
7299
|
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
7300
|
+
readonly reviewedHeadSha: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
7225
7301
|
readonly postReport: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
7226
7302
|
readonly attempted: v.NumberSchema<undefined>;
|
|
7227
7303
|
readonly posted: v.NumberSchema<undefined>;
|
|
@@ -7239,6 +7315,10 @@ export declare const rejectStepContract: {
|
|
|
7239
7315
|
readonly postedBody: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
|
|
7240
7316
|
}, undefined>, undefined>, undefined>;
|
|
7241
7317
|
readonly pendingPrReviewPost: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
7318
|
+
readonly pendingChallenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
7319
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
7320
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
7321
|
+
}, undefined>, undefined>, undefined>;
|
|
7242
7322
|
readonly rework: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
7243
7323
|
readonly previousProposal: v.StringSchema<undefined>;
|
|
7244
7324
|
readonly feedback: v.StringSchema<undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"execution.d.ts","sourceRoot":"","sources":["../../src/routes/execution.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqC,MAAM,yBAAyB,CAAA;AAC3F,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAkD5B,eAAO,MAAM,sBAAsB
|
|
1
|
+
{"version":3,"file":"execution.d.ts","sourceRoot":"","sources":["../../src/routes/execution.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOlC,CAAA;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAO9B,CAAA;AAEF,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOrC,CAAA;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOtC,CAAA;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMnC,CAAA;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAO7B,CAAA"}
|