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
|
@@ -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,26 +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
153
|
governed_by: "governed_by";
|
|
180
154
|
modifies: "modifies";
|
|
181
|
-
triggered_by: "triggered_by";
|
|
182
|
-
applies_to: "applies_to";
|
|
183
155
|
produces: "produces";
|
|
184
|
-
consumes: "consumes";
|
|
185
|
-
transforms_into: "transforms_into";
|
|
186
|
-
selects: "selects";
|
|
187
|
-
requires: "requires";
|
|
188
|
-
disables: "disables";
|
|
189
|
-
influence: "influence";
|
|
190
|
-
justifies: "justifies";
|
|
191
156
|
}> & {
|
|
192
|
-
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";
|
|
193
158
|
};
|
|
194
159
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
195
160
|
is(value: unknown): value is string | string[];
|
|
@@ -208,7 +173,7 @@ declare const ImpactNode: z.ZodObject<{
|
|
|
208
173
|
[x: string]: unknown;
|
|
209
174
|
from: string;
|
|
210
175
|
to: string;
|
|
211
|
-
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";
|
|
212
177
|
description?: string | string[] | undefined;
|
|
213
178
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
214
179
|
strength?: number | undefined;
|
|
@@ -248,10 +213,10 @@ declare const ImpactNode: z.ZodObject<{
|
|
|
248
213
|
is(value: unknown): value is {
|
|
249
214
|
[x: string]: unknown;
|
|
250
215
|
id: string;
|
|
251
|
-
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";
|
|
252
217
|
name: string;
|
|
253
218
|
description?: string | string[] | undefined;
|
|
254
|
-
status?:
|
|
219
|
+
status?: undefined;
|
|
255
220
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
256
221
|
context?: string | string[] | undefined;
|
|
257
222
|
options?: {
|
|
@@ -275,8 +240,6 @@ declare const ImpactNode: z.ZodObject<{
|
|
|
275
240
|
}[] | undefined;
|
|
276
241
|
propagation?: Record<string, boolean> | undefined;
|
|
277
242
|
includes?: string[] | undefined;
|
|
278
|
-
input?: string | undefined;
|
|
279
|
-
output?: string | undefined;
|
|
280
243
|
external_references?: {
|
|
281
244
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
282
245
|
identifier: string;
|
|
@@ -299,7 +262,7 @@ declare const ImpactNode: z.ZodObject<{
|
|
|
299
262
|
[x: string]: unknown;
|
|
300
263
|
from: string;
|
|
301
264
|
to: string;
|
|
302
|
-
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";
|
|
303
266
|
description?: string | string[] | undefined;
|
|
304
267
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
305
268
|
strength?: number | undefined;
|
|
@@ -355,39 +318,18 @@ declare const ImpactOutput: z.ZodObject<{
|
|
|
355
318
|
gate: "gate";
|
|
356
319
|
mode: "mode";
|
|
357
320
|
artefact: "artefact";
|
|
358
|
-
artefact_flow: "artefact_flow";
|
|
359
321
|
decision: "decision";
|
|
360
322
|
change: "change";
|
|
361
323
|
view: "view";
|
|
362
324
|
milestone: "milestone";
|
|
363
|
-
version: "version";
|
|
364
325
|
}> & {
|
|
365
|
-
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";
|
|
366
327
|
};
|
|
367
328
|
name: z.ZodString;
|
|
368
329
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
369
330
|
is(value: unknown): value is string | string[];
|
|
370
331
|
}>;
|
|
371
|
-
status: z.ZodOptional<z.
|
|
372
|
-
deprecated: "deprecated";
|
|
373
|
-
proposed: "proposed";
|
|
374
|
-
accepted: "accepted";
|
|
375
|
-
active: "active";
|
|
376
|
-
implemented: "implemented";
|
|
377
|
-
adopted: "adopted";
|
|
378
|
-
defined: "defined";
|
|
379
|
-
introduced: "introduced";
|
|
380
|
-
in_progress: "in_progress";
|
|
381
|
-
complete: "complete";
|
|
382
|
-
consolidated: "consolidated";
|
|
383
|
-
experimental: "experimental";
|
|
384
|
-
retired: "retired";
|
|
385
|
-
superseded: "superseded";
|
|
386
|
-
abandoned: "abandoned";
|
|
387
|
-
deferred: "deferred";
|
|
388
|
-
}> & {
|
|
389
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
390
|
-
}>;
|
|
332
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
391
333
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
392
334
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
393
335
|
is(value: unknown): value is string | string[];
|
|
@@ -442,8 +384,6 @@ declare const ImpactOutput: z.ZodObject<{
|
|
|
442
384
|
}>>;
|
|
443
385
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
444
386
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
445
|
-
input: z.ZodOptional<z.ZodString>;
|
|
446
|
-
output: z.ZodOptional<z.ZodString>;
|
|
447
387
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
448
388
|
role: z.ZodEnum<{
|
|
449
389
|
output: "output";
|
|
@@ -504,26 +444,14 @@ declare const ImpactOutput: z.ZodObject<{
|
|
|
504
444
|
affects: "affects";
|
|
505
445
|
supersedes: "supersedes";
|
|
506
446
|
must_preserve: "must_preserve";
|
|
507
|
-
performs: "performs";
|
|
508
447
|
part_of: "part_of";
|
|
509
448
|
precedes: "precedes";
|
|
510
449
|
must_follow: "must_follow";
|
|
511
|
-
blocks: "blocks";
|
|
512
|
-
routes_to: "routes_to";
|
|
513
450
|
governed_by: "governed_by";
|
|
514
451
|
modifies: "modifies";
|
|
515
|
-
triggered_by: "triggered_by";
|
|
516
|
-
applies_to: "applies_to";
|
|
517
452
|
produces: "produces";
|
|
518
|
-
consumes: "consumes";
|
|
519
|
-
transforms_into: "transforms_into";
|
|
520
|
-
selects: "selects";
|
|
521
|
-
requires: "requires";
|
|
522
|
-
disables: "disables";
|
|
523
|
-
influence: "influence";
|
|
524
|
-
justifies: "justifies";
|
|
525
453
|
}> & {
|
|
526
|
-
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";
|
|
527
455
|
};
|
|
528
456
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
529
457
|
is(value: unknown): value is string | string[];
|
|
@@ -542,7 +470,7 @@ declare const ImpactOutput: z.ZodObject<{
|
|
|
542
470
|
[x: string]: unknown;
|
|
543
471
|
from: string;
|
|
544
472
|
to: string;
|
|
545
|
-
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";
|
|
546
474
|
description?: string | string[] | undefined;
|
|
547
475
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
548
476
|
strength?: number | undefined;
|
|
@@ -582,10 +510,10 @@ declare const ImpactOutput: z.ZodObject<{
|
|
|
582
510
|
is(value: unknown): value is {
|
|
583
511
|
[x: string]: unknown;
|
|
584
512
|
id: string;
|
|
585
|
-
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";
|
|
586
514
|
name: string;
|
|
587
515
|
description?: string | string[] | undefined;
|
|
588
|
-
status?:
|
|
516
|
+
status?: undefined;
|
|
589
517
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
590
518
|
context?: string | string[] | undefined;
|
|
591
519
|
options?: {
|
|
@@ -609,8 +537,6 @@ declare const ImpactOutput: z.ZodObject<{
|
|
|
609
537
|
}[] | undefined;
|
|
610
538
|
propagation?: Record<string, boolean> | undefined;
|
|
611
539
|
includes?: string[] | undefined;
|
|
612
|
-
input?: string | undefined;
|
|
613
|
-
output?: string | undefined;
|
|
614
540
|
external_references?: {
|
|
615
541
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
616
542
|
identifier: string;
|
|
@@ -633,7 +559,7 @@ declare const ImpactOutput: z.ZodObject<{
|
|
|
633
559
|
[x: string]: unknown;
|
|
634
560
|
from: string;
|
|
635
561
|
to: string;
|
|
636
|
-
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";
|
|
637
563
|
description?: string | string[] | undefined;
|
|
638
564
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
639
565
|
strength?: number | undefined;
|
|
@@ -716,39 +642,18 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
716
642
|
gate: "gate";
|
|
717
643
|
mode: "mode";
|
|
718
644
|
artefact: "artefact";
|
|
719
|
-
artefact_flow: "artefact_flow";
|
|
720
645
|
decision: "decision";
|
|
721
646
|
change: "change";
|
|
722
647
|
view: "view";
|
|
723
648
|
milestone: "milestone";
|
|
724
|
-
version: "version";
|
|
725
649
|
}> & {
|
|
726
|
-
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";
|
|
727
651
|
};
|
|
728
652
|
name: z.ZodString;
|
|
729
653
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
730
654
|
is(value: unknown): value is string | string[];
|
|
731
655
|
}>;
|
|
732
|
-
status: z.ZodOptional<z.
|
|
733
|
-
deprecated: "deprecated";
|
|
734
|
-
proposed: "proposed";
|
|
735
|
-
accepted: "accepted";
|
|
736
|
-
active: "active";
|
|
737
|
-
implemented: "implemented";
|
|
738
|
-
adopted: "adopted";
|
|
739
|
-
defined: "defined";
|
|
740
|
-
introduced: "introduced";
|
|
741
|
-
in_progress: "in_progress";
|
|
742
|
-
complete: "complete";
|
|
743
|
-
consolidated: "consolidated";
|
|
744
|
-
experimental: "experimental";
|
|
745
|
-
retired: "retired";
|
|
746
|
-
superseded: "superseded";
|
|
747
|
-
abandoned: "abandoned";
|
|
748
|
-
deferred: "deferred";
|
|
749
|
-
}> & {
|
|
750
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
751
|
-
}>;
|
|
656
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
752
657
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
753
658
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
754
659
|
is(value: unknown): value is string | string[];
|
|
@@ -803,8 +708,6 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
803
708
|
}>>;
|
|
804
709
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
805
710
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
806
|
-
input: z.ZodOptional<z.ZodString>;
|
|
807
|
-
output: z.ZodOptional<z.ZodString>;
|
|
808
711
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
809
712
|
role: z.ZodEnum<{
|
|
810
713
|
output: "output";
|
|
@@ -848,26 +751,14 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
848
751
|
affects: "affects";
|
|
849
752
|
supersedes: "supersedes";
|
|
850
753
|
must_preserve: "must_preserve";
|
|
851
|
-
performs: "performs";
|
|
852
754
|
part_of: "part_of";
|
|
853
755
|
precedes: "precedes";
|
|
854
756
|
must_follow: "must_follow";
|
|
855
|
-
blocks: "blocks";
|
|
856
|
-
routes_to: "routes_to";
|
|
857
757
|
governed_by: "governed_by";
|
|
858
758
|
modifies: "modifies";
|
|
859
|
-
triggered_by: "triggered_by";
|
|
860
|
-
applies_to: "applies_to";
|
|
861
759
|
produces: "produces";
|
|
862
|
-
consumes: "consumes";
|
|
863
|
-
transforms_into: "transforms_into";
|
|
864
|
-
selects: "selects";
|
|
865
|
-
requires: "requires";
|
|
866
|
-
disables: "disables";
|
|
867
|
-
influence: "influence";
|
|
868
|
-
justifies: "justifies";
|
|
869
760
|
}> & {
|
|
870
|
-
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";
|
|
871
762
|
};
|
|
872
763
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
873
764
|
is(value: unknown): value is string | string[];
|
|
@@ -886,7 +777,7 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
886
777
|
[x: string]: unknown;
|
|
887
778
|
from: string;
|
|
888
779
|
to: string;
|
|
889
|
-
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";
|
|
890
781
|
description?: string | string[] | undefined;
|
|
891
782
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
892
783
|
strength?: number | undefined;
|
|
@@ -926,10 +817,10 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
926
817
|
nodes: {
|
|
927
818
|
[x: string]: unknown;
|
|
928
819
|
id: string;
|
|
929
|
-
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";
|
|
930
821
|
name: string;
|
|
931
822
|
description?: string | string[] | undefined;
|
|
932
|
-
status?:
|
|
823
|
+
status?: undefined;
|
|
933
824
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
934
825
|
context?: string | string[] | undefined;
|
|
935
826
|
options?: {
|
|
@@ -953,8 +844,6 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
953
844
|
}[] | undefined;
|
|
954
845
|
propagation?: Record<string, boolean> | undefined;
|
|
955
846
|
includes?: string[] | undefined;
|
|
956
|
-
input?: string | undefined;
|
|
957
|
-
output?: string | undefined;
|
|
958
847
|
external_references?: {
|
|
959
848
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
960
849
|
identifier: string;
|
|
@@ -977,7 +866,7 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
977
866
|
[x: string]: unknown;
|
|
978
867
|
from: string;
|
|
979
868
|
to: string;
|
|
980
|
-
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";
|
|
981
870
|
description?: string | string[] | undefined;
|
|
982
871
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
983
872
|
strength?: number | undefined;
|
|
@@ -1020,39 +909,18 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
1020
909
|
gate: "gate";
|
|
1021
910
|
mode: "mode";
|
|
1022
911
|
artefact: "artefact";
|
|
1023
|
-
artefact_flow: "artefact_flow";
|
|
1024
912
|
decision: "decision";
|
|
1025
913
|
change: "change";
|
|
1026
914
|
view: "view";
|
|
1027
915
|
milestone: "milestone";
|
|
1028
|
-
version: "version";
|
|
1029
916
|
}> & {
|
|
1030
|
-
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";
|
|
1031
918
|
};
|
|
1032
919
|
name: z.ZodString;
|
|
1033
920
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
1034
921
|
is(value: unknown): value is string | string[];
|
|
1035
922
|
}>;
|
|
1036
|
-
status: z.ZodOptional<z.
|
|
1037
|
-
deprecated: "deprecated";
|
|
1038
|
-
proposed: "proposed";
|
|
1039
|
-
accepted: "accepted";
|
|
1040
|
-
active: "active";
|
|
1041
|
-
implemented: "implemented";
|
|
1042
|
-
adopted: "adopted";
|
|
1043
|
-
defined: "defined";
|
|
1044
|
-
introduced: "introduced";
|
|
1045
|
-
in_progress: "in_progress";
|
|
1046
|
-
complete: "complete";
|
|
1047
|
-
consolidated: "consolidated";
|
|
1048
|
-
experimental: "experimental";
|
|
1049
|
-
retired: "retired";
|
|
1050
|
-
superseded: "superseded";
|
|
1051
|
-
abandoned: "abandoned";
|
|
1052
|
-
deferred: "deferred";
|
|
1053
|
-
}> & {
|
|
1054
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
1055
|
-
}>;
|
|
923
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
1056
924
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
1057
925
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
1058
926
|
is(value: unknown): value is string | string[];
|
|
@@ -1107,8 +975,6 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
1107
975
|
}>>;
|
|
1108
976
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
1109
977
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1110
|
-
input: z.ZodOptional<z.ZodString>;
|
|
1111
|
-
output: z.ZodOptional<z.ZodString>;
|
|
1112
978
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1113
979
|
role: z.ZodEnum<{
|
|
1114
980
|
output: "output";
|
|
@@ -1169,26 +1035,14 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
1169
1035
|
affects: "affects";
|
|
1170
1036
|
supersedes: "supersedes";
|
|
1171
1037
|
must_preserve: "must_preserve";
|
|
1172
|
-
performs: "performs";
|
|
1173
1038
|
part_of: "part_of";
|
|
1174
1039
|
precedes: "precedes";
|
|
1175
1040
|
must_follow: "must_follow";
|
|
1176
|
-
blocks: "blocks";
|
|
1177
|
-
routes_to: "routes_to";
|
|
1178
1041
|
governed_by: "governed_by";
|
|
1179
1042
|
modifies: "modifies";
|
|
1180
|
-
triggered_by: "triggered_by";
|
|
1181
|
-
applies_to: "applies_to";
|
|
1182
1043
|
produces: "produces";
|
|
1183
|
-
consumes: "consumes";
|
|
1184
|
-
transforms_into: "transforms_into";
|
|
1185
|
-
selects: "selects";
|
|
1186
|
-
requires: "requires";
|
|
1187
|
-
disables: "disables";
|
|
1188
|
-
influence: "influence";
|
|
1189
|
-
justifies: "justifies";
|
|
1190
1044
|
}> & {
|
|
1191
|
-
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";
|
|
1192
1046
|
};
|
|
1193
1047
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
1194
1048
|
is(value: unknown): value is string | string[];
|
|
@@ -1207,7 +1061,7 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
1207
1061
|
[x: string]: unknown;
|
|
1208
1062
|
from: string;
|
|
1209
1063
|
to: string;
|
|
1210
|
-
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";
|
|
1211
1065
|
description?: string | string[] | undefined;
|
|
1212
1066
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
1213
1067
|
strength?: number | undefined;
|
|
@@ -1247,10 +1101,10 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
1247
1101
|
is(value: unknown): value is {
|
|
1248
1102
|
[x: string]: unknown;
|
|
1249
1103
|
id: string;
|
|
1250
|
-
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";
|
|
1251
1105
|
name: string;
|
|
1252
1106
|
description?: string | string[] | undefined;
|
|
1253
|
-
status?:
|
|
1107
|
+
status?: undefined;
|
|
1254
1108
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
1255
1109
|
context?: string | string[] | undefined;
|
|
1256
1110
|
options?: {
|
|
@@ -1274,8 +1128,6 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
1274
1128
|
}[] | undefined;
|
|
1275
1129
|
propagation?: Record<string, boolean> | undefined;
|
|
1276
1130
|
includes?: string[] | undefined;
|
|
1277
|
-
input?: string | undefined;
|
|
1278
|
-
output?: string | undefined;
|
|
1279
1131
|
external_references?: {
|
|
1280
1132
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
1281
1133
|
identifier: string;
|
|
@@ -1298,7 +1150,7 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
1298
1150
|
[x: string]: unknown;
|
|
1299
1151
|
from: string;
|
|
1300
1152
|
to: string;
|
|
1301
|
-
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";
|
|
1302
1154
|
description?: string | string[] | undefined;
|
|
1303
1155
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
1304
1156
|
strength?: number | undefined;
|
|
@@ -1358,39 +1210,18 @@ declare const ImpactSummaryOutput: z.ZodObject<{
|
|
|
1358
1210
|
gate: "gate";
|
|
1359
1211
|
mode: "mode";
|
|
1360
1212
|
artefact: "artefact";
|
|
1361
|
-
artefact_flow: "artefact_flow";
|
|
1362
1213
|
decision: "decision";
|
|
1363
1214
|
change: "change";
|
|
1364
1215
|
view: "view";
|
|
1365
1216
|
milestone: "milestone";
|
|
1366
|
-
version: "version";
|
|
1367
1217
|
}> & {
|
|
1368
|
-
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";
|
|
1369
1219
|
};
|
|
1370
1220
|
name: z.ZodString;
|
|
1371
1221
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
1372
1222
|
is(value: unknown): value is string | string[];
|
|
1373
1223
|
}>;
|
|
1374
|
-
status: z.ZodOptional<z.
|
|
1375
|
-
deprecated: "deprecated";
|
|
1376
|
-
proposed: "proposed";
|
|
1377
|
-
accepted: "accepted";
|
|
1378
|
-
active: "active";
|
|
1379
|
-
implemented: "implemented";
|
|
1380
|
-
adopted: "adopted";
|
|
1381
|
-
defined: "defined";
|
|
1382
|
-
introduced: "introduced";
|
|
1383
|
-
in_progress: "in_progress";
|
|
1384
|
-
complete: "complete";
|
|
1385
|
-
consolidated: "consolidated";
|
|
1386
|
-
experimental: "experimental";
|
|
1387
|
-
retired: "retired";
|
|
1388
|
-
superseded: "superseded";
|
|
1389
|
-
abandoned: "abandoned";
|
|
1390
|
-
deferred: "deferred";
|
|
1391
|
-
}> & {
|
|
1392
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
1393
|
-
}>;
|
|
1224
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
1394
1225
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
1395
1226
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
1396
1227
|
is(value: unknown): value is string | string[];
|
|
@@ -1445,8 +1276,6 @@ declare const ImpactSummaryOutput: z.ZodObject<{
|
|
|
1445
1276
|
}>>;
|
|
1446
1277
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
1447
1278
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1448
|
-
input: z.ZodOptional<z.ZodString>;
|
|
1449
|
-
output: z.ZodOptional<z.ZodString>;
|
|
1450
1279
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1451
1280
|
role: z.ZodEnum<{
|
|
1452
1281
|
output: "output";
|
|
@@ -1507,26 +1336,14 @@ declare const ImpactSummaryOutput: z.ZodObject<{
|
|
|
1507
1336
|
affects: "affects";
|
|
1508
1337
|
supersedes: "supersedes";
|
|
1509
1338
|
must_preserve: "must_preserve";
|
|
1510
|
-
performs: "performs";
|
|
1511
1339
|
part_of: "part_of";
|
|
1512
1340
|
precedes: "precedes";
|
|
1513
1341
|
must_follow: "must_follow";
|
|
1514
|
-
blocks: "blocks";
|
|
1515
|
-
routes_to: "routes_to";
|
|
1516
1342
|
governed_by: "governed_by";
|
|
1517
1343
|
modifies: "modifies";
|
|
1518
|
-
triggered_by: "triggered_by";
|
|
1519
|
-
applies_to: "applies_to";
|
|
1520
1344
|
produces: "produces";
|
|
1521
|
-
consumes: "consumes";
|
|
1522
|
-
transforms_into: "transforms_into";
|
|
1523
|
-
selects: "selects";
|
|
1524
|
-
requires: "requires";
|
|
1525
|
-
disables: "disables";
|
|
1526
|
-
influence: "influence";
|
|
1527
|
-
justifies: "justifies";
|
|
1528
1345
|
}> & {
|
|
1529
|
-
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";
|
|
1530
1347
|
};
|
|
1531
1348
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
1532
1349
|
is(value: unknown): value is string | string[];
|
|
@@ -1545,7 +1362,7 @@ declare const ImpactSummaryOutput: z.ZodObject<{
|
|
|
1545
1362
|
[x: string]: unknown;
|
|
1546
1363
|
from: string;
|
|
1547
1364
|
to: string;
|
|
1548
|
-
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";
|
|
1549
1366
|
description?: string | string[] | undefined;
|
|
1550
1367
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
1551
1368
|
strength?: number | undefined;
|
|
@@ -1585,10 +1402,10 @@ declare const ImpactSummaryOutput: z.ZodObject<{
|
|
|
1585
1402
|
is(value: unknown): value is {
|
|
1586
1403
|
[x: string]: unknown;
|
|
1587
1404
|
id: string;
|
|
1588
|
-
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";
|
|
1589
1406
|
name: string;
|
|
1590
1407
|
description?: string | string[] | undefined;
|
|
1591
|
-
status?:
|
|
1408
|
+
status?: undefined;
|
|
1592
1409
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
1593
1410
|
context?: string | string[] | undefined;
|
|
1594
1411
|
options?: {
|
|
@@ -1612,8 +1429,6 @@ declare const ImpactSummaryOutput: z.ZodObject<{
|
|
|
1612
1429
|
}[] | undefined;
|
|
1613
1430
|
propagation?: Record<string, boolean> | undefined;
|
|
1614
1431
|
includes?: string[] | undefined;
|
|
1615
|
-
input?: string | undefined;
|
|
1616
|
-
output?: string | undefined;
|
|
1617
1432
|
external_references?: {
|
|
1618
1433
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
1619
1434
|
identifier: string;
|
|
@@ -1636,7 +1451,7 @@ declare const ImpactSummaryOutput: z.ZodObject<{
|
|
|
1636
1451
|
[x: string]: unknown;
|
|
1637
1452
|
from: string;
|
|
1638
1453
|
to: string;
|
|
1639
|
-
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";
|
|
1640
1455
|
description?: string | string[] | undefined;
|
|
1641
1456
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
1642
1457
|
strength?: number | undefined;
|
|
@@ -1705,39 +1520,18 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
1705
1520
|
gate: "gate";
|
|
1706
1521
|
mode: "mode";
|
|
1707
1522
|
artefact: "artefact";
|
|
1708
|
-
artefact_flow: "artefact_flow";
|
|
1709
1523
|
decision: "decision";
|
|
1710
1524
|
change: "change";
|
|
1711
1525
|
view: "view";
|
|
1712
1526
|
milestone: "milestone";
|
|
1713
|
-
version: "version";
|
|
1714
1527
|
}> & {
|
|
1715
|
-
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";
|
|
1716
1529
|
};
|
|
1717
1530
|
name: z.ZodString;
|
|
1718
1531
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
1719
1532
|
is(value: unknown): value is string | string[];
|
|
1720
1533
|
}>;
|
|
1721
|
-
status: z.ZodOptional<z.
|
|
1722
|
-
deprecated: "deprecated";
|
|
1723
|
-
proposed: "proposed";
|
|
1724
|
-
accepted: "accepted";
|
|
1725
|
-
active: "active";
|
|
1726
|
-
implemented: "implemented";
|
|
1727
|
-
adopted: "adopted";
|
|
1728
|
-
defined: "defined";
|
|
1729
|
-
introduced: "introduced";
|
|
1730
|
-
in_progress: "in_progress";
|
|
1731
|
-
complete: "complete";
|
|
1732
|
-
consolidated: "consolidated";
|
|
1733
|
-
experimental: "experimental";
|
|
1734
|
-
retired: "retired";
|
|
1735
|
-
superseded: "superseded";
|
|
1736
|
-
abandoned: "abandoned";
|
|
1737
|
-
deferred: "deferred";
|
|
1738
|
-
}> & {
|
|
1739
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
1740
|
-
}>;
|
|
1534
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
1741
1535
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
1742
1536
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
1743
1537
|
is(value: unknown): value is string | string[];
|
|
@@ -1792,8 +1586,6 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
1792
1586
|
}>>;
|
|
1793
1587
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
1794
1588
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1795
|
-
input: z.ZodOptional<z.ZodString>;
|
|
1796
|
-
output: z.ZodOptional<z.ZodString>;
|
|
1797
1589
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1798
1590
|
role: z.ZodEnum<{
|
|
1799
1591
|
output: "output";
|
|
@@ -1837,26 +1629,14 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
1837
1629
|
affects: "affects";
|
|
1838
1630
|
supersedes: "supersedes";
|
|
1839
1631
|
must_preserve: "must_preserve";
|
|
1840
|
-
performs: "performs";
|
|
1841
1632
|
part_of: "part_of";
|
|
1842
1633
|
precedes: "precedes";
|
|
1843
1634
|
must_follow: "must_follow";
|
|
1844
|
-
blocks: "blocks";
|
|
1845
|
-
routes_to: "routes_to";
|
|
1846
1635
|
governed_by: "governed_by";
|
|
1847
1636
|
modifies: "modifies";
|
|
1848
|
-
triggered_by: "triggered_by";
|
|
1849
|
-
applies_to: "applies_to";
|
|
1850
1637
|
produces: "produces";
|
|
1851
|
-
consumes: "consumes";
|
|
1852
|
-
transforms_into: "transforms_into";
|
|
1853
|
-
selects: "selects";
|
|
1854
|
-
requires: "requires";
|
|
1855
|
-
disables: "disables";
|
|
1856
|
-
influence: "influence";
|
|
1857
|
-
justifies: "justifies";
|
|
1858
1638
|
}> & {
|
|
1859
|
-
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";
|
|
1860
1640
|
};
|
|
1861
1641
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
1862
1642
|
is(value: unknown): value is string | string[];
|
|
@@ -1875,7 +1655,7 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
1875
1655
|
[x: string]: unknown;
|
|
1876
1656
|
from: string;
|
|
1877
1657
|
to: string;
|
|
1878
|
-
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";
|
|
1879
1659
|
description?: string | string[] | undefined;
|
|
1880
1660
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
1881
1661
|
strength?: number | undefined;
|
|
@@ -1915,10 +1695,10 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
1915
1695
|
nodes: {
|
|
1916
1696
|
[x: string]: unknown;
|
|
1917
1697
|
id: string;
|
|
1918
|
-
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";
|
|
1919
1699
|
name: string;
|
|
1920
1700
|
description?: string | string[] | undefined;
|
|
1921
|
-
status?:
|
|
1701
|
+
status?: undefined;
|
|
1922
1702
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
1923
1703
|
context?: string | string[] | undefined;
|
|
1924
1704
|
options?: {
|
|
@@ -1942,8 +1722,6 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
1942
1722
|
}[] | undefined;
|
|
1943
1723
|
propagation?: Record<string, boolean> | undefined;
|
|
1944
1724
|
includes?: string[] | undefined;
|
|
1945
|
-
input?: string | undefined;
|
|
1946
|
-
output?: string | undefined;
|
|
1947
1725
|
external_references?: {
|
|
1948
1726
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
1949
1727
|
identifier: string;
|
|
@@ -1966,7 +1744,7 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
1966
1744
|
[x: string]: unknown;
|
|
1967
1745
|
from: string;
|
|
1968
1746
|
to: string;
|
|
1969
|
-
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";
|
|
1970
1748
|
description?: string | string[] | undefined;
|
|
1971
1749
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
1972
1750
|
strength?: number | undefined;
|
|
@@ -2000,39 +1778,18 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
2000
1778
|
gate: "gate";
|
|
2001
1779
|
mode: "mode";
|
|
2002
1780
|
artefact: "artefact";
|
|
2003
|
-
artefact_flow: "artefact_flow";
|
|
2004
1781
|
decision: "decision";
|
|
2005
1782
|
change: "change";
|
|
2006
1783
|
view: "view";
|
|
2007
1784
|
milestone: "milestone";
|
|
2008
|
-
version: "version";
|
|
2009
1785
|
}> & {
|
|
2010
|
-
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";
|
|
2011
1787
|
};
|
|
2012
1788
|
name: z.ZodString;
|
|
2013
1789
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
2014
1790
|
is(value: unknown): value is string | string[];
|
|
2015
1791
|
}>;
|
|
2016
|
-
status: z.ZodOptional<z.
|
|
2017
|
-
deprecated: "deprecated";
|
|
2018
|
-
proposed: "proposed";
|
|
2019
|
-
accepted: "accepted";
|
|
2020
|
-
active: "active";
|
|
2021
|
-
implemented: "implemented";
|
|
2022
|
-
adopted: "adopted";
|
|
2023
|
-
defined: "defined";
|
|
2024
|
-
introduced: "introduced";
|
|
2025
|
-
in_progress: "in_progress";
|
|
2026
|
-
complete: "complete";
|
|
2027
|
-
consolidated: "consolidated";
|
|
2028
|
-
experimental: "experimental";
|
|
2029
|
-
retired: "retired";
|
|
2030
|
-
superseded: "superseded";
|
|
2031
|
-
abandoned: "abandoned";
|
|
2032
|
-
deferred: "deferred";
|
|
2033
|
-
}> & {
|
|
2034
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
2035
|
-
}>;
|
|
1792
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
2036
1793
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
2037
1794
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
2038
1795
|
is(value: unknown): value is string | string[];
|
|
@@ -2087,8 +1844,6 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
2087
1844
|
}>>;
|
|
2088
1845
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
2089
1846
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2090
|
-
input: z.ZodOptional<z.ZodString>;
|
|
2091
|
-
output: z.ZodOptional<z.ZodString>;
|
|
2092
1847
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2093
1848
|
role: z.ZodEnum<{
|
|
2094
1849
|
output: "output";
|
|
@@ -2149,26 +1904,14 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
2149
1904
|
affects: "affects";
|
|
2150
1905
|
supersedes: "supersedes";
|
|
2151
1906
|
must_preserve: "must_preserve";
|
|
2152
|
-
performs: "performs";
|
|
2153
1907
|
part_of: "part_of";
|
|
2154
1908
|
precedes: "precedes";
|
|
2155
1909
|
must_follow: "must_follow";
|
|
2156
|
-
blocks: "blocks";
|
|
2157
|
-
routes_to: "routes_to";
|
|
2158
1910
|
governed_by: "governed_by";
|
|
2159
1911
|
modifies: "modifies";
|
|
2160
|
-
triggered_by: "triggered_by";
|
|
2161
|
-
applies_to: "applies_to";
|
|
2162
1912
|
produces: "produces";
|
|
2163
|
-
consumes: "consumes";
|
|
2164
|
-
transforms_into: "transforms_into";
|
|
2165
|
-
selects: "selects";
|
|
2166
|
-
requires: "requires";
|
|
2167
|
-
disables: "disables";
|
|
2168
|
-
influence: "influence";
|
|
2169
|
-
justifies: "justifies";
|
|
2170
1913
|
}> & {
|
|
2171
|
-
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";
|
|
2172
1915
|
};
|
|
2173
1916
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
2174
1917
|
is(value: unknown): value is string | string[];
|
|
@@ -2187,7 +1930,7 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
2187
1930
|
[x: string]: unknown;
|
|
2188
1931
|
from: string;
|
|
2189
1932
|
to: string;
|
|
2190
|
-
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";
|
|
2191
1934
|
description?: string | string[] | undefined;
|
|
2192
1935
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
2193
1936
|
strength?: number | undefined;
|
|
@@ -2227,10 +1970,10 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
2227
1970
|
is(value: unknown): value is {
|
|
2228
1971
|
[x: string]: unknown;
|
|
2229
1972
|
id: string;
|
|
2230
|
-
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";
|
|
2231
1974
|
name: string;
|
|
2232
1975
|
description?: string | string[] | undefined;
|
|
2233
|
-
status?:
|
|
1976
|
+
status?: undefined;
|
|
2234
1977
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
2235
1978
|
context?: string | string[] | undefined;
|
|
2236
1979
|
options?: {
|
|
@@ -2254,8 +1997,6 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
2254
1997
|
}[] | undefined;
|
|
2255
1998
|
propagation?: Record<string, boolean> | undefined;
|
|
2256
1999
|
includes?: string[] | undefined;
|
|
2257
|
-
input?: string | undefined;
|
|
2258
|
-
output?: string | undefined;
|
|
2259
2000
|
external_references?: {
|
|
2260
2001
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
2261
2002
|
identifier: string;
|
|
@@ -2278,7 +2019,7 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
2278
2019
|
[x: string]: unknown;
|
|
2279
2020
|
from: string;
|
|
2280
2021
|
to: string;
|
|
2281
|
-
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";
|
|
2282
2023
|
description?: string | string[] | undefined;
|
|
2283
2024
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
2284
2025
|
strength?: number | undefined;
|