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
|
@@ -36,39 +36,18 @@ export declare const searchOp: import("./define-operation.js").DefinedOperation<
|
|
|
36
36
|
gate: "gate";
|
|
37
37
|
mode: "mode";
|
|
38
38
|
artefact: "artefact";
|
|
39
|
-
artefact_flow: "artefact_flow";
|
|
40
39
|
decision: "decision";
|
|
41
40
|
change: "change";
|
|
42
41
|
view: "view";
|
|
43
42
|
milestone: "milestone";
|
|
44
|
-
version: "version";
|
|
45
43
|
}> & {
|
|
46
|
-
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
44
|
+
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
47
45
|
};
|
|
48
46
|
name: z.ZodString;
|
|
49
47
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
50
48
|
is(value: unknown): value is string | string[];
|
|
51
49
|
}>;
|
|
52
|
-
status: z.ZodOptional<z.
|
|
53
|
-
deprecated: "deprecated";
|
|
54
|
-
proposed: "proposed";
|
|
55
|
-
accepted: "accepted";
|
|
56
|
-
active: "active";
|
|
57
|
-
implemented: "implemented";
|
|
58
|
-
adopted: "adopted";
|
|
59
|
-
defined: "defined";
|
|
60
|
-
introduced: "introduced";
|
|
61
|
-
in_progress: "in_progress";
|
|
62
|
-
complete: "complete";
|
|
63
|
-
consolidated: "consolidated";
|
|
64
|
-
experimental: "experimental";
|
|
65
|
-
retired: "retired";
|
|
66
|
-
superseded: "superseded";
|
|
67
|
-
abandoned: "abandoned";
|
|
68
|
-
deferred: "deferred";
|
|
69
|
-
}> & {
|
|
70
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
71
|
-
}>;
|
|
50
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
72
51
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
73
52
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
74
53
|
is(value: unknown): value is string | string[];
|
|
@@ -123,8 +102,6 @@ export declare const searchOp: import("./define-operation.js").DefinedOperation<
|
|
|
123
102
|
}>>;
|
|
124
103
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
125
104
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
126
|
-
input: z.ZodOptional<z.ZodString>;
|
|
127
|
-
output: z.ZodOptional<z.ZodString>;
|
|
128
105
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
129
106
|
role: z.ZodEnum<{
|
|
130
107
|
output: "output";
|
|
@@ -168,26 +145,14 @@ export declare const searchOp: import("./define-operation.js").DefinedOperation<
|
|
|
168
145
|
affects: "affects";
|
|
169
146
|
supersedes: "supersedes";
|
|
170
147
|
must_preserve: "must_preserve";
|
|
171
|
-
performs: "performs";
|
|
172
148
|
part_of: "part_of";
|
|
173
149
|
precedes: "precedes";
|
|
174
150
|
must_follow: "must_follow";
|
|
175
|
-
blocks: "blocks";
|
|
176
|
-
routes_to: "routes_to";
|
|
177
151
|
governed_by: "governed_by";
|
|
178
152
|
modifies: "modifies";
|
|
179
|
-
triggered_by: "triggered_by";
|
|
180
|
-
applies_to: "applies_to";
|
|
181
153
|
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
154
|
}> & {
|
|
190
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
155
|
+
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
156
|
};
|
|
192
157
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
193
158
|
is(value: unknown): value is string | string[];
|
|
@@ -206,7 +171,7 @@ export declare const searchOp: import("./define-operation.js").DefinedOperation<
|
|
|
206
171
|
[x: string]: unknown;
|
|
207
172
|
from: string;
|
|
208
173
|
to: string;
|
|
209
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
174
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
210
175
|
description?: string | string[] | undefined;
|
|
211
176
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
212
177
|
strength?: number | undefined;
|
|
@@ -246,10 +211,10 @@ export declare const searchOp: import("./define-operation.js").DefinedOperation<
|
|
|
246
211
|
nodes: {
|
|
247
212
|
[x: string]: unknown;
|
|
248
213
|
id: string;
|
|
249
|
-
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
214
|
+
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
250
215
|
name: string;
|
|
251
216
|
description?: string | string[] | undefined;
|
|
252
|
-
status?:
|
|
217
|
+
status?: undefined;
|
|
253
218
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
254
219
|
context?: string | string[] | undefined;
|
|
255
220
|
options?: {
|
|
@@ -273,8 +238,6 @@ export declare const searchOp: import("./define-operation.js").DefinedOperation<
|
|
|
273
238
|
}[] | undefined;
|
|
274
239
|
propagation?: Record<string, boolean> | undefined;
|
|
275
240
|
includes?: string[] | undefined;
|
|
276
|
-
input?: string | undefined;
|
|
277
|
-
output?: string | undefined;
|
|
278
241
|
external_references?: {
|
|
279
242
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
280
243
|
identifier: string;
|
|
@@ -297,7 +260,7 @@ export declare const searchOp: import("./define-operation.js").DefinedOperation<
|
|
|
297
260
|
[x: string]: unknown;
|
|
298
261
|
from: string;
|
|
299
262
|
to: string;
|
|
300
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
263
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
301
264
|
description?: string | string[] | undefined;
|
|
302
265
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
303
266
|
strength?: number | undefined;
|
|
@@ -329,39 +292,18 @@ export declare const searchOp: import("./define-operation.js").DefinedOperation<
|
|
|
329
292
|
gate: "gate";
|
|
330
293
|
mode: "mode";
|
|
331
294
|
artefact: "artefact";
|
|
332
|
-
artefact_flow: "artefact_flow";
|
|
333
295
|
decision: "decision";
|
|
334
296
|
change: "change";
|
|
335
297
|
view: "view";
|
|
336
298
|
milestone: "milestone";
|
|
337
|
-
version: "version";
|
|
338
299
|
}> & {
|
|
339
|
-
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
300
|
+
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
340
301
|
};
|
|
341
302
|
name: z.ZodString;
|
|
342
303
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
343
304
|
is(value: unknown): value is string | string[];
|
|
344
305
|
}>;
|
|
345
|
-
status: z.ZodOptional<z.
|
|
346
|
-
deprecated: "deprecated";
|
|
347
|
-
proposed: "proposed";
|
|
348
|
-
accepted: "accepted";
|
|
349
|
-
active: "active";
|
|
350
|
-
implemented: "implemented";
|
|
351
|
-
adopted: "adopted";
|
|
352
|
-
defined: "defined";
|
|
353
|
-
introduced: "introduced";
|
|
354
|
-
in_progress: "in_progress";
|
|
355
|
-
complete: "complete";
|
|
356
|
-
consolidated: "consolidated";
|
|
357
|
-
experimental: "experimental";
|
|
358
|
-
retired: "retired";
|
|
359
|
-
superseded: "superseded";
|
|
360
|
-
abandoned: "abandoned";
|
|
361
|
-
deferred: "deferred";
|
|
362
|
-
}> & {
|
|
363
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
364
|
-
}>;
|
|
306
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
365
307
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
366
308
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
367
309
|
is(value: unknown): value is string | string[];
|
|
@@ -416,8 +358,6 @@ export declare const searchOp: import("./define-operation.js").DefinedOperation<
|
|
|
416
358
|
}>>;
|
|
417
359
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
418
360
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
419
|
-
input: z.ZodOptional<z.ZodString>;
|
|
420
|
-
output: z.ZodOptional<z.ZodString>;
|
|
421
361
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
422
362
|
role: z.ZodEnum<{
|
|
423
363
|
output: "output";
|
|
@@ -478,26 +418,14 @@ export declare const searchOp: import("./define-operation.js").DefinedOperation<
|
|
|
478
418
|
affects: "affects";
|
|
479
419
|
supersedes: "supersedes";
|
|
480
420
|
must_preserve: "must_preserve";
|
|
481
|
-
performs: "performs";
|
|
482
421
|
part_of: "part_of";
|
|
483
422
|
precedes: "precedes";
|
|
484
423
|
must_follow: "must_follow";
|
|
485
|
-
blocks: "blocks";
|
|
486
|
-
routes_to: "routes_to";
|
|
487
424
|
governed_by: "governed_by";
|
|
488
425
|
modifies: "modifies";
|
|
489
|
-
triggered_by: "triggered_by";
|
|
490
|
-
applies_to: "applies_to";
|
|
491
426
|
produces: "produces";
|
|
492
|
-
consumes: "consumes";
|
|
493
|
-
transforms_into: "transforms_into";
|
|
494
|
-
selects: "selects";
|
|
495
|
-
requires: "requires";
|
|
496
|
-
disables: "disables";
|
|
497
|
-
influence: "influence";
|
|
498
|
-
justifies: "justifies";
|
|
499
427
|
}> & {
|
|
500
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
428
|
+
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";
|
|
501
429
|
};
|
|
502
430
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
503
431
|
is(value: unknown): value is string | string[];
|
|
@@ -516,7 +444,7 @@ export declare const searchOp: import("./define-operation.js").DefinedOperation<
|
|
|
516
444
|
[x: string]: unknown;
|
|
517
445
|
from: string;
|
|
518
446
|
to: string;
|
|
519
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
447
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
520
448
|
description?: string | string[] | undefined;
|
|
521
449
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
522
450
|
strength?: number | undefined;
|
|
@@ -556,10 +484,10 @@ export declare const searchOp: import("./define-operation.js").DefinedOperation<
|
|
|
556
484
|
is(value: unknown): value is {
|
|
557
485
|
[x: string]: unknown;
|
|
558
486
|
id: string;
|
|
559
|
-
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
487
|
+
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
560
488
|
name: string;
|
|
561
489
|
description?: string | string[] | undefined;
|
|
562
|
-
status?:
|
|
490
|
+
status?: undefined;
|
|
563
491
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
564
492
|
context?: string | string[] | undefined;
|
|
565
493
|
options?: {
|
|
@@ -583,8 +511,6 @@ export declare const searchOp: import("./define-operation.js").DefinedOperation<
|
|
|
583
511
|
}[] | undefined;
|
|
584
512
|
propagation?: Record<string, boolean> | undefined;
|
|
585
513
|
includes?: string[] | undefined;
|
|
586
|
-
input?: string | undefined;
|
|
587
|
-
output?: string | undefined;
|
|
588
514
|
external_references?: {
|
|
589
515
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
590
516
|
identifier: string;
|
|
@@ -607,7 +533,7 @@ export declare const searchOp: import("./define-operation.js").DefinedOperation<
|
|
|
607
533
|
[x: string]: unknown;
|
|
608
534
|
from: string;
|
|
609
535
|
to: string;
|
|
610
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
536
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
611
537
|
description?: string | string[] | undefined;
|
|
612
538
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
613
539
|
strength?: number | undefined;
|
|
@@ -54,39 +54,18 @@ export declare const speckitDiffOp: import("./define-operation.js").DefinedOpera
|
|
|
54
54
|
gate: "gate";
|
|
55
55
|
mode: "mode";
|
|
56
56
|
artefact: "artefact";
|
|
57
|
-
artefact_flow: "artefact_flow";
|
|
58
57
|
decision: "decision";
|
|
59
58
|
change: "change";
|
|
60
59
|
view: "view";
|
|
61
60
|
milestone: "milestone";
|
|
62
|
-
version: "version";
|
|
63
61
|
}> & {
|
|
64
|
-
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
62
|
+
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
65
63
|
};
|
|
66
64
|
name: z.ZodString;
|
|
67
65
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
68
66
|
is(value: unknown): value is string | string[];
|
|
69
67
|
}>;
|
|
70
|
-
status: z.ZodOptional<z.
|
|
71
|
-
deprecated: "deprecated";
|
|
72
|
-
proposed: "proposed";
|
|
73
|
-
accepted: "accepted";
|
|
74
|
-
active: "active";
|
|
75
|
-
implemented: "implemented";
|
|
76
|
-
adopted: "adopted";
|
|
77
|
-
defined: "defined";
|
|
78
|
-
introduced: "introduced";
|
|
79
|
-
in_progress: "in_progress";
|
|
80
|
-
complete: "complete";
|
|
81
|
-
consolidated: "consolidated";
|
|
82
|
-
experimental: "experimental";
|
|
83
|
-
retired: "retired";
|
|
84
|
-
superseded: "superseded";
|
|
85
|
-
abandoned: "abandoned";
|
|
86
|
-
deferred: "deferred";
|
|
87
|
-
}> & {
|
|
88
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
89
|
-
}>;
|
|
68
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
90
69
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
91
70
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
92
71
|
is(value: unknown): value is string | string[];
|
|
@@ -141,8 +120,6 @@ export declare const speckitDiffOp: import("./define-operation.js").DefinedOpera
|
|
|
141
120
|
}>>;
|
|
142
121
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
143
122
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
144
|
-
input: z.ZodOptional<z.ZodString>;
|
|
145
|
-
output: z.ZodOptional<z.ZodString>;
|
|
146
123
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
147
124
|
role: z.ZodEnum<{
|
|
148
125
|
output: "output";
|
|
@@ -186,26 +163,14 @@ export declare const speckitDiffOp: import("./define-operation.js").DefinedOpera
|
|
|
186
163
|
affects: "affects";
|
|
187
164
|
supersedes: "supersedes";
|
|
188
165
|
must_preserve: "must_preserve";
|
|
189
|
-
performs: "performs";
|
|
190
166
|
part_of: "part_of";
|
|
191
167
|
precedes: "precedes";
|
|
192
168
|
must_follow: "must_follow";
|
|
193
|
-
blocks: "blocks";
|
|
194
|
-
routes_to: "routes_to";
|
|
195
169
|
governed_by: "governed_by";
|
|
196
170
|
modifies: "modifies";
|
|
197
|
-
triggered_by: "triggered_by";
|
|
198
|
-
applies_to: "applies_to";
|
|
199
171
|
produces: "produces";
|
|
200
|
-
consumes: "consumes";
|
|
201
|
-
transforms_into: "transforms_into";
|
|
202
|
-
selects: "selects";
|
|
203
|
-
requires: "requires";
|
|
204
|
-
disables: "disables";
|
|
205
|
-
influence: "influence";
|
|
206
|
-
justifies: "justifies";
|
|
207
172
|
}> & {
|
|
208
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
173
|
+
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";
|
|
209
174
|
};
|
|
210
175
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
211
176
|
is(value: unknown): value is string | string[];
|
|
@@ -224,7 +189,7 @@ export declare const speckitDiffOp: import("./define-operation.js").DefinedOpera
|
|
|
224
189
|
[x: string]: unknown;
|
|
225
190
|
from: string;
|
|
226
191
|
to: string;
|
|
227
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
192
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
228
193
|
description?: string | string[] | undefined;
|
|
229
194
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
230
195
|
strength?: number | undefined;
|
|
@@ -264,10 +229,10 @@ export declare const speckitDiffOp: import("./define-operation.js").DefinedOpera
|
|
|
264
229
|
nodes: {
|
|
265
230
|
[x: string]: unknown;
|
|
266
231
|
id: string;
|
|
267
|
-
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
232
|
+
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
268
233
|
name: string;
|
|
269
234
|
description?: string | string[] | undefined;
|
|
270
|
-
status?:
|
|
235
|
+
status?: undefined;
|
|
271
236
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
272
237
|
context?: string | string[] | undefined;
|
|
273
238
|
options?: {
|
|
@@ -291,8 +256,6 @@ export declare const speckitDiffOp: import("./define-operation.js").DefinedOpera
|
|
|
291
256
|
}[] | undefined;
|
|
292
257
|
propagation?: Record<string, boolean> | undefined;
|
|
293
258
|
includes?: string[] | undefined;
|
|
294
|
-
input?: string | undefined;
|
|
295
|
-
output?: string | undefined;
|
|
296
259
|
external_references?: {
|
|
297
260
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
298
261
|
identifier: string;
|
|
@@ -315,7 +278,7 @@ export declare const speckitDiffOp: import("./define-operation.js").DefinedOpera
|
|
|
315
278
|
[x: string]: unknown;
|
|
316
279
|
from: string;
|
|
317
280
|
to: string;
|
|
318
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
281
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
319
282
|
description?: string | string[] | undefined;
|
|
320
283
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
321
284
|
strength?: number | undefined;
|
|
@@ -36,39 +36,18 @@ export declare const speckitExportOp: import("./define-operation.js").DefinedOpe
|
|
|
36
36
|
gate: "gate";
|
|
37
37
|
mode: "mode";
|
|
38
38
|
artefact: "artefact";
|
|
39
|
-
artefact_flow: "artefact_flow";
|
|
40
39
|
decision: "decision";
|
|
41
40
|
change: "change";
|
|
42
41
|
view: "view";
|
|
43
42
|
milestone: "milestone";
|
|
44
|
-
version: "version";
|
|
45
43
|
}> & {
|
|
46
|
-
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
44
|
+
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
47
45
|
};
|
|
48
46
|
name: z.ZodString;
|
|
49
47
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
50
48
|
is(value: unknown): value is string | string[];
|
|
51
49
|
}>;
|
|
52
|
-
status: z.ZodOptional<z.
|
|
53
|
-
deprecated: "deprecated";
|
|
54
|
-
proposed: "proposed";
|
|
55
|
-
accepted: "accepted";
|
|
56
|
-
active: "active";
|
|
57
|
-
implemented: "implemented";
|
|
58
|
-
adopted: "adopted";
|
|
59
|
-
defined: "defined";
|
|
60
|
-
introduced: "introduced";
|
|
61
|
-
in_progress: "in_progress";
|
|
62
|
-
complete: "complete";
|
|
63
|
-
consolidated: "consolidated";
|
|
64
|
-
experimental: "experimental";
|
|
65
|
-
retired: "retired";
|
|
66
|
-
superseded: "superseded";
|
|
67
|
-
abandoned: "abandoned";
|
|
68
|
-
deferred: "deferred";
|
|
69
|
-
}> & {
|
|
70
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
71
|
-
}>;
|
|
50
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
72
51
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
73
52
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
74
53
|
is(value: unknown): value is string | string[];
|
|
@@ -123,8 +102,6 @@ export declare const speckitExportOp: import("./define-operation.js").DefinedOpe
|
|
|
123
102
|
}>>;
|
|
124
103
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
125
104
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
126
|
-
input: z.ZodOptional<z.ZodString>;
|
|
127
|
-
output: z.ZodOptional<z.ZodString>;
|
|
128
105
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
129
106
|
role: z.ZodEnum<{
|
|
130
107
|
output: "output";
|
|
@@ -168,26 +145,14 @@ export declare const speckitExportOp: import("./define-operation.js").DefinedOpe
|
|
|
168
145
|
affects: "affects";
|
|
169
146
|
supersedes: "supersedes";
|
|
170
147
|
must_preserve: "must_preserve";
|
|
171
|
-
performs: "performs";
|
|
172
148
|
part_of: "part_of";
|
|
173
149
|
precedes: "precedes";
|
|
174
150
|
must_follow: "must_follow";
|
|
175
|
-
blocks: "blocks";
|
|
176
|
-
routes_to: "routes_to";
|
|
177
151
|
governed_by: "governed_by";
|
|
178
152
|
modifies: "modifies";
|
|
179
|
-
triggered_by: "triggered_by";
|
|
180
|
-
applies_to: "applies_to";
|
|
181
153
|
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
154
|
}> & {
|
|
190
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
155
|
+
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
156
|
};
|
|
192
157
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
193
158
|
is(value: unknown): value is string | string[];
|
|
@@ -206,7 +171,7 @@ export declare const speckitExportOp: import("./define-operation.js").DefinedOpe
|
|
|
206
171
|
[x: string]: unknown;
|
|
207
172
|
from: string;
|
|
208
173
|
to: string;
|
|
209
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
174
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
210
175
|
description?: string | string[] | undefined;
|
|
211
176
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
212
177
|
strength?: number | undefined;
|
|
@@ -246,10 +211,10 @@ export declare const speckitExportOp: import("./define-operation.js").DefinedOpe
|
|
|
246
211
|
nodes: {
|
|
247
212
|
[x: string]: unknown;
|
|
248
213
|
id: string;
|
|
249
|
-
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
214
|
+
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
250
215
|
name: string;
|
|
251
216
|
description?: string | string[] | undefined;
|
|
252
|
-
status?:
|
|
217
|
+
status?: undefined;
|
|
253
218
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
254
219
|
context?: string | string[] | undefined;
|
|
255
220
|
options?: {
|
|
@@ -273,8 +238,6 @@ export declare const speckitExportOp: import("./define-operation.js").DefinedOpe
|
|
|
273
238
|
}[] | undefined;
|
|
274
239
|
propagation?: Record<string, boolean> | undefined;
|
|
275
240
|
includes?: string[] | undefined;
|
|
276
|
-
input?: string | undefined;
|
|
277
|
-
output?: string | undefined;
|
|
278
241
|
external_references?: {
|
|
279
242
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
280
243
|
identifier: string;
|
|
@@ -297,7 +260,7 @@ export declare const speckitExportOp: import("./define-operation.js").DefinedOpe
|
|
|
297
260
|
[x: string]: unknown;
|
|
298
261
|
from: string;
|
|
299
262
|
to: string;
|
|
300
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
263
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
301
264
|
description?: string | string[] | undefined;
|
|
302
265
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
303
266
|
strength?: number | undefined;
|
|
@@ -38,39 +38,18 @@ export declare const speckitImportOp: import("./define-operation.js").DefinedOpe
|
|
|
38
38
|
gate: "gate";
|
|
39
39
|
mode: "mode";
|
|
40
40
|
artefact: "artefact";
|
|
41
|
-
artefact_flow: "artefact_flow";
|
|
42
41
|
decision: "decision";
|
|
43
42
|
change: "change";
|
|
44
43
|
view: "view";
|
|
45
44
|
milestone: "milestone";
|
|
46
|
-
version: "version";
|
|
47
45
|
}> & {
|
|
48
|
-
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
46
|
+
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
49
47
|
};
|
|
50
48
|
name: z.ZodString;
|
|
51
49
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
52
50
|
is(value: unknown): value is string | string[];
|
|
53
51
|
}>;
|
|
54
|
-
status: z.ZodOptional<z.
|
|
55
|
-
deprecated: "deprecated";
|
|
56
|
-
proposed: "proposed";
|
|
57
|
-
accepted: "accepted";
|
|
58
|
-
active: "active";
|
|
59
|
-
implemented: "implemented";
|
|
60
|
-
adopted: "adopted";
|
|
61
|
-
defined: "defined";
|
|
62
|
-
introduced: "introduced";
|
|
63
|
-
in_progress: "in_progress";
|
|
64
|
-
complete: "complete";
|
|
65
|
-
consolidated: "consolidated";
|
|
66
|
-
experimental: "experimental";
|
|
67
|
-
retired: "retired";
|
|
68
|
-
superseded: "superseded";
|
|
69
|
-
abandoned: "abandoned";
|
|
70
|
-
deferred: "deferred";
|
|
71
|
-
}> & {
|
|
72
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
73
|
-
}>;
|
|
52
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
74
53
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
75
54
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
76
55
|
is(value: unknown): value is string | string[];
|
|
@@ -125,8 +104,6 @@ export declare const speckitImportOp: import("./define-operation.js").DefinedOpe
|
|
|
125
104
|
}>>;
|
|
126
105
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
127
106
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
128
|
-
input: z.ZodOptional<z.ZodString>;
|
|
129
|
-
output: z.ZodOptional<z.ZodString>;
|
|
130
107
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
131
108
|
role: z.ZodEnum<{
|
|
132
109
|
output: "output";
|
|
@@ -170,26 +147,14 @@ export declare const speckitImportOp: import("./define-operation.js").DefinedOpe
|
|
|
170
147
|
affects: "affects";
|
|
171
148
|
supersedes: "supersedes";
|
|
172
149
|
must_preserve: "must_preserve";
|
|
173
|
-
performs: "performs";
|
|
174
150
|
part_of: "part_of";
|
|
175
151
|
precedes: "precedes";
|
|
176
152
|
must_follow: "must_follow";
|
|
177
|
-
blocks: "blocks";
|
|
178
|
-
routes_to: "routes_to";
|
|
179
153
|
governed_by: "governed_by";
|
|
180
154
|
modifies: "modifies";
|
|
181
|
-
triggered_by: "triggered_by";
|
|
182
|
-
applies_to: "applies_to";
|
|
183
155
|
produces: "produces";
|
|
184
|
-
consumes: "consumes";
|
|
185
|
-
transforms_into: "transforms_into";
|
|
186
|
-
selects: "selects";
|
|
187
|
-
requires: "requires";
|
|
188
|
-
disables: "disables";
|
|
189
|
-
influence: "influence";
|
|
190
|
-
justifies: "justifies";
|
|
191
156
|
}> & {
|
|
192
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
157
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
193
158
|
};
|
|
194
159
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
195
160
|
is(value: unknown): value is string | string[];
|
|
@@ -208,7 +173,7 @@ export declare const speckitImportOp: import("./define-operation.js").DefinedOpe
|
|
|
208
173
|
[x: string]: unknown;
|
|
209
174
|
from: string;
|
|
210
175
|
to: string;
|
|
211
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
176
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
212
177
|
description?: string | string[] | undefined;
|
|
213
178
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
214
179
|
strength?: number | undefined;
|
|
@@ -248,10 +213,10 @@ export declare const speckitImportOp: import("./define-operation.js").DefinedOpe
|
|
|
248
213
|
nodes: {
|
|
249
214
|
[x: string]: unknown;
|
|
250
215
|
id: string;
|
|
251
|
-
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
216
|
+
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
252
217
|
name: string;
|
|
253
218
|
description?: string | string[] | undefined;
|
|
254
|
-
status?:
|
|
219
|
+
status?: undefined;
|
|
255
220
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
256
221
|
context?: string | string[] | undefined;
|
|
257
222
|
options?: {
|
|
@@ -275,8 +240,6 @@ export declare const speckitImportOp: import("./define-operation.js").DefinedOpe
|
|
|
275
240
|
}[] | undefined;
|
|
276
241
|
propagation?: Record<string, boolean> | undefined;
|
|
277
242
|
includes?: string[] | undefined;
|
|
278
|
-
input?: string | undefined;
|
|
279
|
-
output?: string | undefined;
|
|
280
243
|
external_references?: {
|
|
281
244
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
282
245
|
identifier: string;
|
|
@@ -299,7 +262,7 @@ export declare const speckitImportOp: import("./define-operation.js").DefinedOpe
|
|
|
299
262
|
[x: string]: unknown;
|
|
300
263
|
from: string;
|
|
301
264
|
to: string;
|
|
302
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
265
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
303
266
|
description?: string | string[] | undefined;
|
|
304
267
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
305
268
|
strength?: number | undefined;
|