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
|
@@ -173,6 +173,7 @@ declare const TraceNodeSchema: z.ZodObject<{
|
|
|
173
173
|
must_follow: "must_follow";
|
|
174
174
|
blocks: "blocks";
|
|
175
175
|
routes_to: "routes_to";
|
|
176
|
+
orchestrates: "orchestrates";
|
|
176
177
|
governed_by: "governed_by";
|
|
177
178
|
modifies: "modifies";
|
|
178
179
|
triggered_by: "triggered_by";
|
|
@@ -186,7 +187,7 @@ declare const TraceNodeSchema: z.ZodObject<{
|
|
|
186
187
|
influence: "influence";
|
|
187
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" | "justifies";
|
|
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" | "orchestrates" | "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 @@ declare const TraceNodeSchema: z.ZodObject<{
|
|
|
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" | "justifies";
|
|
209
|
+
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";
|
|
209
210
|
description?: string | string[] | undefined;
|
|
210
211
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
211
212
|
strength?: number | undefined;
|
|
@@ -296,7 +297,7 @@ declare const TraceNodeSchema: z.ZodObject<{
|
|
|
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" | "justifies";
|
|
300
|
+
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";
|
|
300
301
|
description?: string | string[] | undefined;
|
|
301
302
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
302
303
|
strength?: number | undefined;
|
|
@@ -490,6 +491,7 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
490
491
|
must_follow: "must_follow";
|
|
491
492
|
blocks: "blocks";
|
|
492
493
|
routes_to: "routes_to";
|
|
494
|
+
orchestrates: "orchestrates";
|
|
493
495
|
governed_by: "governed_by";
|
|
494
496
|
modifies: "modifies";
|
|
495
497
|
triggered_by: "triggered_by";
|
|
@@ -503,7 +505,7 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
503
505
|
influence: "influence";
|
|
504
506
|
justifies: "justifies";
|
|
505
507
|
}> & {
|
|
506
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
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" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
507
509
|
};
|
|
508
510
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
509
511
|
is(value: unknown): value is string | string[];
|
|
@@ -522,7 +524,7 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
522
524
|
[x: string]: unknown;
|
|
523
525
|
from: string;
|
|
524
526
|
to: string;
|
|
525
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
527
|
+
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";
|
|
526
528
|
description?: string | string[] | undefined;
|
|
527
529
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
528
530
|
strength?: number | undefined;
|
|
@@ -613,7 +615,7 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
613
615
|
[x: string]: unknown;
|
|
614
616
|
from: string;
|
|
615
617
|
to: string;
|
|
616
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
618
|
+
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";
|
|
617
619
|
description?: string | string[] | undefined;
|
|
618
620
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
619
621
|
strength?: number | undefined;
|
|
@@ -802,6 +804,7 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
802
804
|
must_follow: "must_follow";
|
|
803
805
|
blocks: "blocks";
|
|
804
806
|
routes_to: "routes_to";
|
|
807
|
+
orchestrates: "orchestrates";
|
|
805
808
|
governed_by: "governed_by";
|
|
806
809
|
modifies: "modifies";
|
|
807
810
|
triggered_by: "triggered_by";
|
|
@@ -815,7 +818,7 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
815
818
|
influence: "influence";
|
|
816
819
|
justifies: "justifies";
|
|
817
820
|
}> & {
|
|
818
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
821
|
+
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";
|
|
819
822
|
};
|
|
820
823
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
821
824
|
is(value: unknown): value is string | string[];
|
|
@@ -834,7 +837,7 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
834
837
|
[x: string]: unknown;
|
|
835
838
|
from: string;
|
|
836
839
|
to: string;
|
|
837
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
840
|
+
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";
|
|
838
841
|
description?: string | string[] | undefined;
|
|
839
842
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
840
843
|
strength?: number | undefined;
|
|
@@ -925,7 +928,7 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
925
928
|
[x: string]: unknown;
|
|
926
929
|
from: string;
|
|
927
930
|
to: string;
|
|
928
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
931
|
+
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";
|
|
929
932
|
description?: string | string[] | undefined;
|
|
930
933
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
931
934
|
strength?: number | undefined;
|
|
@@ -174,6 +174,7 @@ export declare const updateMetadataOp: import("./define-operation.js").DefinedOp
|
|
|
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 updateMetadataOp: import("./define-operation.js").DefinedOp
|
|
|
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 updateMetadataOp: import("./define-operation.js").DefinedOp
|
|
|
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 updateMetadataOp: import("./define-operation.js").DefinedOp
|
|
|
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;
|
|
@@ -485,6 +486,7 @@ export declare const updateMetadataOp: import("./define-operation.js").DefinedOp
|
|
|
485
486
|
must_follow: "must_follow";
|
|
486
487
|
blocks: "blocks";
|
|
487
488
|
routes_to: "routes_to";
|
|
489
|
+
orchestrates: "orchestrates";
|
|
488
490
|
governed_by: "governed_by";
|
|
489
491
|
modifies: "modifies";
|
|
490
492
|
triggered_by: "triggered_by";
|
|
@@ -498,7 +500,7 @@ export declare const updateMetadataOp: import("./define-operation.js").DefinedOp
|
|
|
498
500
|
influence: "influence";
|
|
499
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" | "justifies";
|
|
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" | "orchestrates" | "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 updateMetadataOp: import("./define-operation.js").DefinedOp
|
|
|
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" | "justifies";
|
|
522
|
+
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";
|
|
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 updateMetadataOp: import("./define-operation.js").DefinedOp
|
|
|
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" | "justifies";
|
|
613
|
+
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";
|
|
612
614
|
description?: string | string[] | undefined;
|
|
613
615
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
614
616
|
strength?: number | undefined;
|
|
@@ -177,6 +177,7 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
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 updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
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 updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
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 updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
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;
|
|
@@ -623,6 +624,7 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
623
624
|
must_follow: "must_follow";
|
|
624
625
|
blocks: "blocks";
|
|
625
626
|
routes_to: "routes_to";
|
|
627
|
+
orchestrates: "orchestrates";
|
|
626
628
|
governed_by: "governed_by";
|
|
627
629
|
modifies: "modifies";
|
|
628
630
|
triggered_by: "triggered_by";
|
|
@@ -636,7 +638,7 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
636
638
|
influence: "influence";
|
|
637
639
|
justifies: "justifies";
|
|
638
640
|
}> & {
|
|
639
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
641
|
+
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";
|
|
640
642
|
};
|
|
641
643
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
642
644
|
is(value: unknown): value is string | string[];
|
|
@@ -655,7 +657,7 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
655
657
|
[x: string]: unknown;
|
|
656
658
|
from: string;
|
|
657
659
|
to: string;
|
|
658
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
660
|
+
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";
|
|
659
661
|
description?: string | string[] | undefined;
|
|
660
662
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
661
663
|
strength?: number | undefined;
|
|
@@ -865,6 +867,7 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
865
867
|
must_follow: "must_follow";
|
|
866
868
|
blocks: "blocks";
|
|
867
869
|
routes_to: "routes_to";
|
|
870
|
+
orchestrates: "orchestrates";
|
|
868
871
|
governed_by: "governed_by";
|
|
869
872
|
modifies: "modifies";
|
|
870
873
|
triggered_by: "triggered_by";
|
|
@@ -878,7 +881,7 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
878
881
|
influence: "influence";
|
|
879
882
|
justifies: "justifies";
|
|
880
883
|
}> & {
|
|
881
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
884
|
+
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";
|
|
882
885
|
};
|
|
883
886
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
884
887
|
is(value: unknown): value is string | string[];
|
|
@@ -897,7 +900,7 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
897
900
|
[x: string]: unknown;
|
|
898
901
|
from: string;
|
|
899
902
|
to: string;
|
|
900
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
903
|
+
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";
|
|
901
904
|
description?: string | string[] | undefined;
|
|
902
905
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
903
906
|
strength?: number | undefined;
|
|
@@ -988,7 +991,7 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
988
991
|
[x: string]: unknown;
|
|
989
992
|
from: string;
|
|
990
993
|
to: string;
|
|
991
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
994
|
+
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";
|
|
992
995
|
description?: string | string[] | undefined;
|
|
993
996
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
994
997
|
strength?: number | undefined;
|
|
@@ -177,6 +177,7 @@ export declare const updatePlanTaskOp: import("./define-operation.js").DefinedOp
|
|
|
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 updatePlanTaskOp: import("./define-operation.js").DefinedOp
|
|
|
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 updatePlanTaskOp: import("./define-operation.js").DefinedOp
|
|
|
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 updatePlanTaskOp: import("./define-operation.js").DefinedOp
|
|
|
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;
|
|
@@ -490,6 +491,7 @@ export declare const updatePlanTaskOp: import("./define-operation.js").DefinedOp
|
|
|
490
491
|
must_follow: "must_follow";
|
|
491
492
|
blocks: "blocks";
|
|
492
493
|
routes_to: "routes_to";
|
|
494
|
+
orchestrates: "orchestrates";
|
|
493
495
|
governed_by: "governed_by";
|
|
494
496
|
modifies: "modifies";
|
|
495
497
|
triggered_by: "triggered_by";
|
|
@@ -503,7 +505,7 @@ export declare const updatePlanTaskOp: import("./define-operation.js").DefinedOp
|
|
|
503
505
|
influence: "influence";
|
|
504
506
|
justifies: "justifies";
|
|
505
507
|
}> & {
|
|
506
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
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" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
507
509
|
};
|
|
508
510
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
509
511
|
is(value: unknown): value is string | string[];
|
|
@@ -522,7 +524,7 @@ export declare const updatePlanTaskOp: import("./define-operation.js").DefinedOp
|
|
|
522
524
|
[x: string]: unknown;
|
|
523
525
|
from: string;
|
|
524
526
|
to: string;
|
|
525
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
527
|
+
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";
|
|
526
528
|
description?: string | string[] | undefined;
|
|
527
529
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
528
530
|
strength?: number | undefined;
|
|
@@ -613,7 +615,7 @@ export declare const updatePlanTaskOp: import("./define-operation.js").DefinedOp
|
|
|
613
615
|
[x: string]: unknown;
|
|
614
616
|
from: string;
|
|
615
617
|
to: string;
|
|
616
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
618
|
+
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";
|
|
617
619
|
description?: string | string[] | undefined;
|
|
618
620
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
619
621
|
strength?: number | undefined;
|
|
@@ -190,6 +190,7 @@ export declare const validateOp: import("./define-operation.js").DefinedOperatio
|
|
|
190
190
|
must_follow: "must_follow";
|
|
191
191
|
blocks: "blocks";
|
|
192
192
|
routes_to: "routes_to";
|
|
193
|
+
orchestrates: "orchestrates";
|
|
193
194
|
governed_by: "governed_by";
|
|
194
195
|
modifies: "modifies";
|
|
195
196
|
triggered_by: "triggered_by";
|
|
@@ -203,7 +204,7 @@ export declare const validateOp: import("./define-operation.js").DefinedOperatio
|
|
|
203
204
|
influence: "influence";
|
|
204
205
|
justifies: "justifies";
|
|
205
206
|
}> & {
|
|
206
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
207
|
+
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";
|
|
207
208
|
};
|
|
208
209
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
209
210
|
is(value: unknown): value is string | string[];
|
|
@@ -222,7 +223,7 @@ export declare const validateOp: import("./define-operation.js").DefinedOperatio
|
|
|
222
223
|
[x: string]: unknown;
|
|
223
224
|
from: string;
|
|
224
225
|
to: string;
|
|
225
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
226
|
+
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";
|
|
226
227
|
description?: string | string[] | undefined;
|
|
227
228
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
228
229
|
strength?: number | undefined;
|
|
@@ -313,7 +314,7 @@ export declare const validateOp: import("./define-operation.js").DefinedOperatio
|
|
|
313
314
|
[x: string]: unknown;
|
|
314
315
|
from: string;
|
|
315
316
|
to: string;
|
|
316
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
317
|
+
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";
|
|
317
318
|
description?: string | string[] | undefined;
|
|
318
319
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
319
320
|
strength?: number | undefined;
|
package/dist/src/schema.d.ts
CHANGED
|
@@ -101,6 +101,7 @@ export declare const RelationshipType: z.ZodEnum<{
|
|
|
101
101
|
must_follow: "must_follow";
|
|
102
102
|
blocks: "blocks";
|
|
103
103
|
routes_to: "routes_to";
|
|
104
|
+
orchestrates: "orchestrates";
|
|
104
105
|
governed_by: "governed_by";
|
|
105
106
|
modifies: "modifies";
|
|
106
107
|
triggered_by: "triggered_by";
|
|
@@ -114,7 +115,7 @@ export declare const RelationshipType: z.ZodEnum<{
|
|
|
114
115
|
influence: "influence";
|
|
115
116
|
justifies: "justifies";
|
|
116
117
|
}> & {
|
|
117
|
-
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";
|
|
118
|
+
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";
|
|
118
119
|
};
|
|
119
120
|
/** A valid relationship type string. */
|
|
120
121
|
export type RelationshipType = z.infer<typeof RelationshipType>;
|
|
@@ -134,6 +135,7 @@ export declare const RELATIONSHIP_TYPE_LABELS: {
|
|
|
134
135
|
readonly must_follow: "Must follow";
|
|
135
136
|
readonly blocks: "Blocks";
|
|
136
137
|
readonly routes_to: "Routes to";
|
|
138
|
+
readonly orchestrates: "Orchestrates";
|
|
137
139
|
readonly governed_by: "Governed by";
|
|
138
140
|
readonly modifies: "Modifies";
|
|
139
141
|
readonly triggered_by: "Triggered by";
|
|
@@ -148,7 +150,7 @@ export declare const RELATIONSHIP_TYPE_LABELS: {
|
|
|
148
150
|
readonly justifies: "Justifies";
|
|
149
151
|
};
|
|
150
152
|
/** Reverse map from human-readable label to relationship type key (e.g. `"Refines"` → `"refines"`). */
|
|
151
|
-
export declare const RELATIONSHIP_LABEL_TO_TYPE: Record<string, "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">;
|
|
153
|
+
export declare const RELATIONSHIP_LABEL_TO_TYPE: Record<string, "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">;
|
|
152
154
|
/** Zod schema for impact polarity (e.g. `"positive"`, `"negative"`, `"neutral"`, `"uncertain"`). */
|
|
153
155
|
export declare const ImpactPolarity: z.ZodEnum<{
|
|
154
156
|
positive: "positive";
|
|
@@ -315,6 +317,7 @@ export declare const Relationship: z.ZodObject<{
|
|
|
315
317
|
must_follow: "must_follow";
|
|
316
318
|
blocks: "blocks";
|
|
317
319
|
routes_to: "routes_to";
|
|
320
|
+
orchestrates: "orchestrates";
|
|
318
321
|
governed_by: "governed_by";
|
|
319
322
|
modifies: "modifies";
|
|
320
323
|
triggered_by: "triggered_by";
|
|
@@ -328,7 +331,7 @@ export declare const Relationship: z.ZodObject<{
|
|
|
328
331
|
influence: "influence";
|
|
329
332
|
justifies: "justifies";
|
|
330
333
|
}> & {
|
|
331
|
-
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";
|
|
334
|
+
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";
|
|
332
335
|
};
|
|
333
336
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
334
337
|
is(value: unknown): value is string | string[];
|
|
@@ -347,7 +350,7 @@ export declare const Relationship: z.ZodObject<{
|
|
|
347
350
|
[x: string]: unknown;
|
|
348
351
|
from: string;
|
|
349
352
|
to: string;
|
|
350
|
-
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";
|
|
353
|
+
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";
|
|
351
354
|
description?: string | string[] | undefined;
|
|
352
355
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
353
356
|
strength?: number | undefined;
|
|
@@ -392,6 +395,7 @@ declare const SysProMDocumentSchema: z.ZodObject<{
|
|
|
392
395
|
must_follow: "must_follow";
|
|
393
396
|
blocks: "blocks";
|
|
394
397
|
routes_to: "routes_to";
|
|
398
|
+
orchestrates: "orchestrates";
|
|
395
399
|
governed_by: "governed_by";
|
|
396
400
|
modifies: "modifies";
|
|
397
401
|
triggered_by: "triggered_by";
|
|
@@ -405,7 +409,7 @@ declare const SysProMDocumentSchema: z.ZodObject<{
|
|
|
405
409
|
influence: "influence";
|
|
406
410
|
justifies: "justifies";
|
|
407
411
|
}> & {
|
|
408
|
-
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";
|
|
412
|
+
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";
|
|
409
413
|
};
|
|
410
414
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
411
415
|
is(value: unknown): value is string | string[];
|
|
@@ -424,7 +428,7 @@ declare const SysProMDocumentSchema: z.ZodObject<{
|
|
|
424
428
|
[x: string]: unknown;
|
|
425
429
|
from: string;
|
|
426
430
|
to: string;
|
|
427
|
-
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";
|
|
431
|
+
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";
|
|
428
432
|
description?: string | string[] | undefined;
|
|
429
433
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
430
434
|
strength?: number | undefined;
|
|
@@ -777,6 +781,7 @@ export declare const SysProMDocument: z.ZodObject<{
|
|
|
777
781
|
must_follow: "must_follow";
|
|
778
782
|
blocks: "blocks";
|
|
779
783
|
routes_to: "routes_to";
|
|
784
|
+
orchestrates: "orchestrates";
|
|
780
785
|
governed_by: "governed_by";
|
|
781
786
|
modifies: "modifies";
|
|
782
787
|
triggered_by: "triggered_by";
|
|
@@ -790,7 +795,7 @@ export declare const SysProMDocument: z.ZodObject<{
|
|
|
790
795
|
influence: "influence";
|
|
791
796
|
justifies: "justifies";
|
|
792
797
|
}> & {
|
|
793
|
-
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";
|
|
798
|
+
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";
|
|
794
799
|
};
|
|
795
800
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
796
801
|
is(value: unknown): value is string | string[];
|
|
@@ -809,7 +814,7 @@ export declare const SysProMDocument: z.ZodObject<{
|
|
|
809
814
|
[x: string]: unknown;
|
|
810
815
|
from: string;
|
|
811
816
|
to: string;
|
|
812
|
-
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";
|
|
817
|
+
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";
|
|
813
818
|
description?: string | string[] | undefined;
|
|
814
819
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
815
820
|
strength?: number | undefined;
|
|
@@ -900,7 +905,7 @@ export declare const SysProMDocument: z.ZodObject<{
|
|
|
900
905
|
[x: string]: unknown;
|
|
901
906
|
from: string;
|
|
902
907
|
to: string;
|
|
903
|
-
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";
|
|
908
|
+
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";
|
|
904
909
|
description?: string | string[] | undefined;
|
|
905
910
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
906
911
|
strength?: number | undefined;
|
|
@@ -1112,7 +1117,7 @@ export declare const Node: z.ZodObject<{
|
|
|
1112
1117
|
[x: string]: unknown;
|
|
1113
1118
|
from: string;
|
|
1114
1119
|
to: string;
|
|
1115
|
-
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";
|
|
1120
|
+
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";
|
|
1116
1121
|
description?: string | string[] | undefined;
|
|
1117
1122
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
1118
1123
|
strength?: number | undefined;
|
package/dist/src/schema.js
CHANGED
package/package.json
CHANGED