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
|
@@ -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,27 +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
|
-
orchestrates: "orchestrates";
|
|
182
155
|
governed_by: "governed_by";
|
|
183
156
|
modifies: "modifies";
|
|
184
|
-
triggered_by: "triggered_by";
|
|
185
|
-
applies_to: "applies_to";
|
|
186
157
|
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
158
|
}> & {
|
|
195
|
-
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";
|
|
196
160
|
};
|
|
197
161
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
198
162
|
is(value: unknown): value is string | string[];
|
|
@@ -211,7 +175,7 @@ export declare const removeRelationshipOp: import("./define-operation.js").Defin
|
|
|
211
175
|
[x: string]: unknown;
|
|
212
176
|
from: string;
|
|
213
177
|
to: string;
|
|
214
|
-
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";
|
|
215
179
|
description?: string | string[] | undefined;
|
|
216
180
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
217
181
|
strength?: number | undefined;
|
|
@@ -251,10 +215,10 @@ export declare const removeRelationshipOp: import("./define-operation.js").Defin
|
|
|
251
215
|
nodes: {
|
|
252
216
|
[x: string]: unknown;
|
|
253
217
|
id: string;
|
|
254
|
-
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";
|
|
255
219
|
name: string;
|
|
256
220
|
description?: string | string[] | undefined;
|
|
257
|
-
status?:
|
|
221
|
+
status?: undefined;
|
|
258
222
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
259
223
|
context?: string | string[] | undefined;
|
|
260
224
|
options?: {
|
|
@@ -278,8 +242,6 @@ export declare const removeRelationshipOp: import("./define-operation.js").Defin
|
|
|
278
242
|
}[] | undefined;
|
|
279
243
|
propagation?: Record<string, boolean> | undefined;
|
|
280
244
|
includes?: string[] | undefined;
|
|
281
|
-
input?: string | undefined;
|
|
282
|
-
output?: string | undefined;
|
|
283
245
|
external_references?: {
|
|
284
246
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
285
247
|
identifier: string;
|
|
@@ -302,7 +264,7 @@ export declare const removeRelationshipOp: import("./define-operation.js").Defin
|
|
|
302
264
|
[x: string]: unknown;
|
|
303
265
|
from: string;
|
|
304
266
|
to: string;
|
|
305
|
-
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";
|
|
306
268
|
description?: string | string[] | undefined;
|
|
307
269
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
308
270
|
strength?: number | undefined;
|
|
@@ -326,27 +288,14 @@ export declare const removeRelationshipOp: import("./define-operation.js").Defin
|
|
|
326
288
|
affects: "affects";
|
|
327
289
|
supersedes: "supersedes";
|
|
328
290
|
must_preserve: "must_preserve";
|
|
329
|
-
performs: "performs";
|
|
330
291
|
part_of: "part_of";
|
|
331
292
|
precedes: "precedes";
|
|
332
293
|
must_follow: "must_follow";
|
|
333
|
-
blocks: "blocks";
|
|
334
|
-
routes_to: "routes_to";
|
|
335
|
-
orchestrates: "orchestrates";
|
|
336
294
|
governed_by: "governed_by";
|
|
337
295
|
modifies: "modifies";
|
|
338
|
-
triggered_by: "triggered_by";
|
|
339
|
-
applies_to: "applies_to";
|
|
340
296
|
produces: "produces";
|
|
341
|
-
consumes: "consumes";
|
|
342
|
-
transforms_into: "transforms_into";
|
|
343
|
-
selects: "selects";
|
|
344
|
-
requires: "requires";
|
|
345
|
-
disables: "disables";
|
|
346
|
-
influence: "influence";
|
|
347
|
-
justifies: "justifies";
|
|
348
297
|
}> & {
|
|
349
|
-
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";
|
|
350
299
|
};
|
|
351
300
|
to: z.ZodString;
|
|
352
301
|
repair: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -386,39 +335,18 @@ export declare const removeRelationshipOp: import("./define-operation.js").Defin
|
|
|
386
335
|
gate: "gate";
|
|
387
336
|
mode: "mode";
|
|
388
337
|
artefact: "artefact";
|
|
389
|
-
artefact_flow: "artefact_flow";
|
|
390
338
|
decision: "decision";
|
|
391
339
|
change: "change";
|
|
392
340
|
view: "view";
|
|
393
341
|
milestone: "milestone";
|
|
394
|
-
version: "version";
|
|
395
342
|
}> & {
|
|
396
|
-
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";
|
|
397
344
|
};
|
|
398
345
|
name: z.ZodString;
|
|
399
346
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
400
347
|
is(value: unknown): value is string | string[];
|
|
401
348
|
}>;
|
|
402
|
-
status: z.ZodOptional<z.
|
|
403
|
-
deprecated: "deprecated";
|
|
404
|
-
proposed: "proposed";
|
|
405
|
-
accepted: "accepted";
|
|
406
|
-
active: "active";
|
|
407
|
-
implemented: "implemented";
|
|
408
|
-
adopted: "adopted";
|
|
409
|
-
defined: "defined";
|
|
410
|
-
introduced: "introduced";
|
|
411
|
-
in_progress: "in_progress";
|
|
412
|
-
complete: "complete";
|
|
413
|
-
consolidated: "consolidated";
|
|
414
|
-
experimental: "experimental";
|
|
415
|
-
retired: "retired";
|
|
416
|
-
superseded: "superseded";
|
|
417
|
-
abandoned: "abandoned";
|
|
418
|
-
deferred: "deferred";
|
|
419
|
-
}> & {
|
|
420
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
421
|
-
}>;
|
|
349
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
422
350
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
423
351
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
424
352
|
is(value: unknown): value is string | string[];
|
|
@@ -473,8 +401,6 @@ export declare const removeRelationshipOp: import("./define-operation.js").Defin
|
|
|
473
401
|
}>>;
|
|
474
402
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
475
403
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
476
|
-
input: z.ZodOptional<z.ZodString>;
|
|
477
|
-
output: z.ZodOptional<z.ZodString>;
|
|
478
404
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
479
405
|
role: z.ZodEnum<{
|
|
480
406
|
output: "output";
|
|
@@ -518,27 +444,14 @@ export declare const removeRelationshipOp: import("./define-operation.js").Defin
|
|
|
518
444
|
affects: "affects";
|
|
519
445
|
supersedes: "supersedes";
|
|
520
446
|
must_preserve: "must_preserve";
|
|
521
|
-
performs: "performs";
|
|
522
447
|
part_of: "part_of";
|
|
523
448
|
precedes: "precedes";
|
|
524
449
|
must_follow: "must_follow";
|
|
525
|
-
blocks: "blocks";
|
|
526
|
-
routes_to: "routes_to";
|
|
527
|
-
orchestrates: "orchestrates";
|
|
528
450
|
governed_by: "governed_by";
|
|
529
451
|
modifies: "modifies";
|
|
530
|
-
triggered_by: "triggered_by";
|
|
531
|
-
applies_to: "applies_to";
|
|
532
452
|
produces: "produces";
|
|
533
|
-
consumes: "consumes";
|
|
534
|
-
transforms_into: "transforms_into";
|
|
535
|
-
selects: "selects";
|
|
536
|
-
requires: "requires";
|
|
537
|
-
disables: "disables";
|
|
538
|
-
influence: "influence";
|
|
539
|
-
justifies: "justifies";
|
|
540
453
|
}> & {
|
|
541
|
-
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";
|
|
542
455
|
};
|
|
543
456
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
544
457
|
is(value: unknown): value is string | string[];
|
|
@@ -557,7 +470,7 @@ export declare const removeRelationshipOp: import("./define-operation.js").Defin
|
|
|
557
470
|
[x: string]: unknown;
|
|
558
471
|
from: string;
|
|
559
472
|
to: string;
|
|
560
|
-
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";
|
|
561
474
|
description?: string | string[] | undefined;
|
|
562
475
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
563
476
|
strength?: number | undefined;
|
|
@@ -597,10 +510,10 @@ export declare const removeRelationshipOp: import("./define-operation.js").Defin
|
|
|
597
510
|
nodes: {
|
|
598
511
|
[x: string]: unknown;
|
|
599
512
|
id: string;
|
|
600
|
-
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";
|
|
601
514
|
name: string;
|
|
602
515
|
description?: string | string[] | undefined;
|
|
603
|
-
status?:
|
|
516
|
+
status?: undefined;
|
|
604
517
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
605
518
|
context?: string | string[] | undefined;
|
|
606
519
|
options?: {
|
|
@@ -624,8 +537,6 @@ export declare const removeRelationshipOp: import("./define-operation.js").Defin
|
|
|
624
537
|
}[] | undefined;
|
|
625
538
|
propagation?: Record<string, boolean> | undefined;
|
|
626
539
|
includes?: string[] | undefined;
|
|
627
|
-
input?: string | undefined;
|
|
628
|
-
output?: string | undefined;
|
|
629
540
|
external_references?: {
|
|
630
541
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
631
542
|
identifier: string;
|
|
@@ -648,7 +559,7 @@ export declare const removeRelationshipOp: import("./define-operation.js").Defin
|
|
|
648
559
|
[x: string]: unknown;
|
|
649
560
|
from: string;
|
|
650
561
|
to: string;
|
|
651
|
-
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";
|
|
652
563
|
description?: string | string[] | undefined;
|
|
653
564
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
654
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,27 +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
|
-
orchestrates: "orchestrates";
|
|
183
156
|
governed_by: "governed_by";
|
|
184
157
|
modifies: "modifies";
|
|
185
|
-
triggered_by: "triggered_by";
|
|
186
|
-
applies_to: "applies_to";
|
|
187
158
|
produces: "produces";
|
|
188
|
-
consumes: "consumes";
|
|
189
|
-
transforms_into: "transforms_into";
|
|
190
|
-
selects: "selects";
|
|
191
|
-
requires: "requires";
|
|
192
|
-
disables: "disables";
|
|
193
|
-
influence: "influence";
|
|
194
|
-
justifies: "justifies";
|
|
195
159
|
}> & {
|
|
196
|
-
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";
|
|
197
161
|
};
|
|
198
162
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
199
163
|
is(value: unknown): value is string | string[];
|
|
@@ -212,7 +176,7 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
|
|
|
212
176
|
[x: string]: unknown;
|
|
213
177
|
from: string;
|
|
214
178
|
to: string;
|
|
215
|
-
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";
|
|
216
180
|
description?: string | string[] | undefined;
|
|
217
181
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
218
182
|
strength?: number | undefined;
|
|
@@ -252,10 +216,10 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
|
|
|
252
216
|
nodes: {
|
|
253
217
|
[x: string]: unknown;
|
|
254
218
|
id: string;
|
|
255
|
-
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";
|
|
256
220
|
name: string;
|
|
257
221
|
description?: string | string[] | undefined;
|
|
258
|
-
status?:
|
|
222
|
+
status?: undefined;
|
|
259
223
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
260
224
|
context?: string | string[] | undefined;
|
|
261
225
|
options?: {
|
|
@@ -279,8 +243,6 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
|
|
|
279
243
|
}[] | undefined;
|
|
280
244
|
propagation?: Record<string, boolean> | undefined;
|
|
281
245
|
includes?: string[] | undefined;
|
|
282
|
-
input?: string | undefined;
|
|
283
|
-
output?: string | undefined;
|
|
284
246
|
external_references?: {
|
|
285
247
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
286
248
|
identifier: string;
|
|
@@ -303,7 +265,7 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
|
|
|
303
265
|
[x: string]: unknown;
|
|
304
266
|
from: string;
|
|
305
267
|
to: string;
|
|
306
|
-
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";
|
|
307
269
|
description?: string | string[] | undefined;
|
|
308
270
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
309
271
|
strength?: number | undefined;
|
|
@@ -354,39 +316,18 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
|
|
|
354
316
|
gate: "gate";
|
|
355
317
|
mode: "mode";
|
|
356
318
|
artefact: "artefact";
|
|
357
|
-
artefact_flow: "artefact_flow";
|
|
358
319
|
decision: "decision";
|
|
359
320
|
change: "change";
|
|
360
321
|
view: "view";
|
|
361
322
|
milestone: "milestone";
|
|
362
|
-
version: "version";
|
|
363
323
|
}> & {
|
|
364
|
-
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";
|
|
365
325
|
};
|
|
366
326
|
name: z.ZodString;
|
|
367
327
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
368
328
|
is(value: unknown): value is string | string[];
|
|
369
329
|
}>;
|
|
370
|
-
status: z.ZodOptional<z.
|
|
371
|
-
deprecated: "deprecated";
|
|
372
|
-
proposed: "proposed";
|
|
373
|
-
accepted: "accepted";
|
|
374
|
-
active: "active";
|
|
375
|
-
implemented: "implemented";
|
|
376
|
-
adopted: "adopted";
|
|
377
|
-
defined: "defined";
|
|
378
|
-
introduced: "introduced";
|
|
379
|
-
in_progress: "in_progress";
|
|
380
|
-
complete: "complete";
|
|
381
|
-
consolidated: "consolidated";
|
|
382
|
-
experimental: "experimental";
|
|
383
|
-
retired: "retired";
|
|
384
|
-
superseded: "superseded";
|
|
385
|
-
abandoned: "abandoned";
|
|
386
|
-
deferred: "deferred";
|
|
387
|
-
}> & {
|
|
388
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
389
|
-
}>;
|
|
330
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
390
331
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
391
332
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
392
333
|
is(value: unknown): value is string | string[];
|
|
@@ -441,8 +382,6 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
|
|
|
441
382
|
}>>;
|
|
442
383
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
443
384
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
444
|
-
input: z.ZodOptional<z.ZodString>;
|
|
445
|
-
output: z.ZodOptional<z.ZodString>;
|
|
446
385
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
447
386
|
role: z.ZodEnum<{
|
|
448
387
|
output: "output";
|
|
@@ -486,27 +425,14 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
|
|
|
486
425
|
affects: "affects";
|
|
487
426
|
supersedes: "supersedes";
|
|
488
427
|
must_preserve: "must_preserve";
|
|
489
|
-
performs: "performs";
|
|
490
428
|
part_of: "part_of";
|
|
491
429
|
precedes: "precedes";
|
|
492
430
|
must_follow: "must_follow";
|
|
493
|
-
blocks: "blocks";
|
|
494
|
-
routes_to: "routes_to";
|
|
495
|
-
orchestrates: "orchestrates";
|
|
496
431
|
governed_by: "governed_by";
|
|
497
432
|
modifies: "modifies";
|
|
498
|
-
triggered_by: "triggered_by";
|
|
499
|
-
applies_to: "applies_to";
|
|
500
433
|
produces: "produces";
|
|
501
|
-
consumes: "consumes";
|
|
502
|
-
transforms_into: "transforms_into";
|
|
503
|
-
selects: "selects";
|
|
504
|
-
requires: "requires";
|
|
505
|
-
disables: "disables";
|
|
506
|
-
influence: "influence";
|
|
507
|
-
justifies: "justifies";
|
|
508
434
|
}> & {
|
|
509
|
-
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";
|
|
510
436
|
};
|
|
511
437
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
512
438
|
is(value: unknown): value is string | string[];
|
|
@@ -525,7 +451,7 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
|
|
|
525
451
|
[x: string]: unknown;
|
|
526
452
|
from: string;
|
|
527
453
|
to: string;
|
|
528
|
-
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";
|
|
529
455
|
description?: string | string[] | undefined;
|
|
530
456
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
531
457
|
strength?: number | undefined;
|
|
@@ -565,10 +491,10 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
|
|
|
565
491
|
nodes: {
|
|
566
492
|
[x: string]: unknown;
|
|
567
493
|
id: string;
|
|
568
|
-
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";
|
|
569
495
|
name: string;
|
|
570
496
|
description?: string | string[] | undefined;
|
|
571
|
-
status?:
|
|
497
|
+
status?: undefined;
|
|
572
498
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
573
499
|
context?: string | string[] | undefined;
|
|
574
500
|
options?: {
|
|
@@ -592,8 +518,6 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
|
|
|
592
518
|
}[] | undefined;
|
|
593
519
|
propagation?: Record<string, boolean> | undefined;
|
|
594
520
|
includes?: string[] | undefined;
|
|
595
|
-
input?: string | undefined;
|
|
596
|
-
output?: string | undefined;
|
|
597
521
|
external_references?: {
|
|
598
522
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
599
523
|
identifier: string;
|
|
@@ -616,7 +540,7 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
|
|
|
616
540
|
[x: string]: unknown;
|
|
617
541
|
from: string;
|
|
618
542
|
to: string;
|
|
619
|
-
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";
|
|
620
544
|
description?: string | string[] | undefined;
|
|
621
545
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
622
546
|
strength?: number | undefined;
|