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
|
@@ -46,39 +46,18 @@ export declare const timelineOp: import("./define-operation.js").DefinedOperatio
|
|
|
46
46
|
gate: "gate";
|
|
47
47
|
mode: "mode";
|
|
48
48
|
artefact: "artefact";
|
|
49
|
-
artefact_flow: "artefact_flow";
|
|
50
49
|
decision: "decision";
|
|
51
50
|
change: "change";
|
|
52
51
|
view: "view";
|
|
53
52
|
milestone: "milestone";
|
|
54
|
-
version: "version";
|
|
55
53
|
}> & {
|
|
56
|
-
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
54
|
+
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
57
55
|
};
|
|
58
56
|
name: z.ZodString;
|
|
59
57
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
60
58
|
is(value: unknown): value is string | string[];
|
|
61
59
|
}>;
|
|
62
|
-
status: z.ZodOptional<z.
|
|
63
|
-
deprecated: "deprecated";
|
|
64
|
-
proposed: "proposed";
|
|
65
|
-
accepted: "accepted";
|
|
66
|
-
active: "active";
|
|
67
|
-
implemented: "implemented";
|
|
68
|
-
adopted: "adopted";
|
|
69
|
-
defined: "defined";
|
|
70
|
-
introduced: "introduced";
|
|
71
|
-
in_progress: "in_progress";
|
|
72
|
-
complete: "complete";
|
|
73
|
-
consolidated: "consolidated";
|
|
74
|
-
experimental: "experimental";
|
|
75
|
-
retired: "retired";
|
|
76
|
-
superseded: "superseded";
|
|
77
|
-
abandoned: "abandoned";
|
|
78
|
-
deferred: "deferred";
|
|
79
|
-
}> & {
|
|
80
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
81
|
-
}>;
|
|
60
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
82
61
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
83
62
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
84
63
|
is(value: unknown): value is string | string[];
|
|
@@ -133,8 +112,6 @@ export declare const timelineOp: import("./define-operation.js").DefinedOperatio
|
|
|
133
112
|
}>>;
|
|
134
113
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
135
114
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
136
|
-
input: z.ZodOptional<z.ZodString>;
|
|
137
|
-
output: z.ZodOptional<z.ZodString>;
|
|
138
115
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
139
116
|
role: z.ZodEnum<{
|
|
140
117
|
output: "output";
|
|
@@ -178,26 +155,14 @@ export declare const timelineOp: import("./define-operation.js").DefinedOperatio
|
|
|
178
155
|
affects: "affects";
|
|
179
156
|
supersedes: "supersedes";
|
|
180
157
|
must_preserve: "must_preserve";
|
|
181
|
-
performs: "performs";
|
|
182
158
|
part_of: "part_of";
|
|
183
159
|
precedes: "precedes";
|
|
184
160
|
must_follow: "must_follow";
|
|
185
|
-
blocks: "blocks";
|
|
186
|
-
routes_to: "routes_to";
|
|
187
161
|
governed_by: "governed_by";
|
|
188
162
|
modifies: "modifies";
|
|
189
|
-
triggered_by: "triggered_by";
|
|
190
|
-
applies_to: "applies_to";
|
|
191
163
|
produces: "produces";
|
|
192
|
-
consumes: "consumes";
|
|
193
|
-
transforms_into: "transforms_into";
|
|
194
|
-
selects: "selects";
|
|
195
|
-
requires: "requires";
|
|
196
|
-
disables: "disables";
|
|
197
|
-
influence: "influence";
|
|
198
|
-
justifies: "justifies";
|
|
199
164
|
}> & {
|
|
200
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
165
|
+
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";
|
|
201
166
|
};
|
|
202
167
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
203
168
|
is(value: unknown): value is string | string[];
|
|
@@ -216,7 +181,7 @@ export declare const timelineOp: import("./define-operation.js").DefinedOperatio
|
|
|
216
181
|
[x: string]: unknown;
|
|
217
182
|
from: string;
|
|
218
183
|
to: string;
|
|
219
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
184
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
220
185
|
description?: string | string[] | undefined;
|
|
221
186
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
222
187
|
strength?: number | undefined;
|
|
@@ -256,10 +221,10 @@ export declare const timelineOp: import("./define-operation.js").DefinedOperatio
|
|
|
256
221
|
nodes: {
|
|
257
222
|
[x: string]: unknown;
|
|
258
223
|
id: string;
|
|
259
|
-
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
224
|
+
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
260
225
|
name: string;
|
|
261
226
|
description?: string | string[] | undefined;
|
|
262
|
-
status?:
|
|
227
|
+
status?: undefined;
|
|
263
228
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
264
229
|
context?: string | string[] | undefined;
|
|
265
230
|
options?: {
|
|
@@ -283,8 +248,6 @@ export declare const timelineOp: import("./define-operation.js").DefinedOperatio
|
|
|
283
248
|
}[] | undefined;
|
|
284
249
|
propagation?: Record<string, boolean> | undefined;
|
|
285
250
|
includes?: string[] | undefined;
|
|
286
|
-
input?: string | undefined;
|
|
287
|
-
output?: string | undefined;
|
|
288
251
|
external_references?: {
|
|
289
252
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
290
253
|
identifier: string;
|
|
@@ -307,7 +270,7 @@ export declare const timelineOp: import("./define-operation.js").DefinedOperatio
|
|
|
307
270
|
[x: string]: unknown;
|
|
308
271
|
from: string;
|
|
309
272
|
to: string;
|
|
310
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
273
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
311
274
|
description?: string | string[] | undefined;
|
|
312
275
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
313
276
|
strength?: number | undefined;
|
|
@@ -18,39 +18,18 @@ declare const TraceNodeSchema: z.ZodObject<{
|
|
|
18
18
|
gate: "gate";
|
|
19
19
|
mode: "mode";
|
|
20
20
|
artefact: "artefact";
|
|
21
|
-
artefact_flow: "artefact_flow";
|
|
22
21
|
decision: "decision";
|
|
23
22
|
change: "change";
|
|
24
23
|
view: "view";
|
|
25
24
|
milestone: "milestone";
|
|
26
|
-
version: "version";
|
|
27
25
|
}> & {
|
|
28
|
-
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
26
|
+
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
29
27
|
};
|
|
30
28
|
name: z.ZodString;
|
|
31
29
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
32
30
|
is(value: unknown): value is string | string[];
|
|
33
31
|
}>;
|
|
34
|
-
status: z.ZodOptional<z.
|
|
35
|
-
deprecated: "deprecated";
|
|
36
|
-
proposed: "proposed";
|
|
37
|
-
accepted: "accepted";
|
|
38
|
-
active: "active";
|
|
39
|
-
implemented: "implemented";
|
|
40
|
-
adopted: "adopted";
|
|
41
|
-
defined: "defined";
|
|
42
|
-
introduced: "introduced";
|
|
43
|
-
in_progress: "in_progress";
|
|
44
|
-
complete: "complete";
|
|
45
|
-
consolidated: "consolidated";
|
|
46
|
-
experimental: "experimental";
|
|
47
|
-
retired: "retired";
|
|
48
|
-
superseded: "superseded";
|
|
49
|
-
abandoned: "abandoned";
|
|
50
|
-
deferred: "deferred";
|
|
51
|
-
}> & {
|
|
52
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
53
|
-
}>;
|
|
32
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
54
33
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
55
34
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
56
35
|
is(value: unknown): value is string | string[];
|
|
@@ -105,8 +84,6 @@ declare const TraceNodeSchema: z.ZodObject<{
|
|
|
105
84
|
}>>;
|
|
106
85
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
107
86
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
108
|
-
input: z.ZodOptional<z.ZodString>;
|
|
109
|
-
output: z.ZodOptional<z.ZodString>;
|
|
110
87
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
111
88
|
role: z.ZodEnum<{
|
|
112
89
|
output: "output";
|
|
@@ -167,26 +144,14 @@ declare const TraceNodeSchema: z.ZodObject<{
|
|
|
167
144
|
affects: "affects";
|
|
168
145
|
supersedes: "supersedes";
|
|
169
146
|
must_preserve: "must_preserve";
|
|
170
|
-
performs: "performs";
|
|
171
147
|
part_of: "part_of";
|
|
172
148
|
precedes: "precedes";
|
|
173
149
|
must_follow: "must_follow";
|
|
174
|
-
blocks: "blocks";
|
|
175
|
-
routes_to: "routes_to";
|
|
176
150
|
governed_by: "governed_by";
|
|
177
151
|
modifies: "modifies";
|
|
178
|
-
triggered_by: "triggered_by";
|
|
179
|
-
applies_to: "applies_to";
|
|
180
152
|
produces: "produces";
|
|
181
|
-
consumes: "consumes";
|
|
182
|
-
transforms_into: "transforms_into";
|
|
183
|
-
selects: "selects";
|
|
184
|
-
requires: "requires";
|
|
185
|
-
disables: "disables";
|
|
186
|
-
influence: "influence";
|
|
187
|
-
justifies: "justifies";
|
|
188
153
|
}> & {
|
|
189
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
154
|
+
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";
|
|
190
155
|
};
|
|
191
156
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
192
157
|
is(value: unknown): value is string | string[];
|
|
@@ -205,7 +170,7 @@ declare const TraceNodeSchema: z.ZodObject<{
|
|
|
205
170
|
[x: string]: unknown;
|
|
206
171
|
from: string;
|
|
207
172
|
to: string;
|
|
208
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
173
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
209
174
|
description?: string | string[] | undefined;
|
|
210
175
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
211
176
|
strength?: number | undefined;
|
|
@@ -245,10 +210,10 @@ declare const TraceNodeSchema: z.ZodObject<{
|
|
|
245
210
|
is(value: unknown): value is {
|
|
246
211
|
[x: string]: unknown;
|
|
247
212
|
id: string;
|
|
248
|
-
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
213
|
+
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
249
214
|
name: string;
|
|
250
215
|
description?: string | string[] | undefined;
|
|
251
|
-
status?:
|
|
216
|
+
status?: undefined;
|
|
252
217
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
253
218
|
context?: string | string[] | undefined;
|
|
254
219
|
options?: {
|
|
@@ -272,8 +237,6 @@ declare const TraceNodeSchema: z.ZodObject<{
|
|
|
272
237
|
}[] | undefined;
|
|
273
238
|
propagation?: Record<string, boolean> | undefined;
|
|
274
239
|
includes?: string[] | undefined;
|
|
275
|
-
input?: string | undefined;
|
|
276
|
-
output?: string | undefined;
|
|
277
240
|
external_references?: {
|
|
278
241
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
279
242
|
identifier: string;
|
|
@@ -296,7 +259,7 @@ declare const TraceNodeSchema: z.ZodObject<{
|
|
|
296
259
|
[x: string]: unknown;
|
|
297
260
|
from: string;
|
|
298
261
|
to: string;
|
|
299
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
262
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
300
263
|
description?: string | string[] | undefined;
|
|
301
264
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
302
265
|
strength?: number | undefined;
|
|
@@ -352,39 +315,18 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
352
315
|
gate: "gate";
|
|
353
316
|
mode: "mode";
|
|
354
317
|
artefact: "artefact";
|
|
355
|
-
artefact_flow: "artefact_flow";
|
|
356
318
|
decision: "decision";
|
|
357
319
|
change: "change";
|
|
358
320
|
view: "view";
|
|
359
321
|
milestone: "milestone";
|
|
360
|
-
version: "version";
|
|
361
322
|
}> & {
|
|
362
|
-
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
323
|
+
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
363
324
|
};
|
|
364
325
|
name: z.ZodString;
|
|
365
326
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
366
327
|
is(value: unknown): value is string | string[];
|
|
367
328
|
}>;
|
|
368
|
-
status: z.ZodOptional<z.
|
|
369
|
-
deprecated: "deprecated";
|
|
370
|
-
proposed: "proposed";
|
|
371
|
-
accepted: "accepted";
|
|
372
|
-
active: "active";
|
|
373
|
-
implemented: "implemented";
|
|
374
|
-
adopted: "adopted";
|
|
375
|
-
defined: "defined";
|
|
376
|
-
introduced: "introduced";
|
|
377
|
-
in_progress: "in_progress";
|
|
378
|
-
complete: "complete";
|
|
379
|
-
consolidated: "consolidated";
|
|
380
|
-
experimental: "experimental";
|
|
381
|
-
retired: "retired";
|
|
382
|
-
superseded: "superseded";
|
|
383
|
-
abandoned: "abandoned";
|
|
384
|
-
deferred: "deferred";
|
|
385
|
-
}> & {
|
|
386
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
387
|
-
}>;
|
|
329
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
388
330
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
389
331
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
390
332
|
is(value: unknown): value is string | string[];
|
|
@@ -439,8 +381,6 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
439
381
|
}>>;
|
|
440
382
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
441
383
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
442
|
-
input: z.ZodOptional<z.ZodString>;
|
|
443
|
-
output: z.ZodOptional<z.ZodString>;
|
|
444
384
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
445
385
|
role: z.ZodEnum<{
|
|
446
386
|
output: "output";
|
|
@@ -484,26 +424,14 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
484
424
|
affects: "affects";
|
|
485
425
|
supersedes: "supersedes";
|
|
486
426
|
must_preserve: "must_preserve";
|
|
487
|
-
performs: "performs";
|
|
488
427
|
part_of: "part_of";
|
|
489
428
|
precedes: "precedes";
|
|
490
429
|
must_follow: "must_follow";
|
|
491
|
-
blocks: "blocks";
|
|
492
|
-
routes_to: "routes_to";
|
|
493
430
|
governed_by: "governed_by";
|
|
494
431
|
modifies: "modifies";
|
|
495
|
-
triggered_by: "triggered_by";
|
|
496
|
-
applies_to: "applies_to";
|
|
497
432
|
produces: "produces";
|
|
498
|
-
consumes: "consumes";
|
|
499
|
-
transforms_into: "transforms_into";
|
|
500
|
-
selects: "selects";
|
|
501
|
-
requires: "requires";
|
|
502
|
-
disables: "disables";
|
|
503
|
-
influence: "influence";
|
|
504
|
-
justifies: "justifies";
|
|
505
433
|
}> & {
|
|
506
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
434
|
+
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";
|
|
507
435
|
};
|
|
508
436
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
509
437
|
is(value: unknown): value is string | string[];
|
|
@@ -522,7 +450,7 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
522
450
|
[x: string]: unknown;
|
|
523
451
|
from: string;
|
|
524
452
|
to: string;
|
|
525
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
453
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
526
454
|
description?: string | string[] | undefined;
|
|
527
455
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
528
456
|
strength?: number | undefined;
|
|
@@ -562,10 +490,10 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
562
490
|
nodes: {
|
|
563
491
|
[x: string]: unknown;
|
|
564
492
|
id: string;
|
|
565
|
-
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
493
|
+
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
566
494
|
name: string;
|
|
567
495
|
description?: string | string[] | undefined;
|
|
568
|
-
status?:
|
|
496
|
+
status?: undefined;
|
|
569
497
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
570
498
|
context?: string | string[] | undefined;
|
|
571
499
|
options?: {
|
|
@@ -589,8 +517,6 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
589
517
|
}[] | undefined;
|
|
590
518
|
propagation?: Record<string, boolean> | undefined;
|
|
591
519
|
includes?: string[] | undefined;
|
|
592
|
-
input?: string | undefined;
|
|
593
|
-
output?: string | undefined;
|
|
594
520
|
external_references?: {
|
|
595
521
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
596
522
|
identifier: string;
|
|
@@ -613,7 +539,7 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
613
539
|
[x: string]: unknown;
|
|
614
540
|
from: string;
|
|
615
541
|
to: string;
|
|
616
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
542
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
617
543
|
description?: string | string[] | undefined;
|
|
618
544
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
619
545
|
strength?: number | undefined;
|
|
@@ -647,39 +573,18 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
647
573
|
gate: "gate";
|
|
648
574
|
mode: "mode";
|
|
649
575
|
artefact: "artefact";
|
|
650
|
-
artefact_flow: "artefact_flow";
|
|
651
576
|
decision: "decision";
|
|
652
577
|
change: "change";
|
|
653
578
|
view: "view";
|
|
654
579
|
milestone: "milestone";
|
|
655
|
-
version: "version";
|
|
656
580
|
}> & {
|
|
657
|
-
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
581
|
+
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
658
582
|
};
|
|
659
583
|
name: z.ZodString;
|
|
660
584
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
661
585
|
is(value: unknown): value is string | string[];
|
|
662
586
|
}>;
|
|
663
|
-
status: z.ZodOptional<z.
|
|
664
|
-
deprecated: "deprecated";
|
|
665
|
-
proposed: "proposed";
|
|
666
|
-
accepted: "accepted";
|
|
667
|
-
active: "active";
|
|
668
|
-
implemented: "implemented";
|
|
669
|
-
adopted: "adopted";
|
|
670
|
-
defined: "defined";
|
|
671
|
-
introduced: "introduced";
|
|
672
|
-
in_progress: "in_progress";
|
|
673
|
-
complete: "complete";
|
|
674
|
-
consolidated: "consolidated";
|
|
675
|
-
experimental: "experimental";
|
|
676
|
-
retired: "retired";
|
|
677
|
-
superseded: "superseded";
|
|
678
|
-
abandoned: "abandoned";
|
|
679
|
-
deferred: "deferred";
|
|
680
|
-
}> & {
|
|
681
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
682
|
-
}>;
|
|
587
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
683
588
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
684
589
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
685
590
|
is(value: unknown): value is string | string[];
|
|
@@ -734,8 +639,6 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
734
639
|
}>>;
|
|
735
640
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
736
641
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
737
|
-
input: z.ZodOptional<z.ZodString>;
|
|
738
|
-
output: z.ZodOptional<z.ZodString>;
|
|
739
642
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
740
643
|
role: z.ZodEnum<{
|
|
741
644
|
output: "output";
|
|
@@ -796,26 +699,14 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
796
699
|
affects: "affects";
|
|
797
700
|
supersedes: "supersedes";
|
|
798
701
|
must_preserve: "must_preserve";
|
|
799
|
-
performs: "performs";
|
|
800
702
|
part_of: "part_of";
|
|
801
703
|
precedes: "precedes";
|
|
802
704
|
must_follow: "must_follow";
|
|
803
|
-
blocks: "blocks";
|
|
804
|
-
routes_to: "routes_to";
|
|
805
705
|
governed_by: "governed_by";
|
|
806
706
|
modifies: "modifies";
|
|
807
|
-
triggered_by: "triggered_by";
|
|
808
|
-
applies_to: "applies_to";
|
|
809
707
|
produces: "produces";
|
|
810
|
-
consumes: "consumes";
|
|
811
|
-
transforms_into: "transforms_into";
|
|
812
|
-
selects: "selects";
|
|
813
|
-
requires: "requires";
|
|
814
|
-
disables: "disables";
|
|
815
|
-
influence: "influence";
|
|
816
|
-
justifies: "justifies";
|
|
817
708
|
}> & {
|
|
818
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
709
|
+
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";
|
|
819
710
|
};
|
|
820
711
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
821
712
|
is(value: unknown): value is string | string[];
|
|
@@ -834,7 +725,7 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
834
725
|
[x: string]: unknown;
|
|
835
726
|
from: string;
|
|
836
727
|
to: string;
|
|
837
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
728
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
838
729
|
description?: string | string[] | undefined;
|
|
839
730
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
840
731
|
strength?: number | undefined;
|
|
@@ -874,10 +765,10 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
874
765
|
is(value: unknown): value is {
|
|
875
766
|
[x: string]: unknown;
|
|
876
767
|
id: string;
|
|
877
|
-
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
768
|
+
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
878
769
|
name: string;
|
|
879
770
|
description?: string | string[] | undefined;
|
|
880
|
-
status?:
|
|
771
|
+
status?: undefined;
|
|
881
772
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
882
773
|
context?: string | string[] | undefined;
|
|
883
774
|
options?: {
|
|
@@ -901,8 +792,6 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
901
792
|
}[] | undefined;
|
|
902
793
|
propagation?: Record<string, boolean> | undefined;
|
|
903
794
|
includes?: string[] | undefined;
|
|
904
|
-
input?: string | undefined;
|
|
905
|
-
output?: string | undefined;
|
|
906
795
|
external_references?: {
|
|
907
796
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
908
797
|
identifier: string;
|
|
@@ -925,7 +814,7 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
925
814
|
[x: string]: unknown;
|
|
926
815
|
from: string;
|
|
927
816
|
to: string;
|
|
928
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
817
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
929
818
|
description?: string | string[] | undefined;
|
|
930
819
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
931
820
|
strength?: number | undefined;
|