sysprom 1.20.0 → 1.21.1
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 +13 -2
- package/schema.json +4 -44
|
@@ -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,27 +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
|
-
orchestrates: "orchestrates";
|
|
188
161
|
governed_by: "governed_by";
|
|
189
162
|
modifies: "modifies";
|
|
190
|
-
triggered_by: "triggered_by";
|
|
191
|
-
applies_to: "applies_to";
|
|
192
163
|
produces: "produces";
|
|
193
|
-
consumes: "consumes";
|
|
194
|
-
transforms_into: "transforms_into";
|
|
195
|
-
selects: "selects";
|
|
196
|
-
requires: "requires";
|
|
197
|
-
disables: "disables";
|
|
198
|
-
influence: "influence";
|
|
199
|
-
justifies: "justifies";
|
|
200
164
|
}> & {
|
|
201
|
-
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";
|
|
202
166
|
};
|
|
203
167
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
204
168
|
is(value: unknown): value is string | string[];
|
|
@@ -217,7 +181,7 @@ export declare const timelineOp: import("./define-operation.js").DefinedOperatio
|
|
|
217
181
|
[x: string]: unknown;
|
|
218
182
|
from: string;
|
|
219
183
|
to: string;
|
|
220
|
-
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";
|
|
221
185
|
description?: string | string[] | undefined;
|
|
222
186
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
223
187
|
strength?: number | undefined;
|
|
@@ -257,10 +221,10 @@ export declare const timelineOp: import("./define-operation.js").DefinedOperatio
|
|
|
257
221
|
nodes: {
|
|
258
222
|
[x: string]: unknown;
|
|
259
223
|
id: string;
|
|
260
|
-
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";
|
|
261
225
|
name: string;
|
|
262
226
|
description?: string | string[] | undefined;
|
|
263
|
-
status?:
|
|
227
|
+
status?: undefined;
|
|
264
228
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
265
229
|
context?: string | string[] | undefined;
|
|
266
230
|
options?: {
|
|
@@ -284,8 +248,6 @@ export declare const timelineOp: import("./define-operation.js").DefinedOperatio
|
|
|
284
248
|
}[] | undefined;
|
|
285
249
|
propagation?: Record<string, boolean> | undefined;
|
|
286
250
|
includes?: string[] | undefined;
|
|
287
|
-
input?: string | undefined;
|
|
288
|
-
output?: string | undefined;
|
|
289
251
|
external_references?: {
|
|
290
252
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
291
253
|
identifier: string;
|
|
@@ -308,7 +270,7 @@ export declare const timelineOp: import("./define-operation.js").DefinedOperatio
|
|
|
308
270
|
[x: string]: unknown;
|
|
309
271
|
from: string;
|
|
310
272
|
to: string;
|
|
311
|
-
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";
|
|
312
274
|
description?: string | string[] | undefined;
|
|
313
275
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
314
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,27 +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
|
-
orchestrates: "orchestrates";
|
|
177
150
|
governed_by: "governed_by";
|
|
178
151
|
modifies: "modifies";
|
|
179
|
-
triggered_by: "triggered_by";
|
|
180
|
-
applies_to: "applies_to";
|
|
181
152
|
produces: "produces";
|
|
182
|
-
consumes: "consumes";
|
|
183
|
-
transforms_into: "transforms_into";
|
|
184
|
-
selects: "selects";
|
|
185
|
-
requires: "requires";
|
|
186
|
-
disables: "disables";
|
|
187
|
-
influence: "influence";
|
|
188
|
-
justifies: "justifies";
|
|
189
153
|
}> & {
|
|
190
|
-
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";
|
|
191
155
|
};
|
|
192
156
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
193
157
|
is(value: unknown): value is string | string[];
|
|
@@ -206,7 +170,7 @@ declare const TraceNodeSchema: z.ZodObject<{
|
|
|
206
170
|
[x: string]: unknown;
|
|
207
171
|
from: string;
|
|
208
172
|
to: string;
|
|
209
|
-
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";
|
|
210
174
|
description?: string | string[] | undefined;
|
|
211
175
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
212
176
|
strength?: number | undefined;
|
|
@@ -246,10 +210,10 @@ declare const TraceNodeSchema: z.ZodObject<{
|
|
|
246
210
|
is(value: unknown): value is {
|
|
247
211
|
[x: string]: unknown;
|
|
248
212
|
id: string;
|
|
249
|
-
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";
|
|
250
214
|
name: string;
|
|
251
215
|
description?: string | string[] | undefined;
|
|
252
|
-
status?:
|
|
216
|
+
status?: undefined;
|
|
253
217
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
254
218
|
context?: string | string[] | undefined;
|
|
255
219
|
options?: {
|
|
@@ -273,8 +237,6 @@ declare const TraceNodeSchema: z.ZodObject<{
|
|
|
273
237
|
}[] | undefined;
|
|
274
238
|
propagation?: Record<string, boolean> | undefined;
|
|
275
239
|
includes?: string[] | undefined;
|
|
276
|
-
input?: string | undefined;
|
|
277
|
-
output?: string | undefined;
|
|
278
240
|
external_references?: {
|
|
279
241
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
280
242
|
identifier: string;
|
|
@@ -297,7 +259,7 @@ declare const TraceNodeSchema: z.ZodObject<{
|
|
|
297
259
|
[x: string]: unknown;
|
|
298
260
|
from: string;
|
|
299
261
|
to: string;
|
|
300
|
-
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";
|
|
301
263
|
description?: string | string[] | undefined;
|
|
302
264
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
303
265
|
strength?: number | undefined;
|
|
@@ -353,39 +315,18 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
353
315
|
gate: "gate";
|
|
354
316
|
mode: "mode";
|
|
355
317
|
artefact: "artefact";
|
|
356
|
-
artefact_flow: "artefact_flow";
|
|
357
318
|
decision: "decision";
|
|
358
319
|
change: "change";
|
|
359
320
|
view: "view";
|
|
360
321
|
milestone: "milestone";
|
|
361
|
-
version: "version";
|
|
362
322
|
}> & {
|
|
363
|
-
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";
|
|
364
324
|
};
|
|
365
325
|
name: z.ZodString;
|
|
366
326
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
367
327
|
is(value: unknown): value is string | string[];
|
|
368
328
|
}>;
|
|
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
|
-
}>;
|
|
329
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
389
330
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
390
331
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
391
332
|
is(value: unknown): value is string | string[];
|
|
@@ -440,8 +381,6 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
440
381
|
}>>;
|
|
441
382
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
442
383
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
443
|
-
input: z.ZodOptional<z.ZodString>;
|
|
444
|
-
output: z.ZodOptional<z.ZodString>;
|
|
445
384
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
446
385
|
role: z.ZodEnum<{
|
|
447
386
|
output: "output";
|
|
@@ -485,27 +424,14 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
485
424
|
affects: "affects";
|
|
486
425
|
supersedes: "supersedes";
|
|
487
426
|
must_preserve: "must_preserve";
|
|
488
|
-
performs: "performs";
|
|
489
427
|
part_of: "part_of";
|
|
490
428
|
precedes: "precedes";
|
|
491
429
|
must_follow: "must_follow";
|
|
492
|
-
blocks: "blocks";
|
|
493
|
-
routes_to: "routes_to";
|
|
494
|
-
orchestrates: "orchestrates";
|
|
495
430
|
governed_by: "governed_by";
|
|
496
431
|
modifies: "modifies";
|
|
497
|
-
triggered_by: "triggered_by";
|
|
498
|
-
applies_to: "applies_to";
|
|
499
432
|
produces: "produces";
|
|
500
|
-
consumes: "consumes";
|
|
501
|
-
transforms_into: "transforms_into";
|
|
502
|
-
selects: "selects";
|
|
503
|
-
requires: "requires";
|
|
504
|
-
disables: "disables";
|
|
505
|
-
influence: "influence";
|
|
506
|
-
justifies: "justifies";
|
|
507
433
|
}> & {
|
|
508
|
-
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";
|
|
509
435
|
};
|
|
510
436
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
511
437
|
is(value: unknown): value is string | string[];
|
|
@@ -524,7 +450,7 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
524
450
|
[x: string]: unknown;
|
|
525
451
|
from: string;
|
|
526
452
|
to: string;
|
|
527
|
-
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";
|
|
528
454
|
description?: string | string[] | undefined;
|
|
529
455
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
530
456
|
strength?: number | undefined;
|
|
@@ -564,10 +490,10 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
564
490
|
nodes: {
|
|
565
491
|
[x: string]: unknown;
|
|
566
492
|
id: string;
|
|
567
|
-
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";
|
|
568
494
|
name: string;
|
|
569
495
|
description?: string | string[] | undefined;
|
|
570
|
-
status?:
|
|
496
|
+
status?: undefined;
|
|
571
497
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
572
498
|
context?: string | string[] | undefined;
|
|
573
499
|
options?: {
|
|
@@ -591,8 +517,6 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
591
517
|
}[] | undefined;
|
|
592
518
|
propagation?: Record<string, boolean> | undefined;
|
|
593
519
|
includes?: string[] | undefined;
|
|
594
|
-
input?: string | undefined;
|
|
595
|
-
output?: string | undefined;
|
|
596
520
|
external_references?: {
|
|
597
521
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
598
522
|
identifier: string;
|
|
@@ -615,7 +539,7 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
615
539
|
[x: string]: unknown;
|
|
616
540
|
from: string;
|
|
617
541
|
to: string;
|
|
618
|
-
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";
|
|
619
543
|
description?: string | string[] | undefined;
|
|
620
544
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
621
545
|
strength?: number | undefined;
|
|
@@ -649,39 +573,18 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
649
573
|
gate: "gate";
|
|
650
574
|
mode: "mode";
|
|
651
575
|
artefact: "artefact";
|
|
652
|
-
artefact_flow: "artefact_flow";
|
|
653
576
|
decision: "decision";
|
|
654
577
|
change: "change";
|
|
655
578
|
view: "view";
|
|
656
579
|
milestone: "milestone";
|
|
657
|
-
version: "version";
|
|
658
580
|
}> & {
|
|
659
|
-
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";
|
|
660
582
|
};
|
|
661
583
|
name: z.ZodString;
|
|
662
584
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
663
585
|
is(value: unknown): value is string | string[];
|
|
664
586
|
}>;
|
|
665
|
-
status: z.ZodOptional<z.
|
|
666
|
-
deprecated: "deprecated";
|
|
667
|
-
proposed: "proposed";
|
|
668
|
-
accepted: "accepted";
|
|
669
|
-
active: "active";
|
|
670
|
-
implemented: "implemented";
|
|
671
|
-
adopted: "adopted";
|
|
672
|
-
defined: "defined";
|
|
673
|
-
introduced: "introduced";
|
|
674
|
-
in_progress: "in_progress";
|
|
675
|
-
complete: "complete";
|
|
676
|
-
consolidated: "consolidated";
|
|
677
|
-
experimental: "experimental";
|
|
678
|
-
retired: "retired";
|
|
679
|
-
superseded: "superseded";
|
|
680
|
-
abandoned: "abandoned";
|
|
681
|
-
deferred: "deferred";
|
|
682
|
-
}> & {
|
|
683
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
684
|
-
}>;
|
|
587
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
685
588
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
686
589
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
687
590
|
is(value: unknown): value is string | string[];
|
|
@@ -736,8 +639,6 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
736
639
|
}>>;
|
|
737
640
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
738
641
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
739
|
-
input: z.ZodOptional<z.ZodString>;
|
|
740
|
-
output: z.ZodOptional<z.ZodString>;
|
|
741
642
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
742
643
|
role: z.ZodEnum<{
|
|
743
644
|
output: "output";
|
|
@@ -798,27 +699,14 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
798
699
|
affects: "affects";
|
|
799
700
|
supersedes: "supersedes";
|
|
800
701
|
must_preserve: "must_preserve";
|
|
801
|
-
performs: "performs";
|
|
802
702
|
part_of: "part_of";
|
|
803
703
|
precedes: "precedes";
|
|
804
704
|
must_follow: "must_follow";
|
|
805
|
-
blocks: "blocks";
|
|
806
|
-
routes_to: "routes_to";
|
|
807
|
-
orchestrates: "orchestrates";
|
|
808
705
|
governed_by: "governed_by";
|
|
809
706
|
modifies: "modifies";
|
|
810
|
-
triggered_by: "triggered_by";
|
|
811
|
-
applies_to: "applies_to";
|
|
812
707
|
produces: "produces";
|
|
813
|
-
consumes: "consumes";
|
|
814
|
-
transforms_into: "transforms_into";
|
|
815
|
-
selects: "selects";
|
|
816
|
-
requires: "requires";
|
|
817
|
-
disables: "disables";
|
|
818
|
-
influence: "influence";
|
|
819
|
-
justifies: "justifies";
|
|
820
708
|
}> & {
|
|
821
|
-
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";
|
|
822
710
|
};
|
|
823
711
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
824
712
|
is(value: unknown): value is string | string[];
|
|
@@ -837,7 +725,7 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
837
725
|
[x: string]: unknown;
|
|
838
726
|
from: string;
|
|
839
727
|
to: string;
|
|
840
|
-
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";
|
|
841
729
|
description?: string | string[] | undefined;
|
|
842
730
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
843
731
|
strength?: number | undefined;
|
|
@@ -877,10 +765,10 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
877
765
|
is(value: unknown): value is {
|
|
878
766
|
[x: string]: unknown;
|
|
879
767
|
id: string;
|
|
880
|
-
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";
|
|
881
769
|
name: string;
|
|
882
770
|
description?: string | string[] | undefined;
|
|
883
|
-
status?:
|
|
771
|
+
status?: undefined;
|
|
884
772
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
885
773
|
context?: string | string[] | undefined;
|
|
886
774
|
options?: {
|
|
@@ -904,8 +792,6 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
904
792
|
}[] | undefined;
|
|
905
793
|
propagation?: Record<string, boolean> | undefined;
|
|
906
794
|
includes?: string[] | undefined;
|
|
907
|
-
input?: string | undefined;
|
|
908
|
-
output?: string | undefined;
|
|
909
795
|
external_references?: {
|
|
910
796
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
911
797
|
identifier: string;
|
|
@@ -928,7 +814,7 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
928
814
|
[x: string]: unknown;
|
|
929
815
|
from: string;
|
|
930
816
|
to: string;
|
|
931
|
-
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";
|
|
932
818
|
description?: string | string[] | undefined;
|
|
933
819
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
934
820
|
strength?: number | undefined;
|