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
|
@@ -227,6 +227,7 @@ export declare const inferDerivedOp: import("./define-operation.js").DefinedOper
|
|
|
227
227
|
must_follow: "must_follow";
|
|
228
228
|
blocks: "blocks";
|
|
229
229
|
routes_to: "routes_to";
|
|
230
|
+
orchestrates: "orchestrates";
|
|
230
231
|
governed_by: "governed_by";
|
|
231
232
|
modifies: "modifies";
|
|
232
233
|
triggered_by: "triggered_by";
|
|
@@ -240,7 +241,7 @@ export declare const inferDerivedOp: import("./define-operation.js").DefinedOper
|
|
|
240
241
|
influence: "influence";
|
|
241
242
|
justifies: "justifies";
|
|
242
243
|
}> & {
|
|
243
|
-
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";
|
|
244
|
+
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";
|
|
244
245
|
};
|
|
245
246
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
246
247
|
is(value: unknown): value is string | string[];
|
|
@@ -259,7 +260,7 @@ export declare const inferDerivedOp: import("./define-operation.js").DefinedOper
|
|
|
259
260
|
[x: string]: unknown;
|
|
260
261
|
from: string;
|
|
261
262
|
to: string;
|
|
262
|
-
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";
|
|
263
|
+
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";
|
|
263
264
|
description?: string | string[] | undefined;
|
|
264
265
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
265
266
|
strength?: number | undefined;
|
|
@@ -350,7 +351,7 @@ export declare const inferDerivedOp: import("./define-operation.js").DefinedOper
|
|
|
350
351
|
[x: string]: unknown;
|
|
351
352
|
from: string;
|
|
352
353
|
to: string;
|
|
353
|
-
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";
|
|
354
|
+
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";
|
|
354
355
|
description?: string | string[] | undefined;
|
|
355
356
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
356
357
|
strength?: number | undefined;
|
|
@@ -176,6 +176,7 @@ declare const ImpactNode: z.ZodObject<{
|
|
|
176
176
|
must_follow: "must_follow";
|
|
177
177
|
blocks: "blocks";
|
|
178
178
|
routes_to: "routes_to";
|
|
179
|
+
orchestrates: "orchestrates";
|
|
179
180
|
governed_by: "governed_by";
|
|
180
181
|
modifies: "modifies";
|
|
181
182
|
triggered_by: "triggered_by";
|
|
@@ -189,7 +190,7 @@ declare const ImpactNode: z.ZodObject<{
|
|
|
189
190
|
influence: "influence";
|
|
190
191
|
justifies: "justifies";
|
|
191
192
|
}> & {
|
|
192
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
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" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
193
194
|
};
|
|
194
195
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
195
196
|
is(value: unknown): value is string | string[];
|
|
@@ -208,7 +209,7 @@ declare const ImpactNode: z.ZodObject<{
|
|
|
208
209
|
[x: string]: unknown;
|
|
209
210
|
from: string;
|
|
210
211
|
to: string;
|
|
211
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
212
|
+
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";
|
|
212
213
|
description?: string | string[] | undefined;
|
|
213
214
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
214
215
|
strength?: number | undefined;
|
|
@@ -299,7 +300,7 @@ declare const ImpactNode: z.ZodObject<{
|
|
|
299
300
|
[x: string]: unknown;
|
|
300
301
|
from: string;
|
|
301
302
|
to: string;
|
|
302
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
303
|
+
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";
|
|
303
304
|
description?: string | string[] | undefined;
|
|
304
305
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
305
306
|
strength?: number | undefined;
|
|
@@ -510,6 +511,7 @@ declare const ImpactOutput: z.ZodObject<{
|
|
|
510
511
|
must_follow: "must_follow";
|
|
511
512
|
blocks: "blocks";
|
|
512
513
|
routes_to: "routes_to";
|
|
514
|
+
orchestrates: "orchestrates";
|
|
513
515
|
governed_by: "governed_by";
|
|
514
516
|
modifies: "modifies";
|
|
515
517
|
triggered_by: "triggered_by";
|
|
@@ -523,7 +525,7 @@ declare const ImpactOutput: z.ZodObject<{
|
|
|
523
525
|
influence: "influence";
|
|
524
526
|
justifies: "justifies";
|
|
525
527
|
}> & {
|
|
526
|
-
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";
|
|
528
|
+
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";
|
|
527
529
|
};
|
|
528
530
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
529
531
|
is(value: unknown): value is string | string[];
|
|
@@ -542,7 +544,7 @@ declare const ImpactOutput: z.ZodObject<{
|
|
|
542
544
|
[x: string]: unknown;
|
|
543
545
|
from: string;
|
|
544
546
|
to: string;
|
|
545
|
-
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";
|
|
547
|
+
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";
|
|
546
548
|
description?: string | string[] | undefined;
|
|
547
549
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
548
550
|
strength?: number | undefined;
|
|
@@ -633,7 +635,7 @@ declare const ImpactOutput: z.ZodObject<{
|
|
|
633
635
|
[x: string]: unknown;
|
|
634
636
|
from: string;
|
|
635
637
|
to: string;
|
|
636
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
638
|
+
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";
|
|
637
639
|
description?: string | string[] | undefined;
|
|
638
640
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
639
641
|
strength?: number | undefined;
|
|
@@ -854,6 +856,7 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
854
856
|
must_follow: "must_follow";
|
|
855
857
|
blocks: "blocks";
|
|
856
858
|
routes_to: "routes_to";
|
|
859
|
+
orchestrates: "orchestrates";
|
|
857
860
|
governed_by: "governed_by";
|
|
858
861
|
modifies: "modifies";
|
|
859
862
|
triggered_by: "triggered_by";
|
|
@@ -867,7 +870,7 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
867
870
|
influence: "influence";
|
|
868
871
|
justifies: "justifies";
|
|
869
872
|
}> & {
|
|
870
|
-
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";
|
|
873
|
+
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";
|
|
871
874
|
};
|
|
872
875
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
873
876
|
is(value: unknown): value is string | string[];
|
|
@@ -886,7 +889,7 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
886
889
|
[x: string]: unknown;
|
|
887
890
|
from: string;
|
|
888
891
|
to: string;
|
|
889
|
-
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";
|
|
892
|
+
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";
|
|
890
893
|
description?: string | string[] | undefined;
|
|
891
894
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
892
895
|
strength?: number | undefined;
|
|
@@ -977,7 +980,7 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
977
980
|
[x: string]: unknown;
|
|
978
981
|
from: string;
|
|
979
982
|
to: string;
|
|
980
|
-
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";
|
|
983
|
+
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";
|
|
981
984
|
description?: string | string[] | undefined;
|
|
982
985
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
983
986
|
strength?: number | undefined;
|
|
@@ -1175,6 +1178,7 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
1175
1178
|
must_follow: "must_follow";
|
|
1176
1179
|
blocks: "blocks";
|
|
1177
1180
|
routes_to: "routes_to";
|
|
1181
|
+
orchestrates: "orchestrates";
|
|
1178
1182
|
governed_by: "governed_by";
|
|
1179
1183
|
modifies: "modifies";
|
|
1180
1184
|
triggered_by: "triggered_by";
|
|
@@ -1188,7 +1192,7 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
1188
1192
|
influence: "influence";
|
|
1189
1193
|
justifies: "justifies";
|
|
1190
1194
|
}> & {
|
|
1191
|
-
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";
|
|
1195
|
+
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";
|
|
1192
1196
|
};
|
|
1193
1197
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
1194
1198
|
is(value: unknown): value is string | string[];
|
|
@@ -1207,7 +1211,7 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
1207
1211
|
[x: string]: unknown;
|
|
1208
1212
|
from: string;
|
|
1209
1213
|
to: string;
|
|
1210
|
-
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";
|
|
1214
|
+
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";
|
|
1211
1215
|
description?: string | string[] | undefined;
|
|
1212
1216
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
1213
1217
|
strength?: number | undefined;
|
|
@@ -1298,7 +1302,7 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
1298
1302
|
[x: string]: unknown;
|
|
1299
1303
|
from: string;
|
|
1300
1304
|
to: string;
|
|
1301
|
-
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";
|
|
1305
|
+
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";
|
|
1302
1306
|
description?: string | string[] | undefined;
|
|
1303
1307
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
1304
1308
|
strength?: number | undefined;
|
|
@@ -1513,6 +1517,7 @@ declare const ImpactSummaryOutput: z.ZodObject<{
|
|
|
1513
1517
|
must_follow: "must_follow";
|
|
1514
1518
|
blocks: "blocks";
|
|
1515
1519
|
routes_to: "routes_to";
|
|
1520
|
+
orchestrates: "orchestrates";
|
|
1516
1521
|
governed_by: "governed_by";
|
|
1517
1522
|
modifies: "modifies";
|
|
1518
1523
|
triggered_by: "triggered_by";
|
|
@@ -1526,7 +1531,7 @@ declare const ImpactSummaryOutput: z.ZodObject<{
|
|
|
1526
1531
|
influence: "influence";
|
|
1527
1532
|
justifies: "justifies";
|
|
1528
1533
|
}> & {
|
|
1529
|
-
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";
|
|
1534
|
+
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";
|
|
1530
1535
|
};
|
|
1531
1536
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
1532
1537
|
is(value: unknown): value is string | string[];
|
|
@@ -1545,7 +1550,7 @@ declare const ImpactSummaryOutput: z.ZodObject<{
|
|
|
1545
1550
|
[x: string]: unknown;
|
|
1546
1551
|
from: string;
|
|
1547
1552
|
to: string;
|
|
1548
|
-
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";
|
|
1553
|
+
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";
|
|
1549
1554
|
description?: string | string[] | undefined;
|
|
1550
1555
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
1551
1556
|
strength?: number | undefined;
|
|
@@ -1636,7 +1641,7 @@ declare const ImpactSummaryOutput: z.ZodObject<{
|
|
|
1636
1641
|
[x: string]: unknown;
|
|
1637
1642
|
from: string;
|
|
1638
1643
|
to: string;
|
|
1639
|
-
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";
|
|
1644
|
+
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";
|
|
1640
1645
|
description?: string | string[] | undefined;
|
|
1641
1646
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
1642
1647
|
strength?: number | undefined;
|
|
@@ -1843,6 +1848,7 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
1843
1848
|
must_follow: "must_follow";
|
|
1844
1849
|
blocks: "blocks";
|
|
1845
1850
|
routes_to: "routes_to";
|
|
1851
|
+
orchestrates: "orchestrates";
|
|
1846
1852
|
governed_by: "governed_by";
|
|
1847
1853
|
modifies: "modifies";
|
|
1848
1854
|
triggered_by: "triggered_by";
|
|
@@ -1856,7 +1862,7 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
1856
1862
|
influence: "influence";
|
|
1857
1863
|
justifies: "justifies";
|
|
1858
1864
|
}> & {
|
|
1859
|
-
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";
|
|
1865
|
+
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";
|
|
1860
1866
|
};
|
|
1861
1867
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
1862
1868
|
is(value: unknown): value is string | string[];
|
|
@@ -1875,7 +1881,7 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
1875
1881
|
[x: string]: unknown;
|
|
1876
1882
|
from: string;
|
|
1877
1883
|
to: string;
|
|
1878
|
-
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";
|
|
1884
|
+
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";
|
|
1879
1885
|
description?: string | string[] | undefined;
|
|
1880
1886
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
1881
1887
|
strength?: number | undefined;
|
|
@@ -1966,7 +1972,7 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
1966
1972
|
[x: string]: unknown;
|
|
1967
1973
|
from: string;
|
|
1968
1974
|
to: string;
|
|
1969
|
-
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";
|
|
1975
|
+
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";
|
|
1970
1976
|
description?: string | string[] | undefined;
|
|
1971
1977
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
1972
1978
|
strength?: number | undefined;
|
|
@@ -2155,6 +2161,7 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
2155
2161
|
must_follow: "must_follow";
|
|
2156
2162
|
blocks: "blocks";
|
|
2157
2163
|
routes_to: "routes_to";
|
|
2164
|
+
orchestrates: "orchestrates";
|
|
2158
2165
|
governed_by: "governed_by";
|
|
2159
2166
|
modifies: "modifies";
|
|
2160
2167
|
triggered_by: "triggered_by";
|
|
@@ -2168,7 +2175,7 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
2168
2175
|
influence: "influence";
|
|
2169
2176
|
justifies: "justifies";
|
|
2170
2177
|
}> & {
|
|
2171
|
-
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";
|
|
2178
|
+
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";
|
|
2172
2179
|
};
|
|
2173
2180
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
2174
2181
|
is(value: unknown): value is string | string[];
|
|
@@ -2187,7 +2194,7 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
2187
2194
|
[x: string]: unknown;
|
|
2188
2195
|
from: string;
|
|
2189
2196
|
to: string;
|
|
2190
|
-
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";
|
|
2197
|
+
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";
|
|
2191
2198
|
description?: string | string[] | undefined;
|
|
2192
2199
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
2193
2200
|
strength?: number | undefined;
|
|
@@ -2278,7 +2285,7 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
2278
2285
|
[x: string]: unknown;
|
|
2279
2286
|
from: string;
|
|
2280
2287
|
to: string;
|
|
2281
|
-
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";
|
|
2288
|
+
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";
|
|
2282
2289
|
description?: string | string[] | undefined;
|
|
2283
2290
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
2284
2291
|
strength?: number | undefined;
|
|
@@ -259,6 +259,7 @@ export declare const inferLifecycleOp: import("./define-operation.js").DefinedOp
|
|
|
259
259
|
must_follow: "must_follow";
|
|
260
260
|
blocks: "blocks";
|
|
261
261
|
routes_to: "routes_to";
|
|
262
|
+
orchestrates: "orchestrates";
|
|
262
263
|
governed_by: "governed_by";
|
|
263
264
|
modifies: "modifies";
|
|
264
265
|
triggered_by: "triggered_by";
|
|
@@ -272,7 +273,7 @@ export declare const inferLifecycleOp: import("./define-operation.js").DefinedOp
|
|
|
272
273
|
influence: "influence";
|
|
273
274
|
justifies: "justifies";
|
|
274
275
|
}> & {
|
|
275
|
-
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";
|
|
276
|
+
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";
|
|
276
277
|
};
|
|
277
278
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
278
279
|
is(value: unknown): value is string | string[];
|
|
@@ -291,7 +292,7 @@ export declare const inferLifecycleOp: import("./define-operation.js").DefinedOp
|
|
|
291
292
|
[x: string]: unknown;
|
|
292
293
|
from: string;
|
|
293
294
|
to: string;
|
|
294
|
-
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";
|
|
295
|
+
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";
|
|
295
296
|
description?: string | string[] | undefined;
|
|
296
297
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
297
298
|
strength?: number | undefined;
|
|
@@ -382,7 +383,7 @@ export declare const inferLifecycleOp: import("./define-operation.js").DefinedOp
|
|
|
382
383
|
[x: string]: unknown;
|
|
383
384
|
from: string;
|
|
384
385
|
to: string;
|
|
385
|
-
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";
|
|
386
|
+
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";
|
|
386
387
|
description?: string | string[] | undefined;
|
|
387
388
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
388
389
|
strength?: number | undefined;
|
|
@@ -176,6 +176,7 @@ export declare const initDocumentOp: import("./define-operation.js").DefinedOper
|
|
|
176
176
|
must_follow: "must_follow";
|
|
177
177
|
blocks: "blocks";
|
|
178
178
|
routes_to: "routes_to";
|
|
179
|
+
orchestrates: "orchestrates";
|
|
179
180
|
governed_by: "governed_by";
|
|
180
181
|
modifies: "modifies";
|
|
181
182
|
triggered_by: "triggered_by";
|
|
@@ -189,7 +190,7 @@ export declare const initDocumentOp: import("./define-operation.js").DefinedOper
|
|
|
189
190
|
influence: "influence";
|
|
190
191
|
justifies: "justifies";
|
|
191
192
|
}> & {
|
|
192
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
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" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
193
194
|
};
|
|
194
195
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
195
196
|
is(value: unknown): value is string | string[];
|
|
@@ -208,7 +209,7 @@ export declare const initDocumentOp: import("./define-operation.js").DefinedOper
|
|
|
208
209
|
[x: string]: unknown;
|
|
209
210
|
from: string;
|
|
210
211
|
to: string;
|
|
211
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
212
|
+
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";
|
|
212
213
|
description?: string | string[] | undefined;
|
|
213
214
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
214
215
|
strength?: number | undefined;
|
|
@@ -299,7 +300,7 @@ export declare const initDocumentOp: import("./define-operation.js").DefinedOper
|
|
|
299
300
|
[x: string]: unknown;
|
|
300
301
|
from: string;
|
|
301
302
|
to: string;
|
|
302
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
303
|
+
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";
|
|
303
304
|
description?: string | string[] | undefined;
|
|
304
305
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
305
306
|
strength?: number | undefined;
|
|
@@ -174,6 +174,7 @@ export declare const jsonToMarkdownOp: 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 jsonToMarkdownOp: 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 jsonToMarkdownOp: 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 jsonToMarkdownOp: 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;
|
|
@@ -177,6 +177,7 @@ export declare const markTaskDoneOp: import("./define-operation.js").DefinedOper
|
|
|
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 markTaskDoneOp: import("./define-operation.js").DefinedOper
|
|
|
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 markTaskDoneOp: import("./define-operation.js").DefinedOper
|
|
|
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 markTaskDoneOp: import("./define-operation.js").DefinedOper
|
|
|
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 markTaskDoneOp: import("./define-operation.js").DefinedOper
|
|
|
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 markTaskDoneOp: import("./define-operation.js").DefinedOper
|
|
|
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 markTaskDoneOp: import("./define-operation.js").DefinedOper
|
|
|
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 markTaskDoneOp: import("./define-operation.js").DefinedOper
|
|
|
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 markTaskUndoneOp: 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 markTaskUndoneOp: 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 markTaskUndoneOp: 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 markTaskUndoneOp: 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;
|
|
@@ -489,6 +490,7 @@ export declare const markTaskUndoneOp: import("./define-operation.js").DefinedOp
|
|
|
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 markTaskUndoneOp: import("./define-operation.js").DefinedOp
|
|
|
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 markTaskUndoneOp: import("./define-operation.js").DefinedOp
|
|
|
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 markTaskUndoneOp: import("./define-operation.js").DefinedOp
|
|
|
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;
|