sysprom 1.15.0 → 1.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/schema.json +18 -1
- package/dist/src/cli/commands/infer.js +31 -2
- package/dist/src/endpoint-types.js +23 -0
- package/dist/src/index.d.ts +2 -2
- package/dist/src/index.js +2 -2
- package/dist/src/mcp/server.js +42 -4
- package/dist/src/operations/add-node.d.ts +51 -9
- package/dist/src/operations/add-plan-task.d.ts +34 -6
- package/dist/src/operations/add-relationship.d.ts +48 -8
- package/dist/src/operations/check.d.ts +17 -3
- package/dist/src/operations/graph.d.ts +17 -3
- package/dist/src/operations/index.d.ts +1 -1
- package/dist/src/operations/index.js +1 -1
- package/dist/src/operations/infer-completeness.d.ts +17 -3
- package/dist/src/operations/infer-derived.d.ts +17 -3
- package/dist/src/operations/infer-impact.d.ts +1066 -13
- package/dist/src/operations/infer-impact.js +157 -39
- package/dist/src/operations/infer-lifecycle.d.ts +17 -3
- package/dist/src/operations/init-document.d.ts +17 -3
- package/dist/src/operations/json-to-markdown.d.ts +17 -3
- package/dist/src/operations/mark-task-done.d.ts +34 -6
- package/dist/src/operations/mark-task-undone.d.ts +34 -6
- package/dist/src/operations/markdown-to-json.d.ts +17 -3
- package/dist/src/operations/next-id.d.ts +17 -3
- package/dist/src/operations/node-history.d.ts +17 -3
- package/dist/src/operations/plan-add-task.d.ts +34 -6
- package/dist/src/operations/plan-gate.d.ts +17 -3
- package/dist/src/operations/plan-init.d.ts +17 -3
- package/dist/src/operations/plan-progress.d.ts +17 -3
- package/dist/src/operations/plan-status.d.ts +17 -3
- package/dist/src/operations/query-node.d.ts +107 -17
- package/dist/src/operations/query-nodes.d.ts +34 -6
- package/dist/src/operations/query-relationships.d.ts +31 -5
- package/dist/src/operations/remove-node.d.ts +51 -9
- package/dist/src/operations/remove-relationship.d.ts +36 -7
- package/dist/src/operations/rename.d.ts +34 -6
- package/dist/src/operations/search.d.ts +34 -6
- package/dist/src/operations/speckit-diff.d.ts +17 -3
- package/dist/src/operations/speckit-export.d.ts +17 -3
- package/dist/src/operations/speckit-import.d.ts +17 -3
- package/dist/src/operations/speckit-sync.d.ts +51 -9
- package/dist/src/operations/state-at.d.ts +17 -3
- package/dist/src/operations/stats.d.ts +17 -3
- package/dist/src/operations/sync.d.ts +51 -9
- package/dist/src/operations/task-list.d.ts +17 -3
- package/dist/src/operations/timeline.d.ts +17 -3
- package/dist/src/operations/trace-from-node.d.ts +51 -9
- package/dist/src/operations/update-metadata.d.ts +34 -6
- package/dist/src/operations/update-node.d.ts +48 -8
- package/dist/src/operations/update-plan-task.d.ts +34 -6
- package/dist/src/operations/validate.d.ts +17 -3
- package/dist/src/schema.d.ts +70 -10
- package/dist/src/schema.js +21 -0
- package/package.json +1 -1
- package/schema.json +18 -1
|
@@ -186,19 +186,31 @@ export declare const speckitImportOp: import("./define-operation.js").DefinedOpe
|
|
|
186
186
|
selects: "selects";
|
|
187
187
|
requires: "requires";
|
|
188
188
|
disables: "disables";
|
|
189
|
+
influence: "influence";
|
|
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";
|
|
191
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
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[];
|
|
194
195
|
}>;
|
|
196
|
+
polarity: z.ZodOptional<z.ZodEnum<{
|
|
197
|
+
positive: "positive";
|
|
198
|
+
negative: "negative";
|
|
199
|
+
neutral: "neutral";
|
|
200
|
+
uncertain: "uncertain";
|
|
201
|
+
}> & {
|
|
202
|
+
is(value: unknown): value is "positive" | "negative" | "neutral" | "uncertain";
|
|
203
|
+
}>;
|
|
204
|
+
strength: z.ZodOptional<z.ZodNumber>;
|
|
195
205
|
}, z.core.$loose> & {
|
|
196
206
|
is(value: unknown): value is {
|
|
197
207
|
[x: string]: unknown;
|
|
198
208
|
from: string;
|
|
199
209
|
to: string;
|
|
200
|
-
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";
|
|
210
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
201
211
|
description?: string | string[] | undefined;
|
|
212
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
213
|
+
strength?: number | undefined;
|
|
202
214
|
};
|
|
203
215
|
}>>;
|
|
204
216
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -286,8 +298,10 @@ export declare const speckitImportOp: import("./define-operation.js").DefinedOpe
|
|
|
286
298
|
[x: string]: unknown;
|
|
287
299
|
from: string;
|
|
288
300
|
to: string;
|
|
289
|
-
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";
|
|
301
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
290
302
|
description?: string | string[] | undefined;
|
|
303
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
304
|
+
strength?: number | undefined;
|
|
291
305
|
}[] | undefined;
|
|
292
306
|
external_references?: {
|
|
293
307
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
@@ -186,19 +186,31 @@ export declare const SyncResult: z.ZodObject<{
|
|
|
186
186
|
selects: "selects";
|
|
187
187
|
requires: "requires";
|
|
188
188
|
disables: "disables";
|
|
189
|
+
influence: "influence";
|
|
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";
|
|
191
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
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[];
|
|
194
195
|
}>;
|
|
196
|
+
polarity: z.ZodOptional<z.ZodEnum<{
|
|
197
|
+
positive: "positive";
|
|
198
|
+
negative: "negative";
|
|
199
|
+
neutral: "neutral";
|
|
200
|
+
uncertain: "uncertain";
|
|
201
|
+
}> & {
|
|
202
|
+
is(value: unknown): value is "positive" | "negative" | "neutral" | "uncertain";
|
|
203
|
+
}>;
|
|
204
|
+
strength: z.ZodOptional<z.ZodNumber>;
|
|
195
205
|
}, z.core.$loose> & {
|
|
196
206
|
is(value: unknown): value is {
|
|
197
207
|
[x: string]: unknown;
|
|
198
208
|
from: string;
|
|
199
209
|
to: string;
|
|
200
|
-
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";
|
|
210
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
201
211
|
description?: string | string[] | undefined;
|
|
212
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
213
|
+
strength?: number | undefined;
|
|
202
214
|
};
|
|
203
215
|
}>>;
|
|
204
216
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -286,8 +298,10 @@ export declare const SyncResult: z.ZodObject<{
|
|
|
286
298
|
[x: string]: unknown;
|
|
287
299
|
from: string;
|
|
288
300
|
to: string;
|
|
289
|
-
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";
|
|
301
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
290
302
|
description?: string | string[] | undefined;
|
|
303
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
304
|
+
strength?: number | undefined;
|
|
291
305
|
}[] | undefined;
|
|
292
306
|
external_references?: {
|
|
293
307
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
@@ -487,19 +501,31 @@ export declare const speckitSyncOp: import("./define-operation.js").DefinedOpera
|
|
|
487
501
|
selects: "selects";
|
|
488
502
|
requires: "requires";
|
|
489
503
|
disables: "disables";
|
|
504
|
+
influence: "influence";
|
|
490
505
|
}> & {
|
|
491
|
-
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";
|
|
506
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
492
507
|
};
|
|
493
508
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
494
509
|
is(value: unknown): value is string | string[];
|
|
495
510
|
}>;
|
|
511
|
+
polarity: z.ZodOptional<z.ZodEnum<{
|
|
512
|
+
positive: "positive";
|
|
513
|
+
negative: "negative";
|
|
514
|
+
neutral: "neutral";
|
|
515
|
+
uncertain: "uncertain";
|
|
516
|
+
}> & {
|
|
517
|
+
is(value: unknown): value is "positive" | "negative" | "neutral" | "uncertain";
|
|
518
|
+
}>;
|
|
519
|
+
strength: z.ZodOptional<z.ZodNumber>;
|
|
496
520
|
}, z.core.$loose> & {
|
|
497
521
|
is(value: unknown): value is {
|
|
498
522
|
[x: string]: unknown;
|
|
499
523
|
from: string;
|
|
500
524
|
to: string;
|
|
501
|
-
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";
|
|
525
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
502
526
|
description?: string | string[] | undefined;
|
|
527
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
528
|
+
strength?: number | undefined;
|
|
503
529
|
};
|
|
504
530
|
}>>;
|
|
505
531
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -587,8 +613,10 @@ export declare const speckitSyncOp: import("./define-operation.js").DefinedOpera
|
|
|
587
613
|
[x: string]: unknown;
|
|
588
614
|
from: string;
|
|
589
615
|
to: string;
|
|
590
|
-
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";
|
|
616
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
591
617
|
description?: string | string[] | undefined;
|
|
618
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
619
|
+
strength?: number | undefined;
|
|
592
620
|
}[] | undefined;
|
|
593
621
|
external_references?: {
|
|
594
622
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
@@ -785,19 +813,31 @@ export declare const speckitSyncOp: import("./define-operation.js").DefinedOpera
|
|
|
785
813
|
selects: "selects";
|
|
786
814
|
requires: "requires";
|
|
787
815
|
disables: "disables";
|
|
816
|
+
influence: "influence";
|
|
788
817
|
}> & {
|
|
789
|
-
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";
|
|
818
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
790
819
|
};
|
|
791
820
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
792
821
|
is(value: unknown): value is string | string[];
|
|
793
822
|
}>;
|
|
823
|
+
polarity: z.ZodOptional<z.ZodEnum<{
|
|
824
|
+
positive: "positive";
|
|
825
|
+
negative: "negative";
|
|
826
|
+
neutral: "neutral";
|
|
827
|
+
uncertain: "uncertain";
|
|
828
|
+
}> & {
|
|
829
|
+
is(value: unknown): value is "positive" | "negative" | "neutral" | "uncertain";
|
|
830
|
+
}>;
|
|
831
|
+
strength: z.ZodOptional<z.ZodNumber>;
|
|
794
832
|
}, z.core.$loose> & {
|
|
795
833
|
is(value: unknown): value is {
|
|
796
834
|
[x: string]: unknown;
|
|
797
835
|
from: string;
|
|
798
836
|
to: string;
|
|
799
|
-
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";
|
|
837
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
800
838
|
description?: string | string[] | undefined;
|
|
839
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
840
|
+
strength?: number | undefined;
|
|
801
841
|
};
|
|
802
842
|
}>>;
|
|
803
843
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -885,8 +925,10 @@ export declare const speckitSyncOp: import("./define-operation.js").DefinedOpera
|
|
|
885
925
|
[x: string]: unknown;
|
|
886
926
|
from: string;
|
|
887
927
|
to: string;
|
|
888
|
-
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";
|
|
928
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
889
929
|
description?: string | string[] | undefined;
|
|
930
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
931
|
+
strength?: number | undefined;
|
|
890
932
|
}[] | undefined;
|
|
891
933
|
external_references?: {
|
|
892
934
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
@@ -192,19 +192,31 @@ export declare const stateAtOp: import("./define-operation.js").DefinedOperation
|
|
|
192
192
|
selects: "selects";
|
|
193
193
|
requires: "requires";
|
|
194
194
|
disables: "disables";
|
|
195
|
+
influence: "influence";
|
|
195
196
|
}> & {
|
|
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" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables";
|
|
197
|
+
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";
|
|
197
198
|
};
|
|
198
199
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
199
200
|
is(value: unknown): value is string | string[];
|
|
200
201
|
}>;
|
|
202
|
+
polarity: z.ZodOptional<z.ZodEnum<{
|
|
203
|
+
positive: "positive";
|
|
204
|
+
negative: "negative";
|
|
205
|
+
neutral: "neutral";
|
|
206
|
+
uncertain: "uncertain";
|
|
207
|
+
}> & {
|
|
208
|
+
is(value: unknown): value is "positive" | "negative" | "neutral" | "uncertain";
|
|
209
|
+
}>;
|
|
210
|
+
strength: z.ZodOptional<z.ZodNumber>;
|
|
201
211
|
}, z.core.$loose> & {
|
|
202
212
|
is(value: unknown): value is {
|
|
203
213
|
[x: string]: unknown;
|
|
204
214
|
from: string;
|
|
205
215
|
to: string;
|
|
206
|
-
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";
|
|
216
|
+
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";
|
|
207
217
|
description?: string | string[] | undefined;
|
|
218
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
219
|
+
strength?: number | undefined;
|
|
208
220
|
};
|
|
209
221
|
}>>;
|
|
210
222
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -292,8 +304,10 @@ export declare const stateAtOp: import("./define-operation.js").DefinedOperation
|
|
|
292
304
|
[x: string]: unknown;
|
|
293
305
|
from: string;
|
|
294
306
|
to: string;
|
|
295
|
-
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";
|
|
307
|
+
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";
|
|
296
308
|
description?: string | string[] | undefined;
|
|
309
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
310
|
+
strength?: number | undefined;
|
|
297
311
|
}[] | undefined;
|
|
298
312
|
external_references?: {
|
|
299
313
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
@@ -200,19 +200,31 @@ export declare const statsOp: import("./define-operation.js").DefinedOperation<z
|
|
|
200
200
|
selects: "selects";
|
|
201
201
|
requires: "requires";
|
|
202
202
|
disables: "disables";
|
|
203
|
+
influence: "influence";
|
|
203
204
|
}> & {
|
|
204
|
-
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";
|
|
205
|
+
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";
|
|
205
206
|
};
|
|
206
207
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
207
208
|
is(value: unknown): value is string | string[];
|
|
208
209
|
}>;
|
|
210
|
+
polarity: z.ZodOptional<z.ZodEnum<{
|
|
211
|
+
positive: "positive";
|
|
212
|
+
negative: "negative";
|
|
213
|
+
neutral: "neutral";
|
|
214
|
+
uncertain: "uncertain";
|
|
215
|
+
}> & {
|
|
216
|
+
is(value: unknown): value is "positive" | "negative" | "neutral" | "uncertain";
|
|
217
|
+
}>;
|
|
218
|
+
strength: z.ZodOptional<z.ZodNumber>;
|
|
209
219
|
}, z.core.$loose> & {
|
|
210
220
|
is(value: unknown): value is {
|
|
211
221
|
[x: string]: unknown;
|
|
212
222
|
from: string;
|
|
213
223
|
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";
|
|
224
|
+
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";
|
|
215
225
|
description?: string | string[] | undefined;
|
|
226
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
227
|
+
strength?: number | undefined;
|
|
216
228
|
};
|
|
217
229
|
}>>;
|
|
218
230
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -300,8 +312,10 @@ export declare const statsOp: import("./define-operation.js").DefinedOperation<z
|
|
|
300
312
|
[x: string]: unknown;
|
|
301
313
|
from: string;
|
|
302
314
|
to: string;
|
|
303
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables";
|
|
315
|
+
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";
|
|
304
316
|
description?: string | string[] | undefined;
|
|
317
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
318
|
+
strength?: number | undefined;
|
|
305
319
|
}[] | undefined;
|
|
306
320
|
external_references?: {
|
|
307
321
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
@@ -221,19 +221,31 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
|
|
|
221
221
|
selects: "selects";
|
|
222
222
|
requires: "requires";
|
|
223
223
|
disables: "disables";
|
|
224
|
+
influence: "influence";
|
|
224
225
|
}> & {
|
|
225
|
-
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";
|
|
226
|
+
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";
|
|
226
227
|
};
|
|
227
228
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
228
229
|
is(value: unknown): value is string | string[];
|
|
229
230
|
}>;
|
|
231
|
+
polarity: z.ZodOptional<z.ZodEnum<{
|
|
232
|
+
positive: "positive";
|
|
233
|
+
negative: "negative";
|
|
234
|
+
neutral: "neutral";
|
|
235
|
+
uncertain: "uncertain";
|
|
236
|
+
}> & {
|
|
237
|
+
is(value: unknown): value is "positive" | "negative" | "neutral" | "uncertain";
|
|
238
|
+
}>;
|
|
239
|
+
strength: z.ZodOptional<z.ZodNumber>;
|
|
230
240
|
}, z.core.$loose> & {
|
|
231
241
|
is(value: unknown): value is {
|
|
232
242
|
[x: string]: unknown;
|
|
233
243
|
from: string;
|
|
234
244
|
to: string;
|
|
235
|
-
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";
|
|
245
|
+
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";
|
|
236
246
|
description?: string | string[] | undefined;
|
|
247
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
248
|
+
strength?: number | undefined;
|
|
237
249
|
};
|
|
238
250
|
}>>;
|
|
239
251
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -321,8 +333,10 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
|
|
|
321
333
|
[x: string]: unknown;
|
|
322
334
|
from: string;
|
|
323
335
|
to: string;
|
|
324
|
-
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";
|
|
336
|
+
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";
|
|
325
337
|
description?: string | string[] | undefined;
|
|
338
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
339
|
+
strength?: number | undefined;
|
|
326
340
|
}[] | undefined;
|
|
327
341
|
external_references?: {
|
|
328
342
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
@@ -516,19 +530,31 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
|
|
|
516
530
|
selects: "selects";
|
|
517
531
|
requires: "requires";
|
|
518
532
|
disables: "disables";
|
|
533
|
+
influence: "influence";
|
|
519
534
|
}> & {
|
|
520
|
-
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";
|
|
535
|
+
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";
|
|
521
536
|
};
|
|
522
537
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
523
538
|
is(value: unknown): value is string | string[];
|
|
524
539
|
}>;
|
|
540
|
+
polarity: z.ZodOptional<z.ZodEnum<{
|
|
541
|
+
positive: "positive";
|
|
542
|
+
negative: "negative";
|
|
543
|
+
neutral: "neutral";
|
|
544
|
+
uncertain: "uncertain";
|
|
545
|
+
}> & {
|
|
546
|
+
is(value: unknown): value is "positive" | "negative" | "neutral" | "uncertain";
|
|
547
|
+
}>;
|
|
548
|
+
strength: z.ZodOptional<z.ZodNumber>;
|
|
525
549
|
}, z.core.$loose> & {
|
|
526
550
|
is(value: unknown): value is {
|
|
527
551
|
[x: string]: unknown;
|
|
528
552
|
from: string;
|
|
529
553
|
to: string;
|
|
530
|
-
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";
|
|
554
|
+
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";
|
|
531
555
|
description?: string | string[] | undefined;
|
|
556
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
557
|
+
strength?: number | undefined;
|
|
532
558
|
};
|
|
533
559
|
}>>;
|
|
534
560
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -616,8 +642,10 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
|
|
|
616
642
|
[x: string]: unknown;
|
|
617
643
|
from: string;
|
|
618
644
|
to: string;
|
|
619
|
-
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";
|
|
645
|
+
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";
|
|
620
646
|
description?: string | string[] | undefined;
|
|
647
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
648
|
+
strength?: number | undefined;
|
|
621
649
|
}[] | undefined;
|
|
622
650
|
external_references?: {
|
|
623
651
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
@@ -820,19 +848,31 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
|
|
|
820
848
|
selects: "selects";
|
|
821
849
|
requires: "requires";
|
|
822
850
|
disables: "disables";
|
|
851
|
+
influence: "influence";
|
|
823
852
|
}> & {
|
|
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" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables";
|
|
853
|
+
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";
|
|
825
854
|
};
|
|
826
855
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
827
856
|
is(value: unknown): value is string | string[];
|
|
828
857
|
}>;
|
|
858
|
+
polarity: z.ZodOptional<z.ZodEnum<{
|
|
859
|
+
positive: "positive";
|
|
860
|
+
negative: "negative";
|
|
861
|
+
neutral: "neutral";
|
|
862
|
+
uncertain: "uncertain";
|
|
863
|
+
}> & {
|
|
864
|
+
is(value: unknown): value is "positive" | "negative" | "neutral" | "uncertain";
|
|
865
|
+
}>;
|
|
866
|
+
strength: z.ZodOptional<z.ZodNumber>;
|
|
829
867
|
}, z.core.$loose> & {
|
|
830
868
|
is(value: unknown): value is {
|
|
831
869
|
[x: string]: unknown;
|
|
832
870
|
from: string;
|
|
833
871
|
to: string;
|
|
834
|
-
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";
|
|
872
|
+
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";
|
|
835
873
|
description?: string | string[] | undefined;
|
|
874
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
875
|
+
strength?: number | undefined;
|
|
836
876
|
};
|
|
837
877
|
}>>;
|
|
838
878
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -920,8 +960,10 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
|
|
|
920
960
|
[x: string]: unknown;
|
|
921
961
|
from: string;
|
|
922
962
|
to: string;
|
|
923
|
-
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";
|
|
963
|
+
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";
|
|
924
964
|
description?: string | string[] | undefined;
|
|
965
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
966
|
+
strength?: number | undefined;
|
|
925
967
|
}[] | undefined;
|
|
926
968
|
external_references?: {
|
|
927
969
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
@@ -188,19 +188,31 @@ export declare const taskListOp: import("./define-operation.js").DefinedOperatio
|
|
|
188
188
|
selects: "selects";
|
|
189
189
|
requires: "requires";
|
|
190
190
|
disables: "disables";
|
|
191
|
+
influence: "influence";
|
|
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";
|
|
193
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
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[];
|
|
196
197
|
}>;
|
|
198
|
+
polarity: z.ZodOptional<z.ZodEnum<{
|
|
199
|
+
positive: "positive";
|
|
200
|
+
negative: "negative";
|
|
201
|
+
neutral: "neutral";
|
|
202
|
+
uncertain: "uncertain";
|
|
203
|
+
}> & {
|
|
204
|
+
is(value: unknown): value is "positive" | "negative" | "neutral" | "uncertain";
|
|
205
|
+
}>;
|
|
206
|
+
strength: z.ZodOptional<z.ZodNumber>;
|
|
197
207
|
}, z.core.$loose> & {
|
|
198
208
|
is(value: unknown): value is {
|
|
199
209
|
[x: string]: unknown;
|
|
200
210
|
from: string;
|
|
201
211
|
to: string;
|
|
202
|
-
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";
|
|
212
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
203
213
|
description?: string | string[] | undefined;
|
|
214
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
215
|
+
strength?: number | undefined;
|
|
204
216
|
};
|
|
205
217
|
}>>;
|
|
206
218
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -288,8 +300,10 @@ export declare const taskListOp: import("./define-operation.js").DefinedOperatio
|
|
|
288
300
|
[x: string]: unknown;
|
|
289
301
|
from: string;
|
|
290
302
|
to: string;
|
|
291
|
-
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";
|
|
303
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
292
304
|
description?: string | string[] | undefined;
|
|
305
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
306
|
+
strength?: number | undefined;
|
|
293
307
|
}[] | undefined;
|
|
294
308
|
external_references?: {
|
|
295
309
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
@@ -194,19 +194,31 @@ export declare const timelineOp: import("./define-operation.js").DefinedOperatio
|
|
|
194
194
|
selects: "selects";
|
|
195
195
|
requires: "requires";
|
|
196
196
|
disables: "disables";
|
|
197
|
+
influence: "influence";
|
|
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";
|
|
199
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
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[];
|
|
202
203
|
}>;
|
|
204
|
+
polarity: z.ZodOptional<z.ZodEnum<{
|
|
205
|
+
positive: "positive";
|
|
206
|
+
negative: "negative";
|
|
207
|
+
neutral: "neutral";
|
|
208
|
+
uncertain: "uncertain";
|
|
209
|
+
}> & {
|
|
210
|
+
is(value: unknown): value is "positive" | "negative" | "neutral" | "uncertain";
|
|
211
|
+
}>;
|
|
212
|
+
strength: z.ZodOptional<z.ZodNumber>;
|
|
203
213
|
}, z.core.$loose> & {
|
|
204
214
|
is(value: unknown): value is {
|
|
205
215
|
[x: string]: unknown;
|
|
206
216
|
from: string;
|
|
207
217
|
to: string;
|
|
208
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables";
|
|
218
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
209
219
|
description?: string | string[] | undefined;
|
|
220
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
221
|
+
strength?: number | undefined;
|
|
210
222
|
};
|
|
211
223
|
}>>;
|
|
212
224
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -294,8 +306,10 @@ export declare const timelineOp: import("./define-operation.js").DefinedOperatio
|
|
|
294
306
|
[x: string]: unknown;
|
|
295
307
|
from: string;
|
|
296
308
|
to: string;
|
|
297
|
-
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";
|
|
309
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
298
310
|
description?: string | string[] | undefined;
|
|
311
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
312
|
+
strength?: number | undefined;
|
|
299
313
|
}[] | undefined;
|
|
300
314
|
external_references?: {
|
|
301
315
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|