@cat-factory/contracts 0.349.0 → 0.351.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-gating.d.ts.map +1 -1
- package/dist/agent-gating.js +11 -0
- package/dist/agent-gating.js.map +1 -1
- package/dist/assistant.d.ts +419 -0
- package/dist/assistant.d.ts.map +1 -0
- package/dist/assistant.js +258 -0
- package/dist/assistant.js.map +1 -0
- package/dist/bugFishing.d.ts +5 -4
- package/dist/bugFishing.d.ts.map +1 -1
- package/dist/bugFishing.js +7 -5
- package/dist/bugFishing.js.map +1 -1
- package/dist/errors.d.ts +18 -1
- package/dist/errors.d.ts.map +1 -1
- package/dist/errors.js +19 -0
- package/dist/errors.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/routes/assistant.d.ts +138 -0
- package/dist/routes/assistant.d.ts.map +1 -0
- package/dist/routes/assistant.js +28 -0
- package/dist/routes/assistant.js.map +1 -0
- 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/public-evidence.d.ts +1 -1
- package/dist/run-evidence.d.ts +26 -0
- package/dist/run-evidence.d.ts.map +1 -1
- package/dist/run-evidence.js +29 -0
- package/dist/run-evidence.js.map +1 -1
- package/dist/run-outcome.d.ts +3 -3
- package/dist/run-outcome.d.ts.map +1 -1
- package/dist/run-outcome.js +23 -5
- package/dist/run-outcome.js.map +1 -1
- package/dist/workspace-settings.d.ts +2 -2
- package/dist/workspace-settings.js +2 -2
- package/package.json +1 -1
|
@@ -216,8 +216,8 @@ export declare const workspaceSettingsSchema: v.ObjectSchema<{
|
|
|
216
216
|
readonly allowInitiatorPat: v.BooleanSchema<undefined>;
|
|
217
217
|
/**
|
|
218
218
|
* The pipeline a bug-fix task spawned from a BUG-FISHING EXPEDITION finding runs, when the
|
|
219
|
-
* person marking the finding names none. Null ⇒ the built-in bug-fix preset
|
|
220
|
-
* which is what every workspace gets until it sets one.
|
|
219
|
+
* person marking the finding names none. Null ⇒ the built-in TEST-VERIFIED bug-fix preset
|
|
220
|
+
* (`pl_bugfix_tested`), which is what every workspace gets until it sets one.
|
|
221
221
|
*
|
|
222
222
|
* A board-level setting rather than a per-expedition field because it is a property of how
|
|
223
223
|
* this team fixes bugs, not of the hunt that found them: a workspace whose bug work goes
|
|
@@ -275,8 +275,8 @@ export const workspaceSettingsSchema = v.object({
|
|
|
275
275
|
allowInitiatorPat: v.boolean(),
|
|
276
276
|
/**
|
|
277
277
|
* The pipeline a bug-fix task spawned from a BUG-FISHING EXPEDITION finding runs, when the
|
|
278
|
-
* person marking the finding names none. Null ⇒ the built-in bug-fix preset
|
|
279
|
-
* which is what every workspace gets until it sets one.
|
|
278
|
+
* person marking the finding names none. Null ⇒ the built-in TEST-VERIFIED bug-fix preset
|
|
279
|
+
* (`pl_bugfix_tested`), which is what every workspace gets until it sets one.
|
|
280
280
|
*
|
|
281
281
|
* A board-level setting rather than a per-expedition field because it is a property of how
|
|
282
282
|
* this team fixes bugs, not of the hunt that found them: a workspace whose bug work goes
|