sysprom 1.17.0 → 1.18.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 +145 -75
- 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 +13 -6
- 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
|
@@ -195,8 +195,9 @@ export declare const nodeHistoryOp: import("./define-operation.js").DefinedOpera
|
|
|
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 nodeHistoryOp: import("./define-operation.js").DefinedOpera
|
|
|
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 nodeHistoryOp: import("./define-operation.js").DefinedOpera
|
|
|
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;
|
|
@@ -185,8 +185,9 @@ export declare const planAddTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
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 planAddTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
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 planAddTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
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;
|
|
@@ -497,8 +498,9 @@ export declare const planAddTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
497
498
|
requires: "requires";
|
|
498
499
|
disables: "disables";
|
|
499
500
|
influence: "influence";
|
|
501
|
+
justifies: "justifies";
|
|
500
502
|
}> & {
|
|
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";
|
|
503
|
+
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";
|
|
502
504
|
};
|
|
503
505
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
504
506
|
is(value: unknown): value is string | string[];
|
|
@@ -517,7 +519,7 @@ export declare const planAddTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
517
519
|
[x: string]: unknown;
|
|
518
520
|
from: string;
|
|
519
521
|
to: string;
|
|
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";
|
|
522
|
+
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";
|
|
521
523
|
description?: string | string[] | undefined;
|
|
522
524
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
523
525
|
strength?: number | undefined;
|
|
@@ -608,7 +610,7 @@ export declare const planAddTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
608
610
|
[x: string]: unknown;
|
|
609
611
|
from: string;
|
|
610
612
|
to: string;
|
|
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";
|
|
613
|
+
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";
|
|
612
614
|
description?: string | string[] | undefined;
|
|
613
615
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
614
616
|
strength?: number | undefined;
|
|
@@ -222,8 +222,9 @@ export declare const planGateOp: import("./define-operation.js").DefinedOperatio
|
|
|
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 planGateOp: import("./define-operation.js").DefinedOperatio
|
|
|
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 planGateOp: import("./define-operation.js").DefinedOperatio
|
|
|
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;
|
|
@@ -187,8 +187,9 @@ export declare const planInitOp: import("./define-operation.js").DefinedOperatio
|
|
|
187
187
|
requires: "requires";
|
|
188
188
|
disables: "disables";
|
|
189
189
|
influence: "influence";
|
|
190
|
+
justifies: "justifies";
|
|
190
191
|
}> & {
|
|
191
|
-
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";
|
|
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" | "justifies";
|
|
192
193
|
};
|
|
193
194
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
194
195
|
is(value: unknown): value is string | string[];
|
|
@@ -207,7 +208,7 @@ export declare const planInitOp: import("./define-operation.js").DefinedOperatio
|
|
|
207
208
|
[x: string]: unknown;
|
|
208
209
|
from: string;
|
|
209
210
|
to: string;
|
|
210
|
-
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";
|
|
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" | "justifies";
|
|
211
212
|
description?: string | string[] | undefined;
|
|
212
213
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
213
214
|
strength?: number | undefined;
|
|
@@ -298,7 +299,7 @@ export declare const planInitOp: import("./define-operation.js").DefinedOperatio
|
|
|
298
299
|
[x: string]: unknown;
|
|
299
300
|
from: string;
|
|
300
301
|
to: string;
|
|
301
|
-
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";
|
|
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" | "justifies";
|
|
302
303
|
description?: string | string[] | undefined;
|
|
303
304
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
304
305
|
strength?: number | undefined;
|
|
@@ -194,8 +194,9 @@ export declare const planProgressOp: import("./define-operation.js").DefinedOper
|
|
|
194
194
|
requires: "requires";
|
|
195
195
|
disables: "disables";
|
|
196
196
|
influence: "influence";
|
|
197
|
+
justifies: "justifies";
|
|
197
198
|
}> & {
|
|
198
|
-
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";
|
|
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" | "justifies";
|
|
199
200
|
};
|
|
200
201
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
201
202
|
is(value: unknown): value is string | string[];
|
|
@@ -214,7 +215,7 @@ export declare const planProgressOp: import("./define-operation.js").DefinedOper
|
|
|
214
215
|
[x: string]: unknown;
|
|
215
216
|
from: string;
|
|
216
217
|
to: string;
|
|
217
|
-
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";
|
|
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" | "justifies";
|
|
218
219
|
description?: string | string[] | undefined;
|
|
219
220
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
220
221
|
strength?: number | undefined;
|
|
@@ -305,7 +306,7 @@ export declare const planProgressOp: import("./define-operation.js").DefinedOper
|
|
|
305
306
|
[x: string]: unknown;
|
|
306
307
|
from: string;
|
|
307
308
|
to: string;
|
|
308
|
-
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";
|
|
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" | "justifies";
|
|
309
310
|
description?: string | string[] | undefined;
|
|
310
311
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
311
312
|
strength?: number | undefined;
|
|
@@ -212,8 +212,9 @@ export declare const planStatusOp: import("./define-operation.js").DefinedOperat
|
|
|
212
212
|
requires: "requires";
|
|
213
213
|
disables: "disables";
|
|
214
214
|
influence: "influence";
|
|
215
|
+
justifies: "justifies";
|
|
215
216
|
}> & {
|
|
216
|
-
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";
|
|
217
|
+
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";
|
|
217
218
|
};
|
|
218
219
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
219
220
|
is(value: unknown): value is string | string[];
|
|
@@ -232,7 +233,7 @@ export declare const planStatusOp: import("./define-operation.js").DefinedOperat
|
|
|
232
233
|
[x: string]: unknown;
|
|
233
234
|
from: string;
|
|
234
235
|
to: string;
|
|
235
|
-
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";
|
|
236
|
+
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";
|
|
236
237
|
description?: string | string[] | undefined;
|
|
237
238
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
238
239
|
strength?: number | undefined;
|
|
@@ -323,7 +324,7 @@ export declare const planStatusOp: import("./define-operation.js").DefinedOperat
|
|
|
323
324
|
[x: string]: unknown;
|
|
324
325
|
from: string;
|
|
325
326
|
to: string;
|
|
326
|
-
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";
|
|
327
|
+
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";
|
|
327
328
|
description?: string | string[] | undefined;
|
|
328
329
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
329
330
|
strength?: number | undefined;
|
|
@@ -184,8 +184,9 @@ export declare const NodeDetail: z.ZodNullable<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 @@ export declare const NodeDetail: z.ZodNullable<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 @@ export declare const NodeDetail: z.ZodNullable<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;
|
|
@@ -339,8 +340,9 @@ export declare const NodeDetail: z.ZodNullable<z.ZodObject<{
|
|
|
339
340
|
requires: "requires";
|
|
340
341
|
disables: "disables";
|
|
341
342
|
influence: "influence";
|
|
343
|
+
justifies: "justifies";
|
|
342
344
|
}> & {
|
|
343
|
-
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";
|
|
345
|
+
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";
|
|
344
346
|
};
|
|
345
347
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
346
348
|
is(value: unknown): value is string | string[];
|
|
@@ -359,7 +361,7 @@ export declare const NodeDetail: z.ZodNullable<z.ZodObject<{
|
|
|
359
361
|
[x: string]: unknown;
|
|
360
362
|
from: string;
|
|
361
363
|
to: string;
|
|
362
|
-
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";
|
|
364
|
+
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";
|
|
363
365
|
description?: string | string[] | undefined;
|
|
364
366
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
365
367
|
strength?: number | undefined;
|
|
@@ -394,8 +396,9 @@ export declare const NodeDetail: z.ZodNullable<z.ZodObject<{
|
|
|
394
396
|
requires: "requires";
|
|
395
397
|
disables: "disables";
|
|
396
398
|
influence: "influence";
|
|
399
|
+
justifies: "justifies";
|
|
397
400
|
}> & {
|
|
398
|
-
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";
|
|
401
|
+
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";
|
|
399
402
|
};
|
|
400
403
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
401
404
|
is(value: unknown): value is string | string[];
|
|
@@ -414,7 +417,7 @@ export declare const NodeDetail: z.ZodNullable<z.ZodObject<{
|
|
|
414
417
|
[x: string]: unknown;
|
|
415
418
|
from: string;
|
|
416
419
|
to: string;
|
|
417
|
-
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";
|
|
420
|
+
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";
|
|
418
421
|
description?: string | string[] | undefined;
|
|
419
422
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
420
423
|
strength?: number | undefined;
|
|
@@ -609,8 +612,9 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
|
|
|
609
612
|
requires: "requires";
|
|
610
613
|
disables: "disables";
|
|
611
614
|
influence: "influence";
|
|
615
|
+
justifies: "justifies";
|
|
612
616
|
}> & {
|
|
613
|
-
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";
|
|
617
|
+
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";
|
|
614
618
|
};
|
|
615
619
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
616
620
|
is(value: unknown): value is string | string[];
|
|
@@ -629,7 +633,7 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
|
|
|
629
633
|
[x: string]: unknown;
|
|
630
634
|
from: string;
|
|
631
635
|
to: string;
|
|
632
|
-
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";
|
|
636
|
+
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";
|
|
633
637
|
description?: string | string[] | undefined;
|
|
634
638
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
635
639
|
strength?: number | undefined;
|
|
@@ -720,7 +724,7 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
|
|
|
720
724
|
[x: string]: unknown;
|
|
721
725
|
from: string;
|
|
722
726
|
to: string;
|
|
723
|
-
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";
|
|
727
|
+
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";
|
|
724
728
|
description?: string | string[] | undefined;
|
|
725
729
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
726
730
|
strength?: number | undefined;
|
|
@@ -919,8 +923,9 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
|
|
|
919
923
|
requires: "requires";
|
|
920
924
|
disables: "disables";
|
|
921
925
|
influence: "influence";
|
|
926
|
+
justifies: "justifies";
|
|
922
927
|
}> & {
|
|
923
|
-
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";
|
|
928
|
+
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";
|
|
924
929
|
};
|
|
925
930
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
926
931
|
is(value: unknown): value is string | string[];
|
|
@@ -939,7 +944,7 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
|
|
|
939
944
|
[x: string]: unknown;
|
|
940
945
|
from: string;
|
|
941
946
|
to: string;
|
|
942
|
-
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";
|
|
947
|
+
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";
|
|
943
948
|
description?: string | string[] | undefined;
|
|
944
949
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
945
950
|
strength?: number | undefined;
|
|
@@ -1030,7 +1035,7 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
|
|
|
1030
1035
|
[x: string]: unknown;
|
|
1031
1036
|
from: string;
|
|
1032
1037
|
to: string;
|
|
1033
|
-
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";
|
|
1038
|
+
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";
|
|
1034
1039
|
description?: string | string[] | undefined;
|
|
1035
1040
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
1036
1041
|
strength?: number | undefined;
|
|
@@ -1074,8 +1079,9 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
|
|
|
1074
1079
|
requires: "requires";
|
|
1075
1080
|
disables: "disables";
|
|
1076
1081
|
influence: "influence";
|
|
1082
|
+
justifies: "justifies";
|
|
1077
1083
|
}> & {
|
|
1078
|
-
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";
|
|
1084
|
+
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";
|
|
1079
1085
|
};
|
|
1080
1086
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
1081
1087
|
is(value: unknown): value is string | string[];
|
|
@@ -1094,7 +1100,7 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
|
|
|
1094
1100
|
[x: string]: unknown;
|
|
1095
1101
|
from: string;
|
|
1096
1102
|
to: string;
|
|
1097
|
-
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";
|
|
1103
|
+
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";
|
|
1098
1104
|
description?: string | string[] | undefined;
|
|
1099
1105
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
1100
1106
|
strength?: number | undefined;
|
|
@@ -1129,8 +1135,9 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
|
|
|
1129
1135
|
requires: "requires";
|
|
1130
1136
|
disables: "disables";
|
|
1131
1137
|
influence: "influence";
|
|
1138
|
+
justifies: "justifies";
|
|
1132
1139
|
}> & {
|
|
1133
|
-
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";
|
|
1140
|
+
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";
|
|
1134
1141
|
};
|
|
1135
1142
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
1136
1143
|
is(value: unknown): value is string | string[];
|
|
@@ -1149,7 +1156,7 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
|
|
|
1149
1156
|
[x: string]: unknown;
|
|
1150
1157
|
from: string;
|
|
1151
1158
|
to: string;
|
|
1152
|
-
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";
|
|
1159
|
+
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";
|
|
1153
1160
|
description?: string | string[] | undefined;
|
|
1154
1161
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
1155
1162
|
strength?: number | undefined;
|
|
@@ -185,8 +185,9 @@ export declare const queryNodesOp: import("./define-operation.js").DefinedOperat
|
|
|
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 queryNodesOp: import("./define-operation.js").DefinedOperat
|
|
|
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 queryNodesOp: import("./define-operation.js").DefinedOperat
|
|
|
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 queryNodesOp: import("./define-operation.js").DefinedOperat
|
|
|
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 queryNodesOp: import("./define-operation.js").DefinedOperat
|
|
|
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 queryNodesOp: import("./define-operation.js").DefinedOperat
|
|
|
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;
|
|
@@ -185,8 +185,9 @@ export declare const queryRelationshipsOp: import("./define-operation.js").Defin
|
|
|
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 queryRelationshipsOp: import("./define-operation.js").Defin
|
|
|
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 queryRelationshipsOp: import("./define-operation.js").Defin
|
|
|
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;
|
|
@@ -342,8 +343,9 @@ export declare const queryRelationshipsOp: import("./define-operation.js").Defin
|
|
|
342
343
|
requires: "requires";
|
|
343
344
|
disables: "disables";
|
|
344
345
|
influence: "influence";
|
|
346
|
+
justifies: "justifies";
|
|
345
347
|
}> & {
|
|
346
|
-
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";
|
|
348
|
+
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";
|
|
347
349
|
};
|
|
348
350
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
349
351
|
is(value: unknown): value is string | string[];
|
|
@@ -362,7 +364,7 @@ export declare const queryRelationshipsOp: import("./define-operation.js").Defin
|
|
|
362
364
|
[x: string]: unknown;
|
|
363
365
|
from: string;
|
|
364
366
|
to: string;
|
|
365
|
-
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";
|
|
367
|
+
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";
|
|
366
368
|
description?: string | string[] | undefined;
|
|
367
369
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
368
370
|
strength?: number | undefined;
|