sysprom 1.20.0 → 1.21.1
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/schema.json +4 -44
- package/dist/src/cli/commands/add.js +6 -2
- package/dist/src/cli/commands/query.js +5 -3
- package/dist/src/cli/commands/speckit.js +2 -2
- package/dist/src/cli/commands/update.js +6 -4
- package/dist/src/endpoint-types.d.ts +4 -0
- package/dist/src/endpoint-types.js +22 -121
- package/dist/src/json-to-md.js +2 -16
- package/dist/src/lifecycle-state.d.ts +9 -0
- package/dist/src/lifecycle-state.js +22 -0
- package/dist/src/mcp/server.js +3 -6
- package/dist/src/md-to-json.js +1 -19
- package/dist/src/operations/add-node.d.ts +21 -135
- package/dist/src/operations/add-plan-task.d.ts +14 -90
- package/dist/src/operations/add-relationship.d.ts +16 -105
- package/dist/src/operations/check.d.ts +7 -45
- package/dist/src/operations/graph-decision.d.ts +7 -45
- package/dist/src/operations/graph-decision.js +0 -1
- package/dist/src/operations/graph-dependency.d.ts +7 -45
- package/dist/src/operations/graph-dependency.js +3 -23
- package/dist/src/operations/graph-refinement.d.ts +7 -45
- package/dist/src/operations/graph-shared.js +1 -3
- package/dist/src/operations/graph.d.ts +7 -45
- package/dist/src/operations/infer-completeness.d.ts +10 -54
- package/dist/src/operations/infer-derived.d.ts +7 -45
- package/dist/src/operations/infer-derived.js +28 -4
- package/dist/src/operations/infer-impact.d.ts +49 -315
- package/dist/src/operations/infer-impact.js +22 -3
- package/dist/src/operations/infer-lifecycle.d.ts +8 -106
- package/dist/src/operations/infer-lifecycle.js +4 -10
- package/dist/src/operations/init-document.d.ts +7 -45
- package/dist/src/operations/json-to-markdown.d.ts +7 -45
- package/dist/src/operations/mark-task-done.d.ts +14 -90
- package/dist/src/operations/mark-task-undone.d.ts +14 -90
- package/dist/src/operations/markdown-to-json.d.ts +7 -45
- package/dist/src/operations/next-id.d.ts +8 -48
- package/dist/src/operations/node-history.d.ts +7 -45
- package/dist/src/operations/plan-add-task.d.ts +14 -90
- package/dist/src/operations/plan-gate.d.ts +7 -45
- package/dist/src/operations/plan-init.d.ts +7 -45
- package/dist/src/operations/plan-progress.d.ts +7 -45
- package/dist/src/operations/plan-status.d.ts +7 -45
- package/dist/src/operations/query-node.d.ts +29 -195
- package/dist/src/operations/query-nodes.d.ts +15 -91
- package/dist/src/operations/query-nodes.js +6 -4
- package/dist/src/operations/query-relationships.d.ts +9 -60
- package/dist/src/operations/remove-node.d.ts +21 -135
- package/dist/src/operations/remove-node.js +11 -1
- package/dist/src/operations/remove-relationship.d.ts +15 -104
- package/dist/src/operations/rename.d.ts +14 -90
- package/dist/src/operations/search.d.ts +14 -90
- package/dist/src/operations/speckit-diff.d.ts +7 -45
- package/dist/src/operations/speckit-export.d.ts +7 -45
- package/dist/src/operations/speckit-import.d.ts +7 -45
- package/dist/src/operations/speckit-sync.d.ts +22 -136
- package/dist/src/operations/speckit-sync.js +3 -3
- package/dist/src/operations/state-at.d.ts +7 -45
- package/dist/src/operations/stats.d.ts +7 -45
- package/dist/src/operations/sync.d.ts +21 -135
- package/dist/src/operations/task-list.d.ts +7 -45
- package/dist/src/operations/timeline.d.ts +7 -45
- package/dist/src/operations/trace-from-node.d.ts +21 -135
- package/dist/src/operations/update-metadata.d.ts +14 -90
- package/dist/src/operations/update-node.d.ts +20 -155
- package/dist/src/operations/update-plan-task.d.ts +14 -90
- package/dist/src/operations/validate.d.ts +7 -45
- package/dist/src/operations/validate.js +8 -6
- package/dist/src/schema.d.ts +22 -164
- package/dist/src/schema.js +4 -27
- package/dist/src/speckit/generate.js +10 -7
- package/dist/src/speckit/parse.js +6 -3
- package/dist/src/speckit/plan.js +1 -1
- package/package.json +13 -2
- package/schema.json +4 -44
|
@@ -39,39 +39,18 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
39
39
|
gate: "gate";
|
|
40
40
|
mode: "mode";
|
|
41
41
|
artefact: "artefact";
|
|
42
|
-
artefact_flow: "artefact_flow";
|
|
43
42
|
decision: "decision";
|
|
44
43
|
change: "change";
|
|
45
44
|
view: "view";
|
|
46
45
|
milestone: "milestone";
|
|
47
|
-
version: "version";
|
|
48
46
|
}> & {
|
|
49
|
-
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
47
|
+
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
50
48
|
};
|
|
51
49
|
name: z.ZodString;
|
|
52
50
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
53
51
|
is(value: unknown): value is string | string[];
|
|
54
52
|
}>;
|
|
55
|
-
status: z.ZodOptional<z.
|
|
56
|
-
deprecated: "deprecated";
|
|
57
|
-
proposed: "proposed";
|
|
58
|
-
accepted: "accepted";
|
|
59
|
-
active: "active";
|
|
60
|
-
implemented: "implemented";
|
|
61
|
-
adopted: "adopted";
|
|
62
|
-
defined: "defined";
|
|
63
|
-
introduced: "introduced";
|
|
64
|
-
in_progress: "in_progress";
|
|
65
|
-
complete: "complete";
|
|
66
|
-
consolidated: "consolidated";
|
|
67
|
-
experimental: "experimental";
|
|
68
|
-
retired: "retired";
|
|
69
|
-
superseded: "superseded";
|
|
70
|
-
abandoned: "abandoned";
|
|
71
|
-
deferred: "deferred";
|
|
72
|
-
}> & {
|
|
73
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
74
|
-
}>;
|
|
53
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
75
54
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
76
55
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
77
56
|
is(value: unknown): value is string | string[];
|
|
@@ -126,8 +105,6 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
126
105
|
}>>;
|
|
127
106
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
128
107
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
129
|
-
input: z.ZodOptional<z.ZodString>;
|
|
130
|
-
output: z.ZodOptional<z.ZodString>;
|
|
131
108
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
132
109
|
role: z.ZodEnum<{
|
|
133
110
|
output: "output";
|
|
@@ -171,27 +148,14 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
171
148
|
affects: "affects";
|
|
172
149
|
supersedes: "supersedes";
|
|
173
150
|
must_preserve: "must_preserve";
|
|
174
|
-
performs: "performs";
|
|
175
151
|
part_of: "part_of";
|
|
176
152
|
precedes: "precedes";
|
|
177
153
|
must_follow: "must_follow";
|
|
178
|
-
blocks: "blocks";
|
|
179
|
-
routes_to: "routes_to";
|
|
180
|
-
orchestrates: "orchestrates";
|
|
181
154
|
governed_by: "governed_by";
|
|
182
155
|
modifies: "modifies";
|
|
183
|
-
triggered_by: "triggered_by";
|
|
184
|
-
applies_to: "applies_to";
|
|
185
156
|
produces: "produces";
|
|
186
|
-
consumes: "consumes";
|
|
187
|
-
transforms_into: "transforms_into";
|
|
188
|
-
selects: "selects";
|
|
189
|
-
requires: "requires";
|
|
190
|
-
disables: "disables";
|
|
191
|
-
influence: "influence";
|
|
192
|
-
justifies: "justifies";
|
|
193
157
|
}> & {
|
|
194
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
158
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
195
159
|
};
|
|
196
160
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
197
161
|
is(value: unknown): value is string | string[];
|
|
@@ -210,7 +174,7 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
210
174
|
[x: string]: unknown;
|
|
211
175
|
from: string;
|
|
212
176
|
to: string;
|
|
213
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
177
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
214
178
|
description?: string | string[] | undefined;
|
|
215
179
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
216
180
|
strength?: number | undefined;
|
|
@@ -250,10 +214,10 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
250
214
|
nodes: {
|
|
251
215
|
[x: string]: unknown;
|
|
252
216
|
id: string;
|
|
253
|
-
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
217
|
+
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
254
218
|
name: string;
|
|
255
219
|
description?: string | string[] | undefined;
|
|
256
|
-
status?:
|
|
220
|
+
status?: undefined;
|
|
257
221
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
258
222
|
context?: string | string[] | undefined;
|
|
259
223
|
options?: {
|
|
@@ -277,8 +241,6 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
277
241
|
}[] | undefined;
|
|
278
242
|
propagation?: Record<string, boolean> | undefined;
|
|
279
243
|
includes?: string[] | undefined;
|
|
280
|
-
input?: string | undefined;
|
|
281
|
-
output?: string | undefined;
|
|
282
244
|
external_references?: {
|
|
283
245
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
284
246
|
identifier: string;
|
|
@@ -301,7 +263,7 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
301
263
|
[x: string]: unknown;
|
|
302
264
|
from: string;
|
|
303
265
|
to: string;
|
|
304
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
266
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
305
267
|
description?: string | string[] | undefined;
|
|
306
268
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
307
269
|
strength?: number | undefined;
|
|
@@ -333,39 +295,18 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
333
295
|
gate: "gate";
|
|
334
296
|
mode: "mode";
|
|
335
297
|
artefact: "artefact";
|
|
336
|
-
artefact_flow: "artefact_flow";
|
|
337
298
|
decision: "decision";
|
|
338
299
|
change: "change";
|
|
339
300
|
view: "view";
|
|
340
301
|
milestone: "milestone";
|
|
341
|
-
version: "version";
|
|
342
302
|
}> & {
|
|
343
|
-
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
303
|
+
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
344
304
|
}>;
|
|
345
305
|
name: z.ZodOptional<z.ZodString>;
|
|
346
306
|
description: z.ZodOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
347
307
|
is(value: unknown): value is string | string[];
|
|
348
308
|
}>>;
|
|
349
|
-
status: z.ZodOptional<z.ZodOptional<z.
|
|
350
|
-
deprecated: "deprecated";
|
|
351
|
-
proposed: "proposed";
|
|
352
|
-
accepted: "accepted";
|
|
353
|
-
active: "active";
|
|
354
|
-
implemented: "implemented";
|
|
355
|
-
adopted: "adopted";
|
|
356
|
-
defined: "defined";
|
|
357
|
-
introduced: "introduced";
|
|
358
|
-
in_progress: "in_progress";
|
|
359
|
-
complete: "complete";
|
|
360
|
-
consolidated: "consolidated";
|
|
361
|
-
experimental: "experimental";
|
|
362
|
-
retired: "retired";
|
|
363
|
-
superseded: "superseded";
|
|
364
|
-
abandoned: "abandoned";
|
|
365
|
-
deferred: "deferred";
|
|
366
|
-
}> & {
|
|
367
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
368
|
-
}>>;
|
|
309
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodNever>>;
|
|
369
310
|
lifecycle: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>>;
|
|
370
311
|
context: z.ZodOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
371
312
|
is(value: unknown): value is string | string[];
|
|
@@ -420,8 +361,6 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
420
361
|
}>>>;
|
|
421
362
|
propagation: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>>;
|
|
422
363
|
includes: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
423
|
-
input: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
424
|
-
output: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
425
364
|
external_references: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
426
365
|
role: z.ZodEnum<{
|
|
427
366
|
output: "output";
|
|
@@ -486,39 +425,18 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
486
425
|
gate: "gate";
|
|
487
426
|
mode: "mode";
|
|
488
427
|
artefact: "artefact";
|
|
489
|
-
artefact_flow: "artefact_flow";
|
|
490
428
|
decision: "decision";
|
|
491
429
|
change: "change";
|
|
492
430
|
view: "view";
|
|
493
431
|
milestone: "milestone";
|
|
494
|
-
version: "version";
|
|
495
432
|
}> & {
|
|
496
|
-
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
433
|
+
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
497
434
|
};
|
|
498
435
|
name: z.ZodString;
|
|
499
436
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
500
437
|
is(value: unknown): value is string | string[];
|
|
501
438
|
}>;
|
|
502
|
-
status: z.ZodOptional<z.
|
|
503
|
-
deprecated: "deprecated";
|
|
504
|
-
proposed: "proposed";
|
|
505
|
-
accepted: "accepted";
|
|
506
|
-
active: "active";
|
|
507
|
-
implemented: "implemented";
|
|
508
|
-
adopted: "adopted";
|
|
509
|
-
defined: "defined";
|
|
510
|
-
introduced: "introduced";
|
|
511
|
-
in_progress: "in_progress";
|
|
512
|
-
complete: "complete";
|
|
513
|
-
consolidated: "consolidated";
|
|
514
|
-
experimental: "experimental";
|
|
515
|
-
retired: "retired";
|
|
516
|
-
superseded: "superseded";
|
|
517
|
-
abandoned: "abandoned";
|
|
518
|
-
deferred: "deferred";
|
|
519
|
-
}> & {
|
|
520
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
521
|
-
}>;
|
|
439
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
522
440
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
523
441
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
524
442
|
is(value: unknown): value is string | string[];
|
|
@@ -573,8 +491,6 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
573
491
|
}>>;
|
|
574
492
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
575
493
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
576
|
-
input: z.ZodOptional<z.ZodString>;
|
|
577
|
-
output: z.ZodOptional<z.ZodString>;
|
|
578
494
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
579
495
|
role: z.ZodEnum<{
|
|
580
496
|
output: "output";
|
|
@@ -618,27 +534,14 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
618
534
|
affects: "affects";
|
|
619
535
|
supersedes: "supersedes";
|
|
620
536
|
must_preserve: "must_preserve";
|
|
621
|
-
performs: "performs";
|
|
622
537
|
part_of: "part_of";
|
|
623
538
|
precedes: "precedes";
|
|
624
539
|
must_follow: "must_follow";
|
|
625
|
-
blocks: "blocks";
|
|
626
|
-
routes_to: "routes_to";
|
|
627
|
-
orchestrates: "orchestrates";
|
|
628
540
|
governed_by: "governed_by";
|
|
629
541
|
modifies: "modifies";
|
|
630
|
-
triggered_by: "triggered_by";
|
|
631
|
-
applies_to: "applies_to";
|
|
632
542
|
produces: "produces";
|
|
633
|
-
consumes: "consumes";
|
|
634
|
-
transforms_into: "transforms_into";
|
|
635
|
-
selects: "selects";
|
|
636
|
-
requires: "requires";
|
|
637
|
-
disables: "disables";
|
|
638
|
-
influence: "influence";
|
|
639
|
-
justifies: "justifies";
|
|
640
543
|
}> & {
|
|
641
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
544
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
642
545
|
};
|
|
643
546
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
644
547
|
is(value: unknown): value is string | string[];
|
|
@@ -657,7 +560,7 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
657
560
|
[x: string]: unknown;
|
|
658
561
|
from: string;
|
|
659
562
|
to: string;
|
|
660
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
563
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
661
564
|
description?: string | string[] | undefined;
|
|
662
565
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
663
566
|
strength?: number | undefined;
|
|
@@ -729,39 +632,18 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
729
632
|
gate: "gate";
|
|
730
633
|
mode: "mode";
|
|
731
634
|
artefact: "artefact";
|
|
732
|
-
artefact_flow: "artefact_flow";
|
|
733
635
|
decision: "decision";
|
|
734
636
|
change: "change";
|
|
735
637
|
view: "view";
|
|
736
638
|
milestone: "milestone";
|
|
737
|
-
version: "version";
|
|
738
639
|
}> & {
|
|
739
|
-
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
640
|
+
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
740
641
|
};
|
|
741
642
|
name: z.ZodString;
|
|
742
643
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
743
644
|
is(value: unknown): value is string | string[];
|
|
744
645
|
}>;
|
|
745
|
-
status: z.ZodOptional<z.
|
|
746
|
-
deprecated: "deprecated";
|
|
747
|
-
proposed: "proposed";
|
|
748
|
-
accepted: "accepted";
|
|
749
|
-
active: "active";
|
|
750
|
-
implemented: "implemented";
|
|
751
|
-
adopted: "adopted";
|
|
752
|
-
defined: "defined";
|
|
753
|
-
introduced: "introduced";
|
|
754
|
-
in_progress: "in_progress";
|
|
755
|
-
complete: "complete";
|
|
756
|
-
consolidated: "consolidated";
|
|
757
|
-
experimental: "experimental";
|
|
758
|
-
retired: "retired";
|
|
759
|
-
superseded: "superseded";
|
|
760
|
-
abandoned: "abandoned";
|
|
761
|
-
deferred: "deferred";
|
|
762
|
-
}> & {
|
|
763
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
764
|
-
}>;
|
|
646
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
765
647
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
766
648
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
767
649
|
is(value: unknown): value is string | string[];
|
|
@@ -816,8 +698,6 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
816
698
|
}>>;
|
|
817
699
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
818
700
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
819
|
-
input: z.ZodOptional<z.ZodString>;
|
|
820
|
-
output: z.ZodOptional<z.ZodString>;
|
|
821
701
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
822
702
|
role: z.ZodEnum<{
|
|
823
703
|
output: "output";
|
|
@@ -861,27 +741,14 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
861
741
|
affects: "affects";
|
|
862
742
|
supersedes: "supersedes";
|
|
863
743
|
must_preserve: "must_preserve";
|
|
864
|
-
performs: "performs";
|
|
865
744
|
part_of: "part_of";
|
|
866
745
|
precedes: "precedes";
|
|
867
746
|
must_follow: "must_follow";
|
|
868
|
-
blocks: "blocks";
|
|
869
|
-
routes_to: "routes_to";
|
|
870
|
-
orchestrates: "orchestrates";
|
|
871
747
|
governed_by: "governed_by";
|
|
872
748
|
modifies: "modifies";
|
|
873
|
-
triggered_by: "triggered_by";
|
|
874
|
-
applies_to: "applies_to";
|
|
875
749
|
produces: "produces";
|
|
876
|
-
consumes: "consumes";
|
|
877
|
-
transforms_into: "transforms_into";
|
|
878
|
-
selects: "selects";
|
|
879
|
-
requires: "requires";
|
|
880
|
-
disables: "disables";
|
|
881
|
-
influence: "influence";
|
|
882
|
-
justifies: "justifies";
|
|
883
750
|
}> & {
|
|
884
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
751
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
885
752
|
};
|
|
886
753
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
887
754
|
is(value: unknown): value is string | string[];
|
|
@@ -900,7 +767,7 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
900
767
|
[x: string]: unknown;
|
|
901
768
|
from: string;
|
|
902
769
|
to: string;
|
|
903
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
770
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
904
771
|
description?: string | string[] | undefined;
|
|
905
772
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
906
773
|
strength?: number | undefined;
|
|
@@ -940,10 +807,10 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
940
807
|
nodes: {
|
|
941
808
|
[x: string]: unknown;
|
|
942
809
|
id: string;
|
|
943
|
-
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
810
|
+
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
944
811
|
name: string;
|
|
945
812
|
description?: string | string[] | undefined;
|
|
946
|
-
status?:
|
|
813
|
+
status?: undefined;
|
|
947
814
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
948
815
|
context?: string | string[] | undefined;
|
|
949
816
|
options?: {
|
|
@@ -967,8 +834,6 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
967
834
|
}[] | undefined;
|
|
968
835
|
propagation?: Record<string, boolean> | undefined;
|
|
969
836
|
includes?: string[] | undefined;
|
|
970
|
-
input?: string | undefined;
|
|
971
|
-
output?: string | undefined;
|
|
972
837
|
external_references?: {
|
|
973
838
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
974
839
|
identifier: string;
|
|
@@ -991,7 +856,7 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
991
856
|
[x: string]: unknown;
|
|
992
857
|
from: string;
|
|
993
858
|
to: string;
|
|
994
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
859
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
995
860
|
description?: string | string[] | undefined;
|
|
996
861
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
997
862
|
strength?: number | undefined;
|