sysprom 1.19.0 → 1.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -0
- package/dist/schema.json +1 -0
- package/dist/src/endpoint-types.js +5 -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/graph-decision.d.ts +4 -3
- package/dist/src/operations/graph-dependency.d.ts +4 -3
- package/dist/src/operations/graph-refinement.d.ts +4 -3
- package/dist/src/operations/graph.d.ts +4 -3
- 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 +4 -3
- 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 +1 -0
- package/package.json +1 -1
- package/schema.json +1 -0
package/README.md
CHANGED
|
@@ -273,6 +273,9 @@ Recommended relationship usage:
|
|
|
273
273
|
|
|
274
274
|
- `refines`: tighten intent into concepts and concepts into capabilities
|
|
275
275
|
- `part_of`: decompose concepts, protocols, capabilities, and architecture structures
|
|
276
|
+
- `orchestrates`: connect abstract workflow machines to executable milestones, stages, gates, or artefact flows
|
|
277
|
+
- `precedes`: order milestones, stages, and gates within an executable flow
|
|
278
|
+
- `routes_to`: model artefact or data movement between artefact flows, stages, and artefacts
|
|
276
279
|
- `realises`: connect design structures to implementation structures
|
|
277
280
|
- `produces`: connect capabilities or stages to the artefacts they generate
|
|
278
281
|
- `performs`: connect roles to capabilities, stages, protocols, and operational concepts
|
package/dist/schema.json
CHANGED
|
@@ -223,6 +223,11 @@ export const RELATIONSHIP_ENDPOINT_TYPES = {
|
|
|
223
223
|
from: ["artefact_flow"],
|
|
224
224
|
to: ["artefact_flow", "stage", "artefact"],
|
|
225
225
|
},
|
|
226
|
+
// Orchestrates — abstract workflow nodes direct executable flow nodes
|
|
227
|
+
orchestrates: {
|
|
228
|
+
from: ["concept", "protocol", "capability"],
|
|
229
|
+
to: ["milestone", "stage", "gate", "artefact_flow"],
|
|
230
|
+
},
|
|
226
231
|
// Governed by — governance relationships
|
|
227
232
|
governed_by: {
|
|
228
233
|
from: [
|
|
@@ -183,6 +183,7 @@ export declare const addNodeOp: import("./define-operation.js").DefinedOperation
|
|
|
183
183
|
must_follow: "must_follow";
|
|
184
184
|
blocks: "blocks";
|
|
185
185
|
routes_to: "routes_to";
|
|
186
|
+
orchestrates: "orchestrates";
|
|
186
187
|
governed_by: "governed_by";
|
|
187
188
|
modifies: "modifies";
|
|
188
189
|
triggered_by: "triggered_by";
|
|
@@ -196,7 +197,7 @@ export declare const addNodeOp: import("./define-operation.js").DefinedOperation
|
|
|
196
197
|
influence: "influence";
|
|
197
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" | "justifies";
|
|
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" | "orchestrates" | "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 addNodeOp: import("./define-operation.js").DefinedOperation
|
|
|
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" | "justifies";
|
|
219
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "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 addNodeOp: import("./define-operation.js").DefinedOperation
|
|
|
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" | "justifies";
|
|
310
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "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;
|
|
@@ -492,6 +493,7 @@ export declare const addNodeOp: import("./define-operation.js").DefinedOperation
|
|
|
492
493
|
must_follow: "must_follow";
|
|
493
494
|
blocks: "blocks";
|
|
494
495
|
routes_to: "routes_to";
|
|
496
|
+
orchestrates: "orchestrates";
|
|
495
497
|
governed_by: "governed_by";
|
|
496
498
|
modifies: "modifies";
|
|
497
499
|
triggered_by: "triggered_by";
|
|
@@ -505,7 +507,7 @@ export declare const addNodeOp: import("./define-operation.js").DefinedOperation
|
|
|
505
507
|
influence: "influence";
|
|
506
508
|
justifies: "justifies";
|
|
507
509
|
}> & {
|
|
508
|
-
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";
|
|
510
|
+
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" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
509
511
|
};
|
|
510
512
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
511
513
|
is(value: unknown): value is string | string[];
|
|
@@ -524,7 +526,7 @@ export declare const addNodeOp: import("./define-operation.js").DefinedOperation
|
|
|
524
526
|
[x: string]: unknown;
|
|
525
527
|
from: string;
|
|
526
528
|
to: string;
|
|
527
|
-
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";
|
|
529
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
528
530
|
description?: string | string[] | undefined;
|
|
529
531
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
530
532
|
strength?: number | undefined;
|
|
@@ -615,7 +617,7 @@ export declare const addNodeOp: import("./define-operation.js").DefinedOperation
|
|
|
615
617
|
[x: string]: unknown;
|
|
616
618
|
from: string;
|
|
617
619
|
to: string;
|
|
618
|
-
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";
|
|
620
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
619
621
|
description?: string | string[] | undefined;
|
|
620
622
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
621
623
|
strength?: number | undefined;
|
|
@@ -806,6 +808,7 @@ export declare const addNodeOp: import("./define-operation.js").DefinedOperation
|
|
|
806
808
|
must_follow: "must_follow";
|
|
807
809
|
blocks: "blocks";
|
|
808
810
|
routes_to: "routes_to";
|
|
811
|
+
orchestrates: "orchestrates";
|
|
809
812
|
governed_by: "governed_by";
|
|
810
813
|
modifies: "modifies";
|
|
811
814
|
triggered_by: "triggered_by";
|
|
@@ -819,7 +822,7 @@ export declare const addNodeOp: import("./define-operation.js").DefinedOperation
|
|
|
819
822
|
influence: "influence";
|
|
820
823
|
justifies: "justifies";
|
|
821
824
|
}> & {
|
|
822
|
-
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";
|
|
825
|
+
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" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
823
826
|
};
|
|
824
827
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
825
828
|
is(value: unknown): value is string | string[];
|
|
@@ -838,7 +841,7 @@ export declare const addNodeOp: import("./define-operation.js").DefinedOperation
|
|
|
838
841
|
[x: string]: unknown;
|
|
839
842
|
from: string;
|
|
840
843
|
to: string;
|
|
841
|
-
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";
|
|
844
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
842
845
|
description?: string | string[] | undefined;
|
|
843
846
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
844
847
|
strength?: number | undefined;
|
|
@@ -929,7 +932,7 @@ export declare const addNodeOp: import("./define-operation.js").DefinedOperation
|
|
|
929
932
|
[x: string]: unknown;
|
|
930
933
|
from: string;
|
|
931
934
|
to: string;
|
|
932
|
-
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";
|
|
935
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
933
936
|
description?: string | string[] | undefined;
|
|
934
937
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
935
938
|
strength?: number | undefined;
|
|
@@ -177,6 +177,7 @@ export declare const addPlanTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
177
177
|
must_follow: "must_follow";
|
|
178
178
|
blocks: "blocks";
|
|
179
179
|
routes_to: "routes_to";
|
|
180
|
+
orchestrates: "orchestrates";
|
|
180
181
|
governed_by: "governed_by";
|
|
181
182
|
modifies: "modifies";
|
|
182
183
|
triggered_by: "triggered_by";
|
|
@@ -190,7 +191,7 @@ export declare const addPlanTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
190
191
|
influence: "influence";
|
|
191
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" | "justifies";
|
|
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" | "orchestrates" | "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 addPlanTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
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" | "justifies";
|
|
213
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "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 addPlanTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
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" | "justifies";
|
|
304
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "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;
|
|
@@ -489,6 +490,7 @@ export declare const addPlanTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
489
490
|
must_follow: "must_follow";
|
|
490
491
|
blocks: "blocks";
|
|
491
492
|
routes_to: "routes_to";
|
|
493
|
+
orchestrates: "orchestrates";
|
|
492
494
|
governed_by: "governed_by";
|
|
493
495
|
modifies: "modifies";
|
|
494
496
|
triggered_by: "triggered_by";
|
|
@@ -502,7 +504,7 @@ export declare const addPlanTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
502
504
|
influence: "influence";
|
|
503
505
|
justifies: "justifies";
|
|
504
506
|
}> & {
|
|
505
|
-
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";
|
|
507
|
+
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" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
506
508
|
};
|
|
507
509
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
508
510
|
is(value: unknown): value is string | string[];
|
|
@@ -521,7 +523,7 @@ export declare const addPlanTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
521
523
|
[x: string]: unknown;
|
|
522
524
|
from: string;
|
|
523
525
|
to: string;
|
|
524
|
-
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";
|
|
526
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
525
527
|
description?: string | string[] | undefined;
|
|
526
528
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
527
529
|
strength?: number | undefined;
|
|
@@ -612,7 +614,7 @@ export declare const addPlanTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
612
614
|
[x: string]: unknown;
|
|
613
615
|
from: string;
|
|
614
616
|
to: string;
|
|
615
|
-
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";
|
|
617
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
616
618
|
description?: string | string[] | undefined;
|
|
617
619
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
618
620
|
strength?: number | undefined;
|
|
@@ -177,6 +177,7 @@ export declare const addRelationshipOp: import("./define-operation.js").DefinedO
|
|
|
177
177
|
must_follow: "must_follow";
|
|
178
178
|
blocks: "blocks";
|
|
179
179
|
routes_to: "routes_to";
|
|
180
|
+
orchestrates: "orchestrates";
|
|
180
181
|
governed_by: "governed_by";
|
|
181
182
|
modifies: "modifies";
|
|
182
183
|
triggered_by: "triggered_by";
|
|
@@ -190,7 +191,7 @@ export declare const addRelationshipOp: import("./define-operation.js").DefinedO
|
|
|
190
191
|
influence: "influence";
|
|
191
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" | "justifies";
|
|
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" | "orchestrates" | "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 addRelationshipOp: import("./define-operation.js").DefinedO
|
|
|
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" | "justifies";
|
|
213
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "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 addRelationshipOp: import("./define-operation.js").DefinedO
|
|
|
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" | "justifies";
|
|
304
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "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;
|
|
@@ -332,6 +333,7 @@ export declare const addRelationshipOp: import("./define-operation.js").DefinedO
|
|
|
332
333
|
must_follow: "must_follow";
|
|
333
334
|
blocks: "blocks";
|
|
334
335
|
routes_to: "routes_to";
|
|
336
|
+
orchestrates: "orchestrates";
|
|
335
337
|
governed_by: "governed_by";
|
|
336
338
|
modifies: "modifies";
|
|
337
339
|
triggered_by: "triggered_by";
|
|
@@ -345,7 +347,7 @@ export declare const addRelationshipOp: import("./define-operation.js").DefinedO
|
|
|
345
347
|
influence: "influence";
|
|
346
348
|
justifies: "justifies";
|
|
347
349
|
}> & {
|
|
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";
|
|
350
|
+
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" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
349
351
|
};
|
|
350
352
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
351
353
|
is(value: unknown): value is string | string[];
|
|
@@ -364,7 +366,7 @@ export declare const addRelationshipOp: import("./define-operation.js").DefinedO
|
|
|
364
366
|
[x: string]: unknown;
|
|
365
367
|
from: string;
|
|
366
368
|
to: string;
|
|
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";
|
|
369
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
368
370
|
description?: string | string[] | undefined;
|
|
369
371
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
370
372
|
strength?: number | undefined;
|
|
@@ -543,6 +545,7 @@ export declare const addRelationshipOp: import("./define-operation.js").DefinedO
|
|
|
543
545
|
must_follow: "must_follow";
|
|
544
546
|
blocks: "blocks";
|
|
545
547
|
routes_to: "routes_to";
|
|
548
|
+
orchestrates: "orchestrates";
|
|
546
549
|
governed_by: "governed_by";
|
|
547
550
|
modifies: "modifies";
|
|
548
551
|
triggered_by: "triggered_by";
|
|
@@ -556,7 +559,7 @@ export declare const addRelationshipOp: import("./define-operation.js").DefinedO
|
|
|
556
559
|
influence: "influence";
|
|
557
560
|
justifies: "justifies";
|
|
558
561
|
}> & {
|
|
559
|
-
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";
|
|
562
|
+
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" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
560
563
|
};
|
|
561
564
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
562
565
|
is(value: unknown): value is string | string[];
|
|
@@ -575,7 +578,7 @@ export declare const addRelationshipOp: import("./define-operation.js").DefinedO
|
|
|
575
578
|
[x: string]: unknown;
|
|
576
579
|
from: string;
|
|
577
580
|
to: string;
|
|
578
|
-
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";
|
|
581
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
579
582
|
description?: string | string[] | undefined;
|
|
580
583
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
581
584
|
strength?: number | undefined;
|
|
@@ -666,7 +669,7 @@ export declare const addRelationshipOp: import("./define-operation.js").DefinedO
|
|
|
666
669
|
[x: string]: unknown;
|
|
667
670
|
from: string;
|
|
668
671
|
to: string;
|
|
669
|
-
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";
|
|
672
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
670
673
|
description?: string | string[] | undefined;
|
|
671
674
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
672
675
|
strength?: number | undefined;
|
|
@@ -178,6 +178,7 @@ export declare const checkOp: import("./define-operation.js").DefinedOperation<z
|
|
|
178
178
|
must_follow: "must_follow";
|
|
179
179
|
blocks: "blocks";
|
|
180
180
|
routes_to: "routes_to";
|
|
181
|
+
orchestrates: "orchestrates";
|
|
181
182
|
governed_by: "governed_by";
|
|
182
183
|
modifies: "modifies";
|
|
183
184
|
triggered_by: "triggered_by";
|
|
@@ -191,7 +192,7 @@ export declare const checkOp: import("./define-operation.js").DefinedOperation<z
|
|
|
191
192
|
influence: "influence";
|
|
192
193
|
justifies: "justifies";
|
|
193
194
|
}> & {
|
|
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";
|
|
195
|
+
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" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
195
196
|
};
|
|
196
197
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
197
198
|
is(value: unknown): value is string | string[];
|
|
@@ -210,7 +211,7 @@ export declare const checkOp: import("./define-operation.js").DefinedOperation<z
|
|
|
210
211
|
[x: string]: unknown;
|
|
211
212
|
from: string;
|
|
212
213
|
to: string;
|
|
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";
|
|
214
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
214
215
|
description?: string | string[] | undefined;
|
|
215
216
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
216
217
|
strength?: number | undefined;
|
|
@@ -301,7 +302,7 @@ export declare const checkOp: import("./define-operation.js").DefinedOperation<z
|
|
|
301
302
|
[x: string]: unknown;
|
|
302
303
|
from: string;
|
|
303
304
|
to: string;
|
|
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";
|
|
305
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
305
306
|
description?: string | string[] | undefined;
|
|
306
307
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
307
308
|
strength?: number | undefined;
|
|
@@ -174,6 +174,7 @@ export declare const graphDecisionOp: import("./define-operation.js").DefinedOpe
|
|
|
174
174
|
must_follow: "must_follow";
|
|
175
175
|
blocks: "blocks";
|
|
176
176
|
routes_to: "routes_to";
|
|
177
|
+
orchestrates: "orchestrates";
|
|
177
178
|
governed_by: "governed_by";
|
|
178
179
|
modifies: "modifies";
|
|
179
180
|
triggered_by: "triggered_by";
|
|
@@ -187,7 +188,7 @@ export declare const graphDecisionOp: import("./define-operation.js").DefinedOpe
|
|
|
187
188
|
influence: "influence";
|
|
188
189
|
justifies: "justifies";
|
|
189
190
|
}> & {
|
|
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";
|
|
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" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
191
192
|
};
|
|
192
193
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
193
194
|
is(value: unknown): value is string | string[];
|
|
@@ -206,7 +207,7 @@ export declare const graphDecisionOp: import("./define-operation.js").DefinedOpe
|
|
|
206
207
|
[x: string]: unknown;
|
|
207
208
|
from: string;
|
|
208
209
|
to: string;
|
|
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";
|
|
210
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
210
211
|
description?: string | string[] | undefined;
|
|
211
212
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
212
213
|
strength?: number | undefined;
|
|
@@ -297,7 +298,7 @@ export declare const graphDecisionOp: import("./define-operation.js").DefinedOpe
|
|
|
297
298
|
[x: string]: unknown;
|
|
298
299
|
from: string;
|
|
299
300
|
to: string;
|
|
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";
|
|
301
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
301
302
|
description?: string | string[] | undefined;
|
|
302
303
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
303
304
|
strength?: number | undefined;
|
|
@@ -174,6 +174,7 @@ export declare const graphDependencyOp: import("./define-operation.js").DefinedO
|
|
|
174
174
|
must_follow: "must_follow";
|
|
175
175
|
blocks: "blocks";
|
|
176
176
|
routes_to: "routes_to";
|
|
177
|
+
orchestrates: "orchestrates";
|
|
177
178
|
governed_by: "governed_by";
|
|
178
179
|
modifies: "modifies";
|
|
179
180
|
triggered_by: "triggered_by";
|
|
@@ -187,7 +188,7 @@ export declare const graphDependencyOp: import("./define-operation.js").DefinedO
|
|
|
187
188
|
influence: "influence";
|
|
188
189
|
justifies: "justifies";
|
|
189
190
|
}> & {
|
|
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";
|
|
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" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
191
192
|
};
|
|
192
193
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
193
194
|
is(value: unknown): value is string | string[];
|
|
@@ -206,7 +207,7 @@ export declare const graphDependencyOp: import("./define-operation.js").DefinedO
|
|
|
206
207
|
[x: string]: unknown;
|
|
207
208
|
from: string;
|
|
208
209
|
to: string;
|
|
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";
|
|
210
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
210
211
|
description?: string | string[] | undefined;
|
|
211
212
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
212
213
|
strength?: number | undefined;
|
|
@@ -297,7 +298,7 @@ export declare const graphDependencyOp: import("./define-operation.js").DefinedO
|
|
|
297
298
|
[x: string]: unknown;
|
|
298
299
|
from: string;
|
|
299
300
|
to: string;
|
|
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";
|
|
301
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
301
302
|
description?: string | string[] | undefined;
|
|
302
303
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
303
304
|
strength?: number | undefined;
|
|
@@ -174,6 +174,7 @@ export declare const graphRefinementOp: import("./define-operation.js").DefinedO
|
|
|
174
174
|
must_follow: "must_follow";
|
|
175
175
|
blocks: "blocks";
|
|
176
176
|
routes_to: "routes_to";
|
|
177
|
+
orchestrates: "orchestrates";
|
|
177
178
|
governed_by: "governed_by";
|
|
178
179
|
modifies: "modifies";
|
|
179
180
|
triggered_by: "triggered_by";
|
|
@@ -187,7 +188,7 @@ export declare const graphRefinementOp: import("./define-operation.js").DefinedO
|
|
|
187
188
|
influence: "influence";
|
|
188
189
|
justifies: "justifies";
|
|
189
190
|
}> & {
|
|
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";
|
|
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" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
191
192
|
};
|
|
192
193
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
193
194
|
is(value: unknown): value is string | string[];
|
|
@@ -206,7 +207,7 @@ export declare const graphRefinementOp: import("./define-operation.js").DefinedO
|
|
|
206
207
|
[x: string]: unknown;
|
|
207
208
|
from: string;
|
|
208
209
|
to: string;
|
|
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";
|
|
210
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
210
211
|
description?: string | string[] | undefined;
|
|
211
212
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
212
213
|
strength?: number | undefined;
|
|
@@ -297,7 +298,7 @@ export declare const graphRefinementOp: import("./define-operation.js").DefinedO
|
|
|
297
298
|
[x: string]: unknown;
|
|
298
299
|
from: string;
|
|
299
300
|
to: string;
|
|
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";
|
|
301
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
301
302
|
description?: string | string[] | undefined;
|
|
302
303
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
303
304
|
strength?: number | undefined;
|
|
@@ -174,6 +174,7 @@ export declare const graphOp: import("./define-operation.js").DefinedOperation<z
|
|
|
174
174
|
must_follow: "must_follow";
|
|
175
175
|
blocks: "blocks";
|
|
176
176
|
routes_to: "routes_to";
|
|
177
|
+
orchestrates: "orchestrates";
|
|
177
178
|
governed_by: "governed_by";
|
|
178
179
|
modifies: "modifies";
|
|
179
180
|
triggered_by: "triggered_by";
|
|
@@ -187,7 +188,7 @@ export declare const graphOp: import("./define-operation.js").DefinedOperation<z
|
|
|
187
188
|
influence: "influence";
|
|
188
189
|
justifies: "justifies";
|
|
189
190
|
}> & {
|
|
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";
|
|
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" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
191
192
|
};
|
|
192
193
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
193
194
|
is(value: unknown): value is string | string[];
|
|
@@ -206,7 +207,7 @@ export declare const graphOp: import("./define-operation.js").DefinedOperation<z
|
|
|
206
207
|
[x: string]: unknown;
|
|
207
208
|
from: string;
|
|
208
209
|
to: string;
|
|
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";
|
|
210
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
210
211
|
description?: string | string[] | undefined;
|
|
211
212
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
212
213
|
strength?: number | undefined;
|
|
@@ -297,7 +298,7 @@ export declare const graphOp: import("./define-operation.js").DefinedOperation<z
|
|
|
297
298
|
[x: string]: unknown;
|
|
298
299
|
from: string;
|
|
299
300
|
to: string;
|
|
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";
|
|
301
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
301
302
|
description?: string | string[] | undefined;
|
|
302
303
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
303
304
|
strength?: number | undefined;
|
|
@@ -254,6 +254,7 @@ export declare const inferCompletenessOp: import("./define-operation.js").Define
|
|
|
254
254
|
must_follow: "must_follow";
|
|
255
255
|
blocks: "blocks";
|
|
256
256
|
routes_to: "routes_to";
|
|
257
|
+
orchestrates: "orchestrates";
|
|
257
258
|
governed_by: "governed_by";
|
|
258
259
|
modifies: "modifies";
|
|
259
260
|
triggered_by: "triggered_by";
|
|
@@ -267,7 +268,7 @@ export declare const inferCompletenessOp: import("./define-operation.js").Define
|
|
|
267
268
|
influence: "influence";
|
|
268
269
|
justifies: "justifies";
|
|
269
270
|
}> & {
|
|
270
|
-
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";
|
|
271
|
+
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" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
271
272
|
};
|
|
272
273
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
273
274
|
is(value: unknown): value is string | string[];
|
|
@@ -286,7 +287,7 @@ export declare const inferCompletenessOp: import("./define-operation.js").Define
|
|
|
286
287
|
[x: string]: unknown;
|
|
287
288
|
from: string;
|
|
288
289
|
to: string;
|
|
289
|
-
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";
|
|
290
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
290
291
|
description?: string | string[] | undefined;
|
|
291
292
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
292
293
|
strength?: number | undefined;
|
|
@@ -377,7 +378,7 @@ export declare const inferCompletenessOp: import("./define-operation.js").Define
|
|
|
377
378
|
[x: string]: unknown;
|
|
378
379
|
from: string;
|
|
379
380
|
to: string;
|
|
380
|
-
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";
|
|
381
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
381
382
|
description?: string | string[] | undefined;
|
|
382
383
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
383
384
|
strength?: number | undefined;
|