sysprom 1.20.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/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 +12 -1
- package/schema.json +4 -44
|
@@ -21,39 +21,18 @@ declare const ImpactNode: z.ZodObject<{
|
|
|
21
21
|
gate: "gate";
|
|
22
22
|
mode: "mode";
|
|
23
23
|
artefact: "artefact";
|
|
24
|
-
artefact_flow: "artefact_flow";
|
|
25
24
|
decision: "decision";
|
|
26
25
|
change: "change";
|
|
27
26
|
view: "view";
|
|
28
27
|
milestone: "milestone";
|
|
29
|
-
version: "version";
|
|
30
28
|
}> & {
|
|
31
|
-
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
29
|
+
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
32
30
|
};
|
|
33
31
|
name: z.ZodString;
|
|
34
32
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
35
33
|
is(value: unknown): value is string | string[];
|
|
36
34
|
}>;
|
|
37
|
-
status: z.ZodOptional<z.
|
|
38
|
-
deprecated: "deprecated";
|
|
39
|
-
proposed: "proposed";
|
|
40
|
-
accepted: "accepted";
|
|
41
|
-
active: "active";
|
|
42
|
-
implemented: "implemented";
|
|
43
|
-
adopted: "adopted";
|
|
44
|
-
defined: "defined";
|
|
45
|
-
introduced: "introduced";
|
|
46
|
-
in_progress: "in_progress";
|
|
47
|
-
complete: "complete";
|
|
48
|
-
consolidated: "consolidated";
|
|
49
|
-
experimental: "experimental";
|
|
50
|
-
retired: "retired";
|
|
51
|
-
superseded: "superseded";
|
|
52
|
-
abandoned: "abandoned";
|
|
53
|
-
deferred: "deferred";
|
|
54
|
-
}> & {
|
|
55
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
56
|
-
}>;
|
|
35
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
57
36
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
58
37
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
59
38
|
is(value: unknown): value is string | string[];
|
|
@@ -108,8 +87,6 @@ declare const ImpactNode: z.ZodObject<{
|
|
|
108
87
|
}>>;
|
|
109
88
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
110
89
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
111
|
-
input: z.ZodOptional<z.ZodString>;
|
|
112
|
-
output: z.ZodOptional<z.ZodString>;
|
|
113
90
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
114
91
|
role: z.ZodEnum<{
|
|
115
92
|
output: "output";
|
|
@@ -170,27 +147,14 @@ declare const ImpactNode: z.ZodObject<{
|
|
|
170
147
|
affects: "affects";
|
|
171
148
|
supersedes: "supersedes";
|
|
172
149
|
must_preserve: "must_preserve";
|
|
173
|
-
performs: "performs";
|
|
174
150
|
part_of: "part_of";
|
|
175
151
|
precedes: "precedes";
|
|
176
152
|
must_follow: "must_follow";
|
|
177
|
-
blocks: "blocks";
|
|
178
|
-
routes_to: "routes_to";
|
|
179
|
-
orchestrates: "orchestrates";
|
|
180
153
|
governed_by: "governed_by";
|
|
181
154
|
modifies: "modifies";
|
|
182
|
-
triggered_by: "triggered_by";
|
|
183
|
-
applies_to: "applies_to";
|
|
184
155
|
produces: "produces";
|
|
185
|
-
consumes: "consumes";
|
|
186
|
-
transforms_into: "transforms_into";
|
|
187
|
-
selects: "selects";
|
|
188
|
-
requires: "requires";
|
|
189
|
-
disables: "disables";
|
|
190
|
-
influence: "influence";
|
|
191
|
-
justifies: "justifies";
|
|
192
156
|
}> & {
|
|
193
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
157
|
+
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";
|
|
194
158
|
};
|
|
195
159
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
196
160
|
is(value: unknown): value is string | string[];
|
|
@@ -209,7 +173,7 @@ declare const ImpactNode: z.ZodObject<{
|
|
|
209
173
|
[x: string]: unknown;
|
|
210
174
|
from: string;
|
|
211
175
|
to: string;
|
|
212
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
176
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
213
177
|
description?: string | string[] | undefined;
|
|
214
178
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
215
179
|
strength?: number | undefined;
|
|
@@ -249,10 +213,10 @@ declare const ImpactNode: z.ZodObject<{
|
|
|
249
213
|
is(value: unknown): value is {
|
|
250
214
|
[x: string]: unknown;
|
|
251
215
|
id: string;
|
|
252
|
-
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
216
|
+
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
253
217
|
name: string;
|
|
254
218
|
description?: string | string[] | undefined;
|
|
255
|
-
status?:
|
|
219
|
+
status?: undefined;
|
|
256
220
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
257
221
|
context?: string | string[] | undefined;
|
|
258
222
|
options?: {
|
|
@@ -276,8 +240,6 @@ declare const ImpactNode: z.ZodObject<{
|
|
|
276
240
|
}[] | undefined;
|
|
277
241
|
propagation?: Record<string, boolean> | undefined;
|
|
278
242
|
includes?: string[] | undefined;
|
|
279
|
-
input?: string | undefined;
|
|
280
|
-
output?: string | undefined;
|
|
281
243
|
external_references?: {
|
|
282
244
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
283
245
|
identifier: string;
|
|
@@ -300,7 +262,7 @@ declare const ImpactNode: z.ZodObject<{
|
|
|
300
262
|
[x: string]: unknown;
|
|
301
263
|
from: string;
|
|
302
264
|
to: string;
|
|
303
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
265
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
304
266
|
description?: string | string[] | undefined;
|
|
305
267
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
306
268
|
strength?: number | undefined;
|
|
@@ -356,39 +318,18 @@ declare const ImpactOutput: z.ZodObject<{
|
|
|
356
318
|
gate: "gate";
|
|
357
319
|
mode: "mode";
|
|
358
320
|
artefact: "artefact";
|
|
359
|
-
artefact_flow: "artefact_flow";
|
|
360
321
|
decision: "decision";
|
|
361
322
|
change: "change";
|
|
362
323
|
view: "view";
|
|
363
324
|
milestone: "milestone";
|
|
364
|
-
version: "version";
|
|
365
325
|
}> & {
|
|
366
|
-
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
326
|
+
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
367
327
|
};
|
|
368
328
|
name: z.ZodString;
|
|
369
329
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
370
330
|
is(value: unknown): value is string | string[];
|
|
371
331
|
}>;
|
|
372
|
-
status: z.ZodOptional<z.
|
|
373
|
-
deprecated: "deprecated";
|
|
374
|
-
proposed: "proposed";
|
|
375
|
-
accepted: "accepted";
|
|
376
|
-
active: "active";
|
|
377
|
-
implemented: "implemented";
|
|
378
|
-
adopted: "adopted";
|
|
379
|
-
defined: "defined";
|
|
380
|
-
introduced: "introduced";
|
|
381
|
-
in_progress: "in_progress";
|
|
382
|
-
complete: "complete";
|
|
383
|
-
consolidated: "consolidated";
|
|
384
|
-
experimental: "experimental";
|
|
385
|
-
retired: "retired";
|
|
386
|
-
superseded: "superseded";
|
|
387
|
-
abandoned: "abandoned";
|
|
388
|
-
deferred: "deferred";
|
|
389
|
-
}> & {
|
|
390
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
391
|
-
}>;
|
|
332
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
392
333
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
393
334
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
394
335
|
is(value: unknown): value is string | string[];
|
|
@@ -443,8 +384,6 @@ declare const ImpactOutput: z.ZodObject<{
|
|
|
443
384
|
}>>;
|
|
444
385
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
445
386
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
446
|
-
input: z.ZodOptional<z.ZodString>;
|
|
447
|
-
output: z.ZodOptional<z.ZodString>;
|
|
448
387
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
449
388
|
role: z.ZodEnum<{
|
|
450
389
|
output: "output";
|
|
@@ -505,27 +444,14 @@ declare const ImpactOutput: z.ZodObject<{
|
|
|
505
444
|
affects: "affects";
|
|
506
445
|
supersedes: "supersedes";
|
|
507
446
|
must_preserve: "must_preserve";
|
|
508
|
-
performs: "performs";
|
|
509
447
|
part_of: "part_of";
|
|
510
448
|
precedes: "precedes";
|
|
511
449
|
must_follow: "must_follow";
|
|
512
|
-
blocks: "blocks";
|
|
513
|
-
routes_to: "routes_to";
|
|
514
|
-
orchestrates: "orchestrates";
|
|
515
450
|
governed_by: "governed_by";
|
|
516
451
|
modifies: "modifies";
|
|
517
|
-
triggered_by: "triggered_by";
|
|
518
|
-
applies_to: "applies_to";
|
|
519
452
|
produces: "produces";
|
|
520
|
-
consumes: "consumes";
|
|
521
|
-
transforms_into: "transforms_into";
|
|
522
|
-
selects: "selects";
|
|
523
|
-
requires: "requires";
|
|
524
|
-
disables: "disables";
|
|
525
|
-
influence: "influence";
|
|
526
|
-
justifies: "justifies";
|
|
527
453
|
}> & {
|
|
528
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
454
|
+
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";
|
|
529
455
|
};
|
|
530
456
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
531
457
|
is(value: unknown): value is string | string[];
|
|
@@ -544,7 +470,7 @@ declare const ImpactOutput: z.ZodObject<{
|
|
|
544
470
|
[x: string]: unknown;
|
|
545
471
|
from: string;
|
|
546
472
|
to: string;
|
|
547
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
473
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
548
474
|
description?: string | string[] | undefined;
|
|
549
475
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
550
476
|
strength?: number | undefined;
|
|
@@ -584,10 +510,10 @@ declare const ImpactOutput: z.ZodObject<{
|
|
|
584
510
|
is(value: unknown): value is {
|
|
585
511
|
[x: string]: unknown;
|
|
586
512
|
id: string;
|
|
587
|
-
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
513
|
+
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
588
514
|
name: string;
|
|
589
515
|
description?: string | string[] | undefined;
|
|
590
|
-
status?:
|
|
516
|
+
status?: undefined;
|
|
591
517
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
592
518
|
context?: string | string[] | undefined;
|
|
593
519
|
options?: {
|
|
@@ -611,8 +537,6 @@ declare const ImpactOutput: z.ZodObject<{
|
|
|
611
537
|
}[] | undefined;
|
|
612
538
|
propagation?: Record<string, boolean> | undefined;
|
|
613
539
|
includes?: string[] | undefined;
|
|
614
|
-
input?: string | undefined;
|
|
615
|
-
output?: string | undefined;
|
|
616
540
|
external_references?: {
|
|
617
541
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
618
542
|
identifier: string;
|
|
@@ -635,7 +559,7 @@ declare const ImpactOutput: z.ZodObject<{
|
|
|
635
559
|
[x: string]: unknown;
|
|
636
560
|
from: string;
|
|
637
561
|
to: string;
|
|
638
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
562
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
639
563
|
description?: string | string[] | undefined;
|
|
640
564
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
641
565
|
strength?: number | undefined;
|
|
@@ -718,39 +642,18 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
718
642
|
gate: "gate";
|
|
719
643
|
mode: "mode";
|
|
720
644
|
artefact: "artefact";
|
|
721
|
-
artefact_flow: "artefact_flow";
|
|
722
645
|
decision: "decision";
|
|
723
646
|
change: "change";
|
|
724
647
|
view: "view";
|
|
725
648
|
milestone: "milestone";
|
|
726
|
-
version: "version";
|
|
727
649
|
}> & {
|
|
728
|
-
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
650
|
+
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
729
651
|
};
|
|
730
652
|
name: z.ZodString;
|
|
731
653
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
732
654
|
is(value: unknown): value is string | string[];
|
|
733
655
|
}>;
|
|
734
|
-
status: z.ZodOptional<z.
|
|
735
|
-
deprecated: "deprecated";
|
|
736
|
-
proposed: "proposed";
|
|
737
|
-
accepted: "accepted";
|
|
738
|
-
active: "active";
|
|
739
|
-
implemented: "implemented";
|
|
740
|
-
adopted: "adopted";
|
|
741
|
-
defined: "defined";
|
|
742
|
-
introduced: "introduced";
|
|
743
|
-
in_progress: "in_progress";
|
|
744
|
-
complete: "complete";
|
|
745
|
-
consolidated: "consolidated";
|
|
746
|
-
experimental: "experimental";
|
|
747
|
-
retired: "retired";
|
|
748
|
-
superseded: "superseded";
|
|
749
|
-
abandoned: "abandoned";
|
|
750
|
-
deferred: "deferred";
|
|
751
|
-
}> & {
|
|
752
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
753
|
-
}>;
|
|
656
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
754
657
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
755
658
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
756
659
|
is(value: unknown): value is string | string[];
|
|
@@ -805,8 +708,6 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
805
708
|
}>>;
|
|
806
709
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
807
710
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
808
|
-
input: z.ZodOptional<z.ZodString>;
|
|
809
|
-
output: z.ZodOptional<z.ZodString>;
|
|
810
711
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
811
712
|
role: z.ZodEnum<{
|
|
812
713
|
output: "output";
|
|
@@ -850,27 +751,14 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
850
751
|
affects: "affects";
|
|
851
752
|
supersedes: "supersedes";
|
|
852
753
|
must_preserve: "must_preserve";
|
|
853
|
-
performs: "performs";
|
|
854
754
|
part_of: "part_of";
|
|
855
755
|
precedes: "precedes";
|
|
856
756
|
must_follow: "must_follow";
|
|
857
|
-
blocks: "blocks";
|
|
858
|
-
routes_to: "routes_to";
|
|
859
|
-
orchestrates: "orchestrates";
|
|
860
757
|
governed_by: "governed_by";
|
|
861
758
|
modifies: "modifies";
|
|
862
|
-
triggered_by: "triggered_by";
|
|
863
|
-
applies_to: "applies_to";
|
|
864
759
|
produces: "produces";
|
|
865
|
-
consumes: "consumes";
|
|
866
|
-
transforms_into: "transforms_into";
|
|
867
|
-
selects: "selects";
|
|
868
|
-
requires: "requires";
|
|
869
|
-
disables: "disables";
|
|
870
|
-
influence: "influence";
|
|
871
|
-
justifies: "justifies";
|
|
872
760
|
}> & {
|
|
873
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
761
|
+
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";
|
|
874
762
|
};
|
|
875
763
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
876
764
|
is(value: unknown): value is string | string[];
|
|
@@ -889,7 +777,7 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
889
777
|
[x: string]: unknown;
|
|
890
778
|
from: string;
|
|
891
779
|
to: string;
|
|
892
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
780
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
893
781
|
description?: string | string[] | undefined;
|
|
894
782
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
895
783
|
strength?: number | undefined;
|
|
@@ -929,10 +817,10 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
929
817
|
nodes: {
|
|
930
818
|
[x: string]: unknown;
|
|
931
819
|
id: string;
|
|
932
|
-
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
820
|
+
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
933
821
|
name: string;
|
|
934
822
|
description?: string | string[] | undefined;
|
|
935
|
-
status?:
|
|
823
|
+
status?: undefined;
|
|
936
824
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
937
825
|
context?: string | string[] | undefined;
|
|
938
826
|
options?: {
|
|
@@ -956,8 +844,6 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
956
844
|
}[] | undefined;
|
|
957
845
|
propagation?: Record<string, boolean> | undefined;
|
|
958
846
|
includes?: string[] | undefined;
|
|
959
|
-
input?: string | undefined;
|
|
960
|
-
output?: string | undefined;
|
|
961
847
|
external_references?: {
|
|
962
848
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
963
849
|
identifier: string;
|
|
@@ -980,7 +866,7 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
980
866
|
[x: string]: unknown;
|
|
981
867
|
from: string;
|
|
982
868
|
to: string;
|
|
983
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
869
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
984
870
|
description?: string | string[] | undefined;
|
|
985
871
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
986
872
|
strength?: number | undefined;
|
|
@@ -1023,39 +909,18 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
1023
909
|
gate: "gate";
|
|
1024
910
|
mode: "mode";
|
|
1025
911
|
artefact: "artefact";
|
|
1026
|
-
artefact_flow: "artefact_flow";
|
|
1027
912
|
decision: "decision";
|
|
1028
913
|
change: "change";
|
|
1029
914
|
view: "view";
|
|
1030
915
|
milestone: "milestone";
|
|
1031
|
-
version: "version";
|
|
1032
916
|
}> & {
|
|
1033
|
-
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
917
|
+
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
1034
918
|
};
|
|
1035
919
|
name: z.ZodString;
|
|
1036
920
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
1037
921
|
is(value: unknown): value is string | string[];
|
|
1038
922
|
}>;
|
|
1039
|
-
status: z.ZodOptional<z.
|
|
1040
|
-
deprecated: "deprecated";
|
|
1041
|
-
proposed: "proposed";
|
|
1042
|
-
accepted: "accepted";
|
|
1043
|
-
active: "active";
|
|
1044
|
-
implemented: "implemented";
|
|
1045
|
-
adopted: "adopted";
|
|
1046
|
-
defined: "defined";
|
|
1047
|
-
introduced: "introduced";
|
|
1048
|
-
in_progress: "in_progress";
|
|
1049
|
-
complete: "complete";
|
|
1050
|
-
consolidated: "consolidated";
|
|
1051
|
-
experimental: "experimental";
|
|
1052
|
-
retired: "retired";
|
|
1053
|
-
superseded: "superseded";
|
|
1054
|
-
abandoned: "abandoned";
|
|
1055
|
-
deferred: "deferred";
|
|
1056
|
-
}> & {
|
|
1057
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
1058
|
-
}>;
|
|
923
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
1059
924
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
1060
925
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
1061
926
|
is(value: unknown): value is string | string[];
|
|
@@ -1110,8 +975,6 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
1110
975
|
}>>;
|
|
1111
976
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
1112
977
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1113
|
-
input: z.ZodOptional<z.ZodString>;
|
|
1114
|
-
output: z.ZodOptional<z.ZodString>;
|
|
1115
978
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1116
979
|
role: z.ZodEnum<{
|
|
1117
980
|
output: "output";
|
|
@@ -1172,27 +1035,14 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
1172
1035
|
affects: "affects";
|
|
1173
1036
|
supersedes: "supersedes";
|
|
1174
1037
|
must_preserve: "must_preserve";
|
|
1175
|
-
performs: "performs";
|
|
1176
1038
|
part_of: "part_of";
|
|
1177
1039
|
precedes: "precedes";
|
|
1178
1040
|
must_follow: "must_follow";
|
|
1179
|
-
blocks: "blocks";
|
|
1180
|
-
routes_to: "routes_to";
|
|
1181
|
-
orchestrates: "orchestrates";
|
|
1182
1041
|
governed_by: "governed_by";
|
|
1183
1042
|
modifies: "modifies";
|
|
1184
|
-
triggered_by: "triggered_by";
|
|
1185
|
-
applies_to: "applies_to";
|
|
1186
1043
|
produces: "produces";
|
|
1187
|
-
consumes: "consumes";
|
|
1188
|
-
transforms_into: "transforms_into";
|
|
1189
|
-
selects: "selects";
|
|
1190
|
-
requires: "requires";
|
|
1191
|
-
disables: "disables";
|
|
1192
|
-
influence: "influence";
|
|
1193
|
-
justifies: "justifies";
|
|
1194
1044
|
}> & {
|
|
1195
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
1045
|
+
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";
|
|
1196
1046
|
};
|
|
1197
1047
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
1198
1048
|
is(value: unknown): value is string | string[];
|
|
@@ -1211,7 +1061,7 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
1211
1061
|
[x: string]: unknown;
|
|
1212
1062
|
from: string;
|
|
1213
1063
|
to: string;
|
|
1214
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
1064
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
1215
1065
|
description?: string | string[] | undefined;
|
|
1216
1066
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
1217
1067
|
strength?: number | undefined;
|
|
@@ -1251,10 +1101,10 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
1251
1101
|
is(value: unknown): value is {
|
|
1252
1102
|
[x: string]: unknown;
|
|
1253
1103
|
id: string;
|
|
1254
|
-
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
1104
|
+
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
1255
1105
|
name: string;
|
|
1256
1106
|
description?: string | string[] | undefined;
|
|
1257
|
-
status?:
|
|
1107
|
+
status?: undefined;
|
|
1258
1108
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
1259
1109
|
context?: string | string[] | undefined;
|
|
1260
1110
|
options?: {
|
|
@@ -1278,8 +1128,6 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
1278
1128
|
}[] | undefined;
|
|
1279
1129
|
propagation?: Record<string, boolean> | undefined;
|
|
1280
1130
|
includes?: string[] | undefined;
|
|
1281
|
-
input?: string | undefined;
|
|
1282
|
-
output?: string | undefined;
|
|
1283
1131
|
external_references?: {
|
|
1284
1132
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
1285
1133
|
identifier: string;
|
|
@@ -1302,7 +1150,7 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
1302
1150
|
[x: string]: unknown;
|
|
1303
1151
|
from: string;
|
|
1304
1152
|
to: string;
|
|
1305
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
1153
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
1306
1154
|
description?: string | string[] | undefined;
|
|
1307
1155
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
1308
1156
|
strength?: number | undefined;
|
|
@@ -1362,39 +1210,18 @@ declare const ImpactSummaryOutput: z.ZodObject<{
|
|
|
1362
1210
|
gate: "gate";
|
|
1363
1211
|
mode: "mode";
|
|
1364
1212
|
artefact: "artefact";
|
|
1365
|
-
artefact_flow: "artefact_flow";
|
|
1366
1213
|
decision: "decision";
|
|
1367
1214
|
change: "change";
|
|
1368
1215
|
view: "view";
|
|
1369
1216
|
milestone: "milestone";
|
|
1370
|
-
version: "version";
|
|
1371
1217
|
}> & {
|
|
1372
|
-
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
1218
|
+
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
1373
1219
|
};
|
|
1374
1220
|
name: z.ZodString;
|
|
1375
1221
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
1376
1222
|
is(value: unknown): value is string | string[];
|
|
1377
1223
|
}>;
|
|
1378
|
-
status: z.ZodOptional<z.
|
|
1379
|
-
deprecated: "deprecated";
|
|
1380
|
-
proposed: "proposed";
|
|
1381
|
-
accepted: "accepted";
|
|
1382
|
-
active: "active";
|
|
1383
|
-
implemented: "implemented";
|
|
1384
|
-
adopted: "adopted";
|
|
1385
|
-
defined: "defined";
|
|
1386
|
-
introduced: "introduced";
|
|
1387
|
-
in_progress: "in_progress";
|
|
1388
|
-
complete: "complete";
|
|
1389
|
-
consolidated: "consolidated";
|
|
1390
|
-
experimental: "experimental";
|
|
1391
|
-
retired: "retired";
|
|
1392
|
-
superseded: "superseded";
|
|
1393
|
-
abandoned: "abandoned";
|
|
1394
|
-
deferred: "deferred";
|
|
1395
|
-
}> & {
|
|
1396
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
1397
|
-
}>;
|
|
1224
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
1398
1225
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
1399
1226
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
1400
1227
|
is(value: unknown): value is string | string[];
|
|
@@ -1449,8 +1276,6 @@ declare const ImpactSummaryOutput: z.ZodObject<{
|
|
|
1449
1276
|
}>>;
|
|
1450
1277
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
1451
1278
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1452
|
-
input: z.ZodOptional<z.ZodString>;
|
|
1453
|
-
output: z.ZodOptional<z.ZodString>;
|
|
1454
1279
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1455
1280
|
role: z.ZodEnum<{
|
|
1456
1281
|
output: "output";
|
|
@@ -1511,27 +1336,14 @@ declare const ImpactSummaryOutput: z.ZodObject<{
|
|
|
1511
1336
|
affects: "affects";
|
|
1512
1337
|
supersedes: "supersedes";
|
|
1513
1338
|
must_preserve: "must_preserve";
|
|
1514
|
-
performs: "performs";
|
|
1515
1339
|
part_of: "part_of";
|
|
1516
1340
|
precedes: "precedes";
|
|
1517
1341
|
must_follow: "must_follow";
|
|
1518
|
-
blocks: "blocks";
|
|
1519
|
-
routes_to: "routes_to";
|
|
1520
|
-
orchestrates: "orchestrates";
|
|
1521
1342
|
governed_by: "governed_by";
|
|
1522
1343
|
modifies: "modifies";
|
|
1523
|
-
triggered_by: "triggered_by";
|
|
1524
|
-
applies_to: "applies_to";
|
|
1525
1344
|
produces: "produces";
|
|
1526
|
-
consumes: "consumes";
|
|
1527
|
-
transforms_into: "transforms_into";
|
|
1528
|
-
selects: "selects";
|
|
1529
|
-
requires: "requires";
|
|
1530
|
-
disables: "disables";
|
|
1531
|
-
influence: "influence";
|
|
1532
|
-
justifies: "justifies";
|
|
1533
1345
|
}> & {
|
|
1534
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
1346
|
+
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";
|
|
1535
1347
|
};
|
|
1536
1348
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
1537
1349
|
is(value: unknown): value is string | string[];
|
|
@@ -1550,7 +1362,7 @@ declare const ImpactSummaryOutput: z.ZodObject<{
|
|
|
1550
1362
|
[x: string]: unknown;
|
|
1551
1363
|
from: string;
|
|
1552
1364
|
to: string;
|
|
1553
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
1365
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
1554
1366
|
description?: string | string[] | undefined;
|
|
1555
1367
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
1556
1368
|
strength?: number | undefined;
|
|
@@ -1590,10 +1402,10 @@ declare const ImpactSummaryOutput: z.ZodObject<{
|
|
|
1590
1402
|
is(value: unknown): value is {
|
|
1591
1403
|
[x: string]: unknown;
|
|
1592
1404
|
id: string;
|
|
1593
|
-
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
1405
|
+
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
1594
1406
|
name: string;
|
|
1595
1407
|
description?: string | string[] | undefined;
|
|
1596
|
-
status?:
|
|
1408
|
+
status?: undefined;
|
|
1597
1409
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
1598
1410
|
context?: string | string[] | undefined;
|
|
1599
1411
|
options?: {
|
|
@@ -1617,8 +1429,6 @@ declare const ImpactSummaryOutput: z.ZodObject<{
|
|
|
1617
1429
|
}[] | undefined;
|
|
1618
1430
|
propagation?: Record<string, boolean> | undefined;
|
|
1619
1431
|
includes?: string[] | undefined;
|
|
1620
|
-
input?: string | undefined;
|
|
1621
|
-
output?: string | undefined;
|
|
1622
1432
|
external_references?: {
|
|
1623
1433
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
1624
1434
|
identifier: string;
|
|
@@ -1641,7 +1451,7 @@ declare const ImpactSummaryOutput: z.ZodObject<{
|
|
|
1641
1451
|
[x: string]: unknown;
|
|
1642
1452
|
from: string;
|
|
1643
1453
|
to: string;
|
|
1644
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
1454
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
1645
1455
|
description?: string | string[] | undefined;
|
|
1646
1456
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
1647
1457
|
strength?: number | undefined;
|
|
@@ -1710,39 +1520,18 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
1710
1520
|
gate: "gate";
|
|
1711
1521
|
mode: "mode";
|
|
1712
1522
|
artefact: "artefact";
|
|
1713
|
-
artefact_flow: "artefact_flow";
|
|
1714
1523
|
decision: "decision";
|
|
1715
1524
|
change: "change";
|
|
1716
1525
|
view: "view";
|
|
1717
1526
|
milestone: "milestone";
|
|
1718
|
-
version: "version";
|
|
1719
1527
|
}> & {
|
|
1720
|
-
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
1528
|
+
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
1721
1529
|
};
|
|
1722
1530
|
name: z.ZodString;
|
|
1723
1531
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
1724
1532
|
is(value: unknown): value is string | string[];
|
|
1725
1533
|
}>;
|
|
1726
|
-
status: z.ZodOptional<z.
|
|
1727
|
-
deprecated: "deprecated";
|
|
1728
|
-
proposed: "proposed";
|
|
1729
|
-
accepted: "accepted";
|
|
1730
|
-
active: "active";
|
|
1731
|
-
implemented: "implemented";
|
|
1732
|
-
adopted: "adopted";
|
|
1733
|
-
defined: "defined";
|
|
1734
|
-
introduced: "introduced";
|
|
1735
|
-
in_progress: "in_progress";
|
|
1736
|
-
complete: "complete";
|
|
1737
|
-
consolidated: "consolidated";
|
|
1738
|
-
experimental: "experimental";
|
|
1739
|
-
retired: "retired";
|
|
1740
|
-
superseded: "superseded";
|
|
1741
|
-
abandoned: "abandoned";
|
|
1742
|
-
deferred: "deferred";
|
|
1743
|
-
}> & {
|
|
1744
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
1745
|
-
}>;
|
|
1534
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
1746
1535
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
1747
1536
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
1748
1537
|
is(value: unknown): value is string | string[];
|
|
@@ -1797,8 +1586,6 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
1797
1586
|
}>>;
|
|
1798
1587
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
1799
1588
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1800
|
-
input: z.ZodOptional<z.ZodString>;
|
|
1801
|
-
output: z.ZodOptional<z.ZodString>;
|
|
1802
1589
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1803
1590
|
role: z.ZodEnum<{
|
|
1804
1591
|
output: "output";
|
|
@@ -1842,27 +1629,14 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
1842
1629
|
affects: "affects";
|
|
1843
1630
|
supersedes: "supersedes";
|
|
1844
1631
|
must_preserve: "must_preserve";
|
|
1845
|
-
performs: "performs";
|
|
1846
1632
|
part_of: "part_of";
|
|
1847
1633
|
precedes: "precedes";
|
|
1848
1634
|
must_follow: "must_follow";
|
|
1849
|
-
blocks: "blocks";
|
|
1850
|
-
routes_to: "routes_to";
|
|
1851
|
-
orchestrates: "orchestrates";
|
|
1852
1635
|
governed_by: "governed_by";
|
|
1853
1636
|
modifies: "modifies";
|
|
1854
|
-
triggered_by: "triggered_by";
|
|
1855
|
-
applies_to: "applies_to";
|
|
1856
1637
|
produces: "produces";
|
|
1857
|
-
consumes: "consumes";
|
|
1858
|
-
transforms_into: "transforms_into";
|
|
1859
|
-
selects: "selects";
|
|
1860
|
-
requires: "requires";
|
|
1861
|
-
disables: "disables";
|
|
1862
|
-
influence: "influence";
|
|
1863
|
-
justifies: "justifies";
|
|
1864
1638
|
}> & {
|
|
1865
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
1639
|
+
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";
|
|
1866
1640
|
};
|
|
1867
1641
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
1868
1642
|
is(value: unknown): value is string | string[];
|
|
@@ -1881,7 +1655,7 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
1881
1655
|
[x: string]: unknown;
|
|
1882
1656
|
from: string;
|
|
1883
1657
|
to: string;
|
|
1884
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
1658
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
1885
1659
|
description?: string | string[] | undefined;
|
|
1886
1660
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
1887
1661
|
strength?: number | undefined;
|
|
@@ -1921,10 +1695,10 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
1921
1695
|
nodes: {
|
|
1922
1696
|
[x: string]: unknown;
|
|
1923
1697
|
id: string;
|
|
1924
|
-
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
1698
|
+
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
1925
1699
|
name: string;
|
|
1926
1700
|
description?: string | string[] | undefined;
|
|
1927
|
-
status?:
|
|
1701
|
+
status?: undefined;
|
|
1928
1702
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
1929
1703
|
context?: string | string[] | undefined;
|
|
1930
1704
|
options?: {
|
|
@@ -1948,8 +1722,6 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
1948
1722
|
}[] | undefined;
|
|
1949
1723
|
propagation?: Record<string, boolean> | undefined;
|
|
1950
1724
|
includes?: string[] | undefined;
|
|
1951
|
-
input?: string | undefined;
|
|
1952
|
-
output?: string | undefined;
|
|
1953
1725
|
external_references?: {
|
|
1954
1726
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
1955
1727
|
identifier: string;
|
|
@@ -1972,7 +1744,7 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
1972
1744
|
[x: string]: unknown;
|
|
1973
1745
|
from: string;
|
|
1974
1746
|
to: string;
|
|
1975
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
1747
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
1976
1748
|
description?: string | string[] | undefined;
|
|
1977
1749
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
1978
1750
|
strength?: number | undefined;
|
|
@@ -2006,39 +1778,18 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
2006
1778
|
gate: "gate";
|
|
2007
1779
|
mode: "mode";
|
|
2008
1780
|
artefact: "artefact";
|
|
2009
|
-
artefact_flow: "artefact_flow";
|
|
2010
1781
|
decision: "decision";
|
|
2011
1782
|
change: "change";
|
|
2012
1783
|
view: "view";
|
|
2013
1784
|
milestone: "milestone";
|
|
2014
|
-
version: "version";
|
|
2015
1785
|
}> & {
|
|
2016
|
-
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
1786
|
+
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
2017
1787
|
};
|
|
2018
1788
|
name: z.ZodString;
|
|
2019
1789
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
2020
1790
|
is(value: unknown): value is string | string[];
|
|
2021
1791
|
}>;
|
|
2022
|
-
status: z.ZodOptional<z.
|
|
2023
|
-
deprecated: "deprecated";
|
|
2024
|
-
proposed: "proposed";
|
|
2025
|
-
accepted: "accepted";
|
|
2026
|
-
active: "active";
|
|
2027
|
-
implemented: "implemented";
|
|
2028
|
-
adopted: "adopted";
|
|
2029
|
-
defined: "defined";
|
|
2030
|
-
introduced: "introduced";
|
|
2031
|
-
in_progress: "in_progress";
|
|
2032
|
-
complete: "complete";
|
|
2033
|
-
consolidated: "consolidated";
|
|
2034
|
-
experimental: "experimental";
|
|
2035
|
-
retired: "retired";
|
|
2036
|
-
superseded: "superseded";
|
|
2037
|
-
abandoned: "abandoned";
|
|
2038
|
-
deferred: "deferred";
|
|
2039
|
-
}> & {
|
|
2040
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
2041
|
-
}>;
|
|
1792
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
2042
1793
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
2043
1794
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
2044
1795
|
is(value: unknown): value is string | string[];
|
|
@@ -2093,8 +1844,6 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
2093
1844
|
}>>;
|
|
2094
1845
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
2095
1846
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2096
|
-
input: z.ZodOptional<z.ZodString>;
|
|
2097
|
-
output: z.ZodOptional<z.ZodString>;
|
|
2098
1847
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2099
1848
|
role: z.ZodEnum<{
|
|
2100
1849
|
output: "output";
|
|
@@ -2155,27 +1904,14 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
2155
1904
|
affects: "affects";
|
|
2156
1905
|
supersedes: "supersedes";
|
|
2157
1906
|
must_preserve: "must_preserve";
|
|
2158
|
-
performs: "performs";
|
|
2159
1907
|
part_of: "part_of";
|
|
2160
1908
|
precedes: "precedes";
|
|
2161
1909
|
must_follow: "must_follow";
|
|
2162
|
-
blocks: "blocks";
|
|
2163
|
-
routes_to: "routes_to";
|
|
2164
|
-
orchestrates: "orchestrates";
|
|
2165
1910
|
governed_by: "governed_by";
|
|
2166
1911
|
modifies: "modifies";
|
|
2167
|
-
triggered_by: "triggered_by";
|
|
2168
|
-
applies_to: "applies_to";
|
|
2169
1912
|
produces: "produces";
|
|
2170
|
-
consumes: "consumes";
|
|
2171
|
-
transforms_into: "transforms_into";
|
|
2172
|
-
selects: "selects";
|
|
2173
|
-
requires: "requires";
|
|
2174
|
-
disables: "disables";
|
|
2175
|
-
influence: "influence";
|
|
2176
|
-
justifies: "justifies";
|
|
2177
1913
|
}> & {
|
|
2178
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
1914
|
+
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";
|
|
2179
1915
|
};
|
|
2180
1916
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
2181
1917
|
is(value: unknown): value is string | string[];
|
|
@@ -2194,7 +1930,7 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
2194
1930
|
[x: string]: unknown;
|
|
2195
1931
|
from: string;
|
|
2196
1932
|
to: string;
|
|
2197
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
1933
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
2198
1934
|
description?: string | string[] | undefined;
|
|
2199
1935
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
2200
1936
|
strength?: number | undefined;
|
|
@@ -2234,10 +1970,10 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
2234
1970
|
is(value: unknown): value is {
|
|
2235
1971
|
[x: string]: unknown;
|
|
2236
1972
|
id: string;
|
|
2237
|
-
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
1973
|
+
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
2238
1974
|
name: string;
|
|
2239
1975
|
description?: string | string[] | undefined;
|
|
2240
|
-
status?:
|
|
1976
|
+
status?: undefined;
|
|
2241
1977
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
2242
1978
|
context?: string | string[] | undefined;
|
|
2243
1979
|
options?: {
|
|
@@ -2261,8 +1997,6 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
2261
1997
|
}[] | undefined;
|
|
2262
1998
|
propagation?: Record<string, boolean> | undefined;
|
|
2263
1999
|
includes?: string[] | undefined;
|
|
2264
|
-
input?: string | undefined;
|
|
2265
|
-
output?: string | undefined;
|
|
2266
2000
|
external_references?: {
|
|
2267
2001
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
2268
2002
|
identifier: string;
|
|
@@ -2285,7 +2019,7 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
2285
2019
|
[x: string]: unknown;
|
|
2286
2020
|
from: string;
|
|
2287
2021
|
to: string;
|
|
2288
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
2022
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
2289
2023
|
description?: string | string[] | undefined;
|
|
2290
2024
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
2291
2025
|
strength?: number | undefined;
|