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.
Files changed (75) hide show
  1. package/README.md +3 -0
  2. package/dist/schema.json +4 -43
  3. package/dist/src/cli/commands/add.js +6 -2
  4. package/dist/src/cli/commands/query.js +5 -3
  5. package/dist/src/cli/commands/speckit.js +2 -2
  6. package/dist/src/cli/commands/update.js +6 -4
  7. package/dist/src/endpoint-types.d.ts +4 -0
  8. package/dist/src/endpoint-types.js +22 -116
  9. package/dist/src/json-to-md.js +2 -16
  10. package/dist/src/lifecycle-state.d.ts +9 -0
  11. package/dist/src/lifecycle-state.js +22 -0
  12. package/dist/src/mcp/server.js +3 -6
  13. package/dist/src/md-to-json.js +1 -19
  14. package/dist/src/operations/add-node.d.ts +21 -132
  15. package/dist/src/operations/add-plan-task.d.ts +14 -88
  16. package/dist/src/operations/add-relationship.d.ts +16 -102
  17. package/dist/src/operations/check.d.ts +7 -44
  18. package/dist/src/operations/graph-decision.d.ts +7 -44
  19. package/dist/src/operations/graph-decision.js +0 -1
  20. package/dist/src/operations/graph-dependency.d.ts +7 -44
  21. package/dist/src/operations/graph-dependency.js +3 -23
  22. package/dist/src/operations/graph-refinement.d.ts +7 -44
  23. package/dist/src/operations/graph-shared.js +1 -3
  24. package/dist/src/operations/graph.d.ts +7 -44
  25. package/dist/src/operations/infer-completeness.d.ts +10 -53
  26. package/dist/src/operations/infer-derived.d.ts +7 -44
  27. package/dist/src/operations/infer-derived.js +28 -4
  28. package/dist/src/operations/infer-impact.d.ts +49 -308
  29. package/dist/src/operations/infer-impact.js +22 -3
  30. package/dist/src/operations/infer-lifecycle.d.ts +8 -105
  31. package/dist/src/operations/infer-lifecycle.js +4 -10
  32. package/dist/src/operations/init-document.d.ts +7 -44
  33. package/dist/src/operations/json-to-markdown.d.ts +7 -44
  34. package/dist/src/operations/mark-task-done.d.ts +14 -88
  35. package/dist/src/operations/mark-task-undone.d.ts +14 -88
  36. package/dist/src/operations/markdown-to-json.d.ts +7 -44
  37. package/dist/src/operations/next-id.d.ts +8 -47
  38. package/dist/src/operations/node-history.d.ts +7 -44
  39. package/dist/src/operations/plan-add-task.d.ts +14 -88
  40. package/dist/src/operations/plan-gate.d.ts +7 -44
  41. package/dist/src/operations/plan-init.d.ts +7 -44
  42. package/dist/src/operations/plan-progress.d.ts +7 -44
  43. package/dist/src/operations/plan-status.d.ts +7 -44
  44. package/dist/src/operations/query-node.d.ts +29 -188
  45. package/dist/src/operations/query-nodes.d.ts +15 -89
  46. package/dist/src/operations/query-nodes.js +6 -4
  47. package/dist/src/operations/query-relationships.d.ts +9 -58
  48. package/dist/src/operations/remove-node.d.ts +21 -132
  49. package/dist/src/operations/remove-node.js +11 -1
  50. package/dist/src/operations/remove-relationship.d.ts +15 -101
  51. package/dist/src/operations/rename.d.ts +14 -88
  52. package/dist/src/operations/search.d.ts +14 -88
  53. package/dist/src/operations/speckit-diff.d.ts +7 -44
  54. package/dist/src/operations/speckit-export.d.ts +7 -44
  55. package/dist/src/operations/speckit-import.d.ts +7 -44
  56. package/dist/src/operations/speckit-sync.d.ts +22 -133
  57. package/dist/src/operations/speckit-sync.js +3 -3
  58. package/dist/src/operations/state-at.d.ts +7 -44
  59. package/dist/src/operations/stats.d.ts +7 -44
  60. package/dist/src/operations/sync.d.ts +21 -132
  61. package/dist/src/operations/task-list.d.ts +7 -44
  62. package/dist/src/operations/timeline.d.ts +7 -44
  63. package/dist/src/operations/trace-from-node.d.ts +21 -132
  64. package/dist/src/operations/update-metadata.d.ts +14 -88
  65. package/dist/src/operations/update-node.d.ts +20 -152
  66. package/dist/src/operations/update-plan-task.d.ts +14 -88
  67. package/dist/src/operations/validate.d.ts +7 -44
  68. package/dist/src/operations/validate.js +8 -6
  69. package/dist/src/schema.d.ts +22 -159
  70. package/dist/src/schema.js +4 -26
  71. package/dist/src/speckit/generate.js +10 -7
  72. package/dist/src/speckit/parse.js +6 -3
  73. package/dist/src/speckit/plan.js +1 -1
  74. package/package.json +12 -1
  75. package/schema.json +4 -43
@@ -1,5 +1,5 @@
1
1
  import * as z from "zod";
2
- /** Query nodes from a SysProM document with optional filters for type and status. */
2
+ /** Query nodes from a SysProM document with optional filters for type and lifecycle state. */
3
3
  export declare const queryNodesOp: import("./define-operation.js").DefinedOperation<z.ZodObject<{
4
4
  doc: z.ZodObject<{
5
5
  $schema: z.ZodOptional<z.ZodString>;
@@ -36,39 +36,18 @@ export declare const queryNodesOp: import("./define-operation.js").DefinedOperat
36
36
  gate: "gate";
37
37
  mode: "mode";
38
38
  artefact: "artefact";
39
- artefact_flow: "artefact_flow";
40
39
  decision: "decision";
41
40
  change: "change";
42
41
  view: "view";
43
42
  milestone: "milestone";
44
- version: "version";
45
43
  }> & {
46
- is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "artefact_flow" | "decision" | "change" | "view" | "milestone" | "version";
44
+ is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
47
45
  };
48
46
  name: z.ZodString;
49
47
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
50
48
  is(value: unknown): value is string | string[];
51
49
  }>;
52
- status: z.ZodOptional<z.ZodEnum<{
53
- deprecated: "deprecated";
54
- proposed: "proposed";
55
- accepted: "accepted";
56
- active: "active";
57
- implemented: "implemented";
58
- adopted: "adopted";
59
- defined: "defined";
60
- introduced: "introduced";
61
- in_progress: "in_progress";
62
- complete: "complete";
63
- consolidated: "consolidated";
64
- experimental: "experimental";
65
- retired: "retired";
66
- superseded: "superseded";
67
- abandoned: "abandoned";
68
- deferred: "deferred";
69
- }> & {
70
- is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
71
- }>;
50
+ status: z.ZodOptional<z.ZodNever>;
72
51
  lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
73
52
  context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
74
53
  is(value: unknown): value is string | string[];
@@ -123,8 +102,6 @@ export declare const queryNodesOp: import("./define-operation.js").DefinedOperat
123
102
  }>>;
124
103
  propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
125
104
  includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
126
- input: z.ZodOptional<z.ZodString>;
127
- output: z.ZodOptional<z.ZodString>;
128
105
  external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
129
106
  role: z.ZodEnum<{
130
107
  output: "output";
@@ -168,26 +145,14 @@ export declare const queryNodesOp: import("./define-operation.js").DefinedOperat
168
145
  affects: "affects";
169
146
  supersedes: "supersedes";
170
147
  must_preserve: "must_preserve";
171
- performs: "performs";
172
148
  part_of: "part_of";
173
149
  precedes: "precedes";
174
150
  must_follow: "must_follow";
175
- blocks: "blocks";
176
- routes_to: "routes_to";
177
151
  governed_by: "governed_by";
178
152
  modifies: "modifies";
179
- triggered_by: "triggered_by";
180
- applies_to: "applies_to";
181
153
  produces: "produces";
182
- consumes: "consumes";
183
- transforms_into: "transforms_into";
184
- selects: "selects";
185
- requires: "requires";
186
- disables: "disables";
187
- influence: "influence";
188
- justifies: "justifies";
189
154
  }> & {
190
- is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
155
+ 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";
191
156
  };
192
157
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
193
158
  is(value: unknown): value is string | string[];
@@ -206,7 +171,7 @@ export declare const queryNodesOp: import("./define-operation.js").DefinedOperat
206
171
  [x: string]: unknown;
207
172
  from: string;
208
173
  to: string;
209
- type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
174
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
210
175
  description?: string | string[] | undefined;
211
176
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
212
177
  strength?: number | undefined;
@@ -246,10 +211,10 @@ export declare const queryNodesOp: import("./define-operation.js").DefinedOperat
246
211
  nodes: {
247
212
  [x: string]: unknown;
248
213
  id: string;
249
- type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "artefact_flow" | "decision" | "change" | "view" | "milestone" | "version";
214
+ type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
250
215
  name: string;
251
216
  description?: string | string[] | undefined;
252
- status?: "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred" | undefined;
217
+ status?: undefined;
253
218
  lifecycle?: Record<string, string | boolean> | undefined;
254
219
  context?: string | string[] | undefined;
255
220
  options?: {
@@ -273,8 +238,6 @@ export declare const queryNodesOp: import("./define-operation.js").DefinedOperat
273
238
  }[] | undefined;
274
239
  propagation?: Record<string, boolean> | undefined;
275
240
  includes?: string[] | undefined;
276
- input?: string | undefined;
277
- output?: string | undefined;
278
241
  external_references?: {
279
242
  role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
280
243
  identifier: string;
@@ -297,7 +260,7 @@ export declare const queryNodesOp: import("./define-operation.js").DefinedOperat
297
260
  [x: string]: unknown;
298
261
  from: string;
299
262
  to: string;
300
- type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
263
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
301
264
  description?: string | string[] | undefined;
302
265
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
303
266
  strength?: number | undefined;
@@ -330,39 +293,18 @@ export declare const queryNodesOp: import("./define-operation.js").DefinedOperat
330
293
  gate: "gate";
331
294
  mode: "mode";
332
295
  artefact: "artefact";
333
- artefact_flow: "artefact_flow";
334
296
  decision: "decision";
335
297
  change: "change";
336
298
  view: "view";
337
299
  milestone: "milestone";
338
- version: "version";
339
300
  }> & {
340
- is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "artefact_flow" | "decision" | "change" | "view" | "milestone" | "version";
301
+ is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
341
302
  };
342
303
  name: z.ZodString;
343
304
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
344
305
  is(value: unknown): value is string | string[];
345
306
  }>;
346
- status: z.ZodOptional<z.ZodEnum<{
347
- deprecated: "deprecated";
348
- proposed: "proposed";
349
- accepted: "accepted";
350
- active: "active";
351
- implemented: "implemented";
352
- adopted: "adopted";
353
- defined: "defined";
354
- introduced: "introduced";
355
- in_progress: "in_progress";
356
- complete: "complete";
357
- consolidated: "consolidated";
358
- experimental: "experimental";
359
- retired: "retired";
360
- superseded: "superseded";
361
- abandoned: "abandoned";
362
- deferred: "deferred";
363
- }> & {
364
- is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
365
- }>;
307
+ status: z.ZodOptional<z.ZodNever>;
366
308
  lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
367
309
  context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
368
310
  is(value: unknown): value is string | string[];
@@ -417,8 +359,6 @@ export declare const queryNodesOp: import("./define-operation.js").DefinedOperat
417
359
  }>>;
418
360
  propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
419
361
  includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
420
- input: z.ZodOptional<z.ZodString>;
421
- output: z.ZodOptional<z.ZodString>;
422
362
  external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
423
363
  role: z.ZodEnum<{
424
364
  output: "output";
@@ -479,26 +419,14 @@ export declare const queryNodesOp: import("./define-operation.js").DefinedOperat
479
419
  affects: "affects";
480
420
  supersedes: "supersedes";
481
421
  must_preserve: "must_preserve";
482
- performs: "performs";
483
422
  part_of: "part_of";
484
423
  precedes: "precedes";
485
424
  must_follow: "must_follow";
486
- blocks: "blocks";
487
- routes_to: "routes_to";
488
425
  governed_by: "governed_by";
489
426
  modifies: "modifies";
490
- triggered_by: "triggered_by";
491
- applies_to: "applies_to";
492
427
  produces: "produces";
493
- consumes: "consumes";
494
- transforms_into: "transforms_into";
495
- selects: "selects";
496
- requires: "requires";
497
- disables: "disables";
498
- influence: "influence";
499
- justifies: "justifies";
500
428
  }> & {
501
- is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
429
+ 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";
502
430
  };
503
431
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
504
432
  is(value: unknown): value is string | string[];
@@ -517,7 +445,7 @@ export declare const queryNodesOp: import("./define-operation.js").DefinedOperat
517
445
  [x: string]: unknown;
518
446
  from: string;
519
447
  to: string;
520
- type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
448
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
521
449
  description?: string | string[] | undefined;
522
450
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
523
451
  strength?: number | undefined;
@@ -557,10 +485,10 @@ export declare const queryNodesOp: import("./define-operation.js").DefinedOperat
557
485
  is(value: unknown): value is {
558
486
  [x: string]: unknown;
559
487
  id: string;
560
- type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "artefact_flow" | "decision" | "change" | "view" | "milestone" | "version";
488
+ type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
561
489
  name: string;
562
490
  description?: string | string[] | undefined;
563
- status?: "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred" | undefined;
491
+ status?: undefined;
564
492
  lifecycle?: Record<string, string | boolean> | undefined;
565
493
  context?: string | string[] | undefined;
566
494
  options?: {
@@ -584,8 +512,6 @@ export declare const queryNodesOp: import("./define-operation.js").DefinedOperat
584
512
  }[] | undefined;
585
513
  propagation?: Record<string, boolean> | undefined;
586
514
  includes?: string[] | undefined;
587
- input?: string | undefined;
588
- output?: string | undefined;
589
515
  external_references?: {
590
516
  role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
591
517
  identifier: string;
@@ -608,7 +534,7 @@ export declare const queryNodesOp: import("./define-operation.js").DefinedOperat
608
534
  [x: string]: unknown;
609
535
  from: string;
610
536
  to: string;
611
- type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
537
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
612
538
  description?: string | string[] | undefined;
613
539
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
614
540
  strength?: number | undefined;
@@ -1,10 +1,11 @@
1
1
  import * as z from "zod";
2
2
  import { defineOperation } from "./define-operation.js";
3
3
  import { Node, SysProMDocument } from "../schema.js";
4
- /** Query nodes from a SysProM document with optional filters for type and status. */
4
+ import { hasLifecycleState } from "../lifecycle-state.js";
5
+ /** Query nodes from a SysProM document with optional filters for type and lifecycle state. */
5
6
  export const queryNodesOp = defineOperation({
6
7
  name: "query-nodes",
7
- description: "Query nodes with optional filters for type and status",
8
+ description: "Query nodes with optional filters for type and lifecycle state",
8
9
  input: z.object({
9
10
  doc: SysProMDocument,
10
11
  type: z.string().optional(),
@@ -16,8 +17,9 @@ export const queryNodesOp = defineOperation({
16
17
  if (input.type) {
17
18
  nodes = nodes.filter((n) => n.type === input.type);
18
19
  }
19
- if (input.status) {
20
- nodes = nodes.filter((n) => n.status === input.status);
20
+ const lifecycleState = input.status;
21
+ if (lifecycleState) {
22
+ nodes = nodes.filter((n) => hasLifecycleState(n, lifecycleState));
21
23
  }
22
24
  return nodes;
23
25
  },
@@ -36,39 +36,18 @@ export declare const queryRelationshipsOp: import("./define-operation.js").Defin
36
36
  gate: "gate";
37
37
  mode: "mode";
38
38
  artefact: "artefact";
39
- artefact_flow: "artefact_flow";
40
39
  decision: "decision";
41
40
  change: "change";
42
41
  view: "view";
43
42
  milestone: "milestone";
44
- version: "version";
45
43
  }> & {
46
- is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "artefact_flow" | "decision" | "change" | "view" | "milestone" | "version";
44
+ is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
47
45
  };
48
46
  name: z.ZodString;
49
47
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
50
48
  is(value: unknown): value is string | string[];
51
49
  }>;
52
- status: z.ZodOptional<z.ZodEnum<{
53
- deprecated: "deprecated";
54
- proposed: "proposed";
55
- accepted: "accepted";
56
- active: "active";
57
- implemented: "implemented";
58
- adopted: "adopted";
59
- defined: "defined";
60
- introduced: "introduced";
61
- in_progress: "in_progress";
62
- complete: "complete";
63
- consolidated: "consolidated";
64
- experimental: "experimental";
65
- retired: "retired";
66
- superseded: "superseded";
67
- abandoned: "abandoned";
68
- deferred: "deferred";
69
- }> & {
70
- is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
71
- }>;
50
+ status: z.ZodOptional<z.ZodNever>;
72
51
  lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
73
52
  context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
74
53
  is(value: unknown): value is string | string[];
@@ -123,8 +102,6 @@ export declare const queryRelationshipsOp: import("./define-operation.js").Defin
123
102
  }>>;
124
103
  propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
125
104
  includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
126
- input: z.ZodOptional<z.ZodString>;
127
- output: z.ZodOptional<z.ZodString>;
128
105
  external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
129
106
  role: z.ZodEnum<{
130
107
  output: "output";
@@ -168,26 +145,14 @@ export declare const queryRelationshipsOp: import("./define-operation.js").Defin
168
145
  affects: "affects";
169
146
  supersedes: "supersedes";
170
147
  must_preserve: "must_preserve";
171
- performs: "performs";
172
148
  part_of: "part_of";
173
149
  precedes: "precedes";
174
150
  must_follow: "must_follow";
175
- blocks: "blocks";
176
- routes_to: "routes_to";
177
151
  governed_by: "governed_by";
178
152
  modifies: "modifies";
179
- triggered_by: "triggered_by";
180
- applies_to: "applies_to";
181
153
  produces: "produces";
182
- consumes: "consumes";
183
- transforms_into: "transforms_into";
184
- selects: "selects";
185
- requires: "requires";
186
- disables: "disables";
187
- influence: "influence";
188
- justifies: "justifies";
189
154
  }> & {
190
- is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
155
+ 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";
191
156
  };
192
157
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
193
158
  is(value: unknown): value is string | string[];
@@ -206,7 +171,7 @@ export declare const queryRelationshipsOp: import("./define-operation.js").Defin
206
171
  [x: string]: unknown;
207
172
  from: string;
208
173
  to: string;
209
- type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
174
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
210
175
  description?: string | string[] | undefined;
211
176
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
212
177
  strength?: number | undefined;
@@ -246,10 +211,10 @@ export declare const queryRelationshipsOp: import("./define-operation.js").Defin
246
211
  nodes: {
247
212
  [x: string]: unknown;
248
213
  id: string;
249
- type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "artefact_flow" | "decision" | "change" | "view" | "milestone" | "version";
214
+ type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
250
215
  name: string;
251
216
  description?: string | string[] | undefined;
252
- status?: "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred" | undefined;
217
+ status?: undefined;
253
218
  lifecycle?: Record<string, string | boolean> | undefined;
254
219
  context?: string | string[] | undefined;
255
220
  options?: {
@@ -273,8 +238,6 @@ export declare const queryRelationshipsOp: import("./define-operation.js").Defin
273
238
  }[] | undefined;
274
239
  propagation?: Record<string, boolean> | undefined;
275
240
  includes?: string[] | undefined;
276
- input?: string | undefined;
277
- output?: string | undefined;
278
241
  external_references?: {
279
242
  role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
280
243
  identifier: string;
@@ -297,7 +260,7 @@ export declare const queryRelationshipsOp: import("./define-operation.js").Defin
297
260
  [x: string]: unknown;
298
261
  from: string;
299
262
  to: string;
300
- type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
263
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
301
264
  description?: string | string[] | undefined;
302
265
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
303
266
  strength?: number | undefined;
@@ -326,26 +289,14 @@ export declare const queryRelationshipsOp: import("./define-operation.js").Defin
326
289
  affects: "affects";
327
290
  supersedes: "supersedes";
328
291
  must_preserve: "must_preserve";
329
- performs: "performs";
330
292
  part_of: "part_of";
331
293
  precedes: "precedes";
332
294
  must_follow: "must_follow";
333
- blocks: "blocks";
334
- routes_to: "routes_to";
335
295
  governed_by: "governed_by";
336
296
  modifies: "modifies";
337
- triggered_by: "triggered_by";
338
- applies_to: "applies_to";
339
297
  produces: "produces";
340
- consumes: "consumes";
341
- transforms_into: "transforms_into";
342
- selects: "selects";
343
- requires: "requires";
344
- disables: "disables";
345
- influence: "influence";
346
- justifies: "justifies";
347
298
  }> & {
348
- is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
299
+ 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";
349
300
  };
350
301
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
351
302
  is(value: unknown): value is string | string[];
@@ -364,7 +315,7 @@ export declare const queryRelationshipsOp: import("./define-operation.js").Defin
364
315
  [x: string]: unknown;
365
316
  from: string;
366
317
  to: string;
367
- type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
318
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
368
319
  description?: string | string[] | undefined;
369
320
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
370
321
  strength?: number | undefined;