@cat-factory/contracts 0.38.0 → 0.40.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 +2 -2
- package/dist/entities.d.ts +205 -0
- package/dist/entities.d.ts.map +1 -1
- package/dist/entities.js +76 -0
- package/dist/entities.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/notifications.d.ts +2 -2
- package/dist/notifications.d.ts.map +1 -1
- package/dist/notifications.js +1 -0
- package/dist/notifications.js.map +1 -1
- package/dist/observability.d.ts +15 -3
- package/dist/observability.d.ts.map +1 -1
- package/dist/observability.js +9 -1
- package/dist/observability.js.map +1 -1
- package/dist/result-views.d.ts +1 -1
- package/dist/result-views.d.ts.map +1 -1
- package/dist/result-views.js +1 -0
- package/dist/result-views.js.map +1 -1
- package/dist/routes/agent-runs.d.ts +62 -0
- package/dist/routes/agent-runs.d.ts.map +1 -1
- package/dist/routes/execution.d.ts +252 -0
- package/dist/routes/execution.d.ts.map +1 -1
- package/dist/routes/human-review.d.ts +31 -0
- package/dist/routes/human-review.d.ts.map +1 -1
- package/dist/routes/human-test.d.ts +155 -0
- package/dist/routes/human-test.d.ts.map +1 -1
- package/dist/routes/index.d.ts +1 -0
- package/dist/routes/index.d.ts.map +1 -1
- package/dist/routes/index.js +1 -0
- package/dist/routes/index.js.map +1 -1
- package/dist/routes/models.d.ts +4 -0
- package/dist/routes/models.d.ts.map +1 -1
- package/dist/routes/notifications.d.ts +3 -3
- package/dist/routes/slack.d.ts +3 -3
- package/dist/routes/visual-confirm.d.ts +956 -0
- package/dist/routes/visual-confirm.d.ts.map +1 -0
- package/dist/routes/visual-confirm.js +34 -0
- package/dist/routes/visual-confirm.js.map +1 -0
- package/dist/routes/workspace-settings.d.ts +3 -0
- package/dist/routes/workspace-settings.d.ts.map +1 -1
- package/dist/routes/workspaces.d.ts +68 -4
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/slack.d.ts +2 -2
- package/dist/snapshot.d.ts +34 -2
- package/dist/snapshot.d.ts.map +1 -1
- package/dist/testing.d.ts +38 -0
- package/dist/testing.d.ts.map +1 -1
- package/dist/testing.js +26 -0
- package/dist/testing.js.map +1 -1
- package/dist/visual-confirm.d.ts +8 -0
- package/dist/visual-confirm.d.ts.map +1 -0
- package/dist/visual-confirm.js +11 -0
- package/dist/visual-confirm.js.map +1 -0
- package/dist/workspace-settings.d.ts +7 -0
- package/dist/workspace-settings.d.ts.map +1 -1
- package/dist/workspace-settings.js +7 -0
- package/dist/workspace-settings.js.map +1 -1
- package/package.json +1 -1
|
@@ -44,6 +44,7 @@ export declare const confirmHumanTestContract: {
|
|
|
44
44
|
readonly metrics: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
45
45
|
readonly calls: import("valibot").NumberSchema<undefined>;
|
|
46
46
|
readonly promptTokens: import("valibot").NumberSchema<undefined>;
|
|
47
|
+
readonly cachedPromptTokens: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
47
48
|
readonly completionTokens: import("valibot").NumberSchema<undefined>;
|
|
48
49
|
readonly peakCompletionTokens: import("valibot").NumberSchema<undefined>;
|
|
49
50
|
readonly maxOutputTokens: import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
@@ -110,6 +111,14 @@ export declare const confirmHumanTestContract: {
|
|
|
110
111
|
readonly severity: import("valibot").PicklistSchema<["low", "medium", "high", "critical"], undefined>;
|
|
111
112
|
}, undefined>, undefined>;
|
|
112
113
|
readonly environment: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["local", "ephemeral"], undefined>, undefined>;
|
|
114
|
+
readonly screenshots: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
115
|
+
readonly view: import("valibot").StringSchema<undefined>;
|
|
116
|
+
readonly artifactId: import("valibot").StringSchema<undefined>;
|
|
117
|
+
readonly hash: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
118
|
+
readonly width: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
119
|
+
readonly height: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
120
|
+
readonly referenceArtifactId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
121
|
+
}, undefined>, undefined>, undefined>;
|
|
113
122
|
}, undefined>, undefined>, undefined>;
|
|
114
123
|
}, undefined>, undefined>, undefined>;
|
|
115
124
|
readonly humanTest: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
@@ -137,6 +146,28 @@ export declare const confirmHumanTestContract: {
|
|
|
137
146
|
readonly findings: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
138
147
|
}, undefined>, undefined>, undefined>;
|
|
139
148
|
}, undefined>, undefined>, undefined>;
|
|
149
|
+
readonly visualConfirm: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
150
|
+
readonly phase: import("valibot").PicklistSchema<["awaiting_human", "fixing", "approved"], undefined>;
|
|
151
|
+
readonly pairs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
152
|
+
readonly view: import("valibot").StringSchema<undefined>;
|
|
153
|
+
readonly actualArtifactId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
154
|
+
readonly referenceArtifactId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
155
|
+
}, undefined>, undefined>, undefined>;
|
|
156
|
+
readonly degradedReason: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
157
|
+
readonly attempts: import("valibot").NumberSchema<undefined>;
|
|
158
|
+
readonly maxAttempts: import("valibot").NumberSchema<undefined>;
|
|
159
|
+
readonly rounds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
160
|
+
readonly findings: import("valibot").StringSchema<undefined>;
|
|
161
|
+
readonly helperKind: import("valibot").StringSchema<undefined>;
|
|
162
|
+
readonly jobId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
163
|
+
readonly outcome: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["completed", "failed"], undefined>, undefined>, undefined>;
|
|
164
|
+
readonly at: import("valibot").NumberSchema<undefined>;
|
|
165
|
+
}, undefined>, undefined>, undefined>;
|
|
166
|
+
readonly pendingAction: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
167
|
+
readonly type: import("valibot").PicklistSchema<["approve", "request-fix", "recapture"], undefined>;
|
|
168
|
+
readonly findings: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
169
|
+
}, undefined>, undefined>, undefined>;
|
|
170
|
+
}, undefined>, undefined>, undefined>;
|
|
140
171
|
readonly environment: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
141
172
|
readonly id: import("valibot").StringSchema<undefined>;
|
|
142
173
|
readonly url: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
@@ -332,6 +363,7 @@ export declare const requestHumanTestFixContract: {
|
|
|
332
363
|
readonly metrics: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
333
364
|
readonly calls: import("valibot").NumberSchema<undefined>;
|
|
334
365
|
readonly promptTokens: import("valibot").NumberSchema<undefined>;
|
|
366
|
+
readonly cachedPromptTokens: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
335
367
|
readonly completionTokens: import("valibot").NumberSchema<undefined>;
|
|
336
368
|
readonly peakCompletionTokens: import("valibot").NumberSchema<undefined>;
|
|
337
369
|
readonly maxOutputTokens: import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
@@ -398,6 +430,14 @@ export declare const requestHumanTestFixContract: {
|
|
|
398
430
|
readonly severity: import("valibot").PicklistSchema<["low", "medium", "high", "critical"], undefined>;
|
|
399
431
|
}, undefined>, undefined>;
|
|
400
432
|
readonly environment: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["local", "ephemeral"], undefined>, undefined>;
|
|
433
|
+
readonly screenshots: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
434
|
+
readonly view: import("valibot").StringSchema<undefined>;
|
|
435
|
+
readonly artifactId: import("valibot").StringSchema<undefined>;
|
|
436
|
+
readonly hash: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
437
|
+
readonly width: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
438
|
+
readonly height: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
439
|
+
readonly referenceArtifactId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
440
|
+
}, undefined>, undefined>, undefined>;
|
|
401
441
|
}, undefined>, undefined>, undefined>;
|
|
402
442
|
}, undefined>, undefined>, undefined>;
|
|
403
443
|
readonly humanTest: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
@@ -425,6 +465,28 @@ export declare const requestHumanTestFixContract: {
|
|
|
425
465
|
readonly findings: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
426
466
|
}, undefined>, undefined>, undefined>;
|
|
427
467
|
}, undefined>, undefined>, undefined>;
|
|
468
|
+
readonly visualConfirm: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
469
|
+
readonly phase: import("valibot").PicklistSchema<["awaiting_human", "fixing", "approved"], undefined>;
|
|
470
|
+
readonly pairs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
471
|
+
readonly view: import("valibot").StringSchema<undefined>;
|
|
472
|
+
readonly actualArtifactId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
473
|
+
readonly referenceArtifactId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
474
|
+
}, undefined>, undefined>, undefined>;
|
|
475
|
+
readonly degradedReason: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
476
|
+
readonly attempts: import("valibot").NumberSchema<undefined>;
|
|
477
|
+
readonly maxAttempts: import("valibot").NumberSchema<undefined>;
|
|
478
|
+
readonly rounds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
479
|
+
readonly findings: import("valibot").StringSchema<undefined>;
|
|
480
|
+
readonly helperKind: import("valibot").StringSchema<undefined>;
|
|
481
|
+
readonly jobId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
482
|
+
readonly outcome: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["completed", "failed"], undefined>, undefined>, undefined>;
|
|
483
|
+
readonly at: import("valibot").NumberSchema<undefined>;
|
|
484
|
+
}, undefined>, undefined>, undefined>;
|
|
485
|
+
readonly pendingAction: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
486
|
+
readonly type: import("valibot").PicklistSchema<["approve", "request-fix", "recapture"], undefined>;
|
|
487
|
+
readonly findings: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
488
|
+
}, undefined>, undefined>, undefined>;
|
|
489
|
+
}, undefined>, undefined>, undefined>;
|
|
428
490
|
readonly environment: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
429
491
|
readonly id: import("valibot").StringSchema<undefined>;
|
|
430
492
|
readonly url: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
@@ -618,6 +680,7 @@ export declare const pullMainHumanTestContract: {
|
|
|
618
680
|
readonly metrics: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
619
681
|
readonly calls: import("valibot").NumberSchema<undefined>;
|
|
620
682
|
readonly promptTokens: import("valibot").NumberSchema<undefined>;
|
|
683
|
+
readonly cachedPromptTokens: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
621
684
|
readonly completionTokens: import("valibot").NumberSchema<undefined>;
|
|
622
685
|
readonly peakCompletionTokens: import("valibot").NumberSchema<undefined>;
|
|
623
686
|
readonly maxOutputTokens: import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
@@ -684,6 +747,14 @@ export declare const pullMainHumanTestContract: {
|
|
|
684
747
|
readonly severity: import("valibot").PicklistSchema<["low", "medium", "high", "critical"], undefined>;
|
|
685
748
|
}, undefined>, undefined>;
|
|
686
749
|
readonly environment: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["local", "ephemeral"], undefined>, undefined>;
|
|
750
|
+
readonly screenshots: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
751
|
+
readonly view: import("valibot").StringSchema<undefined>;
|
|
752
|
+
readonly artifactId: import("valibot").StringSchema<undefined>;
|
|
753
|
+
readonly hash: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
754
|
+
readonly width: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
755
|
+
readonly height: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
756
|
+
readonly referenceArtifactId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
757
|
+
}, undefined>, undefined>, undefined>;
|
|
687
758
|
}, undefined>, undefined>, undefined>;
|
|
688
759
|
}, undefined>, undefined>, undefined>;
|
|
689
760
|
readonly humanTest: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
@@ -711,6 +782,28 @@ export declare const pullMainHumanTestContract: {
|
|
|
711
782
|
readonly findings: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
712
783
|
}, undefined>, undefined>, undefined>;
|
|
713
784
|
}, undefined>, undefined>, undefined>;
|
|
785
|
+
readonly visualConfirm: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
786
|
+
readonly phase: import("valibot").PicklistSchema<["awaiting_human", "fixing", "approved"], undefined>;
|
|
787
|
+
readonly pairs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
788
|
+
readonly view: import("valibot").StringSchema<undefined>;
|
|
789
|
+
readonly actualArtifactId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
790
|
+
readonly referenceArtifactId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
791
|
+
}, undefined>, undefined>, undefined>;
|
|
792
|
+
readonly degradedReason: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
793
|
+
readonly attempts: import("valibot").NumberSchema<undefined>;
|
|
794
|
+
readonly maxAttempts: import("valibot").NumberSchema<undefined>;
|
|
795
|
+
readonly rounds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
796
|
+
readonly findings: import("valibot").StringSchema<undefined>;
|
|
797
|
+
readonly helperKind: import("valibot").StringSchema<undefined>;
|
|
798
|
+
readonly jobId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
799
|
+
readonly outcome: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["completed", "failed"], undefined>, undefined>, undefined>;
|
|
800
|
+
readonly at: import("valibot").NumberSchema<undefined>;
|
|
801
|
+
}, undefined>, undefined>, undefined>;
|
|
802
|
+
readonly pendingAction: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
803
|
+
readonly type: import("valibot").PicklistSchema<["approve", "request-fix", "recapture"], undefined>;
|
|
804
|
+
readonly findings: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
805
|
+
}, undefined>, undefined>, undefined>;
|
|
806
|
+
}, undefined>, undefined>, undefined>;
|
|
714
807
|
readonly environment: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
715
808
|
readonly id: import("valibot").StringSchema<undefined>;
|
|
716
809
|
readonly url: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
@@ -904,6 +997,7 @@ export declare const recreateHumanTestEnvContract: {
|
|
|
904
997
|
readonly metrics: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
905
998
|
readonly calls: import("valibot").NumberSchema<undefined>;
|
|
906
999
|
readonly promptTokens: import("valibot").NumberSchema<undefined>;
|
|
1000
|
+
readonly cachedPromptTokens: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
907
1001
|
readonly completionTokens: import("valibot").NumberSchema<undefined>;
|
|
908
1002
|
readonly peakCompletionTokens: import("valibot").NumberSchema<undefined>;
|
|
909
1003
|
readonly maxOutputTokens: import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
@@ -970,6 +1064,14 @@ export declare const recreateHumanTestEnvContract: {
|
|
|
970
1064
|
readonly severity: import("valibot").PicklistSchema<["low", "medium", "high", "critical"], undefined>;
|
|
971
1065
|
}, undefined>, undefined>;
|
|
972
1066
|
readonly environment: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["local", "ephemeral"], undefined>, undefined>;
|
|
1067
|
+
readonly screenshots: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1068
|
+
readonly view: import("valibot").StringSchema<undefined>;
|
|
1069
|
+
readonly artifactId: import("valibot").StringSchema<undefined>;
|
|
1070
|
+
readonly hash: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1071
|
+
readonly width: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
1072
|
+
readonly height: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
1073
|
+
readonly referenceArtifactId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1074
|
+
}, undefined>, undefined>, undefined>;
|
|
973
1075
|
}, undefined>, undefined>, undefined>;
|
|
974
1076
|
}, undefined>, undefined>, undefined>;
|
|
975
1077
|
readonly humanTest: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
@@ -997,6 +1099,28 @@ export declare const recreateHumanTestEnvContract: {
|
|
|
997
1099
|
readonly findings: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
998
1100
|
}, undefined>, undefined>, undefined>;
|
|
999
1101
|
}, undefined>, undefined>, undefined>;
|
|
1102
|
+
readonly visualConfirm: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
1103
|
+
readonly phase: import("valibot").PicklistSchema<["awaiting_human", "fixing", "approved"], undefined>;
|
|
1104
|
+
readonly pairs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1105
|
+
readonly view: import("valibot").StringSchema<undefined>;
|
|
1106
|
+
readonly actualArtifactId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1107
|
+
readonly referenceArtifactId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1108
|
+
}, undefined>, undefined>, undefined>;
|
|
1109
|
+
readonly degradedReason: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1110
|
+
readonly attempts: import("valibot").NumberSchema<undefined>;
|
|
1111
|
+
readonly maxAttempts: import("valibot").NumberSchema<undefined>;
|
|
1112
|
+
readonly rounds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1113
|
+
readonly findings: import("valibot").StringSchema<undefined>;
|
|
1114
|
+
readonly helperKind: import("valibot").StringSchema<undefined>;
|
|
1115
|
+
readonly jobId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1116
|
+
readonly outcome: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["completed", "failed"], undefined>, undefined>, undefined>;
|
|
1117
|
+
readonly at: import("valibot").NumberSchema<undefined>;
|
|
1118
|
+
}, undefined>, undefined>, undefined>;
|
|
1119
|
+
readonly pendingAction: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
1120
|
+
readonly type: import("valibot").PicklistSchema<["approve", "request-fix", "recapture"], undefined>;
|
|
1121
|
+
readonly findings: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1122
|
+
}, undefined>, undefined>, undefined>;
|
|
1123
|
+
}, undefined>, undefined>, undefined>;
|
|
1000
1124
|
readonly environment: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
1001
1125
|
readonly id: import("valibot").StringSchema<undefined>;
|
|
1002
1126
|
readonly url: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
@@ -1190,6 +1314,7 @@ export declare const destroyHumanTestEnvContract: {
|
|
|
1190
1314
|
readonly metrics: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
1191
1315
|
readonly calls: import("valibot").NumberSchema<undefined>;
|
|
1192
1316
|
readonly promptTokens: import("valibot").NumberSchema<undefined>;
|
|
1317
|
+
readonly cachedPromptTokens: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
1193
1318
|
readonly completionTokens: import("valibot").NumberSchema<undefined>;
|
|
1194
1319
|
readonly peakCompletionTokens: import("valibot").NumberSchema<undefined>;
|
|
1195
1320
|
readonly maxOutputTokens: import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
@@ -1256,6 +1381,14 @@ export declare const destroyHumanTestEnvContract: {
|
|
|
1256
1381
|
readonly severity: import("valibot").PicklistSchema<["low", "medium", "high", "critical"], undefined>;
|
|
1257
1382
|
}, undefined>, undefined>;
|
|
1258
1383
|
readonly environment: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["local", "ephemeral"], undefined>, undefined>;
|
|
1384
|
+
readonly screenshots: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1385
|
+
readonly view: import("valibot").StringSchema<undefined>;
|
|
1386
|
+
readonly artifactId: import("valibot").StringSchema<undefined>;
|
|
1387
|
+
readonly hash: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1388
|
+
readonly width: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
1389
|
+
readonly height: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
1390
|
+
readonly referenceArtifactId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1391
|
+
}, undefined>, undefined>, undefined>;
|
|
1259
1392
|
}, undefined>, undefined>, undefined>;
|
|
1260
1393
|
}, undefined>, undefined>, undefined>;
|
|
1261
1394
|
readonly humanTest: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
@@ -1283,6 +1416,28 @@ export declare const destroyHumanTestEnvContract: {
|
|
|
1283
1416
|
readonly findings: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1284
1417
|
}, undefined>, undefined>, undefined>;
|
|
1285
1418
|
}, undefined>, undefined>, undefined>;
|
|
1419
|
+
readonly visualConfirm: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
1420
|
+
readonly phase: import("valibot").PicklistSchema<["awaiting_human", "fixing", "approved"], undefined>;
|
|
1421
|
+
readonly pairs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1422
|
+
readonly view: import("valibot").StringSchema<undefined>;
|
|
1423
|
+
readonly actualArtifactId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1424
|
+
readonly referenceArtifactId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1425
|
+
}, undefined>, undefined>, undefined>;
|
|
1426
|
+
readonly degradedReason: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1427
|
+
readonly attempts: import("valibot").NumberSchema<undefined>;
|
|
1428
|
+
readonly maxAttempts: import("valibot").NumberSchema<undefined>;
|
|
1429
|
+
readonly rounds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1430
|
+
readonly findings: import("valibot").StringSchema<undefined>;
|
|
1431
|
+
readonly helperKind: import("valibot").StringSchema<undefined>;
|
|
1432
|
+
readonly jobId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1433
|
+
readonly outcome: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["completed", "failed"], undefined>, undefined>, undefined>;
|
|
1434
|
+
readonly at: import("valibot").NumberSchema<undefined>;
|
|
1435
|
+
}, undefined>, undefined>, undefined>;
|
|
1436
|
+
readonly pendingAction: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
1437
|
+
readonly type: import("valibot").PicklistSchema<["approve", "request-fix", "recapture"], undefined>;
|
|
1438
|
+
readonly findings: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1439
|
+
}, undefined>, undefined>, undefined>;
|
|
1440
|
+
}, undefined>, undefined>, undefined>;
|
|
1286
1441
|
readonly environment: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
1287
1442
|
readonly id: import("valibot").StringSchema<undefined>;
|
|
1288
1443
|
readonly url: import("valibot").NullableSchema<import("valibot").StringSchema<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"}
|
package/dist/routes/index.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export * from './fragment-library.js';
|
|
|
16
16
|
export * from './github.js';
|
|
17
17
|
export * from './human-review.js';
|
|
18
18
|
export * from './human-test.js';
|
|
19
|
+
export * from './visual-confirm.js';
|
|
19
20
|
export * from './incident-enrichment.js';
|
|
20
21
|
export * from './kaizen.js';
|
|
21
22
|
export * from './localModels.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/routes/index.ts"],"names":[],"mappings":"AAGA,cAAc,cAAc,CAAA;AAC5B,cAAc,eAAe,CAAA;AAC7B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAC7B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,cAAc,CAAA;AAC5B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,mBAAmB,CAAA;AACjC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,eAAe,CAAA;AAC7B,cAAc,uBAAuB,CAAA;AACrC,cAAc,aAAa,CAAA;AAC3B,cAAc,mBAAmB,CAAA;AACjC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,0BAA0B,CAAA;AACxC,cAAc,aAAa,CAAA;AAC3B,cAAc,kBAAkB,CAAA;AAChC,cAAc,oBAAoB,CAAA;AAClC,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA;AAClC,cAAc,aAAa,CAAA;AAC3B,cAAc,oBAAoB,CAAA;AAClC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,6BAA6B,CAAA;AAC3C,cAAc,gBAAgB,CAAA;AAC9B,cAAc,uBAAuB,CAAA;AACrC,cAAc,wBAAwB,CAAA;AACtC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,mBAAmB,CAAA;AACjC,cAAc,cAAc,CAAA;AAC5B,cAAc,cAAc,CAAA;AAC5B,cAAc,gCAAgC,CAAA;AAC9C,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,cAAc,CAAA;AAC5B,cAAc,kBAAkB,CAAA;AAChC,cAAc,yBAAyB,CAAA;AACvC,cAAc,yBAAyB,CAAA;AACvC,cAAc,iBAAiB,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/routes/index.ts"],"names":[],"mappings":"AAGA,cAAc,cAAc,CAAA;AAC5B,cAAc,eAAe,CAAA;AAC7B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAC7B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,cAAc,CAAA;AAC5B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,mBAAmB,CAAA;AACjC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,eAAe,CAAA;AAC7B,cAAc,uBAAuB,CAAA;AACrC,cAAc,aAAa,CAAA;AAC3B,cAAc,mBAAmB,CAAA;AACjC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,qBAAqB,CAAA;AACnC,cAAc,0BAA0B,CAAA;AACxC,cAAc,aAAa,CAAA;AAC3B,cAAc,kBAAkB,CAAA;AAChC,cAAc,oBAAoB,CAAA;AAClC,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA;AAClC,cAAc,aAAa,CAAA;AAC3B,cAAc,oBAAoB,CAAA;AAClC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,6BAA6B,CAAA;AAC3C,cAAc,gBAAgB,CAAA;AAC9B,cAAc,uBAAuB,CAAA;AACrC,cAAc,wBAAwB,CAAA;AACtC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,mBAAmB,CAAA;AACjC,cAAc,cAAc,CAAA;AAC5B,cAAc,cAAc,CAAA;AAC5B,cAAc,gCAAgC,CAAA;AAC9C,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,cAAc,CAAA;AAC5B,cAAc,kBAAkB,CAAA;AAChC,cAAc,yBAAyB,CAAA;AACvC,cAAc,yBAAyB,CAAA;AACvC,cAAc,iBAAiB,CAAA"}
|
package/dist/routes/index.js
CHANGED
|
@@ -19,6 +19,7 @@ export * from './fragment-library.js';
|
|
|
19
19
|
export * from './github.js';
|
|
20
20
|
export * from './human-review.js';
|
|
21
21
|
export * from './human-test.js';
|
|
22
|
+
export * from './visual-confirm.js';
|
|
22
23
|
export * from './incident-enrichment.js';
|
|
23
24
|
export * from './kaizen.js';
|
|
24
25
|
export * from './localModels.js';
|
package/dist/routes/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/routes/index.ts"],"names":[],"mappings":"AAAA,4EAA4E;AAC5E,+EAA+E;AAC/E,oDAAoD;AACpD,cAAc,cAAc,CAAA;AAC5B,cAAc,eAAe,CAAA;AAC7B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAC7B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,cAAc,CAAA;AAC5B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,mBAAmB,CAAA;AACjC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,eAAe,CAAA;AAC7B,cAAc,uBAAuB,CAAA;AACrC,cAAc,aAAa,CAAA;AAC3B,cAAc,mBAAmB,CAAA;AACjC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,0BAA0B,CAAA;AACxC,cAAc,aAAa,CAAA;AAC3B,cAAc,kBAAkB,CAAA;AAChC,cAAc,oBAAoB,CAAA;AAClC,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA;AAClC,cAAc,aAAa,CAAA;AAC3B,cAAc,oBAAoB,CAAA;AAClC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,6BAA6B,CAAA;AAC3C,cAAc,gBAAgB,CAAA;AAC9B,cAAc,uBAAuB,CAAA;AACrC,cAAc,wBAAwB,CAAA;AACtC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,mBAAmB,CAAA;AACjC,cAAc,cAAc,CAAA;AAC5B,cAAc,cAAc,CAAA;AAC5B,cAAc,gCAAgC,CAAA;AAC9C,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,cAAc,CAAA;AAC5B,cAAc,kBAAkB,CAAA;AAChC,cAAc,yBAAyB,CAAA;AACvC,cAAc,yBAAyB,CAAA;AACvC,cAAc,iBAAiB,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/routes/index.ts"],"names":[],"mappings":"AAAA,4EAA4E;AAC5E,+EAA+E;AAC/E,oDAAoD;AACpD,cAAc,cAAc,CAAA;AAC5B,cAAc,eAAe,CAAA;AAC7B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAC7B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,cAAc,CAAA;AAC5B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,mBAAmB,CAAA;AACjC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,eAAe,CAAA;AAC7B,cAAc,uBAAuB,CAAA;AACrC,cAAc,aAAa,CAAA;AAC3B,cAAc,mBAAmB,CAAA;AACjC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,qBAAqB,CAAA;AACnC,cAAc,0BAA0B,CAAA;AACxC,cAAc,aAAa,CAAA;AAC3B,cAAc,kBAAkB,CAAA;AAChC,cAAc,oBAAoB,CAAA;AAClC,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA;AAClC,cAAc,aAAa,CAAA;AAC3B,cAAc,oBAAoB,CAAA;AAClC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,6BAA6B,CAAA;AAC3C,cAAc,gBAAgB,CAAA;AAC9B,cAAc,uBAAuB,CAAA;AACrC,cAAc,wBAAwB,CAAA;AACtC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,mBAAmB,CAAA;AACjC,cAAc,cAAc,CAAA;AAC5B,cAAc,cAAc,CAAA;AAC5B,cAAc,gCAAgC,CAAA;AAC9C,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,cAAc,CAAA;AAC5B,cAAc,kBAAkB,CAAA;AAChC,cAAc,yBAAyB,CAAA;AACvC,cAAc,yBAAyB,CAAA;AACvC,cAAc,iBAAiB,CAAA"}
|
package/dist/routes/models.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ export declare const listModelsContract: {
|
|
|
33
33
|
readonly providerLabel: import("valibot").StringSchema<undefined>;
|
|
34
34
|
readonly provider: import("valibot").StringSchema<undefined>;
|
|
35
35
|
readonly model: import("valibot").StringSchema<undefined>;
|
|
36
|
+
readonly cachesPrompts: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
36
37
|
readonly vendor: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["claude", "codex", "glm", "kimi", "deepseek"], undefined>, undefined>;
|
|
37
38
|
readonly cost: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
38
39
|
readonly inputPerMillion: import("valibot").NumberSchema<undefined>;
|
|
@@ -46,6 +47,7 @@ export declare const listModelsContract: {
|
|
|
46
47
|
readonly providerLabel: import("valibot").StringSchema<undefined>;
|
|
47
48
|
readonly provider: import("valibot").StringSchema<undefined>;
|
|
48
49
|
readonly model: import("valibot").StringSchema<undefined>;
|
|
50
|
+
readonly cachesPrompts: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
49
51
|
readonly cost: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
50
52
|
readonly inputPerMillion: import("valibot").NumberSchema<undefined>;
|
|
51
53
|
readonly outputPerMillion: import("valibot").NumberSchema<undefined>;
|
|
@@ -96,6 +98,7 @@ export declare const listWorkspaceModelsContract: {
|
|
|
96
98
|
readonly providerLabel: import("valibot").StringSchema<undefined>;
|
|
97
99
|
readonly provider: import("valibot").StringSchema<undefined>;
|
|
98
100
|
readonly model: import("valibot").StringSchema<undefined>;
|
|
101
|
+
readonly cachesPrompts: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
99
102
|
readonly vendor: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["claude", "codex", "glm", "kimi", "deepseek"], undefined>, undefined>;
|
|
100
103
|
readonly cost: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
101
104
|
readonly inputPerMillion: import("valibot").NumberSchema<undefined>;
|
|
@@ -109,6 +112,7 @@ export declare const listWorkspaceModelsContract: {
|
|
|
109
112
|
readonly providerLabel: import("valibot").StringSchema<undefined>;
|
|
110
113
|
readonly provider: import("valibot").StringSchema<undefined>;
|
|
111
114
|
readonly model: import("valibot").StringSchema<undefined>;
|
|
115
|
+
readonly cachesPrompts: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
112
116
|
readonly cost: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
113
117
|
readonly inputPerMillion: import("valibot").NumberSchema<undefined>;
|
|
114
118
|
readonly outputPerMillion: import("valibot").NumberSchema<undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"models.d.ts","sourceRoot":"","sources":["../../src/routes/models.ts"],"names":[],"mappings":"AAaA,eAAO,MAAM,kBAAkB
|
|
1
|
+
{"version":3,"file":"models.d.ts","sourceRoot":"","sources":["../../src/routes/models.ts"],"names":[],"mappings":"AAaA,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAI7B,CAAA;AAIF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKtC,CAAA"}
|
|
@@ -28,7 +28,7 @@ export declare const listNotificationsContract: {
|
|
|
28
28
|
}, undefined>;
|
|
29
29
|
readonly 200: v.ArraySchema<v.ObjectSchema<{
|
|
30
30
|
readonly id: v.StringSchema<undefined>;
|
|
31
|
-
readonly type: v.PicklistSchema<["merge_review", "pipeline_complete", "ci_failed", "test_failed", "requirement_review", "clarity_review", "release_regression", "decision_required", "human_test_ready", "human_review", "followup_pending"], undefined>;
|
|
31
|
+
readonly type: 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"], undefined>;
|
|
32
32
|
readonly status: v.PicklistSchema<["open", "acted", "dismissed"], undefined>;
|
|
33
33
|
readonly severity: v.OptionalSchema<v.PicklistSchema<["normal", "urgent"], undefined>, undefined>;
|
|
34
34
|
readonly blockId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -100,7 +100,7 @@ export declare const actNotificationContract: {
|
|
|
100
100
|
}, undefined>;
|
|
101
101
|
readonly 200: v.ObjectSchema<{
|
|
102
102
|
readonly id: v.StringSchema<undefined>;
|
|
103
|
-
readonly type: v.PicklistSchema<["merge_review", "pipeline_complete", "ci_failed", "test_failed", "requirement_review", "clarity_review", "release_regression", "decision_required", "human_test_ready", "human_review", "followup_pending"], undefined>;
|
|
103
|
+
readonly type: 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"], undefined>;
|
|
104
104
|
readonly status: v.PicklistSchema<["open", "acted", "dismissed"], undefined>;
|
|
105
105
|
readonly severity: v.OptionalSchema<v.PicklistSchema<["normal", "urgent"], undefined>, undefined>;
|
|
106
106
|
readonly blockId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -172,7 +172,7 @@ export declare const dismissNotificationContract: {
|
|
|
172
172
|
}, undefined>;
|
|
173
173
|
readonly 200: v.ObjectSchema<{
|
|
174
174
|
readonly id: v.StringSchema<undefined>;
|
|
175
|
-
readonly type: v.PicklistSchema<["merge_review", "pipeline_complete", "ci_failed", "test_failed", "requirement_review", "clarity_review", "release_regression", "decision_required", "human_test_ready", "human_review", "followup_pending"], undefined>;
|
|
175
|
+
readonly type: 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"], undefined>;
|
|
176
176
|
readonly status: v.PicklistSchema<["open", "acted", "dismissed"], undefined>;
|
|
177
177
|
readonly severity: v.OptionalSchema<v.PicklistSchema<["normal", "urgent"], undefined>, undefined>;
|
|
178
178
|
readonly blockId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
package/dist/routes/slack.d.ts
CHANGED
|
@@ -200,7 +200,7 @@ export declare const getSlackSettingsContract: {
|
|
|
200
200
|
}, undefined>;
|
|
201
201
|
}, undefined>;
|
|
202
202
|
readonly 200: v.ObjectSchema<{
|
|
203
|
-
readonly routes: v.RecordSchema<v.PicklistSchema<["merge_review", "pipeline_complete", "ci_failed", "test_failed", "requirement_review", "clarity_review", "release_regression", "decision_required", "human_test_ready", "human_review", "followup_pending"], undefined>, v.ObjectSchema<{
|
|
203
|
+
readonly routes: v.RecordSchema<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"], undefined>, v.ObjectSchema<{
|
|
204
204
|
readonly enabled: v.BooleanSchema<undefined>;
|
|
205
205
|
readonly channel: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>;
|
|
206
206
|
}, undefined>, undefined>;
|
|
@@ -213,7 +213,7 @@ export declare const updateSlackSettingsContract: {
|
|
|
213
213
|
readonly method: "put";
|
|
214
214
|
readonly pathResolver: () => string;
|
|
215
215
|
readonly requestBodySchema: v.ObjectSchema<{
|
|
216
|
-
readonly routes: v.RecordSchema<v.PicklistSchema<["merge_review", "pipeline_complete", "ci_failed", "test_failed", "requirement_review", "clarity_review", "release_regression", "decision_required", "human_test_ready", "human_review", "followup_pending"], undefined>, v.ObjectSchema<{
|
|
216
|
+
readonly routes: v.RecordSchema<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"], undefined>, v.ObjectSchema<{
|
|
217
217
|
readonly enabled: v.BooleanSchema<undefined>;
|
|
218
218
|
readonly channel: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>;
|
|
219
219
|
}, undefined>, undefined>;
|
|
@@ -243,7 +243,7 @@ export declare const updateSlackSettingsContract: {
|
|
|
243
243
|
}, undefined>;
|
|
244
244
|
}, undefined>;
|
|
245
245
|
readonly 200: v.ObjectSchema<{
|
|
246
|
-
readonly routes: v.RecordSchema<v.PicklistSchema<["merge_review", "pipeline_complete", "ci_failed", "test_failed", "requirement_review", "clarity_review", "release_regression", "decision_required", "human_test_ready", "human_review", "followup_pending"], undefined>, v.ObjectSchema<{
|
|
246
|
+
readonly routes: v.RecordSchema<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"], undefined>, v.ObjectSchema<{
|
|
247
247
|
readonly enabled: v.BooleanSchema<undefined>;
|
|
248
248
|
readonly channel: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>;
|
|
249
249
|
}, undefined>, undefined>;
|