@cat-factory/contracts 0.121.1 → 0.121.2
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/snapshot.d.ts +6 -6
- package/dist/snapshot.js +6 -6
- package/package.json +1 -1
package/dist/snapshot.d.ts
CHANGED
|
@@ -1756,12 +1756,12 @@ export declare const workspaceSnapshotSchema: v.ObjectSchema<{
|
|
|
1756
1756
|
readonly updatedAt: v.NumberSchema<undefined>;
|
|
1757
1757
|
}, undefined>, undefined>, undefined>;
|
|
1758
1758
|
/**
|
|
1759
|
-
* The registered INITIATIVE PRESETS (built-in `preset_generic` + any a deployment
|
|
1760
|
-
* `
|
|
1761
|
-
* + defaults + `probe` flag). The SPA's create-initiative picker renders
|
|
1762
|
-
* chosen preset's `planningPipelineId`.
|
|
1763
|
-
*
|
|
1764
|
-
*
|
|
1759
|
+
* The registered INITIATIVE PRESETS (built-in `preset_generic` + any a deployment registered by
|
|
1760
|
+
* reference on the app-owned `InitiativePresetRegistry`), each a serialisable descriptor (form +
|
|
1761
|
+
* planning-pipeline binding + defaults + `probe` flag). The SPA's create-initiative picker renders
|
|
1762
|
+
* these and starts the chosen preset's `planningPipelineId`. Workspace-independent; attached by the
|
|
1763
|
+
* shared `WorkspaceController` (so it is symmetric across runtimes), optional on the wire — the SPA
|
|
1764
|
+
* falls back to the built-in generic pipeline when absent.
|
|
1765
1765
|
*/
|
|
1766
1766
|
readonly initiativePresets: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1767
1767
|
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
|
package/dist/snapshot.js
CHANGED
|
@@ -214,12 +214,12 @@ export const workspaceSnapshotSchema = v.object({
|
|
|
214
214
|
*/
|
|
215
215
|
initiatives: v.optional(v.array(initiativeSchema)),
|
|
216
216
|
/**
|
|
217
|
-
* The registered INITIATIVE PRESETS (built-in `preset_generic` + any a deployment
|
|
218
|
-
* `
|
|
219
|
-
* + defaults + `probe` flag). The SPA's create-initiative picker renders
|
|
220
|
-
* chosen preset's `planningPipelineId`.
|
|
221
|
-
*
|
|
222
|
-
*
|
|
217
|
+
* The registered INITIATIVE PRESETS (built-in `preset_generic` + any a deployment registered by
|
|
218
|
+
* reference on the app-owned `InitiativePresetRegistry`), each a serialisable descriptor (form +
|
|
219
|
+
* planning-pipeline binding + defaults + `probe` flag). The SPA's create-initiative picker renders
|
|
220
|
+
* these and starts the chosen preset's `planningPipelineId`. Workspace-independent; attached by the
|
|
221
|
+
* shared `WorkspaceController` (so it is symmetric across runtimes), optional on the wire — the SPA
|
|
222
|
+
* falls back to the built-in generic pipeline when absent.
|
|
223
223
|
*/
|
|
224
224
|
initiativePresets: v.optional(v.array(initiativePresetDescriptorSchema)),
|
|
225
225
|
/**
|