sysprom 1.19.0 → 1.21.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/README.md +3 -0
- package/dist/schema.json +4 -43
- 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 -116
- 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 -132
- package/dist/src/operations/add-plan-task.d.ts +14 -88
- package/dist/src/operations/add-relationship.d.ts +16 -102
- package/dist/src/operations/check.d.ts +7 -44
- package/dist/src/operations/graph-decision.d.ts +7 -44
- package/dist/src/operations/graph-decision.js +0 -1
- package/dist/src/operations/graph-dependency.d.ts +7 -44
- package/dist/src/operations/graph-dependency.js +3 -23
- package/dist/src/operations/graph-refinement.d.ts +7 -44
- package/dist/src/operations/graph-shared.js +1 -3
- package/dist/src/operations/graph.d.ts +7 -44
- package/dist/src/operations/infer-completeness.d.ts +10 -53
- package/dist/src/operations/infer-derived.d.ts +7 -44
- package/dist/src/operations/infer-derived.js +28 -4
- package/dist/src/operations/infer-impact.d.ts +49 -308
- package/dist/src/operations/infer-impact.js +22 -3
- package/dist/src/operations/infer-lifecycle.d.ts +8 -105
- package/dist/src/operations/infer-lifecycle.js +4 -10
- package/dist/src/operations/init-document.d.ts +7 -44
- package/dist/src/operations/json-to-markdown.d.ts +7 -44
- package/dist/src/operations/mark-task-done.d.ts +14 -88
- package/dist/src/operations/mark-task-undone.d.ts +14 -88
- package/dist/src/operations/markdown-to-json.d.ts +7 -44
- package/dist/src/operations/next-id.d.ts +8 -47
- package/dist/src/operations/node-history.d.ts +7 -44
- package/dist/src/operations/plan-add-task.d.ts +14 -88
- package/dist/src/operations/plan-gate.d.ts +7 -44
- package/dist/src/operations/plan-init.d.ts +7 -44
- package/dist/src/operations/plan-progress.d.ts +7 -44
- package/dist/src/operations/plan-status.d.ts +7 -44
- package/dist/src/operations/query-node.d.ts +29 -188
- package/dist/src/operations/query-nodes.d.ts +15 -89
- package/dist/src/operations/query-nodes.js +6 -4
- package/dist/src/operations/query-relationships.d.ts +9 -58
- package/dist/src/operations/remove-node.d.ts +21 -132
- package/dist/src/operations/remove-node.js +11 -1
- package/dist/src/operations/remove-relationship.d.ts +15 -101
- package/dist/src/operations/rename.d.ts +14 -88
- package/dist/src/operations/search.d.ts +14 -88
- package/dist/src/operations/speckit-diff.d.ts +7 -44
- package/dist/src/operations/speckit-export.d.ts +7 -44
- package/dist/src/operations/speckit-import.d.ts +7 -44
- package/dist/src/operations/speckit-sync.d.ts +22 -133
- package/dist/src/operations/speckit-sync.js +3 -3
- package/dist/src/operations/state-at.d.ts +7 -44
- package/dist/src/operations/stats.d.ts +7 -44
- package/dist/src/operations/sync.d.ts +21 -132
- package/dist/src/operations/task-list.d.ts +7 -44
- package/dist/src/operations/timeline.d.ts +7 -44
- package/dist/src/operations/trace-from-node.d.ts +21 -132
- package/dist/src/operations/update-metadata.d.ts +14 -88
- package/dist/src/operations/update-node.d.ts +20 -152
- package/dist/src/operations/update-plan-task.d.ts +14 -88
- package/dist/src/operations/validate.d.ts +7 -44
- package/dist/src/operations/validate.js +8 -6
- package/dist/src/schema.d.ts +22 -159
- package/dist/src/schema.js +4 -26
- 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 +12 -1
- package/schema.json +4 -43
|
@@ -18,39 +18,18 @@ export declare const NodeDetail: z.ZodNullable<z.ZodObject<{
|
|
|
18
18
|
gate: "gate";
|
|
19
19
|
mode: "mode";
|
|
20
20
|
artefact: "artefact";
|
|
21
|
-
artefact_flow: "artefact_flow";
|
|
22
21
|
decision: "decision";
|
|
23
22
|
change: "change";
|
|
24
23
|
view: "view";
|
|
25
24
|
milestone: "milestone";
|
|
26
|
-
version: "version";
|
|
27
25
|
}> & {
|
|
28
|
-
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
26
|
+
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
29
27
|
};
|
|
30
28
|
name: z.ZodString;
|
|
31
29
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
32
30
|
is(value: unknown): value is string | string[];
|
|
33
31
|
}>;
|
|
34
|
-
status: z.ZodOptional<z.
|
|
35
|
-
deprecated: "deprecated";
|
|
36
|
-
proposed: "proposed";
|
|
37
|
-
accepted: "accepted";
|
|
38
|
-
active: "active";
|
|
39
|
-
implemented: "implemented";
|
|
40
|
-
adopted: "adopted";
|
|
41
|
-
defined: "defined";
|
|
42
|
-
introduced: "introduced";
|
|
43
|
-
in_progress: "in_progress";
|
|
44
|
-
complete: "complete";
|
|
45
|
-
consolidated: "consolidated";
|
|
46
|
-
experimental: "experimental";
|
|
47
|
-
retired: "retired";
|
|
48
|
-
superseded: "superseded";
|
|
49
|
-
abandoned: "abandoned";
|
|
50
|
-
deferred: "deferred";
|
|
51
|
-
}> & {
|
|
52
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
53
|
-
}>;
|
|
32
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
54
33
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
55
34
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
56
35
|
is(value: unknown): value is string | string[];
|
|
@@ -105,8 +84,6 @@ export declare const NodeDetail: z.ZodNullable<z.ZodObject<{
|
|
|
105
84
|
}>>;
|
|
106
85
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
107
86
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
108
|
-
input: z.ZodOptional<z.ZodString>;
|
|
109
|
-
output: z.ZodOptional<z.ZodString>;
|
|
110
87
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
111
88
|
role: z.ZodEnum<{
|
|
112
89
|
output: "output";
|
|
@@ -167,26 +144,14 @@ export declare const NodeDetail: z.ZodNullable<z.ZodObject<{
|
|
|
167
144
|
affects: "affects";
|
|
168
145
|
supersedes: "supersedes";
|
|
169
146
|
must_preserve: "must_preserve";
|
|
170
|
-
performs: "performs";
|
|
171
147
|
part_of: "part_of";
|
|
172
148
|
precedes: "precedes";
|
|
173
149
|
must_follow: "must_follow";
|
|
174
|
-
blocks: "blocks";
|
|
175
|
-
routes_to: "routes_to";
|
|
176
150
|
governed_by: "governed_by";
|
|
177
151
|
modifies: "modifies";
|
|
178
|
-
triggered_by: "triggered_by";
|
|
179
|
-
applies_to: "applies_to";
|
|
180
152
|
produces: "produces";
|
|
181
|
-
consumes: "consumes";
|
|
182
|
-
transforms_into: "transforms_into";
|
|
183
|
-
selects: "selects";
|
|
184
|
-
requires: "requires";
|
|
185
|
-
disables: "disables";
|
|
186
|
-
influence: "influence";
|
|
187
|
-
justifies: "justifies";
|
|
188
153
|
}> & {
|
|
189
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
154
|
+
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";
|
|
190
155
|
};
|
|
191
156
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
192
157
|
is(value: unknown): value is string | string[];
|
|
@@ -205,7 +170,7 @@ export declare const NodeDetail: z.ZodNullable<z.ZodObject<{
|
|
|
205
170
|
[x: string]: unknown;
|
|
206
171
|
from: string;
|
|
207
172
|
to: string;
|
|
208
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
173
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
209
174
|
description?: string | string[] | undefined;
|
|
210
175
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
211
176
|
strength?: number | undefined;
|
|
@@ -245,10 +210,10 @@ export declare const NodeDetail: z.ZodNullable<z.ZodObject<{
|
|
|
245
210
|
is(value: unknown): value is {
|
|
246
211
|
[x: string]: unknown;
|
|
247
212
|
id: string;
|
|
248
|
-
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
213
|
+
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
249
214
|
name: string;
|
|
250
215
|
description?: string | string[] | undefined;
|
|
251
|
-
status?:
|
|
216
|
+
status?: undefined;
|
|
252
217
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
253
218
|
context?: string | string[] | undefined;
|
|
254
219
|
options?: {
|
|
@@ -272,8 +237,6 @@ export declare const NodeDetail: z.ZodNullable<z.ZodObject<{
|
|
|
272
237
|
}[] | undefined;
|
|
273
238
|
propagation?: Record<string, boolean> | undefined;
|
|
274
239
|
includes?: string[] | undefined;
|
|
275
|
-
input?: string | undefined;
|
|
276
|
-
output?: string | undefined;
|
|
277
240
|
external_references?: {
|
|
278
241
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
279
242
|
identifier: string;
|
|
@@ -296,7 +259,7 @@ export declare const NodeDetail: z.ZodNullable<z.ZodObject<{
|
|
|
296
259
|
[x: string]: unknown;
|
|
297
260
|
from: string;
|
|
298
261
|
to: string;
|
|
299
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
262
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
300
263
|
description?: string | string[] | undefined;
|
|
301
264
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
302
265
|
strength?: number | undefined;
|
|
@@ -323,26 +286,14 @@ export declare const NodeDetail: z.ZodNullable<z.ZodObject<{
|
|
|
323
286
|
affects: "affects";
|
|
324
287
|
supersedes: "supersedes";
|
|
325
288
|
must_preserve: "must_preserve";
|
|
326
|
-
performs: "performs";
|
|
327
289
|
part_of: "part_of";
|
|
328
290
|
precedes: "precedes";
|
|
329
291
|
must_follow: "must_follow";
|
|
330
|
-
blocks: "blocks";
|
|
331
|
-
routes_to: "routes_to";
|
|
332
292
|
governed_by: "governed_by";
|
|
333
293
|
modifies: "modifies";
|
|
334
|
-
triggered_by: "triggered_by";
|
|
335
|
-
applies_to: "applies_to";
|
|
336
294
|
produces: "produces";
|
|
337
|
-
consumes: "consumes";
|
|
338
|
-
transforms_into: "transforms_into";
|
|
339
|
-
selects: "selects";
|
|
340
|
-
requires: "requires";
|
|
341
|
-
disables: "disables";
|
|
342
|
-
influence: "influence";
|
|
343
|
-
justifies: "justifies";
|
|
344
295
|
}> & {
|
|
345
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
296
|
+
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";
|
|
346
297
|
};
|
|
347
298
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
348
299
|
is(value: unknown): value is string | string[];
|
|
@@ -361,7 +312,7 @@ export declare const NodeDetail: z.ZodNullable<z.ZodObject<{
|
|
|
361
312
|
[x: string]: unknown;
|
|
362
313
|
from: string;
|
|
363
314
|
to: string;
|
|
364
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
315
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
365
316
|
description?: string | string[] | undefined;
|
|
366
317
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
367
318
|
strength?: number | undefined;
|
|
@@ -379,26 +330,14 @@ export declare const NodeDetail: z.ZodNullable<z.ZodObject<{
|
|
|
379
330
|
affects: "affects";
|
|
380
331
|
supersedes: "supersedes";
|
|
381
332
|
must_preserve: "must_preserve";
|
|
382
|
-
performs: "performs";
|
|
383
333
|
part_of: "part_of";
|
|
384
334
|
precedes: "precedes";
|
|
385
335
|
must_follow: "must_follow";
|
|
386
|
-
blocks: "blocks";
|
|
387
|
-
routes_to: "routes_to";
|
|
388
336
|
governed_by: "governed_by";
|
|
389
337
|
modifies: "modifies";
|
|
390
|
-
triggered_by: "triggered_by";
|
|
391
|
-
applies_to: "applies_to";
|
|
392
338
|
produces: "produces";
|
|
393
|
-
consumes: "consumes";
|
|
394
|
-
transforms_into: "transforms_into";
|
|
395
|
-
selects: "selects";
|
|
396
|
-
requires: "requires";
|
|
397
|
-
disables: "disables";
|
|
398
|
-
influence: "influence";
|
|
399
|
-
justifies: "justifies";
|
|
400
339
|
}> & {
|
|
401
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
340
|
+
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";
|
|
402
341
|
};
|
|
403
342
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
404
343
|
is(value: unknown): value is string | string[];
|
|
@@ -417,7 +356,7 @@ export declare const NodeDetail: z.ZodNullable<z.ZodObject<{
|
|
|
417
356
|
[x: string]: unknown;
|
|
418
357
|
from: string;
|
|
419
358
|
to: string;
|
|
420
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
359
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
421
360
|
description?: string | string[] | undefined;
|
|
422
361
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
423
362
|
strength?: number | undefined;
|
|
@@ -463,39 +402,18 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
|
|
|
463
402
|
gate: "gate";
|
|
464
403
|
mode: "mode";
|
|
465
404
|
artefact: "artefact";
|
|
466
|
-
artefact_flow: "artefact_flow";
|
|
467
405
|
decision: "decision";
|
|
468
406
|
change: "change";
|
|
469
407
|
view: "view";
|
|
470
408
|
milestone: "milestone";
|
|
471
|
-
version: "version";
|
|
472
409
|
}> & {
|
|
473
|
-
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
410
|
+
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
474
411
|
};
|
|
475
412
|
name: z.ZodString;
|
|
476
413
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
477
414
|
is(value: unknown): value is string | string[];
|
|
478
415
|
}>;
|
|
479
|
-
status: z.ZodOptional<z.
|
|
480
|
-
deprecated: "deprecated";
|
|
481
|
-
proposed: "proposed";
|
|
482
|
-
accepted: "accepted";
|
|
483
|
-
active: "active";
|
|
484
|
-
implemented: "implemented";
|
|
485
|
-
adopted: "adopted";
|
|
486
|
-
defined: "defined";
|
|
487
|
-
introduced: "introduced";
|
|
488
|
-
in_progress: "in_progress";
|
|
489
|
-
complete: "complete";
|
|
490
|
-
consolidated: "consolidated";
|
|
491
|
-
experimental: "experimental";
|
|
492
|
-
retired: "retired";
|
|
493
|
-
superseded: "superseded";
|
|
494
|
-
abandoned: "abandoned";
|
|
495
|
-
deferred: "deferred";
|
|
496
|
-
}> & {
|
|
497
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
498
|
-
}>;
|
|
416
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
499
417
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
500
418
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
501
419
|
is(value: unknown): value is string | string[];
|
|
@@ -550,8 +468,6 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
|
|
|
550
468
|
}>>;
|
|
551
469
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
552
470
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
553
|
-
input: z.ZodOptional<z.ZodString>;
|
|
554
|
-
output: z.ZodOptional<z.ZodString>;
|
|
555
471
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
556
472
|
role: z.ZodEnum<{
|
|
557
473
|
output: "output";
|
|
@@ -595,26 +511,14 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
|
|
|
595
511
|
affects: "affects";
|
|
596
512
|
supersedes: "supersedes";
|
|
597
513
|
must_preserve: "must_preserve";
|
|
598
|
-
performs: "performs";
|
|
599
514
|
part_of: "part_of";
|
|
600
515
|
precedes: "precedes";
|
|
601
516
|
must_follow: "must_follow";
|
|
602
|
-
blocks: "blocks";
|
|
603
|
-
routes_to: "routes_to";
|
|
604
517
|
governed_by: "governed_by";
|
|
605
518
|
modifies: "modifies";
|
|
606
|
-
triggered_by: "triggered_by";
|
|
607
|
-
applies_to: "applies_to";
|
|
608
519
|
produces: "produces";
|
|
609
|
-
consumes: "consumes";
|
|
610
|
-
transforms_into: "transforms_into";
|
|
611
|
-
selects: "selects";
|
|
612
|
-
requires: "requires";
|
|
613
|
-
disables: "disables";
|
|
614
|
-
influence: "influence";
|
|
615
|
-
justifies: "justifies";
|
|
616
520
|
}> & {
|
|
617
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
521
|
+
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";
|
|
618
522
|
};
|
|
619
523
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
620
524
|
is(value: unknown): value is string | string[];
|
|
@@ -633,7 +537,7 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
|
|
|
633
537
|
[x: string]: unknown;
|
|
634
538
|
from: string;
|
|
635
539
|
to: string;
|
|
636
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
540
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
637
541
|
description?: string | string[] | undefined;
|
|
638
542
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
639
543
|
strength?: number | undefined;
|
|
@@ -673,10 +577,10 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
|
|
|
673
577
|
nodes: {
|
|
674
578
|
[x: string]: unknown;
|
|
675
579
|
id: string;
|
|
676
|
-
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
580
|
+
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
677
581
|
name: string;
|
|
678
582
|
description?: string | string[] | undefined;
|
|
679
|
-
status?:
|
|
583
|
+
status?: undefined;
|
|
680
584
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
681
585
|
context?: string | string[] | undefined;
|
|
682
586
|
options?: {
|
|
@@ -700,8 +604,6 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
|
|
|
700
604
|
}[] | undefined;
|
|
701
605
|
propagation?: Record<string, boolean> | undefined;
|
|
702
606
|
includes?: string[] | undefined;
|
|
703
|
-
input?: string | undefined;
|
|
704
|
-
output?: string | undefined;
|
|
705
607
|
external_references?: {
|
|
706
608
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
707
609
|
identifier: string;
|
|
@@ -724,7 +626,7 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
|
|
|
724
626
|
[x: string]: unknown;
|
|
725
627
|
from: string;
|
|
726
628
|
to: string;
|
|
727
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
629
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
728
630
|
description?: string | string[] | undefined;
|
|
729
631
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
730
632
|
strength?: number | undefined;
|
|
@@ -757,39 +659,18 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
|
|
|
757
659
|
gate: "gate";
|
|
758
660
|
mode: "mode";
|
|
759
661
|
artefact: "artefact";
|
|
760
|
-
artefact_flow: "artefact_flow";
|
|
761
662
|
decision: "decision";
|
|
762
663
|
change: "change";
|
|
763
664
|
view: "view";
|
|
764
665
|
milestone: "milestone";
|
|
765
|
-
version: "version";
|
|
766
666
|
}> & {
|
|
767
|
-
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
667
|
+
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
768
668
|
};
|
|
769
669
|
name: z.ZodString;
|
|
770
670
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
771
671
|
is(value: unknown): value is string | string[];
|
|
772
672
|
}>;
|
|
773
|
-
status: z.ZodOptional<z.
|
|
774
|
-
deprecated: "deprecated";
|
|
775
|
-
proposed: "proposed";
|
|
776
|
-
accepted: "accepted";
|
|
777
|
-
active: "active";
|
|
778
|
-
implemented: "implemented";
|
|
779
|
-
adopted: "adopted";
|
|
780
|
-
defined: "defined";
|
|
781
|
-
introduced: "introduced";
|
|
782
|
-
in_progress: "in_progress";
|
|
783
|
-
complete: "complete";
|
|
784
|
-
consolidated: "consolidated";
|
|
785
|
-
experimental: "experimental";
|
|
786
|
-
retired: "retired";
|
|
787
|
-
superseded: "superseded";
|
|
788
|
-
abandoned: "abandoned";
|
|
789
|
-
deferred: "deferred";
|
|
790
|
-
}> & {
|
|
791
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
792
|
-
}>;
|
|
673
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
793
674
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
794
675
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
795
676
|
is(value: unknown): value is string | string[];
|
|
@@ -844,8 +725,6 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
|
|
|
844
725
|
}>>;
|
|
845
726
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
846
727
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
847
|
-
input: z.ZodOptional<z.ZodString>;
|
|
848
|
-
output: z.ZodOptional<z.ZodString>;
|
|
849
728
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
850
729
|
role: z.ZodEnum<{
|
|
851
730
|
output: "output";
|
|
@@ -906,26 +785,14 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
|
|
|
906
785
|
affects: "affects";
|
|
907
786
|
supersedes: "supersedes";
|
|
908
787
|
must_preserve: "must_preserve";
|
|
909
|
-
performs: "performs";
|
|
910
788
|
part_of: "part_of";
|
|
911
789
|
precedes: "precedes";
|
|
912
790
|
must_follow: "must_follow";
|
|
913
|
-
blocks: "blocks";
|
|
914
|
-
routes_to: "routes_to";
|
|
915
791
|
governed_by: "governed_by";
|
|
916
792
|
modifies: "modifies";
|
|
917
|
-
triggered_by: "triggered_by";
|
|
918
|
-
applies_to: "applies_to";
|
|
919
793
|
produces: "produces";
|
|
920
|
-
consumes: "consumes";
|
|
921
|
-
transforms_into: "transforms_into";
|
|
922
|
-
selects: "selects";
|
|
923
|
-
requires: "requires";
|
|
924
|
-
disables: "disables";
|
|
925
|
-
influence: "influence";
|
|
926
|
-
justifies: "justifies";
|
|
927
794
|
}> & {
|
|
928
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
795
|
+
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";
|
|
929
796
|
};
|
|
930
797
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
931
798
|
is(value: unknown): value is string | string[];
|
|
@@ -944,7 +811,7 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
|
|
|
944
811
|
[x: string]: unknown;
|
|
945
812
|
from: string;
|
|
946
813
|
to: string;
|
|
947
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
814
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
948
815
|
description?: string | string[] | undefined;
|
|
949
816
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
950
817
|
strength?: number | undefined;
|
|
@@ -984,10 +851,10 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
|
|
|
984
851
|
is(value: unknown): value is {
|
|
985
852
|
[x: string]: unknown;
|
|
986
853
|
id: string;
|
|
987
|
-
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
854
|
+
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
988
855
|
name: string;
|
|
989
856
|
description?: string | string[] | undefined;
|
|
990
|
-
status?:
|
|
857
|
+
status?: undefined;
|
|
991
858
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
992
859
|
context?: string | string[] | undefined;
|
|
993
860
|
options?: {
|
|
@@ -1011,8 +878,6 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
|
|
|
1011
878
|
}[] | undefined;
|
|
1012
879
|
propagation?: Record<string, boolean> | undefined;
|
|
1013
880
|
includes?: string[] | undefined;
|
|
1014
|
-
input?: string | undefined;
|
|
1015
|
-
output?: string | undefined;
|
|
1016
881
|
external_references?: {
|
|
1017
882
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
1018
883
|
identifier: string;
|
|
@@ -1035,7 +900,7 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
|
|
|
1035
900
|
[x: string]: unknown;
|
|
1036
901
|
from: string;
|
|
1037
902
|
to: string;
|
|
1038
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
903
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
1039
904
|
description?: string | string[] | undefined;
|
|
1040
905
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
1041
906
|
strength?: number | undefined;
|
|
@@ -1062,26 +927,14 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
|
|
|
1062
927
|
affects: "affects";
|
|
1063
928
|
supersedes: "supersedes";
|
|
1064
929
|
must_preserve: "must_preserve";
|
|
1065
|
-
performs: "performs";
|
|
1066
930
|
part_of: "part_of";
|
|
1067
931
|
precedes: "precedes";
|
|
1068
932
|
must_follow: "must_follow";
|
|
1069
|
-
blocks: "blocks";
|
|
1070
|
-
routes_to: "routes_to";
|
|
1071
933
|
governed_by: "governed_by";
|
|
1072
934
|
modifies: "modifies";
|
|
1073
|
-
triggered_by: "triggered_by";
|
|
1074
|
-
applies_to: "applies_to";
|
|
1075
935
|
produces: "produces";
|
|
1076
|
-
consumes: "consumes";
|
|
1077
|
-
transforms_into: "transforms_into";
|
|
1078
|
-
selects: "selects";
|
|
1079
|
-
requires: "requires";
|
|
1080
|
-
disables: "disables";
|
|
1081
|
-
influence: "influence";
|
|
1082
|
-
justifies: "justifies";
|
|
1083
936
|
}> & {
|
|
1084
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
937
|
+
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";
|
|
1085
938
|
};
|
|
1086
939
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
1087
940
|
is(value: unknown): value is string | string[];
|
|
@@ -1100,7 +953,7 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
|
|
|
1100
953
|
[x: string]: unknown;
|
|
1101
954
|
from: string;
|
|
1102
955
|
to: string;
|
|
1103
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
956
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
1104
957
|
description?: string | string[] | undefined;
|
|
1105
958
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
1106
959
|
strength?: number | undefined;
|
|
@@ -1118,26 +971,14 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
|
|
|
1118
971
|
affects: "affects";
|
|
1119
972
|
supersedes: "supersedes";
|
|
1120
973
|
must_preserve: "must_preserve";
|
|
1121
|
-
performs: "performs";
|
|
1122
974
|
part_of: "part_of";
|
|
1123
975
|
precedes: "precedes";
|
|
1124
976
|
must_follow: "must_follow";
|
|
1125
|
-
blocks: "blocks";
|
|
1126
|
-
routes_to: "routes_to";
|
|
1127
977
|
governed_by: "governed_by";
|
|
1128
978
|
modifies: "modifies";
|
|
1129
|
-
triggered_by: "triggered_by";
|
|
1130
|
-
applies_to: "applies_to";
|
|
1131
979
|
produces: "produces";
|
|
1132
|
-
consumes: "consumes";
|
|
1133
|
-
transforms_into: "transforms_into";
|
|
1134
|
-
selects: "selects";
|
|
1135
|
-
requires: "requires";
|
|
1136
|
-
disables: "disables";
|
|
1137
|
-
influence: "influence";
|
|
1138
|
-
justifies: "justifies";
|
|
1139
980
|
}> & {
|
|
1140
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
981
|
+
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";
|
|
1141
982
|
};
|
|
1142
983
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
1143
984
|
is(value: unknown): value is string | string[];
|
|
@@ -1156,7 +997,7 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
|
|
|
1156
997
|
[x: string]: unknown;
|
|
1157
998
|
from: string;
|
|
1158
999
|
to: string;
|
|
1159
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
1000
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
1160
1001
|
description?: string | string[] | undefined;
|
|
1161
1002
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
1162
1003
|
strength?: number | undefined;
|