sysprom 1.18.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 +56 -12
- package/dist/schema.json +1 -0
- package/dist/src/endpoint-types.js +16 -3
- 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
|
@@ -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;
|
|
@@ -175,6 +175,7 @@ export declare const markdownToJsonOp: import("./define-operation.js").DefinedOp
|
|
|
175
175
|
must_follow: "must_follow";
|
|
176
176
|
blocks: "blocks";
|
|
177
177
|
routes_to: "routes_to";
|
|
178
|
+
orchestrates: "orchestrates";
|
|
178
179
|
governed_by: "governed_by";
|
|
179
180
|
modifies: "modifies";
|
|
180
181
|
triggered_by: "triggered_by";
|
|
@@ -188,7 +189,7 @@ export declare const markdownToJsonOp: import("./define-operation.js").DefinedOp
|
|
|
188
189
|
influence: "influence";
|
|
189
190
|
justifies: "justifies";
|
|
190
191
|
}> & {
|
|
191
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
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" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
192
193
|
};
|
|
193
194
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
194
195
|
is(value: unknown): value is string | string[];
|
|
@@ -207,7 +208,7 @@ export declare const markdownToJsonOp: import("./define-operation.js").DefinedOp
|
|
|
207
208
|
[x: string]: unknown;
|
|
208
209
|
from: string;
|
|
209
210
|
to: string;
|
|
210
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
211
|
+
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";
|
|
211
212
|
description?: string | string[] | undefined;
|
|
212
213
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
213
214
|
strength?: number | undefined;
|
|
@@ -298,7 +299,7 @@ export declare const markdownToJsonOp: import("./define-operation.js").DefinedOp
|
|
|
298
299
|
[x: string]: unknown;
|
|
299
300
|
from: string;
|
|
300
301
|
to: string;
|
|
301
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
302
|
+
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";
|
|
302
303
|
description?: string | string[] | undefined;
|
|
303
304
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
304
305
|
strength?: number | undefined;
|
|
@@ -178,6 +178,7 @@ export declare const nextIdOp: import("./define-operation.js").DefinedOperation<
|
|
|
178
178
|
must_follow: "must_follow";
|
|
179
179
|
blocks: "blocks";
|
|
180
180
|
routes_to: "routes_to";
|
|
181
|
+
orchestrates: "orchestrates";
|
|
181
182
|
governed_by: "governed_by";
|
|
182
183
|
modifies: "modifies";
|
|
183
184
|
triggered_by: "triggered_by";
|
|
@@ -191,7 +192,7 @@ export declare const nextIdOp: import("./define-operation.js").DefinedOperation<
|
|
|
191
192
|
influence: "influence";
|
|
192
193
|
justifies: "justifies";
|
|
193
194
|
}> & {
|
|
194
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
195
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
195
196
|
};
|
|
196
197
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
197
198
|
is(value: unknown): value is string | string[];
|
|
@@ -210,7 +211,7 @@ export declare const nextIdOp: import("./define-operation.js").DefinedOperation<
|
|
|
210
211
|
[x: string]: unknown;
|
|
211
212
|
from: string;
|
|
212
213
|
to: string;
|
|
213
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
214
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
214
215
|
description?: string | string[] | undefined;
|
|
215
216
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
216
217
|
strength?: number | undefined;
|
|
@@ -301,7 +302,7 @@ export declare const nextIdOp: import("./define-operation.js").DefinedOperation<
|
|
|
301
302
|
[x: string]: unknown;
|
|
302
303
|
from: string;
|
|
303
304
|
to: string;
|
|
304
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
305
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
305
306
|
description?: string | string[] | undefined;
|
|
306
307
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
307
308
|
strength?: number | undefined;
|
|
@@ -184,6 +184,7 @@ export declare const nodeHistoryOp: import("./define-operation.js").DefinedOpera
|
|
|
184
184
|
must_follow: "must_follow";
|
|
185
185
|
blocks: "blocks";
|
|
186
186
|
routes_to: "routes_to";
|
|
187
|
+
orchestrates: "orchestrates";
|
|
187
188
|
governed_by: "governed_by";
|
|
188
189
|
modifies: "modifies";
|
|
189
190
|
triggered_by: "triggered_by";
|
|
@@ -197,7 +198,7 @@ export declare const nodeHistoryOp: import("./define-operation.js").DefinedOpera
|
|
|
197
198
|
influence: "influence";
|
|
198
199
|
justifies: "justifies";
|
|
199
200
|
}> & {
|
|
200
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
201
|
+
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";
|
|
201
202
|
};
|
|
202
203
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
203
204
|
is(value: unknown): value is string | string[];
|
|
@@ -216,7 +217,7 @@ export declare const nodeHistoryOp: import("./define-operation.js").DefinedOpera
|
|
|
216
217
|
[x: string]: unknown;
|
|
217
218
|
from: string;
|
|
218
219
|
to: string;
|
|
219
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
220
|
+
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";
|
|
220
221
|
description?: string | string[] | undefined;
|
|
221
222
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
222
223
|
strength?: number | undefined;
|
|
@@ -307,7 +308,7 @@ export declare const nodeHistoryOp: import("./define-operation.js").DefinedOpera
|
|
|
307
308
|
[x: string]: unknown;
|
|
308
309
|
from: string;
|
|
309
310
|
to: string;
|
|
310
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
311
|
+
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";
|
|
311
312
|
description?: string | string[] | undefined;
|
|
312
313
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
313
314
|
strength?: number | undefined;
|
|
@@ -174,6 +174,7 @@ export declare const planAddTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
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 planAddTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
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 planAddTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
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 planAddTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
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;
|
|
@@ -487,6 +488,7 @@ export declare const planAddTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
487
488
|
must_follow: "must_follow";
|
|
488
489
|
blocks: "blocks";
|
|
489
490
|
routes_to: "routes_to";
|
|
491
|
+
orchestrates: "orchestrates";
|
|
490
492
|
governed_by: "governed_by";
|
|
491
493
|
modifies: "modifies";
|
|
492
494
|
triggered_by: "triggered_by";
|
|
@@ -500,7 +502,7 @@ export declare const planAddTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
500
502
|
influence: "influence";
|
|
501
503
|
justifies: "justifies";
|
|
502
504
|
}> & {
|
|
503
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
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" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
504
506
|
};
|
|
505
507
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
506
508
|
is(value: unknown): value is string | string[];
|
|
@@ -519,7 +521,7 @@ export declare const planAddTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
519
521
|
[x: string]: unknown;
|
|
520
522
|
from: string;
|
|
521
523
|
to: string;
|
|
522
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
524
|
+
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";
|
|
523
525
|
description?: string | string[] | undefined;
|
|
524
526
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
525
527
|
strength?: number | undefined;
|
|
@@ -610,7 +612,7 @@ export declare const planAddTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
610
612
|
[x: string]: unknown;
|
|
611
613
|
from: string;
|
|
612
614
|
to: string;
|
|
613
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
615
|
+
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";
|
|
614
616
|
description?: string | string[] | undefined;
|
|
615
617
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
616
618
|
strength?: number | undefined;
|
|
@@ -211,6 +211,7 @@ export declare const planGateOp: import("./define-operation.js").DefinedOperatio
|
|
|
211
211
|
must_follow: "must_follow";
|
|
212
212
|
blocks: "blocks";
|
|
213
213
|
routes_to: "routes_to";
|
|
214
|
+
orchestrates: "orchestrates";
|
|
214
215
|
governed_by: "governed_by";
|
|
215
216
|
modifies: "modifies";
|
|
216
217
|
triggered_by: "triggered_by";
|
|
@@ -224,7 +225,7 @@ export declare const planGateOp: import("./define-operation.js").DefinedOperatio
|
|
|
224
225
|
influence: "influence";
|
|
225
226
|
justifies: "justifies";
|
|
226
227
|
}> & {
|
|
227
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
228
|
+
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";
|
|
228
229
|
};
|
|
229
230
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
230
231
|
is(value: unknown): value is string | string[];
|
|
@@ -243,7 +244,7 @@ export declare const planGateOp: import("./define-operation.js").DefinedOperatio
|
|
|
243
244
|
[x: string]: unknown;
|
|
244
245
|
from: string;
|
|
245
246
|
to: string;
|
|
246
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
247
|
+
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";
|
|
247
248
|
description?: string | string[] | undefined;
|
|
248
249
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
249
250
|
strength?: number | undefined;
|
|
@@ -334,7 +335,7 @@ export declare const planGateOp: import("./define-operation.js").DefinedOperatio
|
|
|
334
335
|
[x: string]: unknown;
|
|
335
336
|
from: string;
|
|
336
337
|
to: string;
|
|
337
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
338
|
+
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";
|
|
338
339
|
description?: string | string[] | undefined;
|
|
339
340
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
340
341
|
strength?: number | undefined;
|
|
@@ -176,6 +176,7 @@ export declare const planInitOp: import("./define-operation.js").DefinedOperatio
|
|
|
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 planInitOp: import("./define-operation.js").DefinedOperatio
|
|
|
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 planInitOp: import("./define-operation.js").DefinedOperatio
|
|
|
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 planInitOp: import("./define-operation.js").DefinedOperatio
|
|
|
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;
|
|
@@ -183,6 +183,7 @@ export declare const planProgressOp: import("./define-operation.js").DefinedOper
|
|
|
183
183
|
must_follow: "must_follow";
|
|
184
184
|
blocks: "blocks";
|
|
185
185
|
routes_to: "routes_to";
|
|
186
|
+
orchestrates: "orchestrates";
|
|
186
187
|
governed_by: "governed_by";
|
|
187
188
|
modifies: "modifies";
|
|
188
189
|
triggered_by: "triggered_by";
|
|
@@ -196,7 +197,7 @@ export declare const planProgressOp: import("./define-operation.js").DefinedOper
|
|
|
196
197
|
influence: "influence";
|
|
197
198
|
justifies: "justifies";
|
|
198
199
|
}> & {
|
|
199
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
200
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
200
201
|
};
|
|
201
202
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
202
203
|
is(value: unknown): value is string | string[];
|
|
@@ -215,7 +216,7 @@ export declare const planProgressOp: import("./define-operation.js").DefinedOper
|
|
|
215
216
|
[x: string]: unknown;
|
|
216
217
|
from: string;
|
|
217
218
|
to: string;
|
|
218
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
219
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
219
220
|
description?: string | string[] | undefined;
|
|
220
221
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
221
222
|
strength?: number | undefined;
|
|
@@ -306,7 +307,7 @@ export declare const planProgressOp: import("./define-operation.js").DefinedOper
|
|
|
306
307
|
[x: string]: unknown;
|
|
307
308
|
from: string;
|
|
308
309
|
to: string;
|
|
309
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
310
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
310
311
|
description?: string | string[] | undefined;
|
|
311
312
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
312
313
|
strength?: number | undefined;
|
|
@@ -201,6 +201,7 @@ export declare const planStatusOp: import("./define-operation.js").DefinedOperat
|
|
|
201
201
|
must_follow: "must_follow";
|
|
202
202
|
blocks: "blocks";
|
|
203
203
|
routes_to: "routes_to";
|
|
204
|
+
orchestrates: "orchestrates";
|
|
204
205
|
governed_by: "governed_by";
|
|
205
206
|
modifies: "modifies";
|
|
206
207
|
triggered_by: "triggered_by";
|
|
@@ -214,7 +215,7 @@ export declare const planStatusOp: import("./define-operation.js").DefinedOperat
|
|
|
214
215
|
influence: "influence";
|
|
215
216
|
justifies: "justifies";
|
|
216
217
|
}> & {
|
|
217
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
218
|
+
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";
|
|
218
219
|
};
|
|
219
220
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
220
221
|
is(value: unknown): value is string | string[];
|
|
@@ -233,7 +234,7 @@ export declare const planStatusOp: import("./define-operation.js").DefinedOperat
|
|
|
233
234
|
[x: string]: unknown;
|
|
234
235
|
from: string;
|
|
235
236
|
to: string;
|
|
236
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
237
|
+
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";
|
|
237
238
|
description?: string | string[] | undefined;
|
|
238
239
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
239
240
|
strength?: number | undefined;
|
|
@@ -324,7 +325,7 @@ export declare const planStatusOp: import("./define-operation.js").DefinedOperat
|
|
|
324
325
|
[x: string]: unknown;
|
|
325
326
|
from: string;
|
|
326
327
|
to: string;
|
|
327
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
328
|
+
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";
|
|
328
329
|
description?: string | string[] | undefined;
|
|
329
330
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
330
331
|
strength?: number | undefined;
|