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.
Files changed (52) hide show
  1. package/README.md +56 -12
  2. package/dist/schema.json +1 -0
  3. package/dist/src/endpoint-types.js +16 -3
  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
@@ -179,6 +179,7 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
179
179
  must_follow: "must_follow";
180
180
  blocks: "blocks";
181
181
  routes_to: "routes_to";
182
+ orchestrates: "orchestrates";
182
183
  governed_by: "governed_by";
183
184
  modifies: "modifies";
184
185
  triggered_by: "triggered_by";
@@ -192,7 +193,7 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
192
193
  influence: "influence";
193
194
  justifies: "justifies";
194
195
  }> & {
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" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
196
+ 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";
196
197
  };
197
198
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
198
199
  is(value: unknown): value is string | string[];
@@ -211,7 +212,7 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
211
212
  [x: string]: unknown;
212
213
  from: string;
213
214
  to: string;
214
- 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";
215
+ 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";
215
216
  description?: string | string[] | undefined;
216
217
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
217
218
  strength?: number | undefined;
@@ -302,7 +303,7 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
302
303
  [x: string]: unknown;
303
304
  from: string;
304
305
  to: string;
305
- 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";
306
+ 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";
306
307
  description?: string | string[] | undefined;
307
308
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
308
309
  strength?: number | undefined;
@@ -491,6 +492,7 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
491
492
  must_follow: "must_follow";
492
493
  blocks: "blocks";
493
494
  routes_to: "routes_to";
495
+ orchestrates: "orchestrates";
494
496
  governed_by: "governed_by";
495
497
  modifies: "modifies";
496
498
  triggered_by: "triggered_by";
@@ -504,7 +506,7 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
504
506
  influence: "influence";
505
507
  justifies: "justifies";
506
508
  }> & {
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" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
509
+ 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";
508
510
  };
509
511
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
510
512
  is(value: unknown): value is string | string[];
@@ -523,7 +525,7 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
523
525
  [x: string]: unknown;
524
526
  from: string;
525
527
  to: string;
526
- 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";
528
+ 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";
527
529
  description?: string | string[] | undefined;
528
530
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
529
531
  strength?: number | undefined;
@@ -614,7 +616,7 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
614
616
  [x: string]: unknown;
615
617
  from: string;
616
618
  to: string;
617
- 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";
619
+ 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";
618
620
  description?: string | string[] | undefined;
619
621
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
620
622
  strength?: number | undefined;
@@ -174,6 +174,7 @@ export declare const searchOp: import("./define-operation.js").DefinedOperation<
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 searchOp: import("./define-operation.js").DefinedOperation<
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 searchOp: import("./define-operation.js").DefinedOperation<
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 searchOp: import("./define-operation.js").DefinedOperation<
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;
@@ -484,6 +485,7 @@ export declare const searchOp: import("./define-operation.js").DefinedOperation<
484
485
  must_follow: "must_follow";
485
486
  blocks: "blocks";
486
487
  routes_to: "routes_to";
488
+ orchestrates: "orchestrates";
487
489
  governed_by: "governed_by";
488
490
  modifies: "modifies";
489
491
  triggered_by: "triggered_by";
@@ -497,7 +499,7 @@ export declare const searchOp: import("./define-operation.js").DefinedOperation<
497
499
  influence: "influence";
498
500
  justifies: "justifies";
499
501
  }> & {
500
- 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";
502
+ 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";
501
503
  };
502
504
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
503
505
  is(value: unknown): value is string | string[];
@@ -516,7 +518,7 @@ export declare const searchOp: import("./define-operation.js").DefinedOperation<
516
518
  [x: string]: unknown;
517
519
  from: string;
518
520
  to: string;
519
- 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";
521
+ 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";
520
522
  description?: string | string[] | undefined;
521
523
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
522
524
  strength?: number | undefined;
@@ -607,7 +609,7 @@ export declare const searchOp: import("./define-operation.js").DefinedOperation<
607
609
  [x: string]: unknown;
608
610
  from: string;
609
611
  to: string;
610
- 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";
612
+ 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";
611
613
  description?: string | string[] | undefined;
612
614
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
613
615
  strength?: number | undefined;
@@ -192,6 +192,7 @@ export declare const speckitDiffOp: import("./define-operation.js").DefinedOpera
192
192
  must_follow: "must_follow";
193
193
  blocks: "blocks";
194
194
  routes_to: "routes_to";
195
+ orchestrates: "orchestrates";
195
196
  governed_by: "governed_by";
196
197
  modifies: "modifies";
197
198
  triggered_by: "triggered_by";
@@ -205,7 +206,7 @@ export declare const speckitDiffOp: import("./define-operation.js").DefinedOpera
205
206
  influence: "influence";
206
207
  justifies: "justifies";
207
208
  }> & {
208
- 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";
209
+ 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";
209
210
  };
210
211
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
211
212
  is(value: unknown): value is string | string[];
@@ -224,7 +225,7 @@ export declare const speckitDiffOp: import("./define-operation.js").DefinedOpera
224
225
  [x: string]: unknown;
225
226
  from: string;
226
227
  to: string;
227
- 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";
228
+ 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";
228
229
  description?: string | string[] | undefined;
229
230
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
230
231
  strength?: number | undefined;
@@ -315,7 +316,7 @@ export declare const speckitDiffOp: import("./define-operation.js").DefinedOpera
315
316
  [x: string]: unknown;
316
317
  from: string;
317
318
  to: string;
318
- 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";
319
+ 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";
319
320
  description?: string | string[] | undefined;
320
321
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
321
322
  strength?: number | undefined;
@@ -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;