@cat-factory/contracts 0.181.0 → 0.183.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 +72 -36
- package/dist/execution.d.ts.map +1 -1
- package/dist/execution.js +26 -15
- package/dist/execution.js.map +1 -1
- package/dist/observability.d.ts +44 -16
- package/dist/observability.d.ts.map +1 -1
- package/dist/observability.js +25 -12
- package/dist/observability.js.map +1 -1
- package/dist/ralph.d.ts +32 -1
- package/dist/ralph.d.ts.map +1 -1
- package/dist/ralph.js +30 -1
- package/dist/ralph.js.map +1 -1
- package/dist/routes/agent-runs.d.ts +14 -6
- package/dist/routes/agent-runs.d.ts.map +1 -1
- package/dist/routes/bug-hunt.d.ts +14 -6
- package/dist/routes/bug-hunt.d.ts.map +1 -1
- package/dist/routes/execution.d.ts +64 -28
- package/dist/routes/execution.d.ts.map +1 -1
- package/dist/routes/human-review.d.ts +7 -3
- package/dist/routes/human-review.d.ts.map +1 -1
- package/dist/routes/human-test.d.ts +35 -15
- package/dist/routes/human-test.d.ts.map +1 -1
- package/dist/routes/visual-confirm.d.ts +21 -9
- package/dist/routes/visual-confirm.d.ts.map +1 -1
- package/dist/routes/workspaces.d.ts +14 -6
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/snapshot.d.ts +7 -3
- package/dist/snapshot.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -47,7 +47,8 @@ export declare const startExecutionContract: {
|
|
|
47
47
|
readonly metrics: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
48
48
|
readonly calls: v.NumberSchema<undefined>;
|
|
49
49
|
readonly promptTokens: v.NumberSchema<undefined>;
|
|
50
|
-
readonly
|
|
50
|
+
readonly cacheReadTokens: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
51
|
+
readonly cacheWriteTokens: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
51
52
|
readonly completionTokens: v.NumberSchema<undefined>;
|
|
52
53
|
readonly peakCompletionTokens: v.NumberSchema<undefined>;
|
|
53
54
|
readonly maxOutputTokens: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
@@ -458,6 +459,7 @@ export declare const startExecutionContract: {
|
|
|
458
459
|
readonly progressPath: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
459
460
|
readonly lastExitCode: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
460
461
|
readonly lastValidationTail: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
462
|
+
readonly noProgressStreak: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
461
463
|
readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
462
464
|
readonly attempt: v.NumberSchema<undefined>;
|
|
463
465
|
readonly at: v.NumberSchema<undefined>;
|
|
@@ -465,7 +467,9 @@ export declare const startExecutionContract: {
|
|
|
465
467
|
readonly exitCode: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
466
468
|
readonly outputTail: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
467
469
|
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
470
|
+
readonly headSha: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
468
471
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
472
|
+
readonly droppedAttempts: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
469
473
|
}, undefined>, undefined>, undefined>;
|
|
470
474
|
readonly validation: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
471
475
|
readonly passed: v.SchemaWithFallback<v.BooleanSchema<undefined>, false>;
|
|
@@ -638,11 +642,11 @@ export declare const startExecutionContract: {
|
|
|
638
642
|
readonly reducedEffectiveness: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
639
643
|
readonly obstacles: v.SchemaWithFallback<v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>, undefined>;
|
|
640
644
|
}, undefined>, undefined>;
|
|
641
|
-
readonly
|
|
645
|
+
readonly skillVersions: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
642
646
|
readonly skillId: v.StringSchema<undefined>;
|
|
643
647
|
readonly commit: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
644
648
|
readonly sha: v.StringSchema<undefined>;
|
|
645
|
-
}, undefined>, undefined>;
|
|
649
|
+
}, undefined>, undefined>, undefined>;
|
|
646
650
|
readonly jobId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
647
651
|
readonly startedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
648
652
|
readonly finishedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -1773,7 +1777,8 @@ export declare const resumeSpendContract: {
|
|
|
1773
1777
|
readonly metrics: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1774
1778
|
readonly calls: v.NumberSchema<undefined>;
|
|
1775
1779
|
readonly promptTokens: v.NumberSchema<undefined>;
|
|
1776
|
-
readonly
|
|
1780
|
+
readonly cacheReadTokens: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1781
|
+
readonly cacheWriteTokens: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1777
1782
|
readonly completionTokens: v.NumberSchema<undefined>;
|
|
1778
1783
|
readonly peakCompletionTokens: v.NumberSchema<undefined>;
|
|
1779
1784
|
readonly maxOutputTokens: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
@@ -2184,6 +2189,7 @@ export declare const resumeSpendContract: {
|
|
|
2184
2189
|
readonly progressPath: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2185
2190
|
readonly lastExitCode: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2186
2191
|
readonly lastValidationTail: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2192
|
+
readonly noProgressStreak: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2187
2193
|
readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2188
2194
|
readonly attempt: v.NumberSchema<undefined>;
|
|
2189
2195
|
readonly at: v.NumberSchema<undefined>;
|
|
@@ -2191,7 +2197,9 @@ export declare const resumeSpendContract: {
|
|
|
2191
2197
|
readonly exitCode: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2192
2198
|
readonly outputTail: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2193
2199
|
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2200
|
+
readonly headSha: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2194
2201
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
2202
|
+
readonly droppedAttempts: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2195
2203
|
}, undefined>, undefined>, undefined>;
|
|
2196
2204
|
readonly validation: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2197
2205
|
readonly passed: v.SchemaWithFallback<v.BooleanSchema<undefined>, false>;
|
|
@@ -2364,11 +2372,11 @@ export declare const resumeSpendContract: {
|
|
|
2364
2372
|
readonly reducedEffectiveness: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2365
2373
|
readonly obstacles: v.SchemaWithFallback<v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>, undefined>;
|
|
2366
2374
|
}, undefined>, undefined>;
|
|
2367
|
-
readonly
|
|
2375
|
+
readonly skillVersions: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2368
2376
|
readonly skillId: v.StringSchema<undefined>;
|
|
2369
2377
|
readonly commit: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2370
2378
|
readonly sha: v.StringSchema<undefined>;
|
|
2371
|
-
}, undefined>, undefined>;
|
|
2379
|
+
}, undefined>, undefined>, undefined>;
|
|
2372
2380
|
readonly jobId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2373
2381
|
readonly startedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2374
2382
|
readonly finishedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -2753,7 +2761,8 @@ export declare const getExecutionLlmMetricsContract: {
|
|
|
2753
2761
|
readonly toolCount: v.NumberSchema<undefined>;
|
|
2754
2762
|
readonly requestMaxTokens: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
2755
2763
|
readonly promptTokens: v.NumberSchema<undefined>;
|
|
2756
|
-
readonly
|
|
2764
|
+
readonly cacheReadTokens: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
2765
|
+
readonly cacheWriteTokens: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
2757
2766
|
readonly completionTokens: v.NumberSchema<undefined>;
|
|
2758
2767
|
readonly totalTokens: v.NumberSchema<undefined>;
|
|
2759
2768
|
readonly finishReason: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -2916,7 +2925,8 @@ export declare const exportExecutionLlmMetricsContract: {
|
|
|
2916
2925
|
readonly totals: v.ObjectSchema<{
|
|
2917
2926
|
readonly calls: v.NumberSchema<undefined>;
|
|
2918
2927
|
readonly promptTokens: v.NumberSchema<undefined>;
|
|
2919
|
-
readonly
|
|
2928
|
+
readonly cacheReadTokens: v.NumberSchema<undefined>;
|
|
2929
|
+
readonly cacheWriteTokens: v.NumberSchema<undefined>;
|
|
2920
2930
|
readonly cacheHitRate: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
2921
2931
|
readonly completionTokens: v.NumberSchema<undefined>;
|
|
2922
2932
|
readonly upstreamMs: v.NumberSchema<undefined>;
|
|
@@ -2930,7 +2940,8 @@ export declare const exportExecutionLlmMetricsContract: {
|
|
|
2930
2940
|
readonly agentKind: v.StringSchema<undefined>;
|
|
2931
2941
|
readonly calls: v.NumberSchema<undefined>;
|
|
2932
2942
|
readonly promptTokens: v.NumberSchema<undefined>;
|
|
2933
|
-
readonly
|
|
2943
|
+
readonly cacheReadTokens: v.NumberSchema<undefined>;
|
|
2944
|
+
readonly cacheWriteTokens: v.NumberSchema<undefined>;
|
|
2934
2945
|
readonly cacheHitRate: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
2935
2946
|
readonly completionTokens: v.NumberSchema<undefined>;
|
|
2936
2947
|
readonly peakCompletionTokens: v.NumberSchema<undefined>;
|
|
@@ -2956,7 +2967,8 @@ export declare const exportExecutionLlmMetricsContract: {
|
|
|
2956
2967
|
readonly toolCount: v.NumberSchema<undefined>;
|
|
2957
2968
|
readonly requestMaxTokens: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
2958
2969
|
readonly promptTokens: v.NumberSchema<undefined>;
|
|
2959
|
-
readonly
|
|
2970
|
+
readonly cacheReadTokens: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
2971
|
+
readonly cacheWriteTokens: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
2960
2972
|
readonly completionTokens: v.NumberSchema<undefined>;
|
|
2961
2973
|
readonly totalTokens: v.NumberSchema<undefined>;
|
|
2962
2974
|
readonly finishReason: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -3024,7 +3036,8 @@ export declare const resolveDecisionContract: {
|
|
|
3024
3036
|
readonly metrics: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3025
3037
|
readonly calls: v.NumberSchema<undefined>;
|
|
3026
3038
|
readonly promptTokens: v.NumberSchema<undefined>;
|
|
3027
|
-
readonly
|
|
3039
|
+
readonly cacheReadTokens: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3040
|
+
readonly cacheWriteTokens: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3028
3041
|
readonly completionTokens: v.NumberSchema<undefined>;
|
|
3029
3042
|
readonly peakCompletionTokens: v.NumberSchema<undefined>;
|
|
3030
3043
|
readonly maxOutputTokens: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
@@ -3435,6 +3448,7 @@ export declare const resolveDecisionContract: {
|
|
|
3435
3448
|
readonly progressPath: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3436
3449
|
readonly lastExitCode: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
3437
3450
|
readonly lastValidationTail: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3451
|
+
readonly noProgressStreak: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
3438
3452
|
readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3439
3453
|
readonly attempt: v.NumberSchema<undefined>;
|
|
3440
3454
|
readonly at: v.NumberSchema<undefined>;
|
|
@@ -3442,7 +3456,9 @@ export declare const resolveDecisionContract: {
|
|
|
3442
3456
|
readonly exitCode: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
3443
3457
|
readonly outputTail: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3444
3458
|
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3459
|
+
readonly headSha: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3445
3460
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
3461
|
+
readonly droppedAttempts: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
3446
3462
|
}, undefined>, undefined>, undefined>;
|
|
3447
3463
|
readonly validation: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3448
3464
|
readonly passed: v.SchemaWithFallback<v.BooleanSchema<undefined>, false>;
|
|
@@ -3615,11 +3631,11 @@ export declare const resolveDecisionContract: {
|
|
|
3615
3631
|
readonly reducedEffectiveness: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3616
3632
|
readonly obstacles: v.SchemaWithFallback<v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>, undefined>;
|
|
3617
3633
|
}, undefined>, undefined>;
|
|
3618
|
-
readonly
|
|
3634
|
+
readonly skillVersions: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3619
3635
|
readonly skillId: v.StringSchema<undefined>;
|
|
3620
3636
|
readonly commit: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3621
3637
|
readonly sha: v.StringSchema<undefined>;
|
|
3622
|
-
}, undefined>, undefined>;
|
|
3638
|
+
}, undefined>, undefined>, undefined>;
|
|
3623
3639
|
readonly jobId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3624
3640
|
readonly startedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
3625
3641
|
readonly finishedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -3965,7 +3981,8 @@ export declare const approveStepContract: {
|
|
|
3965
3981
|
readonly metrics: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3966
3982
|
readonly calls: v.NumberSchema<undefined>;
|
|
3967
3983
|
readonly promptTokens: v.NumberSchema<undefined>;
|
|
3968
|
-
readonly
|
|
3984
|
+
readonly cacheReadTokens: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3985
|
+
readonly cacheWriteTokens: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3969
3986
|
readonly completionTokens: v.NumberSchema<undefined>;
|
|
3970
3987
|
readonly peakCompletionTokens: v.NumberSchema<undefined>;
|
|
3971
3988
|
readonly maxOutputTokens: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
@@ -4376,6 +4393,7 @@ export declare const approveStepContract: {
|
|
|
4376
4393
|
readonly progressPath: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4377
4394
|
readonly lastExitCode: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
4378
4395
|
readonly lastValidationTail: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4396
|
+
readonly noProgressStreak: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
4379
4397
|
readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4380
4398
|
readonly attempt: v.NumberSchema<undefined>;
|
|
4381
4399
|
readonly at: v.NumberSchema<undefined>;
|
|
@@ -4383,7 +4401,9 @@ export declare const approveStepContract: {
|
|
|
4383
4401
|
readonly exitCode: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
4384
4402
|
readonly outputTail: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4385
4403
|
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4404
|
+
readonly headSha: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4386
4405
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
4406
|
+
readonly droppedAttempts: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
4387
4407
|
}, undefined>, undefined>, undefined>;
|
|
4388
4408
|
readonly validation: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
4389
4409
|
readonly passed: v.SchemaWithFallback<v.BooleanSchema<undefined>, false>;
|
|
@@ -4556,11 +4576,11 @@ export declare const approveStepContract: {
|
|
|
4556
4576
|
readonly reducedEffectiveness: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4557
4577
|
readonly obstacles: v.SchemaWithFallback<v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>, undefined>;
|
|
4558
4578
|
}, undefined>, undefined>;
|
|
4559
|
-
readonly
|
|
4579
|
+
readonly skillVersions: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4560
4580
|
readonly skillId: v.StringSchema<undefined>;
|
|
4561
4581
|
readonly commit: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
4562
4582
|
readonly sha: v.StringSchema<undefined>;
|
|
4563
|
-
}, undefined>, undefined>;
|
|
4583
|
+
}, undefined>, undefined>, undefined>;
|
|
4564
4584
|
readonly jobId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4565
4585
|
readonly startedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
4566
4586
|
readonly finishedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -4920,7 +4940,8 @@ export declare const requestStepChangesContract: {
|
|
|
4920
4940
|
readonly metrics: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
4921
4941
|
readonly calls: v.NumberSchema<undefined>;
|
|
4922
4942
|
readonly promptTokens: v.NumberSchema<undefined>;
|
|
4923
|
-
readonly
|
|
4943
|
+
readonly cacheReadTokens: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
4944
|
+
readonly cacheWriteTokens: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
4924
4945
|
readonly completionTokens: v.NumberSchema<undefined>;
|
|
4925
4946
|
readonly peakCompletionTokens: v.NumberSchema<undefined>;
|
|
4926
4947
|
readonly maxOutputTokens: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
@@ -5331,6 +5352,7 @@ export declare const requestStepChangesContract: {
|
|
|
5331
5352
|
readonly progressPath: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
5332
5353
|
readonly lastExitCode: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
5333
5354
|
readonly lastValidationTail: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
5355
|
+
readonly noProgressStreak: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
5334
5356
|
readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
5335
5357
|
readonly attempt: v.NumberSchema<undefined>;
|
|
5336
5358
|
readonly at: v.NumberSchema<undefined>;
|
|
@@ -5338,7 +5360,9 @@ export declare const requestStepChangesContract: {
|
|
|
5338
5360
|
readonly exitCode: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
5339
5361
|
readonly outputTail: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
5340
5362
|
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
5363
|
+
readonly headSha: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
5341
5364
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
5365
|
+
readonly droppedAttempts: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
5342
5366
|
}, undefined>, undefined>, undefined>;
|
|
5343
5367
|
readonly validation: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
5344
5368
|
readonly passed: v.SchemaWithFallback<v.BooleanSchema<undefined>, false>;
|
|
@@ -5511,11 +5535,11 @@ export declare const requestStepChangesContract: {
|
|
|
5511
5535
|
readonly reducedEffectiveness: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
5512
5536
|
readonly obstacles: v.SchemaWithFallback<v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>, undefined>;
|
|
5513
5537
|
}, undefined>, undefined>;
|
|
5514
|
-
readonly
|
|
5538
|
+
readonly skillVersions: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
5515
5539
|
readonly skillId: v.StringSchema<undefined>;
|
|
5516
5540
|
readonly commit: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5517
5541
|
readonly sha: v.StringSchema<undefined>;
|
|
5518
|
-
}, undefined>, undefined>;
|
|
5542
|
+
}, undefined>, undefined>, undefined>;
|
|
5519
5543
|
readonly jobId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5520
5544
|
readonly startedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
5521
5545
|
readonly finishedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -5861,7 +5885,8 @@ export declare const resolveStepExceededContract: {
|
|
|
5861
5885
|
readonly metrics: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
5862
5886
|
readonly calls: v.NumberSchema<undefined>;
|
|
5863
5887
|
readonly promptTokens: v.NumberSchema<undefined>;
|
|
5864
|
-
readonly
|
|
5888
|
+
readonly cacheReadTokens: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
5889
|
+
readonly cacheWriteTokens: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
5865
5890
|
readonly completionTokens: v.NumberSchema<undefined>;
|
|
5866
5891
|
readonly peakCompletionTokens: v.NumberSchema<undefined>;
|
|
5867
5892
|
readonly maxOutputTokens: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
@@ -6272,6 +6297,7 @@ export declare const resolveStepExceededContract: {
|
|
|
6272
6297
|
readonly progressPath: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
6273
6298
|
readonly lastExitCode: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
6274
6299
|
readonly lastValidationTail: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
6300
|
+
readonly noProgressStreak: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
6275
6301
|
readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
6276
6302
|
readonly attempt: v.NumberSchema<undefined>;
|
|
6277
6303
|
readonly at: v.NumberSchema<undefined>;
|
|
@@ -6279,7 +6305,9 @@ export declare const resolveStepExceededContract: {
|
|
|
6279
6305
|
readonly exitCode: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
6280
6306
|
readonly outputTail: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
6281
6307
|
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
6308
|
+
readonly headSha: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
6282
6309
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
6310
|
+
readonly droppedAttempts: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
6283
6311
|
}, undefined>, undefined>, undefined>;
|
|
6284
6312
|
readonly validation: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
6285
6313
|
readonly passed: v.SchemaWithFallback<v.BooleanSchema<undefined>, false>;
|
|
@@ -6452,11 +6480,11 @@ export declare const resolveStepExceededContract: {
|
|
|
6452
6480
|
readonly reducedEffectiveness: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
6453
6481
|
readonly obstacles: v.SchemaWithFallback<v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>, undefined>;
|
|
6454
6482
|
}, undefined>, undefined>;
|
|
6455
|
-
readonly
|
|
6483
|
+
readonly skillVersions: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
6456
6484
|
readonly skillId: v.StringSchema<undefined>;
|
|
6457
6485
|
readonly commit: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
6458
6486
|
readonly sha: v.StringSchema<undefined>;
|
|
6459
|
-
}, undefined>, undefined>;
|
|
6487
|
+
}, undefined>, undefined>, undefined>;
|
|
6460
6488
|
readonly jobId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
6461
6489
|
readonly startedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
6462
6490
|
readonly finishedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -6800,7 +6828,8 @@ export declare const restartExecutionContract: {
|
|
|
6800
6828
|
readonly metrics: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
6801
6829
|
readonly calls: v.NumberSchema<undefined>;
|
|
6802
6830
|
readonly promptTokens: v.NumberSchema<undefined>;
|
|
6803
|
-
readonly
|
|
6831
|
+
readonly cacheReadTokens: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
6832
|
+
readonly cacheWriteTokens: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
6804
6833
|
readonly completionTokens: v.NumberSchema<undefined>;
|
|
6805
6834
|
readonly peakCompletionTokens: v.NumberSchema<undefined>;
|
|
6806
6835
|
readonly maxOutputTokens: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
@@ -7211,6 +7240,7 @@ export declare const restartExecutionContract: {
|
|
|
7211
7240
|
readonly progressPath: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
7212
7241
|
readonly lastExitCode: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
7213
7242
|
readonly lastValidationTail: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
7243
|
+
readonly noProgressStreak: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
7214
7244
|
readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
7215
7245
|
readonly attempt: v.NumberSchema<undefined>;
|
|
7216
7246
|
readonly at: v.NumberSchema<undefined>;
|
|
@@ -7218,7 +7248,9 @@ export declare const restartExecutionContract: {
|
|
|
7218
7248
|
readonly exitCode: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
7219
7249
|
readonly outputTail: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
7220
7250
|
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
7251
|
+
readonly headSha: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
7221
7252
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
7253
|
+
readonly droppedAttempts: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
7222
7254
|
}, undefined>, undefined>, undefined>;
|
|
7223
7255
|
readonly validation: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
7224
7256
|
readonly passed: v.SchemaWithFallback<v.BooleanSchema<undefined>, false>;
|
|
@@ -7391,11 +7423,11 @@ export declare const restartExecutionContract: {
|
|
|
7391
7423
|
readonly reducedEffectiveness: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
7392
7424
|
readonly obstacles: v.SchemaWithFallback<v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>, undefined>;
|
|
7393
7425
|
}, undefined>, undefined>;
|
|
7394
|
-
readonly
|
|
7426
|
+
readonly skillVersions: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
7395
7427
|
readonly skillId: v.StringSchema<undefined>;
|
|
7396
7428
|
readonly commit: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7397
7429
|
readonly sha: v.StringSchema<undefined>;
|
|
7398
|
-
}, undefined>, undefined>;
|
|
7430
|
+
}, undefined>, undefined>, undefined>;
|
|
7399
7431
|
readonly jobId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
7400
7432
|
readonly startedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
7401
7433
|
readonly finishedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -7741,7 +7773,8 @@ export declare const rejectStepContract: {
|
|
|
7741
7773
|
readonly metrics: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
7742
7774
|
readonly calls: v.NumberSchema<undefined>;
|
|
7743
7775
|
readonly promptTokens: v.NumberSchema<undefined>;
|
|
7744
|
-
readonly
|
|
7776
|
+
readonly cacheReadTokens: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
7777
|
+
readonly cacheWriteTokens: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
7745
7778
|
readonly completionTokens: v.NumberSchema<undefined>;
|
|
7746
7779
|
readonly peakCompletionTokens: v.NumberSchema<undefined>;
|
|
7747
7780
|
readonly maxOutputTokens: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
@@ -8152,6 +8185,7 @@ export declare const rejectStepContract: {
|
|
|
8152
8185
|
readonly progressPath: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
8153
8186
|
readonly lastExitCode: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
8154
8187
|
readonly lastValidationTail: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
8188
|
+
readonly noProgressStreak: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
8155
8189
|
readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
8156
8190
|
readonly attempt: v.NumberSchema<undefined>;
|
|
8157
8191
|
readonly at: v.NumberSchema<undefined>;
|
|
@@ -8159,7 +8193,9 @@ export declare const rejectStepContract: {
|
|
|
8159
8193
|
readonly exitCode: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
8160
8194
|
readonly outputTail: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
8161
8195
|
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
8196
|
+
readonly headSha: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
8162
8197
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
8198
|
+
readonly droppedAttempts: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
8163
8199
|
}, undefined>, undefined>, undefined>;
|
|
8164
8200
|
readonly validation: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
8165
8201
|
readonly passed: v.SchemaWithFallback<v.BooleanSchema<undefined>, false>;
|
|
@@ -8332,11 +8368,11 @@ export declare const rejectStepContract: {
|
|
|
8332
8368
|
readonly reducedEffectiveness: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
8333
8369
|
readonly obstacles: v.SchemaWithFallback<v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>, undefined>;
|
|
8334
8370
|
}, undefined>, undefined>;
|
|
8335
|
-
readonly
|
|
8371
|
+
readonly skillVersions: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
8336
8372
|
readonly skillId: v.StringSchema<undefined>;
|
|
8337
8373
|
readonly commit: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
8338
8374
|
readonly sha: v.StringSchema<undefined>;
|
|
8339
|
-
}, undefined>, undefined>;
|
|
8375
|
+
}, undefined>, undefined>, undefined>;
|
|
8340
8376
|
readonly jobId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
8341
8377
|
readonly startedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
8342
8378
|
readonly finishedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, 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;AAmD5B,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"}
|
|
@@ -45,7 +45,8 @@ export declare const requestHumanReviewFixContract: {
|
|
|
45
45
|
readonly metrics: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
46
46
|
readonly calls: import("valibot").NumberSchema<undefined>;
|
|
47
47
|
readonly promptTokens: import("valibot").NumberSchema<undefined>;
|
|
48
|
-
readonly
|
|
48
|
+
readonly cacheReadTokens: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
49
|
+
readonly cacheWriteTokens: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
49
50
|
readonly completionTokens: import("valibot").NumberSchema<undefined>;
|
|
50
51
|
readonly peakCompletionTokens: import("valibot").NumberSchema<undefined>;
|
|
51
52
|
readonly maxOutputTokens: import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
@@ -456,6 +457,7 @@ export declare const requestHumanReviewFixContract: {
|
|
|
456
457
|
readonly progressPath: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
457
458
|
readonly lastExitCode: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>, undefined>;
|
|
458
459
|
readonly lastValidationTail: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
460
|
+
readonly noProgressStreak: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>, undefined>;
|
|
459
461
|
readonly attemptLog: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
460
462
|
readonly attempt: import("valibot").NumberSchema<undefined>;
|
|
461
463
|
readonly at: import("valibot").NumberSchema<undefined>;
|
|
@@ -463,7 +465,9 @@ export declare const requestHumanReviewFixContract: {
|
|
|
463
465
|
readonly exitCode: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>, undefined>;
|
|
464
466
|
readonly outputTail: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
465
467
|
readonly summary: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
468
|
+
readonly headSha: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
466
469
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
470
|
+
readonly droppedAttempts: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>, undefined>;
|
|
467
471
|
}, undefined>, undefined>, undefined>;
|
|
468
472
|
readonly validation: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
469
473
|
readonly passed: import("valibot").SchemaWithFallback<import("valibot").BooleanSchema<undefined>, false>;
|
|
@@ -636,11 +640,11 @@ export declare const requestHumanReviewFixContract: {
|
|
|
636
640
|
readonly reducedEffectiveness: import("valibot").SchemaWithFallback<import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
637
641
|
readonly obstacles: import("valibot").SchemaWithFallback<import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>, undefined>;
|
|
638
642
|
}, undefined>, undefined>;
|
|
639
|
-
readonly
|
|
643
|
+
readonly skillVersions: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
640
644
|
readonly skillId: import("valibot").StringSchema<undefined>;
|
|
641
645
|
readonly commit: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
642
646
|
readonly sha: import("valibot").StringSchema<undefined>;
|
|
643
|
-
}, undefined>, undefined>;
|
|
647
|
+
}, undefined>, undefined>, undefined>;
|
|
644
648
|
readonly jobId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
645
649
|
readonly startedAt: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>, undefined>;
|
|
646
650
|
readonly finishedAt: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"human-review.d.ts","sourceRoot":"","sources":["../../src/routes/human-review.ts"],"names":[],"mappings":"AAcA,eAAO,MAAM,6BAA6B
|
|
1
|
+
{"version":3,"file":"human-review.d.ts","sourceRoot":"","sources":["../../src/routes/human-review.ts"],"names":[],"mappings":"AAcA,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMxC,CAAA"}
|