@cat-factory/contracts 0.202.0 → 0.203.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/agent-presentation.d.ts +16 -0
- package/dist/agent-presentation.d.ts.map +1 -1
- package/dist/agent-presentation.js +15 -0
- package/dist/agent-presentation.js.map +1 -1
- package/dist/entities.d.ts +24 -0
- package/dist/entities.d.ts.map +1 -1
- package/dist/entities.js +12 -0
- package/dist/entities.js.map +1 -1
- package/dist/errors.d.ts +21 -0
- package/dist/errors.d.ts.map +1 -1
- package/dist/errors.js +28 -0
- package/dist/errors.js.map +1 -1
- package/dist/execution.d.ts +46 -0
- package/dist/execution.d.ts.map +1 -1
- package/dist/execution.js +22 -0
- package/dist/execution.js.map +1 -1
- package/dist/notification-webhooks.d.ts +67 -0
- package/dist/notification-webhooks.d.ts.map +1 -1
- package/dist/notification-webhooks.js +65 -0
- package/dist/notification-webhooks.js.map +1 -1
- package/dist/public-api.d.ts +103 -0
- package/dist/public-api.d.ts.map +1 -1
- package/dist/public-api.js +70 -0
- package/dist/public-api.js.map +1 -1
- package/dist/requests.d.ts +2 -0
- package/dist/requests.d.ts.map +1 -1
- package/dist/routes/agent-runs.d.ts +12 -0
- package/dist/routes/agent-runs.d.ts.map +1 -1
- package/dist/routes/bug-hunt.d.ts +12 -0
- package/dist/routes/bug-hunt.d.ts.map +1 -1
- package/dist/routes/execution.d.ts +48 -0
- package/dist/routes/execution.d.ts.map +1 -1
- package/dist/routes/human-review.d.ts +6 -0
- package/dist/routes/human-review.d.ts.map +1 -1
- package/dist/routes/human-test.d.ts +30 -0
- package/dist/routes/human-test.d.ts.map +1 -1
- package/dist/routes/notification-webhooks.d.ts +3 -0
- package/dist/routes/notification-webhooks.d.ts.map +1 -1
- package/dist/routes/pipelines.d.ts +8 -0
- package/dist/routes/pipelines.d.ts.map +1 -1
- package/dist/routes/public-api.d.ts +54 -0
- package/dist/routes/public-api.d.ts.map +1 -1
- package/dist/routes/public-api.js +12 -1
- package/dist/routes/public-api.js.map +1 -1
- package/dist/routes/visual-confirm.d.ts +18 -0
- package/dist/routes/visual-confirm.d.ts.map +1 -1
- package/dist/routes/workspaces.d.ts +26 -0
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/snapshot.d.ts +20 -0
- package/dist/snapshot.d.ts.map +1 -1
- package/dist/snapshot.js +9 -1
- package/dist/snapshot.js.map +1 -1
- package/package.json +1 -1
|
@@ -643,6 +643,7 @@ export declare const startExecutionContract: {
|
|
|
643
643
|
readonly autoRecommend: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
644
644
|
readonly skillId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
645
645
|
readonly maxOutputTokens: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 256, undefined>, v.MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
646
|
+
readonly agentVariantId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
646
647
|
}, undefined>, undefined>, undefined>;
|
|
647
648
|
readonly skipped: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
648
649
|
readonly noBusinessSpecs: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
@@ -673,6 +674,11 @@ export declare const startExecutionContract: {
|
|
|
673
674
|
readonly sha: v.StringSchema<undefined>;
|
|
674
675
|
}, undefined>, undefined>, undefined>;
|
|
675
676
|
readonly promptRevision: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
677
|
+
readonly promptVariant: v.OptionalSchema<v.ObjectSchema<{
|
|
678
|
+
readonly id: v.StringSchema<undefined>;
|
|
679
|
+
readonly applied: v.PicklistSchema<["full", "addition-only", "superseded", "withdrawn"], undefined>;
|
|
680
|
+
readonly fingerprint: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
681
|
+
}, undefined>, undefined>;
|
|
676
682
|
readonly jobId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
677
683
|
readonly startedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
678
684
|
readonly finishedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -2477,6 +2483,7 @@ export declare const resumeSpendContract: {
|
|
|
2477
2483
|
readonly autoRecommend: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2478
2484
|
readonly skillId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2479
2485
|
readonly maxOutputTokens: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 256, undefined>, v.MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
2486
|
+
readonly agentVariantId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2480
2487
|
}, undefined>, undefined>, undefined>;
|
|
2481
2488
|
readonly skipped: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2482
2489
|
readonly noBusinessSpecs: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
@@ -2507,6 +2514,11 @@ export declare const resumeSpendContract: {
|
|
|
2507
2514
|
readonly sha: v.StringSchema<undefined>;
|
|
2508
2515
|
}, undefined>, undefined>, undefined>;
|
|
2509
2516
|
readonly promptRevision: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2517
|
+
readonly promptVariant: v.OptionalSchema<v.ObjectSchema<{
|
|
2518
|
+
readonly id: v.StringSchema<undefined>;
|
|
2519
|
+
readonly applied: v.PicklistSchema<["full", "addition-only", "superseded", "withdrawn"], undefined>;
|
|
2520
|
+
readonly fingerprint: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2521
|
+
}, undefined>, undefined>;
|
|
2510
2522
|
readonly jobId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2511
2523
|
readonly startedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2512
2524
|
readonly finishedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -3792,6 +3804,7 @@ export declare const resolveDecisionContract: {
|
|
|
3792
3804
|
readonly autoRecommend: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
3793
3805
|
readonly skillId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3794
3806
|
readonly maxOutputTokens: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 256, undefined>, v.MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
3807
|
+
readonly agentVariantId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3795
3808
|
}, undefined>, undefined>, undefined>;
|
|
3796
3809
|
readonly skipped: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
3797
3810
|
readonly noBusinessSpecs: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
@@ -3822,6 +3835,11 @@ export declare const resolveDecisionContract: {
|
|
|
3822
3835
|
readonly sha: v.StringSchema<undefined>;
|
|
3823
3836
|
}, undefined>, undefined>, undefined>;
|
|
3824
3837
|
readonly promptRevision: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3838
|
+
readonly promptVariant: v.OptionalSchema<v.ObjectSchema<{
|
|
3839
|
+
readonly id: v.StringSchema<undefined>;
|
|
3840
|
+
readonly applied: v.PicklistSchema<["full", "addition-only", "superseded", "withdrawn"], undefined>;
|
|
3841
|
+
readonly fingerprint: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3842
|
+
}, undefined>, undefined>;
|
|
3825
3843
|
readonly jobId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3826
3844
|
readonly startedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
3827
3845
|
readonly finishedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -4789,6 +4807,7 @@ export declare const approveStepContract: {
|
|
|
4789
4807
|
readonly autoRecommend: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
4790
4808
|
readonly skillId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4791
4809
|
readonly maxOutputTokens: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 256, undefined>, v.MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
4810
|
+
readonly agentVariantId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4792
4811
|
}, undefined>, undefined>, undefined>;
|
|
4793
4812
|
readonly skipped: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
4794
4813
|
readonly noBusinessSpecs: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
@@ -4819,6 +4838,11 @@ export declare const approveStepContract: {
|
|
|
4819
4838
|
readonly sha: v.StringSchema<undefined>;
|
|
4820
4839
|
}, undefined>, undefined>, undefined>;
|
|
4821
4840
|
readonly promptRevision: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
4841
|
+
readonly promptVariant: v.OptionalSchema<v.ObjectSchema<{
|
|
4842
|
+
readonly id: v.StringSchema<undefined>;
|
|
4843
|
+
readonly applied: v.PicklistSchema<["full", "addition-only", "superseded", "withdrawn"], undefined>;
|
|
4844
|
+
readonly fingerprint: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4845
|
+
}, undefined>, undefined>;
|
|
4822
4846
|
readonly jobId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4823
4847
|
readonly startedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
4824
4848
|
readonly finishedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -5800,6 +5824,7 @@ export declare const requestStepChangesContract: {
|
|
|
5800
5824
|
readonly autoRecommend: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
5801
5825
|
readonly skillId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5802
5826
|
readonly maxOutputTokens: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 256, undefined>, v.MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
5827
|
+
readonly agentVariantId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5803
5828
|
}, undefined>, undefined>, undefined>;
|
|
5804
5829
|
readonly skipped: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
5805
5830
|
readonly noBusinessSpecs: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
@@ -5830,6 +5855,11 @@ export declare const requestStepChangesContract: {
|
|
|
5830
5855
|
readonly sha: v.StringSchema<undefined>;
|
|
5831
5856
|
}, undefined>, undefined>, undefined>;
|
|
5832
5857
|
readonly promptRevision: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
5858
|
+
readonly promptVariant: v.OptionalSchema<v.ObjectSchema<{
|
|
5859
|
+
readonly id: v.StringSchema<undefined>;
|
|
5860
|
+
readonly applied: v.PicklistSchema<["full", "addition-only", "superseded", "withdrawn"], undefined>;
|
|
5861
|
+
readonly fingerprint: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5862
|
+
}, undefined>, undefined>;
|
|
5833
5863
|
readonly jobId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5834
5864
|
readonly startedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
5835
5865
|
readonly finishedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -6797,6 +6827,7 @@ export declare const resolveStepExceededContract: {
|
|
|
6797
6827
|
readonly autoRecommend: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
6798
6828
|
readonly skillId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
6799
6829
|
readonly maxOutputTokens: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 256, undefined>, v.MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
6830
|
+
readonly agentVariantId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
6800
6831
|
}, undefined>, undefined>, undefined>;
|
|
6801
6832
|
readonly skipped: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
6802
6833
|
readonly noBusinessSpecs: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
@@ -6827,6 +6858,11 @@ export declare const resolveStepExceededContract: {
|
|
|
6827
6858
|
readonly sha: v.StringSchema<undefined>;
|
|
6828
6859
|
}, undefined>, undefined>, undefined>;
|
|
6829
6860
|
readonly promptRevision: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
6861
|
+
readonly promptVariant: v.OptionalSchema<v.ObjectSchema<{
|
|
6862
|
+
readonly id: v.StringSchema<undefined>;
|
|
6863
|
+
readonly applied: v.PicklistSchema<["full", "addition-only", "superseded", "withdrawn"], undefined>;
|
|
6864
|
+
readonly fingerprint: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
6865
|
+
}, undefined>, undefined>;
|
|
6830
6866
|
readonly jobId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
6831
6867
|
readonly startedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
6832
6868
|
readonly finishedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -7792,6 +7828,7 @@ export declare const restartExecutionContract: {
|
|
|
7792
7828
|
readonly autoRecommend: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
7793
7829
|
readonly skillId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
7794
7830
|
readonly maxOutputTokens: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 256, undefined>, v.MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
7831
|
+
readonly agentVariantId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
7795
7832
|
}, undefined>, undefined>, undefined>;
|
|
7796
7833
|
readonly skipped: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
7797
7834
|
readonly noBusinessSpecs: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
@@ -7822,6 +7859,11 @@ export declare const restartExecutionContract: {
|
|
|
7822
7859
|
readonly sha: v.StringSchema<undefined>;
|
|
7823
7860
|
}, undefined>, undefined>, undefined>;
|
|
7824
7861
|
readonly promptRevision: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
7862
|
+
readonly promptVariant: v.OptionalSchema<v.ObjectSchema<{
|
|
7863
|
+
readonly id: v.StringSchema<undefined>;
|
|
7864
|
+
readonly applied: v.PicklistSchema<["full", "addition-only", "superseded", "withdrawn"], undefined>;
|
|
7865
|
+
readonly fingerprint: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
7866
|
+
}, undefined>, undefined>;
|
|
7825
7867
|
readonly jobId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
7826
7868
|
readonly startedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
7827
7869
|
readonly finishedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -8789,6 +8831,7 @@ export declare const rejectStepContract: {
|
|
|
8789
8831
|
readonly autoRecommend: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
8790
8832
|
readonly skillId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
8791
8833
|
readonly maxOutputTokens: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 256, undefined>, v.MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
8834
|
+
readonly agentVariantId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
8792
8835
|
}, undefined>, undefined>, undefined>;
|
|
8793
8836
|
readonly skipped: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
8794
8837
|
readonly noBusinessSpecs: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
@@ -8819,6 +8862,11 @@ export declare const rejectStepContract: {
|
|
|
8819
8862
|
readonly sha: v.StringSchema<undefined>;
|
|
8820
8863
|
}, undefined>, undefined>, undefined>;
|
|
8821
8864
|
readonly promptRevision: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
8865
|
+
readonly promptVariant: v.OptionalSchema<v.ObjectSchema<{
|
|
8866
|
+
readonly id: v.StringSchema<undefined>;
|
|
8867
|
+
readonly applied: v.PicklistSchema<["full", "addition-only", "superseded", "withdrawn"], undefined>;
|
|
8868
|
+
readonly fingerprint: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
8869
|
+
}, undefined>, undefined>;
|
|
8822
8870
|
readonly jobId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
8823
8871
|
readonly startedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
8824
8872
|
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"}
|
|
@@ -641,6 +641,7 @@ export declare const requestHumanReviewFixContract: {
|
|
|
641
641
|
readonly autoRecommend: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
642
642
|
readonly skillId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
643
643
|
readonly maxOutputTokens: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 256, undefined>, import("valibot").MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
644
|
+
readonly agentVariantId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
644
645
|
}, undefined>, undefined>, undefined>;
|
|
645
646
|
readonly skipped: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
646
647
|
readonly noBusinessSpecs: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
@@ -671,6 +672,11 @@ export declare const requestHumanReviewFixContract: {
|
|
|
671
672
|
readonly sha: import("valibot").StringSchema<undefined>;
|
|
672
673
|
}, undefined>, undefined>, undefined>;
|
|
673
674
|
readonly promptRevision: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
675
|
+
readonly promptVariant: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
676
|
+
readonly id: import("valibot").StringSchema<undefined>;
|
|
677
|
+
readonly applied: import("valibot").PicklistSchema<["full", "addition-only", "superseded", "withdrawn"], undefined>;
|
|
678
|
+
readonly fingerprint: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
679
|
+
}, undefined>, undefined>;
|
|
674
680
|
readonly jobId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
675
681
|
readonly startedAt: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>, undefined>;
|
|
676
682
|
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"}
|
|
@@ -640,6 +640,7 @@ export declare const confirmHumanTestContract: {
|
|
|
640
640
|
readonly autoRecommend: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
641
641
|
readonly skillId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
642
642
|
readonly maxOutputTokens: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 256, undefined>, import("valibot").MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
643
|
+
readonly agentVariantId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
643
644
|
}, undefined>, undefined>, undefined>;
|
|
644
645
|
readonly skipped: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
645
646
|
readonly noBusinessSpecs: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
@@ -670,6 +671,11 @@ export declare const confirmHumanTestContract: {
|
|
|
670
671
|
readonly sha: import("valibot").StringSchema<undefined>;
|
|
671
672
|
}, undefined>, undefined>, undefined>;
|
|
672
673
|
readonly promptRevision: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
674
|
+
readonly promptVariant: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
675
|
+
readonly id: import("valibot").StringSchema<undefined>;
|
|
676
|
+
readonly applied: import("valibot").PicklistSchema<["full", "addition-only", "superseded", "withdrawn"], undefined>;
|
|
677
|
+
readonly fingerprint: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
678
|
+
}, undefined>, undefined>;
|
|
673
679
|
readonly jobId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
674
680
|
readonly startedAt: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>, undefined>;
|
|
675
681
|
readonly finishedAt: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -1635,6 +1641,7 @@ export declare const requestHumanTestFixContract: {
|
|
|
1635
1641
|
readonly autoRecommend: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1636
1642
|
readonly skillId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1637
1643
|
readonly maxOutputTokens: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 256, undefined>, import("valibot").MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
1644
|
+
readonly agentVariantId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1638
1645
|
}, undefined>, undefined>, undefined>;
|
|
1639
1646
|
readonly skipped: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1640
1647
|
readonly noBusinessSpecs: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
@@ -1665,6 +1672,11 @@ export declare const requestHumanTestFixContract: {
|
|
|
1665
1672
|
readonly sha: import("valibot").StringSchema<undefined>;
|
|
1666
1673
|
}, undefined>, undefined>, undefined>;
|
|
1667
1674
|
readonly promptRevision: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
1675
|
+
readonly promptVariant: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
1676
|
+
readonly id: import("valibot").StringSchema<undefined>;
|
|
1677
|
+
readonly applied: import("valibot").PicklistSchema<["full", "addition-only", "superseded", "withdrawn"], undefined>;
|
|
1678
|
+
readonly fingerprint: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1679
|
+
}, undefined>, undefined>;
|
|
1668
1680
|
readonly jobId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1669
1681
|
readonly startedAt: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>, undefined>;
|
|
1670
1682
|
readonly finishedAt: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -2628,6 +2640,7 @@ export declare const pullMainHumanTestContract: {
|
|
|
2628
2640
|
readonly autoRecommend: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
2629
2641
|
readonly skillId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
2630
2642
|
readonly maxOutputTokens: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 256, undefined>, import("valibot").MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
2643
|
+
readonly agentVariantId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
2631
2644
|
}, undefined>, undefined>, undefined>;
|
|
2632
2645
|
readonly skipped: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
2633
2646
|
readonly noBusinessSpecs: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
@@ -2658,6 +2671,11 @@ export declare const pullMainHumanTestContract: {
|
|
|
2658
2671
|
readonly sha: import("valibot").StringSchema<undefined>;
|
|
2659
2672
|
}, undefined>, undefined>, undefined>;
|
|
2660
2673
|
readonly promptRevision: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
2674
|
+
readonly promptVariant: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
2675
|
+
readonly id: import("valibot").StringSchema<undefined>;
|
|
2676
|
+
readonly applied: import("valibot").PicklistSchema<["full", "addition-only", "superseded", "withdrawn"], undefined>;
|
|
2677
|
+
readonly fingerprint: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
2678
|
+
}, undefined>, undefined>;
|
|
2661
2679
|
readonly jobId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
2662
2680
|
readonly startedAt: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>, undefined>;
|
|
2663
2681
|
readonly finishedAt: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -3621,6 +3639,7 @@ export declare const recreateHumanTestEnvContract: {
|
|
|
3621
3639
|
readonly autoRecommend: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
3622
3640
|
readonly skillId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
3623
3641
|
readonly maxOutputTokens: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 256, undefined>, import("valibot").MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
3642
|
+
readonly agentVariantId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
3624
3643
|
}, undefined>, undefined>, undefined>;
|
|
3625
3644
|
readonly skipped: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
3626
3645
|
readonly noBusinessSpecs: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
@@ -3651,6 +3670,11 @@ export declare const recreateHumanTestEnvContract: {
|
|
|
3651
3670
|
readonly sha: import("valibot").StringSchema<undefined>;
|
|
3652
3671
|
}, undefined>, undefined>, undefined>;
|
|
3653
3672
|
readonly promptRevision: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
3673
|
+
readonly promptVariant: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
3674
|
+
readonly id: import("valibot").StringSchema<undefined>;
|
|
3675
|
+
readonly applied: import("valibot").PicklistSchema<["full", "addition-only", "superseded", "withdrawn"], undefined>;
|
|
3676
|
+
readonly fingerprint: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
3677
|
+
}, undefined>, undefined>;
|
|
3654
3678
|
readonly jobId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
3655
3679
|
readonly startedAt: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>, undefined>;
|
|
3656
3680
|
readonly finishedAt: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -4614,6 +4638,7 @@ export declare const destroyHumanTestEnvContract: {
|
|
|
4614
4638
|
readonly autoRecommend: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
4615
4639
|
readonly skillId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
4616
4640
|
readonly maxOutputTokens: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 256, undefined>, import("valibot").MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
4641
|
+
readonly agentVariantId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
4617
4642
|
}, undefined>, undefined>, undefined>;
|
|
4618
4643
|
readonly skipped: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
4619
4644
|
readonly noBusinessSpecs: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
@@ -4644,6 +4669,11 @@ export declare const destroyHumanTestEnvContract: {
|
|
|
4644
4669
|
readonly sha: import("valibot").StringSchema<undefined>;
|
|
4645
4670
|
}, undefined>, undefined>, undefined>;
|
|
4646
4671
|
readonly promptRevision: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
4672
|
+
readonly promptVariant: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
4673
|
+
readonly id: import("valibot").StringSchema<undefined>;
|
|
4674
|
+
readonly applied: import("valibot").PicklistSchema<["full", "addition-only", "superseded", "withdrawn"], undefined>;
|
|
4675
|
+
readonly fingerprint: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
4676
|
+
}, undefined>, undefined>;
|
|
4647
4677
|
readonly jobId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
4648
4678
|
readonly startedAt: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>, undefined>;
|
|
4649
4679
|
readonly finishedAt: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"human-test.d.ts","sourceRoot":"","sources":["../../src/routes/human-test.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAc3E,eAAO,MAAM,wBAAwB
|
|
1
|
+
{"version":3,"file":"human-test.d.ts","sourceRoot":"","sources":["../../src/routes/human-test.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAc3E,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMnC,CAAA;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMtC,CAAA;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMpC,CAAA;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMvC,CAAA;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMtC,CAAA"}
|
|
@@ -30,6 +30,7 @@ export declare const getNotificationWebhookContract: {
|
|
|
30
30
|
readonly 200: v.NullableSchema<v.ObjectSchema<{
|
|
31
31
|
readonly url: v.StringSchema<undefined>;
|
|
32
32
|
readonly types: v.ArraySchema<v.PicklistSchema<["merge_review", "pipeline_complete", "ci_failed", "test_failed", "requirement_review", "clarity_review", "release_regression", "decision_required", "human_test_ready", "visual_confirmation_ready", "human_review", "followup_pending", "fork_decision_pending", "judge_review", "pr_review_ready", "initiative", "platform_health", "infra_unreachable", "budget_paused", "key_drift", "merge_tag_request"], undefined>, undefined>;
|
|
33
|
+
readonly runEvents: v.ArraySchema<v.PicklistSchema<["run.started", "run.completed", "run.failed"], undefined>, undefined>;
|
|
33
34
|
readonly enabled: v.BooleanSchema<undefined>;
|
|
34
35
|
readonly hasSecret: v.BooleanSchema<undefined>;
|
|
35
36
|
readonly updatedAt: v.NumberSchema<undefined>;
|
|
@@ -43,6 +44,7 @@ export declare const putNotificationWebhookContract: {
|
|
|
43
44
|
readonly requestBodySchema: v.ObjectSchema<{
|
|
44
45
|
readonly url: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.UrlAction<string, undefined>, v.StartsWithAction<string, "https://", "The webhook endpoint must be an https:// URL">, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
45
46
|
readonly types: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<["merge_review", "pipeline_complete", "ci_failed", "test_failed", "requirement_review", "clarity_review", "release_regression", "decision_required", "human_test_ready", "visual_confirmation_ready", "human_review", "followup_pending", "fork_decision_pending", "judge_review", "pr_review_ready", "initiative", "platform_health", "infra_unreachable", "budget_paused", "key_drift", "merge_tag_request"], undefined>, undefined>, undefined>;
|
|
47
|
+
readonly runEvents: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<["run.started", "run.completed", "run.failed"], undefined>, undefined>, undefined>;
|
|
46
48
|
readonly enabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
47
49
|
readonly secret: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 16, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
48
50
|
}, undefined>;
|
|
@@ -72,6 +74,7 @@ export declare const putNotificationWebhookContract: {
|
|
|
72
74
|
readonly 200: v.ObjectSchema<{
|
|
73
75
|
readonly url: v.StringSchema<undefined>;
|
|
74
76
|
readonly types: v.ArraySchema<v.PicklistSchema<["merge_review", "pipeline_complete", "ci_failed", "test_failed", "requirement_review", "clarity_review", "release_regression", "decision_required", "human_test_ready", "visual_confirmation_ready", "human_review", "followup_pending", "fork_decision_pending", "judge_review", "pr_review_ready", "initiative", "platform_health", "infra_unreachable", "budget_paused", "key_drift", "merge_tag_request"], undefined>, undefined>;
|
|
77
|
+
readonly runEvents: v.ArraySchema<v.PicklistSchema<["run.started", "run.completed", "run.failed"], undefined>, undefined>;
|
|
75
78
|
readonly enabled: v.BooleanSchema<undefined>;
|
|
76
79
|
readonly hasSecret: v.BooleanSchema<undefined>;
|
|
77
80
|
readonly updatedAt: v.NumberSchema<undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"notification-webhooks.d.ts","sourceRoot":"","sources":["../../src/routes/notification-webhooks.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAc5B,8FAA8F;AAC9F,eAAO,MAAM,8BAA8B
|
|
1
|
+
{"version":3,"file":"notification-webhooks.d.ts","sourceRoot":"","sources":["../../src/routes/notification-webhooks.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAc5B,8FAA8F;AAC9F,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOzC,CAAA;AAEF,yFAAyF;AACzF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKzC,CAAA;AAEF,wDAAwD;AACxD,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAI5C,CAAA"}
|
|
@@ -80,6 +80,7 @@ export declare const listPipelinesContract: {
|
|
|
80
80
|
readonly autoRecommend: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
81
81
|
readonly skillId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
82
82
|
readonly maxOutputTokens: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 256, undefined>, v.MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
83
|
+
readonly agentVariantId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
83
84
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
84
85
|
readonly labels: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
85
86
|
readonly archived: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
@@ -147,6 +148,7 @@ export declare const createPipelineContract: {
|
|
|
147
148
|
readonly autoRecommend: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
148
149
|
readonly skillId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
149
150
|
readonly maxOutputTokens: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 256, undefined>, v.MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
151
|
+
readonly agentVariantId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
150
152
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
151
153
|
readonly labels: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 40, undefined>]>, undefined>, undefined>;
|
|
152
154
|
readonly availability: v.OptionalSchema<v.UnionSchema<[v.LiteralSchema<"one-off", undefined>, v.LiteralSchema<"recurring", undefined>, v.LiteralSchema<"both", undefined>], undefined>, undefined>;
|
|
@@ -229,6 +231,7 @@ export declare const createPipelineContract: {
|
|
|
229
231
|
readonly autoRecommend: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
230
232
|
readonly skillId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
231
233
|
readonly maxOutputTokens: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 256, undefined>, v.MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
234
|
+
readonly agentVariantId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
232
235
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
233
236
|
readonly labels: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
234
237
|
readonly archived: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
@@ -328,6 +331,7 @@ export declare const clonePipelineContract: {
|
|
|
328
331
|
readonly autoRecommend: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
329
332
|
readonly skillId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
330
333
|
readonly maxOutputTokens: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 256, undefined>, v.MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
334
|
+
readonly agentVariantId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
331
335
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
332
336
|
readonly labels: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
333
337
|
readonly archived: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
@@ -425,6 +429,7 @@ export declare const reseedPipelineContract: {
|
|
|
425
429
|
readonly autoRecommend: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
426
430
|
readonly skillId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
427
431
|
readonly maxOutputTokens: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 256, undefined>, v.MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
432
|
+
readonly agentVariantId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
428
433
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
429
434
|
readonly labels: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
430
435
|
readonly archived: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
@@ -497,6 +502,7 @@ export declare const updatePipelineContract: {
|
|
|
497
502
|
readonly autoRecommend: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
498
503
|
readonly skillId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
499
504
|
readonly maxOutputTokens: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 256, undefined>, v.MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
505
|
+
readonly agentVariantId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
500
506
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
501
507
|
readonly labels: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 40, undefined>]>, undefined>, undefined>;
|
|
502
508
|
readonly availability: v.OptionalSchema<v.UnionSchema<[v.LiteralSchema<"one-off", undefined>, v.LiteralSchema<"recurring", undefined>, v.LiteralSchema<"both", undefined>], undefined>, undefined>;
|
|
@@ -579,6 +585,7 @@ export declare const updatePipelineContract: {
|
|
|
579
585
|
readonly autoRecommend: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
580
586
|
readonly skillId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
581
587
|
readonly maxOutputTokens: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 256, undefined>, v.MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
588
|
+
readonly agentVariantId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
582
589
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
583
590
|
readonly labels: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
584
591
|
readonly archived: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
@@ -679,6 +686,7 @@ export declare const organizePipelineContract: {
|
|
|
679
686
|
readonly autoRecommend: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
680
687
|
readonly skillId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
681
688
|
readonly maxOutputTokens: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 256, undefined>, v.MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
689
|
+
readonly agentVariantId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
682
690
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
683
691
|
readonly labels: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
684
692
|
readonly archived: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pipelines.d.ts","sourceRoot":"","sources":["../../src/routes/pipelines.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAmB5B,eAAO,MAAM,qBAAqB
|
|
1
|
+
{"version":3,"file":"pipelines.d.ts","sourceRoot":"","sources":["../../src/routes/pipelines.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAmB5B,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIhC,CAAA;AAEF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKjC,CAAA;AAEF,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMhC,CAAA;AAEF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMjC,CAAA;AAEF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMjC,CAAA;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMnC,CAAA;AAEF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKjC,CAAA"}
|
|
@@ -1097,4 +1097,58 @@ export declare const dismissPublicNotificationContract: {
|
|
|
1097
1097
|
}, undefined>;
|
|
1098
1098
|
};
|
|
1099
1099
|
};
|
|
1100
|
+
/**
|
|
1101
|
+
* The workspace's usage for the current billing period: the metered budget position plus the
|
|
1102
|
+
* per-model breakdown behind it. Workspace-scoped by construction (the aggregate names no
|
|
1103
|
+
* resource ids and no account/user dimension), so `read` is the whole scope story.
|
|
1104
|
+
*/
|
|
1105
|
+
export declare const getPublicUsageContract: {
|
|
1106
|
+
readonly method: "get";
|
|
1107
|
+
readonly pathResolver: () => string;
|
|
1108
|
+
readonly responsesByStatusCode: {
|
|
1109
|
+
readonly '4xx': import("valibot").ObjectSchema<{
|
|
1110
|
+
readonly error: import("valibot").ObjectSchema<{
|
|
1111
|
+
readonly code: import("valibot").StringSchema<undefined>;
|
|
1112
|
+
readonly message: import("valibot").StringSchema<undefined>;
|
|
1113
|
+
readonly details: import("valibot").OptionalSchema<import("valibot").UnknownSchema, undefined>;
|
|
1114
|
+
readonly issues: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1115
|
+
readonly path: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1116
|
+
readonly message: import("valibot").StringSchema<undefined>;
|
|
1117
|
+
}, undefined>, undefined>, undefined>;
|
|
1118
|
+
}, undefined>;
|
|
1119
|
+
}, undefined>;
|
|
1120
|
+
readonly '5xx': import("valibot").ObjectSchema<{
|
|
1121
|
+
readonly error: import("valibot").ObjectSchema<{
|
|
1122
|
+
readonly code: import("valibot").StringSchema<undefined>;
|
|
1123
|
+
readonly message: import("valibot").StringSchema<undefined>;
|
|
1124
|
+
readonly details: import("valibot").OptionalSchema<import("valibot").UnknownSchema, undefined>;
|
|
1125
|
+
readonly issues: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1126
|
+
readonly path: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1127
|
+
readonly message: import("valibot").StringSchema<undefined>;
|
|
1128
|
+
}, undefined>, undefined>, undefined>;
|
|
1129
|
+
}, undefined>;
|
|
1130
|
+
}, undefined>;
|
|
1131
|
+
readonly 200: import("valibot").ObjectSchema<{
|
|
1132
|
+
readonly periodStart: import("valibot").NumberSchema<undefined>;
|
|
1133
|
+
readonly currency: import("valibot").StringSchema<undefined>;
|
|
1134
|
+
readonly budget: import("valibot").ObjectSchema<{
|
|
1135
|
+
readonly inputTokens: import("valibot").NumberSchema<undefined>;
|
|
1136
|
+
readonly outputTokens: import("valibot").NumberSchema<undefined>;
|
|
1137
|
+
readonly costSpent: import("valibot").NumberSchema<undefined>;
|
|
1138
|
+
readonly costLimit: import("valibot").NumberSchema<undefined>;
|
|
1139
|
+
readonly exceeded: import("valibot").BooleanSchema<undefined>;
|
|
1140
|
+
}, undefined>;
|
|
1141
|
+
readonly rows: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1142
|
+
readonly billing: import("valibot").PicklistSchema<["metered", "subscription"], undefined>;
|
|
1143
|
+
readonly vendor: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1144
|
+
readonly provider: import("valibot").StringSchema<undefined>;
|
|
1145
|
+
readonly model: import("valibot").StringSchema<undefined>;
|
|
1146
|
+
readonly inputTokens: import("valibot").NumberSchema<undefined>;
|
|
1147
|
+
readonly outputTokens: import("valibot").NumberSchema<undefined>;
|
|
1148
|
+
readonly costEstimate: import("valibot").NumberSchema<undefined>;
|
|
1149
|
+
readonly calls: import("valibot").NumberSchema<undefined>;
|
|
1150
|
+
}, undefined>, undefined>;
|
|
1151
|
+
}, undefined>;
|
|
1152
|
+
};
|
|
1153
|
+
};
|
|
1100
1154
|
//# sourceMappingURL=public-api.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../../src/routes/public-api.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;
|
|
1
|
+
{"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../../src/routes/public-api.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ContractNoBody, defineApiContract } from '@toad-contracts/valibot';
|
|
2
2
|
import { createPublicApiKeySchema, createdPublicApiKeySchema, publicApiKeyListResultSchema, } from '../public-api-keys.js';
|
|
3
3
|
import { notificationSchema } from '../notifications.js';
|
|
4
|
-
import { createInitiativeJobSchema, createPublicTaskSchema, initiativeAcceptedSchema, listPublicJobsQuerySchema, listPublicServiceTasksQuerySchema, publicJobListSchema, publicJobSchema, publicNotificationListSchema, publicPipelineListSchema, publicRunSchema, publicServiceListSchema, publicTaskListSchema, publicTaskSchema, startPublicTaskSchema, updatePublicTaskSchema, } from '../public-api.js';
|
|
4
|
+
import { createInitiativeJobSchema, createPublicTaskSchema, initiativeAcceptedSchema, listPublicJobsQuerySchema, listPublicServiceTasksQuerySchema, publicJobListSchema, publicJobSchema, publicNotificationListSchema, publicPipelineListSchema, publicRunSchema, publicServiceListSchema, publicTaskListSchema, publicTaskSchema, publicUsageSchema, startPublicTaskSchema, updatePublicTaskSchema, } from '../public-api.js';
|
|
5
5
|
import { errorResponses, singleStringParam } from './_shared.js';
|
|
6
6
|
// ---------------------------------------------------------------------------
|
|
7
7
|
// Public-API route contracts. Two surfaces:
|
|
@@ -189,4 +189,15 @@ export const dismissPublicNotificationContract = defineApiContract({
|
|
|
189
189
|
requestBodySchema: ContractNoBody,
|
|
190
190
|
responsesByStatusCode: { 200: notificationSchema, ...errorResponses },
|
|
191
191
|
});
|
|
192
|
+
// ---- usage & spend (the external dashboard read) ---------------------------
|
|
193
|
+
/**
|
|
194
|
+
* The workspace's usage for the current billing period: the metered budget position plus the
|
|
195
|
+
* per-model breakdown behind it. Workspace-scoped by construction (the aggregate names no
|
|
196
|
+
* resource ids and no account/user dimension), so `read` is the whole scope story.
|
|
197
|
+
*/
|
|
198
|
+
export const getPublicUsageContract = defineApiContract({
|
|
199
|
+
method: 'get',
|
|
200
|
+
pathResolver: () => '/api/v1/usage',
|
|
201
|
+
responsesByStatusCode: { 200: publicUsageSchema, ...errorResponses },
|
|
202
|
+
});
|
|
192
203
|
//# sourceMappingURL=public-api.js.map
|