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.
Files changed (52) hide show
  1. package/README.md +3 -0
  2. package/dist/schema.json +1 -0
  3. package/dist/src/endpoint-types.js +5 -0
  4. package/dist/src/operations/add-node.d.ts +12 -9
  5. package/dist/src/operations/add-plan-task.d.ts +8 -6
  6. package/dist/src/operations/add-relationship.d.ts +11 -8
  7. package/dist/src/operations/check.d.ts +4 -3
  8. package/dist/src/operations/graph-decision.d.ts +4 -3
  9. package/dist/src/operations/graph-dependency.d.ts +4 -3
  10. package/dist/src/operations/graph-refinement.d.ts +4 -3
  11. package/dist/src/operations/graph.d.ts +4 -3
  12. package/dist/src/operations/infer-completeness.d.ts +4 -3
  13. package/dist/src/operations/infer-derived.d.ts +4 -3
  14. package/dist/src/operations/infer-impact.d.ts +28 -21
  15. package/dist/src/operations/infer-lifecycle.d.ts +4 -3
  16. package/dist/src/operations/init-document.d.ts +4 -3
  17. package/dist/src/operations/json-to-markdown.d.ts +4 -3
  18. package/dist/src/operations/mark-task-done.d.ts +8 -6
  19. package/dist/src/operations/mark-task-undone.d.ts +8 -6
  20. package/dist/src/operations/markdown-to-json.d.ts +4 -3
  21. package/dist/src/operations/next-id.d.ts +4 -3
  22. package/dist/src/operations/node-history.d.ts +4 -3
  23. package/dist/src/operations/plan-add-task.d.ts +8 -6
  24. package/dist/src/operations/plan-gate.d.ts +4 -3
  25. package/dist/src/operations/plan-init.d.ts +4 -3
  26. package/dist/src/operations/plan-progress.d.ts +4 -3
  27. package/dist/src/operations/plan-status.d.ts +4 -3
  28. package/dist/src/operations/query-node.d.ts +24 -17
  29. package/dist/src/operations/query-nodes.d.ts +8 -6
  30. package/dist/src/operations/query-relationships.d.ts +7 -5
  31. package/dist/src/operations/remove-node.d.ts +12 -9
  32. package/dist/src/operations/remove-relationship.d.ts +10 -7
  33. package/dist/src/operations/rename.d.ts +8 -6
  34. package/dist/src/operations/search.d.ts +8 -6
  35. package/dist/src/operations/speckit-diff.d.ts +4 -3
  36. package/dist/src/operations/speckit-export.d.ts +4 -3
  37. package/dist/src/operations/speckit-import.d.ts +4 -3
  38. package/dist/src/operations/speckit-sync.d.ts +12 -9
  39. package/dist/src/operations/state-at.d.ts +4 -3
  40. package/dist/src/operations/stats.d.ts +4 -3
  41. package/dist/src/operations/sync.d.ts +12 -9
  42. package/dist/src/operations/task-list.d.ts +4 -3
  43. package/dist/src/operations/timeline.d.ts +4 -3
  44. package/dist/src/operations/trace-from-node.d.ts +12 -9
  45. package/dist/src/operations/update-metadata.d.ts +8 -6
  46. package/dist/src/operations/update-node.d.ts +11 -8
  47. package/dist/src/operations/update-plan-task.d.ts +8 -6
  48. package/dist/src/operations/validate.d.ts +4 -3
  49. package/dist/src/schema.d.ts +15 -10
  50. package/dist/src/schema.js +1 -0
  51. package/package.json +1 -1
  52. package/schema.json +1 -0
@@ -174,6 +174,7 @@ export declare const speckitExportOp: import("./define-operation.js").DefinedOpe
174
174
  must_follow: "must_follow";
175
175
  blocks: "blocks";
176
176
  routes_to: "routes_to";
177
+ orchestrates: "orchestrates";
177
178
  governed_by: "governed_by";
178
179
  modifies: "modifies";
179
180
  triggered_by: "triggered_by";
@@ -187,7 +188,7 @@ export declare const speckitExportOp: import("./define-operation.js").DefinedOpe
187
188
  influence: "influence";
188
189
  justifies: "justifies";
189
190
  }> & {
190
- is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
191
+ is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
191
192
  };
192
193
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
193
194
  is(value: unknown): value is string | string[];
@@ -206,7 +207,7 @@ export declare const speckitExportOp: import("./define-operation.js").DefinedOpe
206
207
  [x: string]: unknown;
207
208
  from: string;
208
209
  to: string;
209
- type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
210
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
210
211
  description?: string | string[] | undefined;
211
212
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
212
213
  strength?: number | undefined;
@@ -297,7 +298,7 @@ export declare const speckitExportOp: import("./define-operation.js").DefinedOpe
297
298
  [x: string]: unknown;
298
299
  from: string;
299
300
  to: string;
300
- type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
301
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
301
302
  description?: string | string[] | undefined;
302
303
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
303
304
  strength?: number | undefined;
@@ -176,6 +176,7 @@ export declare const speckitImportOp: import("./define-operation.js").DefinedOpe
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 speckitImportOp: import("./define-operation.js").DefinedOpe
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 speckitImportOp: import("./define-operation.js").DefinedOpe
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 speckitImportOp: import("./define-operation.js").DefinedOpe
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;
@@ -176,6 +176,7 @@ export declare const SyncResult: 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 @@ export declare const SyncResult: 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 @@ export declare const SyncResult: 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 @@ export declare const SyncResult: 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;
@@ -492,6 +493,7 @@ export declare const speckitSyncOp: import("./define-operation.js").DefinedOpera
492
493
  must_follow: "must_follow";
493
494
  blocks: "blocks";
494
495
  routes_to: "routes_to";
496
+ orchestrates: "orchestrates";
495
497
  governed_by: "governed_by";
496
498
  modifies: "modifies";
497
499
  triggered_by: "triggered_by";
@@ -505,7 +507,7 @@ export declare const speckitSyncOp: import("./define-operation.js").DefinedOpera
505
507
  influence: "influence";
506
508
  justifies: "justifies";
507
509
  }> & {
508
- is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
510
+ is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
509
511
  };
510
512
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
511
513
  is(value: unknown): value is string | string[];
@@ -524,7 +526,7 @@ export declare const speckitSyncOp: import("./define-operation.js").DefinedOpera
524
526
  [x: string]: unknown;
525
527
  from: string;
526
528
  to: string;
527
- type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
529
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
528
530
  description?: string | string[] | undefined;
529
531
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
530
532
  strength?: number | undefined;
@@ -615,7 +617,7 @@ export declare const speckitSyncOp: import("./define-operation.js").DefinedOpera
615
617
  [x: string]: unknown;
616
618
  from: string;
617
619
  to: string;
618
- type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
620
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
619
621
  description?: string | string[] | undefined;
620
622
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
621
623
  strength?: number | undefined;
@@ -805,6 +807,7 @@ export declare const speckitSyncOp: import("./define-operation.js").DefinedOpera
805
807
  must_follow: "must_follow";
806
808
  blocks: "blocks";
807
809
  routes_to: "routes_to";
810
+ orchestrates: "orchestrates";
808
811
  governed_by: "governed_by";
809
812
  modifies: "modifies";
810
813
  triggered_by: "triggered_by";
@@ -818,7 +821,7 @@ export declare const speckitSyncOp: import("./define-operation.js").DefinedOpera
818
821
  influence: "influence";
819
822
  justifies: "justifies";
820
823
  }> & {
821
- is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
824
+ 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";
822
825
  };
823
826
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
824
827
  is(value: unknown): value is string | string[];
@@ -837,7 +840,7 @@ export declare const speckitSyncOp: import("./define-operation.js").DefinedOpera
837
840
  [x: string]: unknown;
838
841
  from: string;
839
842
  to: string;
840
- 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";
843
+ 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";
841
844
  description?: string | string[] | undefined;
842
845
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
843
846
  strength?: number | undefined;
@@ -928,7 +931,7 @@ export declare const speckitSyncOp: import("./define-operation.js").DefinedOpera
928
931
  [x: string]: unknown;
929
932
  from: string;
930
933
  to: string;
931
- 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";
934
+ 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";
932
935
  description?: string | string[] | undefined;
933
936
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
934
937
  strength?: number | undefined;
@@ -182,6 +182,7 @@ export declare const stateAtOp: import("./define-operation.js").DefinedOperation
182
182
  must_follow: "must_follow";
183
183
  blocks: "blocks";
184
184
  routes_to: "routes_to";
185
+ orchestrates: "orchestrates";
185
186
  governed_by: "governed_by";
186
187
  modifies: "modifies";
187
188
  triggered_by: "triggered_by";
@@ -195,7 +196,7 @@ export declare const stateAtOp: import("./define-operation.js").DefinedOperation
195
196
  influence: "influence";
196
197
  justifies: "justifies";
197
198
  }> & {
198
- is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
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" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
199
200
  };
200
201
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
201
202
  is(value: unknown): value is string | string[];
@@ -214,7 +215,7 @@ export declare const stateAtOp: import("./define-operation.js").DefinedOperation
214
215
  [x: string]: unknown;
215
216
  from: string;
216
217
  to: string;
217
- type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
218
+ 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";
218
219
  description?: string | string[] | undefined;
219
220
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
220
221
  strength?: number | undefined;
@@ -305,7 +306,7 @@ export declare const stateAtOp: import("./define-operation.js").DefinedOperation
305
306
  [x: string]: unknown;
306
307
  from: string;
307
308
  to: string;
308
- type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
309
+ 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";
309
310
  description?: string | string[] | undefined;
310
311
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
311
312
  strength?: number | undefined;
@@ -190,6 +190,7 @@ export declare const statsOp: import("./define-operation.js").DefinedOperation<z
190
190
  must_follow: "must_follow";
191
191
  blocks: "blocks";
192
192
  routes_to: "routes_to";
193
+ orchestrates: "orchestrates";
193
194
  governed_by: "governed_by";
194
195
  modifies: "modifies";
195
196
  triggered_by: "triggered_by";
@@ -203,7 +204,7 @@ export declare const statsOp: import("./define-operation.js").DefinedOperation<z
203
204
  influence: "influence";
204
205
  justifies: "justifies";
205
206
  }> & {
206
- is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
207
+ is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
207
208
  };
208
209
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
209
210
  is(value: unknown): value is string | string[];
@@ -222,7 +223,7 @@ export declare const statsOp: import("./define-operation.js").DefinedOperation<z
222
223
  [x: string]: unknown;
223
224
  from: string;
224
225
  to: string;
225
- type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
226
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
226
227
  description?: string | string[] | undefined;
227
228
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
228
229
  strength?: number | undefined;
@@ -313,7 +314,7 @@ export declare const statsOp: import("./define-operation.js").DefinedOperation<z
313
314
  [x: string]: unknown;
314
315
  from: string;
315
316
  to: string;
316
- type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
317
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
317
318
  description?: string | string[] | undefined;
318
319
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
319
320
  strength?: number | undefined;
@@ -211,6 +211,7 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
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 syncDocumentsOp: import("./define-operation.js").DefinedOpe
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 syncDocumentsOp: import("./define-operation.js").DefinedOpe
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 syncDocumentsOp: import("./define-operation.js").DefinedOpe
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;
@@ -521,6 +522,7 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
521
522
  must_follow: "must_follow";
522
523
  blocks: "blocks";
523
524
  routes_to: "routes_to";
525
+ orchestrates: "orchestrates";
524
526
  governed_by: "governed_by";
525
527
  modifies: "modifies";
526
528
  triggered_by: "triggered_by";
@@ -534,7 +536,7 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
534
536
  influence: "influence";
535
537
  justifies: "justifies";
536
538
  }> & {
537
- 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";
539
+ 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";
538
540
  };
539
541
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
540
542
  is(value: unknown): value is string | string[];
@@ -553,7 +555,7 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
553
555
  [x: string]: unknown;
554
556
  from: string;
555
557
  to: string;
556
- 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";
558
+ 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";
557
559
  description?: string | string[] | undefined;
558
560
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
559
561
  strength?: number | undefined;
@@ -644,7 +646,7 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
644
646
  [x: string]: unknown;
645
647
  from: string;
646
648
  to: string;
647
- 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";
649
+ 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";
648
650
  description?: string | string[] | undefined;
649
651
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
650
652
  strength?: number | undefined;
@@ -840,6 +842,7 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
840
842
  must_follow: "must_follow";
841
843
  blocks: "blocks";
842
844
  routes_to: "routes_to";
845
+ orchestrates: "orchestrates";
843
846
  governed_by: "governed_by";
844
847
  modifies: "modifies";
845
848
  triggered_by: "triggered_by";
@@ -853,7 +856,7 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
853
856
  influence: "influence";
854
857
  justifies: "justifies";
855
858
  }> & {
856
- 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";
859
+ 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";
857
860
  };
858
861
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
859
862
  is(value: unknown): value is string | string[];
@@ -872,7 +875,7 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
872
875
  [x: string]: unknown;
873
876
  from: string;
874
877
  to: string;
875
- 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";
878
+ 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";
876
879
  description?: string | string[] | undefined;
877
880
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
878
881
  strength?: number | undefined;
@@ -963,7 +966,7 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
963
966
  [x: string]: unknown;
964
967
  from: string;
965
968
  to: string;
966
- 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";
969
+ 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";
967
970
  description?: string | string[] | undefined;
968
971
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
969
972
  strength?: number | undefined;
@@ -178,6 +178,7 @@ export declare const taskListOp: import("./define-operation.js").DefinedOperatio
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 taskListOp: import("./define-operation.js").DefinedOperatio
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 taskListOp: import("./define-operation.js").DefinedOperatio
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 taskListOp: import("./define-operation.js").DefinedOperatio
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 timelineOp: import("./define-operation.js").DefinedOperatio
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 timelineOp: import("./define-operation.js").DefinedOperatio
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 timelineOp: import("./define-operation.js").DefinedOperatio
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 timelineOp: import("./define-operation.js").DefinedOperatio
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;