@cat-factory/contracts 0.168.0 → 0.170.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/errors.d.ts +1 -1
- package/dist/errors.d.ts.map +1 -1
- package/dist/errors.js +6 -0
- package/dist/errors.js.map +1 -1
- package/dist/execution.d.ts +103 -568
- package/dist/execution.d.ts.map +1 -1
- package/dist/execution.js +14 -199
- package/dist/execution.js.map +1 -1
- package/dist/gate.d.ts +283 -0
- package/dist/gate.d.ts.map +1 -0
- package/dist/gate.js +209 -0
- package/dist/gate.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/judge.d.ts +181 -0
- package/dist/judge.d.ts.map +1 -0
- package/dist/judge.js +147 -0
- package/dist/judge.js.map +1 -0
- package/dist/merge.d.ts +17 -0
- package/dist/merge.d.ts.map +1 -1
- package/dist/merge.js +19 -0
- package/dist/merge.js.map +1 -1
- package/dist/notification-webhooks.d.ts +3 -3
- package/dist/notifications.d.ts +3 -3
- package/dist/notifications.d.ts.map +1 -1
- package/dist/notifications.js +2 -0
- package/dist/notifications.js.map +1 -1
- package/dist/pr-report.d.ts +101 -0
- package/dist/pr-report.d.ts.map +1 -1
- package/dist/pr-report.js +40 -0
- package/dist/pr-report.js.map +1 -1
- package/dist/public-api.d.ts +1 -1
- package/dist/public-decisions.d.ts +94 -1
- package/dist/public-decisions.d.ts.map +1 -1
- package/dist/public-decisions.js +34 -1
- package/dist/public-decisions.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 +86 -0
- package/dist/routes/agent-runs.d.ts.map +1 -1
- package/dist/routes/execution.d.ts +344 -0
- package/dist/routes/execution.d.ts.map +1 -1
- package/dist/routes/human-review.d.ts +43 -0
- package/dist/routes/human-review.d.ts.map +1 -1
- package/dist/routes/human-test.d.ts +215 -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/judge.d.ts +158 -0
- package/dist/routes/judge.d.ts.map +1 -0
- package/dist/routes/judge.js +28 -0
- package/dist/routes/judge.js.map +1 -0
- package/dist/routes/merge.d.ts +12 -0
- package/dist/routes/merge.d.ts.map +1 -1
- package/dist/routes/notification-webhooks.d.ts +3 -3
- package/dist/routes/notifications.d.ts +3 -3
- package/dist/routes/public-api.d.ts +3 -3
- package/dist/routes/public-decisions.d.ts +246 -0
- package/dist/routes/public-decisions.d.ts.map +1 -1
- package/dist/routes/public-decisions.js +10 -1
- package/dist/routes/public-decisions.js.map +1 -1
- package/dist/routes/runners.d.ts +10 -0
- package/dist/routes/runners.d.ts.map +1 -1
- package/dist/routes/slack.d.ts +3 -3
- package/dist/routes/visual-confirm.d.ts +129 -0
- package/dist/routes/visual-confirm.d.ts.map +1 -1
- package/dist/routes/workspaces.d.ts +94 -4
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/runners.d.ts +90 -0
- package/dist/runners.d.ts.map +1 -1
- package/dist/runners.js +9 -0
- package/dist/runners.js.map +1 -1
- package/dist/slack.d.ts +2 -2
- package/dist/snapshot.d.ts +47 -2
- package/dist/snapshot.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/runners.d.ts
CHANGED
|
@@ -142,6 +142,15 @@ export declare const runnerPoolResponseMappingSchema: v.ObjectSchema<{
|
|
|
142
142
|
* envelope, which is still enough to gate the PR and carry the failure evidence.
|
|
143
143
|
*/
|
|
144
144
|
readonly validationReportPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
145
|
+
/**
|
|
146
|
+
* Dot-path to the LATEST bugfix reproduction-proof attempt the harness published (the harness
|
|
147
|
+
* `reproductionReport` latest-value channel — NOT a drain buffer). A pool that proxies the
|
|
148
|
+
* cat-factory executor-harness verbatim should set this to `reproductionReport` so a pool-backed
|
|
149
|
+
* bugfix run surfaces a failed verification WHILE its repair loop runs, exactly like a
|
|
150
|
+
* Cloudflare/local container. Absent ⇒ the verdict is surfaced only from the terminal result
|
|
151
|
+
* envelope, which is still enough for the PR report and the step card.
|
|
152
|
+
*/
|
|
153
|
+
readonly reproductionReportPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
145
154
|
/** Dot-path to a job-level error message (a failed job, or a structured error). */
|
|
146
155
|
readonly errorPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
147
156
|
/**
|
|
@@ -378,6 +387,15 @@ export declare const runnerPoolManifestSchema: v.ObjectSchema<{
|
|
|
378
387
|
* envelope, which is still enough to gate the PR and carry the failure evidence.
|
|
379
388
|
*/
|
|
380
389
|
readonly validationReportPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
390
|
+
/**
|
|
391
|
+
* Dot-path to the LATEST bugfix reproduction-proof attempt the harness published (the harness
|
|
392
|
+
* `reproductionReport` latest-value channel — NOT a drain buffer). A pool that proxies the
|
|
393
|
+
* cat-factory executor-harness verbatim should set this to `reproductionReport` so a pool-backed
|
|
394
|
+
* bugfix run surfaces a failed verification WHILE its repair loop runs, exactly like a
|
|
395
|
+
* Cloudflare/local container. Absent ⇒ the verdict is surfaced only from the terminal result
|
|
396
|
+
* envelope, which is still enough for the PR report and the step card.
|
|
397
|
+
*/
|
|
398
|
+
readonly reproductionReportPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
381
399
|
/** Dot-path to a job-level error message (a failed job, or a structured error). */
|
|
382
400
|
readonly errorPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
383
401
|
/**
|
|
@@ -631,6 +649,15 @@ export declare const runnerBackendConfigSchema: v.VariantSchema<"kind", [v.Objec
|
|
|
631
649
|
* envelope, which is still enough to gate the PR and carry the failure evidence.
|
|
632
650
|
*/
|
|
633
651
|
readonly validationReportPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
652
|
+
/**
|
|
653
|
+
* Dot-path to the LATEST bugfix reproduction-proof attempt the harness published (the harness
|
|
654
|
+
* `reproductionReport` latest-value channel — NOT a drain buffer). A pool that proxies the
|
|
655
|
+
* cat-factory executor-harness verbatim should set this to `reproductionReport` so a pool-backed
|
|
656
|
+
* bugfix run surfaces a failed verification WHILE its repair loop runs, exactly like a
|
|
657
|
+
* Cloudflare/local container. Absent ⇒ the verdict is surfaced only from the terminal result
|
|
658
|
+
* envelope, which is still enough for the PR report and the step card.
|
|
659
|
+
*/
|
|
660
|
+
readonly reproductionReportPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
634
661
|
/** Dot-path to a job-level error message (a failed job, or a structured error). */
|
|
635
662
|
readonly errorPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
636
663
|
/**
|
|
@@ -919,6 +946,15 @@ export declare const runnerBackendConfigSchema: v.VariantSchema<"kind", [v.Objec
|
|
|
919
946
|
* envelope, which is still enough to gate the PR and carry the failure evidence.
|
|
920
947
|
*/
|
|
921
948
|
readonly validationReportPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
949
|
+
/**
|
|
950
|
+
* Dot-path to the LATEST bugfix reproduction-proof attempt the harness published (the harness
|
|
951
|
+
* `reproductionReport` latest-value channel — NOT a drain buffer). A pool that proxies the
|
|
952
|
+
* cat-factory executor-harness verbatim should set this to `reproductionReport` so a pool-backed
|
|
953
|
+
* bugfix run surfaces a failed verification WHILE its repair loop runs, exactly like a
|
|
954
|
+
* Cloudflare/local container. Absent ⇒ the verdict is surfaced only from the terminal result
|
|
955
|
+
* envelope, which is still enough for the PR report and the step card.
|
|
956
|
+
*/
|
|
957
|
+
readonly reproductionReportPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
922
958
|
/** Dot-path to a job-level error message (a failed job, or a structured error). */
|
|
923
959
|
readonly errorPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
924
960
|
/**
|
|
@@ -1112,6 +1148,15 @@ export declare const runnerPoolConnectionSchema: v.ObjectSchema<{
|
|
|
1112
1148
|
* envelope, which is still enough to gate the PR and carry the failure evidence.
|
|
1113
1149
|
*/
|
|
1114
1150
|
readonly validationReportPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1151
|
+
/**
|
|
1152
|
+
* Dot-path to the LATEST bugfix reproduction-proof attempt the harness published (the harness
|
|
1153
|
+
* `reproductionReport` latest-value channel — NOT a drain buffer). A pool that proxies the
|
|
1154
|
+
* cat-factory executor-harness verbatim should set this to `reproductionReport` so a pool-backed
|
|
1155
|
+
* bugfix run surfaces a failed verification WHILE its repair loop runs, exactly like a
|
|
1156
|
+
* Cloudflare/local container. Absent ⇒ the verdict is surfaced only from the terminal result
|
|
1157
|
+
* envelope, which is still enough for the PR report and the step card.
|
|
1158
|
+
*/
|
|
1159
|
+
readonly reproductionReportPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1115
1160
|
/** Dot-path to a job-level error message (a failed job, or a structured error). */
|
|
1116
1161
|
readonly errorPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1117
1162
|
/**
|
|
@@ -1400,6 +1445,15 @@ export declare const runnerPoolConnectionSchema: v.ObjectSchema<{
|
|
|
1400
1445
|
* envelope, which is still enough to gate the PR and carry the failure evidence.
|
|
1401
1446
|
*/
|
|
1402
1447
|
readonly validationReportPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1448
|
+
/**
|
|
1449
|
+
* Dot-path to the LATEST bugfix reproduction-proof attempt the harness published (the harness
|
|
1450
|
+
* `reproductionReport` latest-value channel — NOT a drain buffer). A pool that proxies the
|
|
1451
|
+
* cat-factory executor-harness verbatim should set this to `reproductionReport` so a pool-backed
|
|
1452
|
+
* bugfix run surfaces a failed verification WHILE its repair loop runs, exactly like a
|
|
1453
|
+
* Cloudflare/local container. Absent ⇒ the verdict is surfaced only from the terminal result
|
|
1454
|
+
* envelope, which is still enough for the PR report and the step card.
|
|
1455
|
+
*/
|
|
1456
|
+
readonly reproductionReportPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1403
1457
|
/** Dot-path to a job-level error message (a failed job, or a structured error). */
|
|
1404
1458
|
readonly errorPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1405
1459
|
/**
|
|
@@ -1587,6 +1641,15 @@ export declare const registerRunnerPoolSchema: v.ObjectSchema<{
|
|
|
1587
1641
|
* envelope, which is still enough to gate the PR and carry the failure evidence.
|
|
1588
1642
|
*/
|
|
1589
1643
|
readonly validationReportPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1644
|
+
/**
|
|
1645
|
+
* Dot-path to the LATEST bugfix reproduction-proof attempt the harness published (the harness
|
|
1646
|
+
* `reproductionReport` latest-value channel — NOT a drain buffer). A pool that proxies the
|
|
1647
|
+
* cat-factory executor-harness verbatim should set this to `reproductionReport` so a pool-backed
|
|
1648
|
+
* bugfix run surfaces a failed verification WHILE its repair loop runs, exactly like a
|
|
1649
|
+
* Cloudflare/local container. Absent ⇒ the verdict is surfaced only from the terminal result
|
|
1650
|
+
* envelope, which is still enough for the PR report and the step card.
|
|
1651
|
+
*/
|
|
1652
|
+
readonly reproductionReportPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1590
1653
|
/** Dot-path to a job-level error message (a failed job, or a structured error). */
|
|
1591
1654
|
readonly errorPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1592
1655
|
/**
|
|
@@ -1875,6 +1938,15 @@ export declare const registerRunnerPoolSchema: v.ObjectSchema<{
|
|
|
1875
1938
|
* envelope, which is still enough to gate the PR and carry the failure evidence.
|
|
1876
1939
|
*/
|
|
1877
1940
|
readonly validationReportPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1941
|
+
/**
|
|
1942
|
+
* Dot-path to the LATEST bugfix reproduction-proof attempt the harness published (the harness
|
|
1943
|
+
* `reproductionReport` latest-value channel — NOT a drain buffer). A pool that proxies the
|
|
1944
|
+
* cat-factory executor-harness verbatim should set this to `reproductionReport` so a pool-backed
|
|
1945
|
+
* bugfix run surfaces a failed verification WHILE its repair loop runs, exactly like a
|
|
1946
|
+
* Cloudflare/local container. Absent ⇒ the verdict is surfaced only from the terminal result
|
|
1947
|
+
* envelope, which is still enough for the PR report and the step card.
|
|
1948
|
+
*/
|
|
1949
|
+
readonly reproductionReportPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1878
1950
|
/** Dot-path to a job-level error message (a failed job, or a structured error). */
|
|
1879
1951
|
readonly errorPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1880
1952
|
/**
|
|
@@ -2064,6 +2136,15 @@ export declare const testRunnerPoolConnectionSchema: v.ObjectSchema<{
|
|
|
2064
2136
|
* envelope, which is still enough to gate the PR and carry the failure evidence.
|
|
2065
2137
|
*/
|
|
2066
2138
|
readonly validationReportPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2139
|
+
/**
|
|
2140
|
+
* Dot-path to the LATEST bugfix reproduction-proof attempt the harness published (the harness
|
|
2141
|
+
* `reproductionReport` latest-value channel — NOT a drain buffer). A pool that proxies the
|
|
2142
|
+
* cat-factory executor-harness verbatim should set this to `reproductionReport` so a pool-backed
|
|
2143
|
+
* bugfix run surfaces a failed verification WHILE its repair loop runs, exactly like a
|
|
2144
|
+
* Cloudflare/local container. Absent ⇒ the verdict is surfaced only from the terminal result
|
|
2145
|
+
* envelope, which is still enough for the PR report and the step card.
|
|
2146
|
+
*/
|
|
2147
|
+
readonly reproductionReportPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2067
2148
|
/** Dot-path to a job-level error message (a failed job, or a structured error). */
|
|
2068
2149
|
readonly errorPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2069
2150
|
/**
|
|
@@ -2352,6 +2433,15 @@ export declare const testRunnerPoolConnectionSchema: v.ObjectSchema<{
|
|
|
2352
2433
|
* envelope, which is still enough to gate the PR and carry the failure evidence.
|
|
2353
2434
|
*/
|
|
2354
2435
|
readonly validationReportPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2436
|
+
/**
|
|
2437
|
+
* Dot-path to the LATEST bugfix reproduction-proof attempt the harness published (the harness
|
|
2438
|
+
* `reproductionReport` latest-value channel — NOT a drain buffer). A pool that proxies the
|
|
2439
|
+
* cat-factory executor-harness verbatim should set this to `reproductionReport` so a pool-backed
|
|
2440
|
+
* bugfix run surfaces a failed verification WHILE its repair loop runs, exactly like a
|
|
2441
|
+
* Cloudflare/local container. Absent ⇒ the verdict is surfaced only from the terminal result
|
|
2442
|
+
* envelope, which is still enough for the PR report and the step card.
|
|
2443
|
+
*/
|
|
2444
|
+
readonly reproductionReportPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2355
2445
|
/** Dot-path to a job-level error message (a failed job, or a structured error). */
|
|
2356
2446
|
readonly errorPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2357
2447
|
/**
|
package/dist/runners.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"runners.d.ts","sourceRoot":"","sources":["../src/runners.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAoC5B,kFAAkF;AAClF,eAAO,MAAM,yBAAyB;;aAA6B,CAAA;AACnE,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,yBAAyB,CAAC,CAAA;AAEjF,oEAAoE;AACpE,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0BAA8B,CAAA;AACrE,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,0BAA0B,CAAC,CAAA;AAEnF;;;;;;;GAOG;AACH,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;aAAmC,CAAA;AAC/E,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,+BAA+B,CAAC,CAAA;AAE7F,wEAAwE;AACxE,eAAO,MAAM,oBAAoB,4DAA4C,CAAA;AAC7E,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,oBAAoB,CAAC,CAAA;AAEvE;;;;;GAKG;AACH,eAAO,MAAM,+BAA+B;IAC1C,8EAA8E;;IAE9E,2DAA2D;;;;;IAE3D,yEAAyE;;;;IAIzE;;;;;;OAMG;;IAEH,8CAA8C;;;;IAI9C;;;;;;;;;OASG;;IAEH;;;;;;;OAOG;;IAEH;;;;;;;OAOG;;IAEH;;;;;;;OAOG;;IAEH,mFAAmF;;IAEnF;;;;;;;OAOG;;IAEH;;;;OAIG;;aAEH,CAAA;AACF,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,+BAA+B,CAAC,CAAA;AAe7F,kFAAkF;AAClF,eAAO,MAAM,kCAAkC;;;aAG7C,CAAA;AACF,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,kCAAkC,CAAC,CAAA;AAEnG,wFAAwF;AACxF,eAAO,MAAM,kCAAkC,aAAa,CAAA;AAE5D,eAAO,MAAM,4BAA4B;IACvC,wDAAwD;;IAExD,uEAAuE;;IAEvE,iDAAiD;;IAMjD,4FAA4F;;IAE5F,sFAAsF;;IAEtF,6EAA6E;;IAE7E,kFAAkF;;IAElF;;;;;OAKG;;IAEH,wEAAwE;;IAExE,kEAAkE;;IAElE,iFAAiF;;IAEjF,qEAAqE;;;;;;;;;;;IAOrE,6EAA6E;;;;;IAE7E,0BAA0B;;IAE1B,iEAAiE;;IAEjE,iCAAiC;;IAEjC,sCAAsC;;aAEtC,CAAA;AACF,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,4BAA4B,CAAC,CAAA;AAEvF,8EAA8E;AAC9E,eAAO,MAAM,wBAAwB;;;IAGnC,0EAA0E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAG1E,uEAAuE;;;;;;;;;;;;;;;IAEvE,wEAAwE;;;;;;;;;;;;;;;IAExE,sEAAsE;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"runners.d.ts","sourceRoot":"","sources":["../src/runners.ts"],"names":[],"mappings":"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"}
|
package/dist/runners.js
CHANGED
|
@@ -108,6 +108,15 @@ export const runnerPoolResponseMappingSchema = v.object({
|
|
|
108
108
|
* envelope, which is still enough to gate the PR and carry the failure evidence.
|
|
109
109
|
*/
|
|
110
110
|
validationReportPath: v.optional(v.string()),
|
|
111
|
+
/**
|
|
112
|
+
* Dot-path to the LATEST bugfix reproduction-proof attempt the harness published (the harness
|
|
113
|
+
* `reproductionReport` latest-value channel — NOT a drain buffer). A pool that proxies the
|
|
114
|
+
* cat-factory executor-harness verbatim should set this to `reproductionReport` so a pool-backed
|
|
115
|
+
* bugfix run surfaces a failed verification WHILE its repair loop runs, exactly like a
|
|
116
|
+
* Cloudflare/local container. Absent ⇒ the verdict is surfaced only from the terminal result
|
|
117
|
+
* envelope, which is still enough for the PR report and the step card.
|
|
118
|
+
*/
|
|
119
|
+
reproductionReportPath: v.optional(v.string()),
|
|
111
120
|
/** Dot-path to a job-level error message (a failed job, or a structured error). */
|
|
112
121
|
errorPath: v.optional(v.string()),
|
|
113
122
|
/**
|
package/dist/runners.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"runners.js","sourceRoot":"","sources":["../src/runners.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"runners.js","sourceRoot":"","sources":["../src/runners.ts"],"names":[],"mappings":"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"}
|
package/dist/slack.d.ts
CHANGED
|
@@ -30,7 +30,7 @@ export type SlackRoute = v.InferOutput<typeof slackRouteSchema>;
|
|
|
30
30
|
* type absent from `routes`, disabled, or with an empty channel does not post.
|
|
31
31
|
*/
|
|
32
32
|
export declare const slackNotificationSettingsSchema: v.ObjectSchema<{
|
|
33
|
-
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", "fork_decision_pending", "pr_review_ready", "initiative", "platform_health", "budget_paused", "key_drift", "merge_tag_request"], undefined>, v.ObjectSchema<{
|
|
33
|
+
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", "fork_decision_pending", "judge_review", "pr_review_ready", "initiative", "platform_health", "budget_paused", "key_drift", "merge_tag_request"], undefined>, v.ObjectSchema<{
|
|
34
34
|
readonly enabled: v.BooleanSchema<undefined>;
|
|
35
35
|
/** A channel id (`C0123…`) or name (`#general`); empty = unrouted. */
|
|
36
36
|
readonly channel: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>;
|
|
@@ -83,7 +83,7 @@ export declare const connectSlackByTokenSchema: v.ObjectSchema<{
|
|
|
83
83
|
export type ConnectSlackByTokenInput = v.InferOutput<typeof connectSlackByTokenSchema>;
|
|
84
84
|
/** Replace a workspace's Slack notification routing. */
|
|
85
85
|
export declare const updateSlackSettingsSchema: v.ObjectSchema<{
|
|
86
|
-
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", "fork_decision_pending", "pr_review_ready", "initiative", "platform_health", "budget_paused", "key_drift", "merge_tag_request"], undefined>, v.ObjectSchema<{
|
|
86
|
+
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", "fork_decision_pending", "judge_review", "pr_review_ready", "initiative", "platform_health", "budget_paused", "key_drift", "merge_tag_request"], undefined>, v.ObjectSchema<{
|
|
87
87
|
readonly enabled: v.BooleanSchema<undefined>;
|
|
88
88
|
/** A channel id (`C0123…`) or name (`#general`); empty = unrouted. */
|
|
89
89
|
readonly channel: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>;
|
package/dist/snapshot.d.ts
CHANGED
|
@@ -780,6 +780,49 @@ export declare const workspaceSnapshotSchema: v.ObjectSchema<{
|
|
|
780
780
|
}, "Provide exactly one of forkId or custom.">]>, undefined>, undefined>;
|
|
781
781
|
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
782
782
|
}, undefined>, undefined>, undefined>;
|
|
783
|
+
readonly judge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
784
|
+
readonly status: v.PicklistSchema<["evaluating", "awaiting_decision", "bouncing", "passed", "failed", "skipped"], undefined>;
|
|
785
|
+
readonly rubricId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
786
|
+
readonly rubricName: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
787
|
+
readonly rubricOverridden: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
|
|
788
|
+
readonly verdict: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
789
|
+
readonly score: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, 0>;
|
|
790
|
+
readonly summary: v.SchemaWithFallback<v.StringSchema<undefined>, "">;
|
|
791
|
+
readonly findings: v.OptionalSchema<v.SchemaWithFallback<v.ArraySchema<v.ObjectSchema<{
|
|
792
|
+
readonly title: v.SchemaWithFallback<v.StringSchema<undefined>, "Untitled finding">;
|
|
793
|
+
readonly detail: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
794
|
+
readonly severity: v.SchemaWithFallback<v.PicklistSchema<["low", "medium", "high", "critical"], undefined>, "medium">;
|
|
795
|
+
readonly where: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
796
|
+
}, undefined>, undefined>, readonly []>, readonly []>;
|
|
797
|
+
}, undefined>, undefined>, undefined>;
|
|
798
|
+
readonly threshold: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
799
|
+
readonly disposition: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["pass", "park", "bounce", "fail"], undefined>, undefined>, undefined>;
|
|
800
|
+
readonly bounces: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
801
|
+
readonly maxBounces: v.OptionalSchema<v.NumberSchema<undefined>, 1>;
|
|
802
|
+
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
803
|
+
readonly rounds: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
804
|
+
readonly round: v.NumberSchema<undefined>;
|
|
805
|
+
readonly at: v.NumberSchema<undefined>;
|
|
806
|
+
readonly verdict: v.ObjectSchema<{
|
|
807
|
+
readonly score: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, 0>;
|
|
808
|
+
readonly summary: v.SchemaWithFallback<v.StringSchema<undefined>, "">;
|
|
809
|
+
readonly findings: v.OptionalSchema<v.SchemaWithFallback<v.ArraySchema<v.ObjectSchema<{
|
|
810
|
+
readonly title: v.SchemaWithFallback<v.StringSchema<undefined>, "Untitled finding">;
|
|
811
|
+
readonly detail: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
812
|
+
readonly severity: v.SchemaWithFallback<v.PicklistSchema<["low", "medium", "high", "critical"], undefined>, "medium">;
|
|
813
|
+
readonly where: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
814
|
+
}, undefined>, undefined>, readonly []>, readonly []>;
|
|
815
|
+
}, undefined>;
|
|
816
|
+
readonly disposition: v.PicklistSchema<["pass", "park", "bounce", "fail"], undefined>;
|
|
817
|
+
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
818
|
+
}, undefined>, undefined>, readonly []>;
|
|
819
|
+
readonly note: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
820
|
+
readonly resolution: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
821
|
+
readonly choice: v.PicklistSchema<["proceed", "bounce", "stop"], undefined>;
|
|
822
|
+
readonly feedback: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
823
|
+
readonly at: v.NumberSchema<undefined>;
|
|
824
|
+
}, undefined>, undefined>, undefined>;
|
|
825
|
+
}, undefined>, undefined>, undefined>;
|
|
783
826
|
readonly ralph: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
784
827
|
readonly phase: v.PicklistSchema<["iterating"], undefined>;
|
|
785
828
|
readonly attempts: v.NumberSchema<undefined>;
|
|
@@ -1449,7 +1492,7 @@ export declare const workspaceSnapshotSchema: v.ObjectSchema<{
|
|
|
1449
1492
|
*/
|
|
1450
1493
|
readonly notifications: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1451
1494
|
readonly id: v.StringSchema<undefined>;
|
|
1452
|
-
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", "fork_decision_pending", "pr_review_ready", "initiative", "platform_health", "budget_paused", "key_drift", "merge_tag_request"], undefined>;
|
|
1495
|
+
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", "fork_decision_pending", "judge_review", "pr_review_ready", "initiative", "platform_health", "budget_paused", "key_drift", "merge_tag_request"], undefined>;
|
|
1453
1496
|
readonly status: v.PicklistSchema<["open", "acted", "dismissed"], undefined>;
|
|
1454
1497
|
readonly severity: v.OptionalSchema<v.PicklistSchema<["normal", "urgent"], undefined>, undefined>;
|
|
1455
1498
|
readonly blockId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -1518,6 +1561,8 @@ export declare const workspaceSnapshotSchema: v.ObjectSchema<{
|
|
|
1518
1561
|
readonly releaseWatchWindowMinutes: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
1519
1562
|
readonly releaseMaxAttempts: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>;
|
|
1520
1563
|
readonly humanReviewGraceMinutes: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>;
|
|
1564
|
+
readonly judgeMinScore: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
1565
|
+
readonly judgeMaxBounces: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>;
|
|
1521
1566
|
readonly autoMergeEnabled: v.BooleanSchema<undefined>;
|
|
1522
1567
|
readonly forkDecision: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1523
1568
|
readonly enabled: v.BooleanSchema<undefined>;
|
|
@@ -2209,7 +2254,7 @@ export declare const workspaceSnapshotSchema: v.ObjectSchema<{
|
|
|
2209
2254
|
readonly color: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 40, undefined>]>;
|
|
2210
2255
|
readonly description: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2211
2256
|
readonly category: v.OptionalSchema<v.PicklistSchema<["review", "design", "build", "test", "docs", "gates"], undefined>, undefined>;
|
|
2212
|
-
readonly resultView: v.OptionalSchema<v.UnionSchema<[v.PicklistSchema<readonly ["requirements-review", "clarity-review", "brainstorm", "tester", "human-test", "visual-confirm", "gate", "consensus-session", "generic-structured", "service-spec", "follow-ups", "merger", "initiative-tracker", "initiative-planning", "doc-interview", "fork-decision", "pr-review", "ralph-loop"], undefined>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "Consumer id must be <namespace>:<name> (lowercase a-z0-9, dash-separated)">]>], undefined>, undefined>;
|
|
2257
|
+
readonly resultView: v.OptionalSchema<v.UnionSchema<[v.PicklistSchema<readonly ["requirements-review", "clarity-review", "brainstorm", "tester", "human-test", "visual-confirm", "gate", "consensus-session", "generic-structured", "service-spec", "follow-ups", "merger", "initiative-tracker", "initiative-planning", "doc-interview", "fork-decision", "judge", "pr-review", "ralph-loop"], undefined>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "Consumer id must be <namespace>:<name> (lowercase a-z0-9, dash-separated)">]>], undefined>, undefined>;
|
|
2213
2258
|
}, undefined>;
|
|
2214
2259
|
readonly container: v.BooleanSchema<undefined>;
|
|
2215
2260
|
}, undefined>, undefined>, undefined>;
|
package/dist/snapshot.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"snapshot.d.ts","sourceRoot":"","sources":["../src/snapshot.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAqC5B,4EAA4E;AAC5E,eAAO,MAAM,uBAAuB;;;IAGlC;;;;;OAKG;;aAEH,CAAA;AACF,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,uBAAuB,CAAC,CAAA;AAE7E,eAAO,MAAM,uBAAuB
|
|
1
|
+
{"version":3,"file":"snapshot.d.ts","sourceRoot":"","sources":["../src/snapshot.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAqC5B,4EAA4E;AAC5E,eAAO,MAAM,uBAAuB;;;IAGlC;;;;;OAKG;;aAEH,CAAA;AACF,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,uBAAuB,CAAC,CAAA;AAE7E,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAKlC;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;OAKG;;;;;;;;;;;;;;IAEH;;;;OAIG;;;;;;;;;;IAEH;;;;OAIG;;;;;;;;;;IAEH;;;;OAIG;;;;;;;;;;IAEH;;;OAGG;;;;IAEH;;;;OAIG;;;;;;IAEH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;OAGG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;;OAMG;;;;;;;;;;;;;;IAEH;;;;;OAKG;;;;;;;;;;IAEH;;;;;;;;OAQG;;;;;IAOH;;;OAGG;;;;IAEH;;;;OAIG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;OAGG;;;;;;;;;;IAEH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;IAGH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;OAIG;;;;;;;;;;;;;;;;;;IAEH;;;;;;OAMG;;;;;;;;;;;;;IAEH;;;;;;;OAOG;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;;;;;OASG;;;;QAjLH;;;;;WAKG;;;;;;QALH;;;;;WAKG;;;IA+KH;;;;;;;OAOG;;IAEH;;;;;;;OAOG;;IAEH;;;;;;;OAOG;;IAEH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;;;OAOG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;;;OAOG;;;;;;IAEH;;;;;;;OAOG;;;;;;IAEH;;;;;OAKG;;;;;aAEH,CAAA;AACF,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,uBAAuB,CAAC,CAAA"}
|