sysprom 1.17.0 → 1.19.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 +198 -87
- package/dist/schema.json +2 -1
- package/dist/src/cli/commands/graph.d.ts +15 -0
- package/dist/src/cli/commands/graph.js +51 -2
- package/dist/src/cli/commands/init.d.ts +1 -1
- package/dist/src/cli/commands/json2md.d.ts +30 -1
- package/dist/src/cli/commands/json2md.js +42 -1
- package/dist/src/cli/commands/md2json.d.ts +1 -1
- package/dist/src/cli/commands/sync.d.ts +1 -1
- package/dist/src/cli/define-command.d.ts +1 -1
- package/dist/src/cli/define-command.js +176 -156
- package/dist/src/endpoint-types.js +22 -7
- package/dist/src/json-to-md.d.ts +32 -2
- package/dist/src/json-to-md.js +145 -5
- package/dist/src/md-to-json.js +7 -0
- package/dist/src/operations/add-node.d.ts +12 -9
- package/dist/src/operations/add-plan-task.d.ts +8 -6
- package/dist/src/operations/add-relationship.d.ts +11 -8
- package/dist/src/operations/check.d.ts +4 -3
- package/dist/src/operations/define-operation.d.ts +1 -1
- package/dist/src/operations/graph-decision.d.ts +329 -0
- package/dist/src/operations/graph-decision.js +96 -0
- package/dist/src/operations/graph-dependency.d.ts +329 -0
- package/dist/src/operations/graph-dependency.js +121 -0
- package/dist/src/operations/graph-refinement.d.ts +329 -0
- package/dist/src/operations/graph-refinement.js +97 -0
- package/dist/src/operations/graph-shared.d.ts +116 -0
- package/dist/src/operations/graph-shared.js +257 -0
- package/dist/src/operations/graph.d.ts +20 -4
- package/dist/src/operations/graph.js +129 -36
- package/dist/src/operations/index.d.ts +3 -0
- package/dist/src/operations/index.js +3 -0
- package/dist/src/operations/infer-completeness.d.ts +4 -3
- package/dist/src/operations/infer-derived.d.ts +4 -3
- package/dist/src/operations/infer-impact.d.ts +28 -21
- package/dist/src/operations/infer-lifecycle.d.ts +4 -3
- package/dist/src/operations/init-document.d.ts +4 -3
- package/dist/src/operations/json-to-markdown.d.ts +28 -3
- package/dist/src/operations/json-to-markdown.js +11 -1
- package/dist/src/operations/mark-task-done.d.ts +8 -6
- package/dist/src/operations/mark-task-undone.d.ts +8 -6
- package/dist/src/operations/markdown-to-json.d.ts +4 -3
- package/dist/src/operations/next-id.d.ts +4 -3
- package/dist/src/operations/node-history.d.ts +4 -3
- package/dist/src/operations/plan-add-task.d.ts +8 -6
- package/dist/src/operations/plan-gate.d.ts +4 -3
- package/dist/src/operations/plan-init.d.ts +4 -3
- package/dist/src/operations/plan-progress.d.ts +4 -3
- package/dist/src/operations/plan-status.d.ts +4 -3
- package/dist/src/operations/query-node.d.ts +24 -17
- package/dist/src/operations/query-nodes.d.ts +8 -6
- package/dist/src/operations/query-relationships.d.ts +7 -5
- package/dist/src/operations/remove-node.d.ts +12 -9
- package/dist/src/operations/remove-relationship.d.ts +10 -7
- package/dist/src/operations/rename.d.ts +8 -6
- package/dist/src/operations/search.d.ts +8 -6
- package/dist/src/operations/speckit-diff.d.ts +4 -3
- package/dist/src/operations/speckit-export.d.ts +4 -3
- package/dist/src/operations/speckit-import.d.ts +4 -3
- package/dist/src/operations/speckit-sync.d.ts +12 -9
- package/dist/src/operations/state-at.d.ts +4 -3
- package/dist/src/operations/stats.d.ts +4 -3
- package/dist/src/operations/sync.d.ts +12 -9
- package/dist/src/operations/task-list.d.ts +4 -3
- package/dist/src/operations/timeline.d.ts +4 -3
- package/dist/src/operations/trace-from-node.d.ts +12 -9
- package/dist/src/operations/update-metadata.d.ts +8 -6
- package/dist/src/operations/update-node.d.ts +11 -8
- package/dist/src/operations/update-plan-task.d.ts +8 -6
- package/dist/src/operations/validate.d.ts +4 -3
- package/dist/src/schema.d.ts +15 -10
- package/dist/src/schema.js +3 -11
- package/dist/src/utils/define-schema.d.ts +17 -0
- package/dist/src/utils/define-schema.js +21 -0
- package/package.json +98 -93
- package/schema.json +2 -1
|
@@ -201,8 +201,9 @@ export declare const statsOp: import("./define-operation.js").DefinedOperation<z
|
|
|
201
201
|
requires: "requires";
|
|
202
202
|
disables: "disables";
|
|
203
203
|
influence: "influence";
|
|
204
|
+
justifies: "justifies";
|
|
204
205
|
}> & {
|
|
205
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
206
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
206
207
|
};
|
|
207
208
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
208
209
|
is(value: unknown): value is string | string[];
|
|
@@ -221,7 +222,7 @@ export declare const statsOp: import("./define-operation.js").DefinedOperation<z
|
|
|
221
222
|
[x: string]: unknown;
|
|
222
223
|
from: string;
|
|
223
224
|
to: string;
|
|
224
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
225
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
225
226
|
description?: string | string[] | undefined;
|
|
226
227
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
227
228
|
strength?: number | undefined;
|
|
@@ -312,7 +313,7 @@ export declare const statsOp: import("./define-operation.js").DefinedOperation<z
|
|
|
312
313
|
[x: string]: unknown;
|
|
313
314
|
from: string;
|
|
314
315
|
to: string;
|
|
315
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
316
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
316
317
|
description?: string | string[] | undefined;
|
|
317
318
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
318
319
|
strength?: number | undefined;
|
|
@@ -222,8 +222,9 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
|
|
|
222
222
|
requires: "requires";
|
|
223
223
|
disables: "disables";
|
|
224
224
|
influence: "influence";
|
|
225
|
+
justifies: "justifies";
|
|
225
226
|
}> & {
|
|
226
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
227
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
227
228
|
};
|
|
228
229
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
229
230
|
is(value: unknown): value is string | string[];
|
|
@@ -242,7 +243,7 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
|
|
|
242
243
|
[x: string]: unknown;
|
|
243
244
|
from: string;
|
|
244
245
|
to: string;
|
|
245
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
246
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
246
247
|
description?: string | string[] | undefined;
|
|
247
248
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
248
249
|
strength?: number | undefined;
|
|
@@ -333,7 +334,7 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
|
|
|
333
334
|
[x: string]: unknown;
|
|
334
335
|
from: string;
|
|
335
336
|
to: string;
|
|
336
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
337
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
337
338
|
description?: string | string[] | undefined;
|
|
338
339
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
339
340
|
strength?: number | undefined;
|
|
@@ -531,8 +532,9 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
|
|
|
531
532
|
requires: "requires";
|
|
532
533
|
disables: "disables";
|
|
533
534
|
influence: "influence";
|
|
535
|
+
justifies: "justifies";
|
|
534
536
|
}> & {
|
|
535
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
537
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
536
538
|
};
|
|
537
539
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
538
540
|
is(value: unknown): value is string | string[];
|
|
@@ -551,7 +553,7 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
|
|
|
551
553
|
[x: string]: unknown;
|
|
552
554
|
from: string;
|
|
553
555
|
to: string;
|
|
554
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
556
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
555
557
|
description?: string | string[] | undefined;
|
|
556
558
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
557
559
|
strength?: number | undefined;
|
|
@@ -642,7 +644,7 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
|
|
|
642
644
|
[x: string]: unknown;
|
|
643
645
|
from: string;
|
|
644
646
|
to: string;
|
|
645
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
647
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
646
648
|
description?: string | string[] | undefined;
|
|
647
649
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
648
650
|
strength?: number | undefined;
|
|
@@ -849,8 +851,9 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
|
|
|
849
851
|
requires: "requires";
|
|
850
852
|
disables: "disables";
|
|
851
853
|
influence: "influence";
|
|
854
|
+
justifies: "justifies";
|
|
852
855
|
}> & {
|
|
853
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
856
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
854
857
|
};
|
|
855
858
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
856
859
|
is(value: unknown): value is string | string[];
|
|
@@ -869,7 +872,7 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
|
|
|
869
872
|
[x: string]: unknown;
|
|
870
873
|
from: string;
|
|
871
874
|
to: string;
|
|
872
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
875
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
873
876
|
description?: string | string[] | undefined;
|
|
874
877
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
875
878
|
strength?: number | undefined;
|
|
@@ -960,7 +963,7 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
|
|
|
960
963
|
[x: string]: unknown;
|
|
961
964
|
from: string;
|
|
962
965
|
to: string;
|
|
963
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
966
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
964
967
|
description?: string | string[] | undefined;
|
|
965
968
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
966
969
|
strength?: number | undefined;
|
|
@@ -189,8 +189,9 @@ export declare const taskListOp: import("./define-operation.js").DefinedOperatio
|
|
|
189
189
|
requires: "requires";
|
|
190
190
|
disables: "disables";
|
|
191
191
|
influence: "influence";
|
|
192
|
+
justifies: "justifies";
|
|
192
193
|
}> & {
|
|
193
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
194
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
194
195
|
};
|
|
195
196
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
196
197
|
is(value: unknown): value is string | string[];
|
|
@@ -209,7 +210,7 @@ export declare const taskListOp: import("./define-operation.js").DefinedOperatio
|
|
|
209
210
|
[x: string]: unknown;
|
|
210
211
|
from: string;
|
|
211
212
|
to: string;
|
|
212
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
213
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
213
214
|
description?: string | string[] | undefined;
|
|
214
215
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
215
216
|
strength?: number | undefined;
|
|
@@ -300,7 +301,7 @@ export declare const taskListOp: import("./define-operation.js").DefinedOperatio
|
|
|
300
301
|
[x: string]: unknown;
|
|
301
302
|
from: string;
|
|
302
303
|
to: string;
|
|
303
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
304
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
304
305
|
description?: string | string[] | undefined;
|
|
305
306
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
306
307
|
strength?: number | undefined;
|
|
@@ -195,8 +195,9 @@ export declare const timelineOp: import("./define-operation.js").DefinedOperatio
|
|
|
195
195
|
requires: "requires";
|
|
196
196
|
disables: "disables";
|
|
197
197
|
influence: "influence";
|
|
198
|
+
justifies: "justifies";
|
|
198
199
|
}> & {
|
|
199
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
200
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
200
201
|
};
|
|
201
202
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
202
203
|
is(value: unknown): value is string | string[];
|
|
@@ -215,7 +216,7 @@ export declare const timelineOp: import("./define-operation.js").DefinedOperatio
|
|
|
215
216
|
[x: string]: unknown;
|
|
216
217
|
from: string;
|
|
217
218
|
to: string;
|
|
218
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
219
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
219
220
|
description?: string | string[] | undefined;
|
|
220
221
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
221
222
|
strength?: number | undefined;
|
|
@@ -306,7 +307,7 @@ export declare const timelineOp: import("./define-operation.js").DefinedOperatio
|
|
|
306
307
|
[x: string]: unknown;
|
|
307
308
|
from: string;
|
|
308
309
|
to: string;
|
|
309
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
310
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
310
311
|
description?: string | string[] | undefined;
|
|
311
312
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
312
313
|
strength?: number | undefined;
|
|
@@ -184,8 +184,9 @@ declare const TraceNodeSchema: z.ZodObject<{
|
|
|
184
184
|
requires: "requires";
|
|
185
185
|
disables: "disables";
|
|
186
186
|
influence: "influence";
|
|
187
|
+
justifies: "justifies";
|
|
187
188
|
}> & {
|
|
188
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
189
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
189
190
|
};
|
|
190
191
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
191
192
|
is(value: unknown): value is string | string[];
|
|
@@ -204,7 +205,7 @@ declare const TraceNodeSchema: z.ZodObject<{
|
|
|
204
205
|
[x: string]: unknown;
|
|
205
206
|
from: string;
|
|
206
207
|
to: string;
|
|
207
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
208
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
208
209
|
description?: string | string[] | undefined;
|
|
209
210
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
210
211
|
strength?: number | undefined;
|
|
@@ -295,7 +296,7 @@ declare const TraceNodeSchema: z.ZodObject<{
|
|
|
295
296
|
[x: string]: unknown;
|
|
296
297
|
from: string;
|
|
297
298
|
to: string;
|
|
298
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
299
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
299
300
|
description?: string | string[] | undefined;
|
|
300
301
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
301
302
|
strength?: number | undefined;
|
|
@@ -500,8 +501,9 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
500
501
|
requires: "requires";
|
|
501
502
|
disables: "disables";
|
|
502
503
|
influence: "influence";
|
|
504
|
+
justifies: "justifies";
|
|
503
505
|
}> & {
|
|
504
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
506
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
505
507
|
};
|
|
506
508
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
507
509
|
is(value: unknown): value is string | string[];
|
|
@@ -520,7 +522,7 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
520
522
|
[x: string]: unknown;
|
|
521
523
|
from: string;
|
|
522
524
|
to: string;
|
|
523
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
525
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
524
526
|
description?: string | string[] | undefined;
|
|
525
527
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
526
528
|
strength?: number | undefined;
|
|
@@ -611,7 +613,7 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
611
613
|
[x: string]: unknown;
|
|
612
614
|
from: string;
|
|
613
615
|
to: string;
|
|
614
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
616
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
615
617
|
description?: string | string[] | undefined;
|
|
616
618
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
617
619
|
strength?: number | undefined;
|
|
@@ -811,8 +813,9 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
811
813
|
requires: "requires";
|
|
812
814
|
disables: "disables";
|
|
813
815
|
influence: "influence";
|
|
816
|
+
justifies: "justifies";
|
|
814
817
|
}> & {
|
|
815
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
818
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
816
819
|
};
|
|
817
820
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
818
821
|
is(value: unknown): value is string | string[];
|
|
@@ -831,7 +834,7 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
831
834
|
[x: string]: unknown;
|
|
832
835
|
from: string;
|
|
833
836
|
to: string;
|
|
834
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
837
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
835
838
|
description?: string | string[] | undefined;
|
|
836
839
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
837
840
|
strength?: number | undefined;
|
|
@@ -922,7 +925,7 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
922
925
|
[x: string]: unknown;
|
|
923
926
|
from: string;
|
|
924
927
|
to: string;
|
|
925
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
928
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
926
929
|
description?: string | string[] | undefined;
|
|
927
930
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
928
931
|
strength?: number | undefined;
|
|
@@ -185,8 +185,9 @@ export declare const updateMetadataOp: import("./define-operation.js").DefinedOp
|
|
|
185
185
|
requires: "requires";
|
|
186
186
|
disables: "disables";
|
|
187
187
|
influence: "influence";
|
|
188
|
+
justifies: "justifies";
|
|
188
189
|
}> & {
|
|
189
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
190
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
190
191
|
};
|
|
191
192
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
192
193
|
is(value: unknown): value is string | string[];
|
|
@@ -205,7 +206,7 @@ export declare const updateMetadataOp: import("./define-operation.js").DefinedOp
|
|
|
205
206
|
[x: string]: unknown;
|
|
206
207
|
from: string;
|
|
207
208
|
to: string;
|
|
208
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
209
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
209
210
|
description?: string | string[] | undefined;
|
|
210
211
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
211
212
|
strength?: number | undefined;
|
|
@@ -296,7 +297,7 @@ export declare const updateMetadataOp: import("./define-operation.js").DefinedOp
|
|
|
296
297
|
[x: string]: unknown;
|
|
297
298
|
from: string;
|
|
298
299
|
to: string;
|
|
299
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
300
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
300
301
|
description?: string | string[] | undefined;
|
|
301
302
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
302
303
|
strength?: number | undefined;
|
|
@@ -495,8 +496,9 @@ export declare const updateMetadataOp: import("./define-operation.js").DefinedOp
|
|
|
495
496
|
requires: "requires";
|
|
496
497
|
disables: "disables";
|
|
497
498
|
influence: "influence";
|
|
499
|
+
justifies: "justifies";
|
|
498
500
|
}> & {
|
|
499
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
501
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
500
502
|
};
|
|
501
503
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
502
504
|
is(value: unknown): value is string | string[];
|
|
@@ -515,7 +517,7 @@ export declare const updateMetadataOp: import("./define-operation.js").DefinedOp
|
|
|
515
517
|
[x: string]: unknown;
|
|
516
518
|
from: string;
|
|
517
519
|
to: string;
|
|
518
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
520
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
519
521
|
description?: string | string[] | undefined;
|
|
520
522
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
521
523
|
strength?: number | undefined;
|
|
@@ -606,7 +608,7 @@ export declare const updateMetadataOp: import("./define-operation.js").DefinedOp
|
|
|
606
608
|
[x: string]: unknown;
|
|
607
609
|
from: string;
|
|
608
610
|
to: string;
|
|
609
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
611
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
610
612
|
description?: string | string[] | undefined;
|
|
611
613
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
612
614
|
strength?: number | undefined;
|
|
@@ -188,8 +188,9 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
188
188
|
requires: "requires";
|
|
189
189
|
disables: "disables";
|
|
190
190
|
influence: "influence";
|
|
191
|
+
justifies: "justifies";
|
|
191
192
|
}> & {
|
|
192
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
193
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
193
194
|
};
|
|
194
195
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
195
196
|
is(value: unknown): value is string | string[];
|
|
@@ -208,7 +209,7 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
208
209
|
[x: string]: unknown;
|
|
209
210
|
from: string;
|
|
210
211
|
to: string;
|
|
211
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
212
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
212
213
|
description?: string | string[] | undefined;
|
|
213
214
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
214
215
|
strength?: number | undefined;
|
|
@@ -299,7 +300,7 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
299
300
|
[x: string]: unknown;
|
|
300
301
|
from: string;
|
|
301
302
|
to: string;
|
|
302
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
303
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
303
304
|
description?: string | string[] | undefined;
|
|
304
305
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
305
306
|
strength?: number | undefined;
|
|
@@ -633,8 +634,9 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
633
634
|
requires: "requires";
|
|
634
635
|
disables: "disables";
|
|
635
636
|
influence: "influence";
|
|
637
|
+
justifies: "justifies";
|
|
636
638
|
}> & {
|
|
637
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
639
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
638
640
|
};
|
|
639
641
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
640
642
|
is(value: unknown): value is string | string[];
|
|
@@ -653,7 +655,7 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
653
655
|
[x: string]: unknown;
|
|
654
656
|
from: string;
|
|
655
657
|
to: string;
|
|
656
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
658
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
657
659
|
description?: string | string[] | undefined;
|
|
658
660
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
659
661
|
strength?: number | undefined;
|
|
@@ -874,8 +876,9 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
874
876
|
requires: "requires";
|
|
875
877
|
disables: "disables";
|
|
876
878
|
influence: "influence";
|
|
879
|
+
justifies: "justifies";
|
|
877
880
|
}> & {
|
|
878
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
881
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
879
882
|
};
|
|
880
883
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
881
884
|
is(value: unknown): value is string | string[];
|
|
@@ -894,7 +897,7 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
894
897
|
[x: string]: unknown;
|
|
895
898
|
from: string;
|
|
896
899
|
to: string;
|
|
897
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
900
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
898
901
|
description?: string | string[] | undefined;
|
|
899
902
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
900
903
|
strength?: number | undefined;
|
|
@@ -985,7 +988,7 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
985
988
|
[x: string]: unknown;
|
|
986
989
|
from: string;
|
|
987
990
|
to: string;
|
|
988
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
991
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
989
992
|
description?: string | string[] | undefined;
|
|
990
993
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
991
994
|
strength?: number | undefined;
|
|
@@ -188,8 +188,9 @@ export declare const updatePlanTaskOp: import("./define-operation.js").DefinedOp
|
|
|
188
188
|
requires: "requires";
|
|
189
189
|
disables: "disables";
|
|
190
190
|
influence: "influence";
|
|
191
|
+
justifies: "justifies";
|
|
191
192
|
}> & {
|
|
192
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
193
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
193
194
|
};
|
|
194
195
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
195
196
|
is(value: unknown): value is string | string[];
|
|
@@ -208,7 +209,7 @@ export declare const updatePlanTaskOp: import("./define-operation.js").DefinedOp
|
|
|
208
209
|
[x: string]: unknown;
|
|
209
210
|
from: string;
|
|
210
211
|
to: string;
|
|
211
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
212
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
212
213
|
description?: string | string[] | undefined;
|
|
213
214
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
214
215
|
strength?: number | undefined;
|
|
@@ -299,7 +300,7 @@ export declare const updatePlanTaskOp: import("./define-operation.js").DefinedOp
|
|
|
299
300
|
[x: string]: unknown;
|
|
300
301
|
from: string;
|
|
301
302
|
to: string;
|
|
302
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
303
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
303
304
|
description?: string | string[] | undefined;
|
|
304
305
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
305
306
|
strength?: number | undefined;
|
|
@@ -500,8 +501,9 @@ export declare const updatePlanTaskOp: import("./define-operation.js").DefinedOp
|
|
|
500
501
|
requires: "requires";
|
|
501
502
|
disables: "disables";
|
|
502
503
|
influence: "influence";
|
|
504
|
+
justifies: "justifies";
|
|
503
505
|
}> & {
|
|
504
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
506
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
505
507
|
};
|
|
506
508
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
507
509
|
is(value: unknown): value is string | string[];
|
|
@@ -520,7 +522,7 @@ export declare const updatePlanTaskOp: import("./define-operation.js").DefinedOp
|
|
|
520
522
|
[x: string]: unknown;
|
|
521
523
|
from: string;
|
|
522
524
|
to: string;
|
|
523
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
525
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
524
526
|
description?: string | string[] | undefined;
|
|
525
527
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
526
528
|
strength?: number | undefined;
|
|
@@ -611,7 +613,7 @@ export declare const updatePlanTaskOp: import("./define-operation.js").DefinedOp
|
|
|
611
613
|
[x: string]: unknown;
|
|
612
614
|
from: string;
|
|
613
615
|
to: string;
|
|
614
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
616
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
615
617
|
description?: string | string[] | undefined;
|
|
616
618
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
617
619
|
strength?: number | undefined;
|
|
@@ -201,8 +201,9 @@ export declare const validateOp: import("./define-operation.js").DefinedOperatio
|
|
|
201
201
|
requires: "requires";
|
|
202
202
|
disables: "disables";
|
|
203
203
|
influence: "influence";
|
|
204
|
+
justifies: "justifies";
|
|
204
205
|
}> & {
|
|
205
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
206
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
206
207
|
};
|
|
207
208
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
208
209
|
is(value: unknown): value is string | string[];
|
|
@@ -221,7 +222,7 @@ export declare const validateOp: import("./define-operation.js").DefinedOperatio
|
|
|
221
222
|
[x: string]: unknown;
|
|
222
223
|
from: string;
|
|
223
224
|
to: string;
|
|
224
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
225
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
225
226
|
description?: string | string[] | undefined;
|
|
226
227
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
227
228
|
strength?: number | undefined;
|
|
@@ -312,7 +313,7 @@ export declare const validateOp: import("./define-operation.js").DefinedOperatio
|
|
|
312
313
|
[x: string]: unknown;
|
|
313
314
|
from: string;
|
|
314
315
|
to: string;
|
|
315
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
316
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
316
317
|
description?: string | string[] | undefined;
|
|
317
318
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
318
319
|
strength?: number | undefined;
|