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
|
@@ -40,39 +40,18 @@ export declare const removeRelationshipOp: import("./define-operation.js").Defin
|
|
|
40
40
|
gate: "gate";
|
|
41
41
|
mode: "mode";
|
|
42
42
|
artefact: "artefact";
|
|
43
|
-
artefact_flow: "artefact_flow";
|
|
44
43
|
decision: "decision";
|
|
45
44
|
change: "change";
|
|
46
45
|
view: "view";
|
|
47
46
|
milestone: "milestone";
|
|
48
|
-
version: "version";
|
|
49
47
|
}> & {
|
|
50
|
-
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
48
|
+
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
51
49
|
};
|
|
52
50
|
name: z.ZodString;
|
|
53
51
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
54
52
|
is(value: unknown): value is string | string[];
|
|
55
53
|
}>;
|
|
56
|
-
status: z.ZodOptional<z.
|
|
57
|
-
deprecated: "deprecated";
|
|
58
|
-
proposed: "proposed";
|
|
59
|
-
accepted: "accepted";
|
|
60
|
-
active: "active";
|
|
61
|
-
implemented: "implemented";
|
|
62
|
-
adopted: "adopted";
|
|
63
|
-
defined: "defined";
|
|
64
|
-
introduced: "introduced";
|
|
65
|
-
in_progress: "in_progress";
|
|
66
|
-
complete: "complete";
|
|
67
|
-
consolidated: "consolidated";
|
|
68
|
-
experimental: "experimental";
|
|
69
|
-
retired: "retired";
|
|
70
|
-
superseded: "superseded";
|
|
71
|
-
abandoned: "abandoned";
|
|
72
|
-
deferred: "deferred";
|
|
73
|
-
}> & {
|
|
74
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
75
|
-
}>;
|
|
54
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
76
55
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
77
56
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
78
57
|
is(value: unknown): value is string | string[];
|
|
@@ -127,8 +106,6 @@ export declare const removeRelationshipOp: import("./define-operation.js").Defin
|
|
|
127
106
|
}>>;
|
|
128
107
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
129
108
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
130
|
-
input: z.ZodOptional<z.ZodString>;
|
|
131
|
-
output: z.ZodOptional<z.ZodString>;
|
|
132
109
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
133
110
|
role: z.ZodEnum<{
|
|
134
111
|
output: "output";
|
|
@@ -172,26 +149,14 @@ export declare const removeRelationshipOp: import("./define-operation.js").Defin
|
|
|
172
149
|
affects: "affects";
|
|
173
150
|
supersedes: "supersedes";
|
|
174
151
|
must_preserve: "must_preserve";
|
|
175
|
-
performs: "performs";
|
|
176
152
|
part_of: "part_of";
|
|
177
153
|
precedes: "precedes";
|
|
178
154
|
must_follow: "must_follow";
|
|
179
|
-
blocks: "blocks";
|
|
180
|
-
routes_to: "routes_to";
|
|
181
155
|
governed_by: "governed_by";
|
|
182
156
|
modifies: "modifies";
|
|
183
|
-
triggered_by: "triggered_by";
|
|
184
|
-
applies_to: "applies_to";
|
|
185
157
|
produces: "produces";
|
|
186
|
-
consumes: "consumes";
|
|
187
|
-
transforms_into: "transforms_into";
|
|
188
|
-
selects: "selects";
|
|
189
|
-
requires: "requires";
|
|
190
|
-
disables: "disables";
|
|
191
|
-
influence: "influence";
|
|
192
|
-
justifies: "justifies";
|
|
193
158
|
}> & {
|
|
194
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
159
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
195
160
|
};
|
|
196
161
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
197
162
|
is(value: unknown): value is string | string[];
|
|
@@ -210,7 +175,7 @@ export declare const removeRelationshipOp: import("./define-operation.js").Defin
|
|
|
210
175
|
[x: string]: unknown;
|
|
211
176
|
from: string;
|
|
212
177
|
to: string;
|
|
213
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
178
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
214
179
|
description?: string | string[] | undefined;
|
|
215
180
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
216
181
|
strength?: number | undefined;
|
|
@@ -250,10 +215,10 @@ export declare const removeRelationshipOp: import("./define-operation.js").Defin
|
|
|
250
215
|
nodes: {
|
|
251
216
|
[x: string]: unknown;
|
|
252
217
|
id: string;
|
|
253
|
-
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
218
|
+
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
254
219
|
name: string;
|
|
255
220
|
description?: string | string[] | undefined;
|
|
256
|
-
status?:
|
|
221
|
+
status?: undefined;
|
|
257
222
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
258
223
|
context?: string | string[] | undefined;
|
|
259
224
|
options?: {
|
|
@@ -277,8 +242,6 @@ export declare const removeRelationshipOp: import("./define-operation.js").Defin
|
|
|
277
242
|
}[] | undefined;
|
|
278
243
|
propagation?: Record<string, boolean> | undefined;
|
|
279
244
|
includes?: string[] | undefined;
|
|
280
|
-
input?: string | undefined;
|
|
281
|
-
output?: string | undefined;
|
|
282
245
|
external_references?: {
|
|
283
246
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
284
247
|
identifier: string;
|
|
@@ -301,7 +264,7 @@ export declare const removeRelationshipOp: import("./define-operation.js").Defin
|
|
|
301
264
|
[x: string]: unknown;
|
|
302
265
|
from: string;
|
|
303
266
|
to: string;
|
|
304
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
267
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
305
268
|
description?: string | string[] | undefined;
|
|
306
269
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
307
270
|
strength?: number | undefined;
|
|
@@ -325,26 +288,14 @@ export declare const removeRelationshipOp: import("./define-operation.js").Defin
|
|
|
325
288
|
affects: "affects";
|
|
326
289
|
supersedes: "supersedes";
|
|
327
290
|
must_preserve: "must_preserve";
|
|
328
|
-
performs: "performs";
|
|
329
291
|
part_of: "part_of";
|
|
330
292
|
precedes: "precedes";
|
|
331
293
|
must_follow: "must_follow";
|
|
332
|
-
blocks: "blocks";
|
|
333
|
-
routes_to: "routes_to";
|
|
334
294
|
governed_by: "governed_by";
|
|
335
295
|
modifies: "modifies";
|
|
336
|
-
triggered_by: "triggered_by";
|
|
337
|
-
applies_to: "applies_to";
|
|
338
296
|
produces: "produces";
|
|
339
|
-
consumes: "consumes";
|
|
340
|
-
transforms_into: "transforms_into";
|
|
341
|
-
selects: "selects";
|
|
342
|
-
requires: "requires";
|
|
343
|
-
disables: "disables";
|
|
344
|
-
influence: "influence";
|
|
345
|
-
justifies: "justifies";
|
|
346
297
|
}> & {
|
|
347
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
298
|
+
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";
|
|
348
299
|
};
|
|
349
300
|
to: z.ZodString;
|
|
350
301
|
repair: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -384,39 +335,18 @@ export declare const removeRelationshipOp: import("./define-operation.js").Defin
|
|
|
384
335
|
gate: "gate";
|
|
385
336
|
mode: "mode";
|
|
386
337
|
artefact: "artefact";
|
|
387
|
-
artefact_flow: "artefact_flow";
|
|
388
338
|
decision: "decision";
|
|
389
339
|
change: "change";
|
|
390
340
|
view: "view";
|
|
391
341
|
milestone: "milestone";
|
|
392
|
-
version: "version";
|
|
393
342
|
}> & {
|
|
394
|
-
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
343
|
+
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
395
344
|
};
|
|
396
345
|
name: z.ZodString;
|
|
397
346
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
398
347
|
is(value: unknown): value is string | string[];
|
|
399
348
|
}>;
|
|
400
|
-
status: z.ZodOptional<z.
|
|
401
|
-
deprecated: "deprecated";
|
|
402
|
-
proposed: "proposed";
|
|
403
|
-
accepted: "accepted";
|
|
404
|
-
active: "active";
|
|
405
|
-
implemented: "implemented";
|
|
406
|
-
adopted: "adopted";
|
|
407
|
-
defined: "defined";
|
|
408
|
-
introduced: "introduced";
|
|
409
|
-
in_progress: "in_progress";
|
|
410
|
-
complete: "complete";
|
|
411
|
-
consolidated: "consolidated";
|
|
412
|
-
experimental: "experimental";
|
|
413
|
-
retired: "retired";
|
|
414
|
-
superseded: "superseded";
|
|
415
|
-
abandoned: "abandoned";
|
|
416
|
-
deferred: "deferred";
|
|
417
|
-
}> & {
|
|
418
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
419
|
-
}>;
|
|
349
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
420
350
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
421
351
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
422
352
|
is(value: unknown): value is string | string[];
|
|
@@ -471,8 +401,6 @@ export declare const removeRelationshipOp: import("./define-operation.js").Defin
|
|
|
471
401
|
}>>;
|
|
472
402
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
473
403
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
474
|
-
input: z.ZodOptional<z.ZodString>;
|
|
475
|
-
output: z.ZodOptional<z.ZodString>;
|
|
476
404
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
477
405
|
role: z.ZodEnum<{
|
|
478
406
|
output: "output";
|
|
@@ -516,26 +444,14 @@ export declare const removeRelationshipOp: import("./define-operation.js").Defin
|
|
|
516
444
|
affects: "affects";
|
|
517
445
|
supersedes: "supersedes";
|
|
518
446
|
must_preserve: "must_preserve";
|
|
519
|
-
performs: "performs";
|
|
520
447
|
part_of: "part_of";
|
|
521
448
|
precedes: "precedes";
|
|
522
449
|
must_follow: "must_follow";
|
|
523
|
-
blocks: "blocks";
|
|
524
|
-
routes_to: "routes_to";
|
|
525
450
|
governed_by: "governed_by";
|
|
526
451
|
modifies: "modifies";
|
|
527
|
-
triggered_by: "triggered_by";
|
|
528
|
-
applies_to: "applies_to";
|
|
529
452
|
produces: "produces";
|
|
530
|
-
consumes: "consumes";
|
|
531
|
-
transforms_into: "transforms_into";
|
|
532
|
-
selects: "selects";
|
|
533
|
-
requires: "requires";
|
|
534
|
-
disables: "disables";
|
|
535
|
-
influence: "influence";
|
|
536
|
-
justifies: "justifies";
|
|
537
453
|
}> & {
|
|
538
|
-
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";
|
|
539
455
|
};
|
|
540
456
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
541
457
|
is(value: unknown): value is string | string[];
|
|
@@ -554,7 +470,7 @@ export declare const removeRelationshipOp: import("./define-operation.js").Defin
|
|
|
554
470
|
[x: string]: unknown;
|
|
555
471
|
from: string;
|
|
556
472
|
to: string;
|
|
557
|
-
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";
|
|
558
474
|
description?: string | string[] | undefined;
|
|
559
475
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
560
476
|
strength?: number | undefined;
|
|
@@ -594,10 +510,10 @@ export declare const removeRelationshipOp: import("./define-operation.js").Defin
|
|
|
594
510
|
nodes: {
|
|
595
511
|
[x: string]: unknown;
|
|
596
512
|
id: string;
|
|
597
|
-
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";
|
|
598
514
|
name: string;
|
|
599
515
|
description?: string | string[] | undefined;
|
|
600
|
-
status?:
|
|
516
|
+
status?: undefined;
|
|
601
517
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
602
518
|
context?: string | string[] | undefined;
|
|
603
519
|
options?: {
|
|
@@ -621,8 +537,6 @@ export declare const removeRelationshipOp: import("./define-operation.js").Defin
|
|
|
621
537
|
}[] | undefined;
|
|
622
538
|
propagation?: Record<string, boolean> | undefined;
|
|
623
539
|
includes?: string[] | undefined;
|
|
624
|
-
input?: string | undefined;
|
|
625
|
-
output?: string | undefined;
|
|
626
540
|
external_references?: {
|
|
627
541
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
628
542
|
identifier: string;
|
|
@@ -645,7 +559,7 @@ export declare const removeRelationshipOp: import("./define-operation.js").Defin
|
|
|
645
559
|
[x: string]: unknown;
|
|
646
560
|
from: string;
|
|
647
561
|
to: string;
|
|
648
|
-
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";
|
|
649
563
|
description?: string | string[] | undefined;
|
|
650
564
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
651
565
|
strength?: number | undefined;
|
|
@@ -41,39 +41,18 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
|
|
|
41
41
|
gate: "gate";
|
|
42
42
|
mode: "mode";
|
|
43
43
|
artefact: "artefact";
|
|
44
|
-
artefact_flow: "artefact_flow";
|
|
45
44
|
decision: "decision";
|
|
46
45
|
change: "change";
|
|
47
46
|
view: "view";
|
|
48
47
|
milestone: "milestone";
|
|
49
|
-
version: "version";
|
|
50
48
|
}> & {
|
|
51
|
-
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
49
|
+
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
52
50
|
};
|
|
53
51
|
name: z.ZodString;
|
|
54
52
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
55
53
|
is(value: unknown): value is string | string[];
|
|
56
54
|
}>;
|
|
57
|
-
status: z.ZodOptional<z.
|
|
58
|
-
deprecated: "deprecated";
|
|
59
|
-
proposed: "proposed";
|
|
60
|
-
accepted: "accepted";
|
|
61
|
-
active: "active";
|
|
62
|
-
implemented: "implemented";
|
|
63
|
-
adopted: "adopted";
|
|
64
|
-
defined: "defined";
|
|
65
|
-
introduced: "introduced";
|
|
66
|
-
in_progress: "in_progress";
|
|
67
|
-
complete: "complete";
|
|
68
|
-
consolidated: "consolidated";
|
|
69
|
-
experimental: "experimental";
|
|
70
|
-
retired: "retired";
|
|
71
|
-
superseded: "superseded";
|
|
72
|
-
abandoned: "abandoned";
|
|
73
|
-
deferred: "deferred";
|
|
74
|
-
}> & {
|
|
75
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
76
|
-
}>;
|
|
55
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
77
56
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
78
57
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
79
58
|
is(value: unknown): value is string | string[];
|
|
@@ -128,8 +107,6 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
|
|
|
128
107
|
}>>;
|
|
129
108
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
130
109
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
131
|
-
input: z.ZodOptional<z.ZodString>;
|
|
132
|
-
output: z.ZodOptional<z.ZodString>;
|
|
133
110
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
134
111
|
role: z.ZodEnum<{
|
|
135
112
|
output: "output";
|
|
@@ -173,26 +150,14 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
|
|
|
173
150
|
affects: "affects";
|
|
174
151
|
supersedes: "supersedes";
|
|
175
152
|
must_preserve: "must_preserve";
|
|
176
|
-
performs: "performs";
|
|
177
153
|
part_of: "part_of";
|
|
178
154
|
precedes: "precedes";
|
|
179
155
|
must_follow: "must_follow";
|
|
180
|
-
blocks: "blocks";
|
|
181
|
-
routes_to: "routes_to";
|
|
182
156
|
governed_by: "governed_by";
|
|
183
157
|
modifies: "modifies";
|
|
184
|
-
triggered_by: "triggered_by";
|
|
185
|
-
applies_to: "applies_to";
|
|
186
158
|
produces: "produces";
|
|
187
|
-
consumes: "consumes";
|
|
188
|
-
transforms_into: "transforms_into";
|
|
189
|
-
selects: "selects";
|
|
190
|
-
requires: "requires";
|
|
191
|
-
disables: "disables";
|
|
192
|
-
influence: "influence";
|
|
193
|
-
justifies: "justifies";
|
|
194
159
|
}> & {
|
|
195
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
160
|
+
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";
|
|
196
161
|
};
|
|
197
162
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
198
163
|
is(value: unknown): value is string | string[];
|
|
@@ -211,7 +176,7 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
|
|
|
211
176
|
[x: string]: unknown;
|
|
212
177
|
from: string;
|
|
213
178
|
to: string;
|
|
214
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
179
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
215
180
|
description?: string | string[] | undefined;
|
|
216
181
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
217
182
|
strength?: number | undefined;
|
|
@@ -251,10 +216,10 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
|
|
|
251
216
|
nodes: {
|
|
252
217
|
[x: string]: unknown;
|
|
253
218
|
id: string;
|
|
254
|
-
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
219
|
+
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
255
220
|
name: string;
|
|
256
221
|
description?: string | string[] | undefined;
|
|
257
|
-
status?:
|
|
222
|
+
status?: undefined;
|
|
258
223
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
259
224
|
context?: string | string[] | undefined;
|
|
260
225
|
options?: {
|
|
@@ -278,8 +243,6 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
|
|
|
278
243
|
}[] | undefined;
|
|
279
244
|
propagation?: Record<string, boolean> | undefined;
|
|
280
245
|
includes?: string[] | undefined;
|
|
281
|
-
input?: string | undefined;
|
|
282
|
-
output?: string | undefined;
|
|
283
246
|
external_references?: {
|
|
284
247
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
285
248
|
identifier: string;
|
|
@@ -302,7 +265,7 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
|
|
|
302
265
|
[x: string]: unknown;
|
|
303
266
|
from: string;
|
|
304
267
|
to: string;
|
|
305
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
268
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
306
269
|
description?: string | string[] | undefined;
|
|
307
270
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
308
271
|
strength?: number | undefined;
|
|
@@ -353,39 +316,18 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
|
|
|
353
316
|
gate: "gate";
|
|
354
317
|
mode: "mode";
|
|
355
318
|
artefact: "artefact";
|
|
356
|
-
artefact_flow: "artefact_flow";
|
|
357
319
|
decision: "decision";
|
|
358
320
|
change: "change";
|
|
359
321
|
view: "view";
|
|
360
322
|
milestone: "milestone";
|
|
361
|
-
version: "version";
|
|
362
323
|
}> & {
|
|
363
|
-
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
324
|
+
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
364
325
|
};
|
|
365
326
|
name: z.ZodString;
|
|
366
327
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
367
328
|
is(value: unknown): value is string | string[];
|
|
368
329
|
}>;
|
|
369
|
-
status: z.ZodOptional<z.
|
|
370
|
-
deprecated: "deprecated";
|
|
371
|
-
proposed: "proposed";
|
|
372
|
-
accepted: "accepted";
|
|
373
|
-
active: "active";
|
|
374
|
-
implemented: "implemented";
|
|
375
|
-
adopted: "adopted";
|
|
376
|
-
defined: "defined";
|
|
377
|
-
introduced: "introduced";
|
|
378
|
-
in_progress: "in_progress";
|
|
379
|
-
complete: "complete";
|
|
380
|
-
consolidated: "consolidated";
|
|
381
|
-
experimental: "experimental";
|
|
382
|
-
retired: "retired";
|
|
383
|
-
superseded: "superseded";
|
|
384
|
-
abandoned: "abandoned";
|
|
385
|
-
deferred: "deferred";
|
|
386
|
-
}> & {
|
|
387
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
388
|
-
}>;
|
|
330
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
389
331
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
390
332
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
391
333
|
is(value: unknown): value is string | string[];
|
|
@@ -440,8 +382,6 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
|
|
|
440
382
|
}>>;
|
|
441
383
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
442
384
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
443
|
-
input: z.ZodOptional<z.ZodString>;
|
|
444
|
-
output: z.ZodOptional<z.ZodString>;
|
|
445
385
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
446
386
|
role: z.ZodEnum<{
|
|
447
387
|
output: "output";
|
|
@@ -485,26 +425,14 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
|
|
|
485
425
|
affects: "affects";
|
|
486
426
|
supersedes: "supersedes";
|
|
487
427
|
must_preserve: "must_preserve";
|
|
488
|
-
performs: "performs";
|
|
489
428
|
part_of: "part_of";
|
|
490
429
|
precedes: "precedes";
|
|
491
430
|
must_follow: "must_follow";
|
|
492
|
-
blocks: "blocks";
|
|
493
|
-
routes_to: "routes_to";
|
|
494
431
|
governed_by: "governed_by";
|
|
495
432
|
modifies: "modifies";
|
|
496
|
-
triggered_by: "triggered_by";
|
|
497
|
-
applies_to: "applies_to";
|
|
498
433
|
produces: "produces";
|
|
499
|
-
consumes: "consumes";
|
|
500
|
-
transforms_into: "transforms_into";
|
|
501
|
-
selects: "selects";
|
|
502
|
-
requires: "requires";
|
|
503
|
-
disables: "disables";
|
|
504
|
-
influence: "influence";
|
|
505
|
-
justifies: "justifies";
|
|
506
434
|
}> & {
|
|
507
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
435
|
+
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";
|
|
508
436
|
};
|
|
509
437
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
510
438
|
is(value: unknown): value is string | string[];
|
|
@@ -523,7 +451,7 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
|
|
|
523
451
|
[x: string]: unknown;
|
|
524
452
|
from: string;
|
|
525
453
|
to: string;
|
|
526
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
454
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
527
455
|
description?: string | string[] | undefined;
|
|
528
456
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
529
457
|
strength?: number | undefined;
|
|
@@ -563,10 +491,10 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
|
|
|
563
491
|
nodes: {
|
|
564
492
|
[x: string]: unknown;
|
|
565
493
|
id: string;
|
|
566
|
-
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
494
|
+
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
567
495
|
name: string;
|
|
568
496
|
description?: string | string[] | undefined;
|
|
569
|
-
status?:
|
|
497
|
+
status?: undefined;
|
|
570
498
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
571
499
|
context?: string | string[] | undefined;
|
|
572
500
|
options?: {
|
|
@@ -590,8 +518,6 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
|
|
|
590
518
|
}[] | undefined;
|
|
591
519
|
propagation?: Record<string, boolean> | undefined;
|
|
592
520
|
includes?: string[] | undefined;
|
|
593
|
-
input?: string | undefined;
|
|
594
|
-
output?: string | undefined;
|
|
595
521
|
external_references?: {
|
|
596
522
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
597
523
|
identifier: string;
|
|
@@ -614,7 +540,7 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
|
|
|
614
540
|
[x: string]: unknown;
|
|
615
541
|
from: string;
|
|
616
542
|
to: string;
|
|
617
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
543
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
618
544
|
description?: string | string[] | undefined;
|
|
619
545
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
620
546
|
strength?: number | undefined;
|