sysprom 1.14.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/README.md +19 -2
- package/dist/schema.json +18 -1
- package/dist/src/cli/commands/infer.d.ts +2 -0
- package/dist/src/cli/commands/infer.js +235 -0
- package/dist/src/cli/program.js +2 -0
- 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 +112 -1
- 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 +4 -0
- package/dist/src/operations/index.js +5 -0
- package/dist/src/operations/infer-completeness.d.ts +428 -0
- package/dist/src/operations/infer-completeness.js +131 -0
- package/dist/src/operations/infer-derived.d.ts +389 -0
- package/dist/src/operations/infer-derived.js +158 -0
- package/dist/src/operations/infer-impact.d.ts +2299 -0
- package/dist/src/operations/infer-impact.js +262 -0
- package/dist/src/operations/infer-lifecycle.d.ts +435 -0
- package/dist/src/operations/infer-lifecycle.js +119 -0
- 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
|
@@ -183,19 +183,31 @@ declare const TraceNodeSchema: z.ZodObject<{
|
|
|
183
183
|
selects: "selects";
|
|
184
184
|
requires: "requires";
|
|
185
185
|
disables: "disables";
|
|
186
|
+
influence: "influence";
|
|
186
187
|
}> & {
|
|
187
|
-
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";
|
|
188
|
+
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";
|
|
188
189
|
};
|
|
189
190
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
190
191
|
is(value: unknown): value is string | string[];
|
|
191
192
|
}>;
|
|
193
|
+
polarity: z.ZodOptional<z.ZodEnum<{
|
|
194
|
+
positive: "positive";
|
|
195
|
+
negative: "negative";
|
|
196
|
+
neutral: "neutral";
|
|
197
|
+
uncertain: "uncertain";
|
|
198
|
+
}> & {
|
|
199
|
+
is(value: unknown): value is "positive" | "negative" | "neutral" | "uncertain";
|
|
200
|
+
}>;
|
|
201
|
+
strength: z.ZodOptional<z.ZodNumber>;
|
|
192
202
|
}, z.core.$loose> & {
|
|
193
203
|
is(value: unknown): value is {
|
|
194
204
|
[x: string]: unknown;
|
|
195
205
|
from: string;
|
|
196
206
|
to: string;
|
|
197
|
-
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";
|
|
207
|
+
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";
|
|
198
208
|
description?: string | string[] | undefined;
|
|
209
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
210
|
+
strength?: number | undefined;
|
|
199
211
|
};
|
|
200
212
|
}>>;
|
|
201
213
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -283,8 +295,10 @@ declare const TraceNodeSchema: z.ZodObject<{
|
|
|
283
295
|
[x: string]: unknown;
|
|
284
296
|
from: string;
|
|
285
297
|
to: string;
|
|
286
|
-
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";
|
|
298
|
+
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";
|
|
287
299
|
description?: string | string[] | undefined;
|
|
300
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
301
|
+
strength?: number | undefined;
|
|
288
302
|
}[] | undefined;
|
|
289
303
|
external_references?: {
|
|
290
304
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
@@ -485,19 +499,31 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
485
499
|
selects: "selects";
|
|
486
500
|
requires: "requires";
|
|
487
501
|
disables: "disables";
|
|
502
|
+
influence: "influence";
|
|
488
503
|
}> & {
|
|
489
|
-
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";
|
|
504
|
+
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";
|
|
490
505
|
};
|
|
491
506
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
492
507
|
is(value: unknown): value is string | string[];
|
|
493
508
|
}>;
|
|
509
|
+
polarity: z.ZodOptional<z.ZodEnum<{
|
|
510
|
+
positive: "positive";
|
|
511
|
+
negative: "negative";
|
|
512
|
+
neutral: "neutral";
|
|
513
|
+
uncertain: "uncertain";
|
|
514
|
+
}> & {
|
|
515
|
+
is(value: unknown): value is "positive" | "negative" | "neutral" | "uncertain";
|
|
516
|
+
}>;
|
|
517
|
+
strength: z.ZodOptional<z.ZodNumber>;
|
|
494
518
|
}, z.core.$loose> & {
|
|
495
519
|
is(value: unknown): value is {
|
|
496
520
|
[x: string]: unknown;
|
|
497
521
|
from: string;
|
|
498
522
|
to: string;
|
|
499
|
-
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";
|
|
523
|
+
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";
|
|
500
524
|
description?: string | string[] | undefined;
|
|
525
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
526
|
+
strength?: number | undefined;
|
|
501
527
|
};
|
|
502
528
|
}>>;
|
|
503
529
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -585,8 +611,10 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
585
611
|
[x: string]: unknown;
|
|
586
612
|
from: string;
|
|
587
613
|
to: string;
|
|
588
|
-
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";
|
|
614
|
+
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";
|
|
589
615
|
description?: string | string[] | undefined;
|
|
616
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
617
|
+
strength?: number | undefined;
|
|
590
618
|
}[] | undefined;
|
|
591
619
|
external_references?: {
|
|
592
620
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
@@ -782,19 +810,31 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
782
810
|
selects: "selects";
|
|
783
811
|
requires: "requires";
|
|
784
812
|
disables: "disables";
|
|
813
|
+
influence: "influence";
|
|
785
814
|
}> & {
|
|
786
|
-
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";
|
|
815
|
+
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";
|
|
787
816
|
};
|
|
788
817
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
789
818
|
is(value: unknown): value is string | string[];
|
|
790
819
|
}>;
|
|
820
|
+
polarity: z.ZodOptional<z.ZodEnum<{
|
|
821
|
+
positive: "positive";
|
|
822
|
+
negative: "negative";
|
|
823
|
+
neutral: "neutral";
|
|
824
|
+
uncertain: "uncertain";
|
|
825
|
+
}> & {
|
|
826
|
+
is(value: unknown): value is "positive" | "negative" | "neutral" | "uncertain";
|
|
827
|
+
}>;
|
|
828
|
+
strength: z.ZodOptional<z.ZodNumber>;
|
|
791
829
|
}, z.core.$loose> & {
|
|
792
830
|
is(value: unknown): value is {
|
|
793
831
|
[x: string]: unknown;
|
|
794
832
|
from: string;
|
|
795
833
|
to: string;
|
|
796
|
-
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";
|
|
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" | "influence";
|
|
797
835
|
description?: string | string[] | undefined;
|
|
836
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
837
|
+
strength?: number | undefined;
|
|
798
838
|
};
|
|
799
839
|
}>>;
|
|
800
840
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -882,8 +922,10 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
882
922
|
[x: string]: unknown;
|
|
883
923
|
from: string;
|
|
884
924
|
to: string;
|
|
885
|
-
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";
|
|
925
|
+
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";
|
|
886
926
|
description?: string | string[] | undefined;
|
|
927
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
928
|
+
strength?: number | undefined;
|
|
887
929
|
}[] | undefined;
|
|
888
930
|
external_references?: {
|
|
889
931
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
@@ -184,19 +184,31 @@ export declare const updateMetadataOp: import("./define-operation.js").DefinedOp
|
|
|
184
184
|
selects: "selects";
|
|
185
185
|
requires: "requires";
|
|
186
186
|
disables: "disables";
|
|
187
|
+
influence: "influence";
|
|
187
188
|
}> & {
|
|
188
|
-
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";
|
|
189
|
+
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";
|
|
189
190
|
};
|
|
190
191
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
191
192
|
is(value: unknown): value is string | string[];
|
|
192
193
|
}>;
|
|
194
|
+
polarity: z.ZodOptional<z.ZodEnum<{
|
|
195
|
+
positive: "positive";
|
|
196
|
+
negative: "negative";
|
|
197
|
+
neutral: "neutral";
|
|
198
|
+
uncertain: "uncertain";
|
|
199
|
+
}> & {
|
|
200
|
+
is(value: unknown): value is "positive" | "negative" | "neutral" | "uncertain";
|
|
201
|
+
}>;
|
|
202
|
+
strength: z.ZodOptional<z.ZodNumber>;
|
|
193
203
|
}, z.core.$loose> & {
|
|
194
204
|
is(value: unknown): value is {
|
|
195
205
|
[x: string]: unknown;
|
|
196
206
|
from: string;
|
|
197
207
|
to: string;
|
|
198
|
-
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";
|
|
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" | "influence";
|
|
199
209
|
description?: string | string[] | undefined;
|
|
210
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
211
|
+
strength?: number | undefined;
|
|
200
212
|
};
|
|
201
213
|
}>>;
|
|
202
214
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -284,8 +296,10 @@ export declare const updateMetadataOp: import("./define-operation.js").DefinedOp
|
|
|
284
296
|
[x: string]: unknown;
|
|
285
297
|
from: string;
|
|
286
298
|
to: string;
|
|
287
|
-
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";
|
|
299
|
+
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";
|
|
288
300
|
description?: string | string[] | undefined;
|
|
301
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
302
|
+
strength?: number | undefined;
|
|
289
303
|
}[] | undefined;
|
|
290
304
|
external_references?: {
|
|
291
305
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
@@ -480,19 +494,31 @@ export declare const updateMetadataOp: import("./define-operation.js").DefinedOp
|
|
|
480
494
|
selects: "selects";
|
|
481
495
|
requires: "requires";
|
|
482
496
|
disables: "disables";
|
|
497
|
+
influence: "influence";
|
|
483
498
|
}> & {
|
|
484
|
-
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";
|
|
499
|
+
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";
|
|
485
500
|
};
|
|
486
501
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
487
502
|
is(value: unknown): value is string | string[];
|
|
488
503
|
}>;
|
|
504
|
+
polarity: z.ZodOptional<z.ZodEnum<{
|
|
505
|
+
positive: "positive";
|
|
506
|
+
negative: "negative";
|
|
507
|
+
neutral: "neutral";
|
|
508
|
+
uncertain: "uncertain";
|
|
509
|
+
}> & {
|
|
510
|
+
is(value: unknown): value is "positive" | "negative" | "neutral" | "uncertain";
|
|
511
|
+
}>;
|
|
512
|
+
strength: z.ZodOptional<z.ZodNumber>;
|
|
489
513
|
}, z.core.$loose> & {
|
|
490
514
|
is(value: unknown): value is {
|
|
491
515
|
[x: string]: unknown;
|
|
492
516
|
from: string;
|
|
493
517
|
to: string;
|
|
494
|
-
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";
|
|
518
|
+
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";
|
|
495
519
|
description?: string | string[] | undefined;
|
|
520
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
521
|
+
strength?: number | undefined;
|
|
496
522
|
};
|
|
497
523
|
}>>;
|
|
498
524
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -580,8 +606,10 @@ export declare const updateMetadataOp: import("./define-operation.js").DefinedOp
|
|
|
580
606
|
[x: string]: unknown;
|
|
581
607
|
from: string;
|
|
582
608
|
to: string;
|
|
583
|
-
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";
|
|
609
|
+
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";
|
|
584
610
|
description?: string | string[] | undefined;
|
|
611
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
612
|
+
strength?: number | undefined;
|
|
585
613
|
}[] | undefined;
|
|
586
614
|
external_references?: {
|
|
587
615
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
@@ -187,19 +187,31 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
187
187
|
selects: "selects";
|
|
188
188
|
requires: "requires";
|
|
189
189
|
disables: "disables";
|
|
190
|
+
influence: "influence";
|
|
190
191
|
}> & {
|
|
191
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables";
|
|
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";
|
|
192
193
|
};
|
|
193
194
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
194
195
|
is(value: unknown): value is string | string[];
|
|
195
196
|
}>;
|
|
197
|
+
polarity: z.ZodOptional<z.ZodEnum<{
|
|
198
|
+
positive: "positive";
|
|
199
|
+
negative: "negative";
|
|
200
|
+
neutral: "neutral";
|
|
201
|
+
uncertain: "uncertain";
|
|
202
|
+
}> & {
|
|
203
|
+
is(value: unknown): value is "positive" | "negative" | "neutral" | "uncertain";
|
|
204
|
+
}>;
|
|
205
|
+
strength: z.ZodOptional<z.ZodNumber>;
|
|
196
206
|
}, z.core.$loose> & {
|
|
197
207
|
is(value: unknown): value is {
|
|
198
208
|
[x: string]: unknown;
|
|
199
209
|
from: string;
|
|
200
210
|
to: string;
|
|
201
|
-
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";
|
|
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";
|
|
202
212
|
description?: string | string[] | undefined;
|
|
213
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
214
|
+
strength?: number | undefined;
|
|
203
215
|
};
|
|
204
216
|
}>>;
|
|
205
217
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -287,8 +299,10 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
287
299
|
[x: string]: unknown;
|
|
288
300
|
from: string;
|
|
289
301
|
to: string;
|
|
290
|
-
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";
|
|
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";
|
|
291
303
|
description?: string | string[] | undefined;
|
|
304
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
305
|
+
strength?: number | undefined;
|
|
292
306
|
}[] | undefined;
|
|
293
307
|
external_references?: {
|
|
294
308
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
@@ -618,19 +632,31 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
618
632
|
selects: "selects";
|
|
619
633
|
requires: "requires";
|
|
620
634
|
disables: "disables";
|
|
635
|
+
influence: "influence";
|
|
621
636
|
}> & {
|
|
622
|
-
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";
|
|
637
|
+
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";
|
|
623
638
|
};
|
|
624
639
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
625
640
|
is(value: unknown): value is string | string[];
|
|
626
641
|
}>;
|
|
642
|
+
polarity: z.ZodOptional<z.ZodEnum<{
|
|
643
|
+
positive: "positive";
|
|
644
|
+
negative: "negative";
|
|
645
|
+
neutral: "neutral";
|
|
646
|
+
uncertain: "uncertain";
|
|
647
|
+
}> & {
|
|
648
|
+
is(value: unknown): value is "positive" | "negative" | "neutral" | "uncertain";
|
|
649
|
+
}>;
|
|
650
|
+
strength: z.ZodOptional<z.ZodNumber>;
|
|
627
651
|
}, z.core.$loose> & {
|
|
628
652
|
is(value: unknown): value is {
|
|
629
653
|
[x: string]: unknown;
|
|
630
654
|
from: string;
|
|
631
655
|
to: string;
|
|
632
|
-
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";
|
|
656
|
+
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";
|
|
633
657
|
description?: string | string[] | undefined;
|
|
658
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
659
|
+
strength?: number | undefined;
|
|
634
660
|
};
|
|
635
661
|
}>>;
|
|
636
662
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -847,19 +873,31 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
847
873
|
selects: "selects";
|
|
848
874
|
requires: "requires";
|
|
849
875
|
disables: "disables";
|
|
876
|
+
influence: "influence";
|
|
850
877
|
}> & {
|
|
851
|
-
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";
|
|
878
|
+
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";
|
|
852
879
|
};
|
|
853
880
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
854
881
|
is(value: unknown): value is string | string[];
|
|
855
882
|
}>;
|
|
883
|
+
polarity: z.ZodOptional<z.ZodEnum<{
|
|
884
|
+
positive: "positive";
|
|
885
|
+
negative: "negative";
|
|
886
|
+
neutral: "neutral";
|
|
887
|
+
uncertain: "uncertain";
|
|
888
|
+
}> & {
|
|
889
|
+
is(value: unknown): value is "positive" | "negative" | "neutral" | "uncertain";
|
|
890
|
+
}>;
|
|
891
|
+
strength: z.ZodOptional<z.ZodNumber>;
|
|
856
892
|
}, z.core.$loose> & {
|
|
857
893
|
is(value: unknown): value is {
|
|
858
894
|
[x: string]: unknown;
|
|
859
895
|
from: string;
|
|
860
896
|
to: string;
|
|
861
|
-
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";
|
|
897
|
+
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";
|
|
862
898
|
description?: string | string[] | undefined;
|
|
899
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
900
|
+
strength?: number | undefined;
|
|
863
901
|
};
|
|
864
902
|
}>>;
|
|
865
903
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -947,8 +985,10 @@ export declare const updateNodeOp: import("./define-operation.js").DefinedOperat
|
|
|
947
985
|
[x: string]: unknown;
|
|
948
986
|
from: string;
|
|
949
987
|
to: string;
|
|
950
|
-
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";
|
|
988
|
+
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";
|
|
951
989
|
description?: string | string[] | undefined;
|
|
990
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
991
|
+
strength?: number | undefined;
|
|
952
992
|
}[] | undefined;
|
|
953
993
|
external_references?: {
|
|
954
994
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
@@ -187,19 +187,31 @@ export declare const updatePlanTaskOp: import("./define-operation.js").DefinedOp
|
|
|
187
187
|
selects: "selects";
|
|
188
188
|
requires: "requires";
|
|
189
189
|
disables: "disables";
|
|
190
|
+
influence: "influence";
|
|
190
191
|
}> & {
|
|
191
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables";
|
|
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";
|
|
192
193
|
};
|
|
193
194
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
194
195
|
is(value: unknown): value is string | string[];
|
|
195
196
|
}>;
|
|
197
|
+
polarity: z.ZodOptional<z.ZodEnum<{
|
|
198
|
+
positive: "positive";
|
|
199
|
+
negative: "negative";
|
|
200
|
+
neutral: "neutral";
|
|
201
|
+
uncertain: "uncertain";
|
|
202
|
+
}> & {
|
|
203
|
+
is(value: unknown): value is "positive" | "negative" | "neutral" | "uncertain";
|
|
204
|
+
}>;
|
|
205
|
+
strength: z.ZodOptional<z.ZodNumber>;
|
|
196
206
|
}, z.core.$loose> & {
|
|
197
207
|
is(value: unknown): value is {
|
|
198
208
|
[x: string]: unknown;
|
|
199
209
|
from: string;
|
|
200
210
|
to: string;
|
|
201
|
-
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";
|
|
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";
|
|
202
212
|
description?: string | string[] | undefined;
|
|
213
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
214
|
+
strength?: number | undefined;
|
|
203
215
|
};
|
|
204
216
|
}>>;
|
|
205
217
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -287,8 +299,10 @@ export declare const updatePlanTaskOp: import("./define-operation.js").DefinedOp
|
|
|
287
299
|
[x: string]: unknown;
|
|
288
300
|
from: string;
|
|
289
301
|
to: string;
|
|
290
|
-
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";
|
|
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";
|
|
291
303
|
description?: string | string[] | undefined;
|
|
304
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
305
|
+
strength?: number | undefined;
|
|
292
306
|
}[] | undefined;
|
|
293
307
|
external_references?: {
|
|
294
308
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
@@ -485,19 +499,31 @@ export declare const updatePlanTaskOp: import("./define-operation.js").DefinedOp
|
|
|
485
499
|
selects: "selects";
|
|
486
500
|
requires: "requires";
|
|
487
501
|
disables: "disables";
|
|
502
|
+
influence: "influence";
|
|
488
503
|
}> & {
|
|
489
|
-
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";
|
|
504
|
+
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";
|
|
490
505
|
};
|
|
491
506
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
492
507
|
is(value: unknown): value is string | string[];
|
|
493
508
|
}>;
|
|
509
|
+
polarity: z.ZodOptional<z.ZodEnum<{
|
|
510
|
+
positive: "positive";
|
|
511
|
+
negative: "negative";
|
|
512
|
+
neutral: "neutral";
|
|
513
|
+
uncertain: "uncertain";
|
|
514
|
+
}> & {
|
|
515
|
+
is(value: unknown): value is "positive" | "negative" | "neutral" | "uncertain";
|
|
516
|
+
}>;
|
|
517
|
+
strength: z.ZodOptional<z.ZodNumber>;
|
|
494
518
|
}, z.core.$loose> & {
|
|
495
519
|
is(value: unknown): value is {
|
|
496
520
|
[x: string]: unknown;
|
|
497
521
|
from: string;
|
|
498
522
|
to: string;
|
|
499
|
-
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";
|
|
523
|
+
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";
|
|
500
524
|
description?: string | string[] | undefined;
|
|
525
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
526
|
+
strength?: number | undefined;
|
|
501
527
|
};
|
|
502
528
|
}>>;
|
|
503
529
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -585,8 +611,10 @@ export declare const updatePlanTaskOp: import("./define-operation.js").DefinedOp
|
|
|
585
611
|
[x: string]: unknown;
|
|
586
612
|
from: string;
|
|
587
613
|
to: string;
|
|
588
|
-
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";
|
|
614
|
+
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";
|
|
589
615
|
description?: string | string[] | undefined;
|
|
616
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
617
|
+
strength?: number | undefined;
|
|
590
618
|
}[] | undefined;
|
|
591
619
|
external_references?: {
|
|
592
620
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
@@ -200,19 +200,31 @@ export declare const validateOp: import("./define-operation.js").DefinedOperatio
|
|
|
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 validateOp: import("./define-operation.js").DefinedOperatio
|
|
|
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";
|