sysprom 1.17.0 → 1.18.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 +145 -75
- package/dist/schema.json +2 -1
- package/dist/src/cli/commands/graph.d.ts +15 -0
- package/dist/src/cli/commands/graph.js +51 -2
- package/dist/src/cli/commands/init.d.ts +1 -1
- package/dist/src/cli/commands/json2md.d.ts +30 -1
- package/dist/src/cli/commands/json2md.js +42 -1
- package/dist/src/cli/commands/md2json.d.ts +1 -1
- package/dist/src/cli/commands/sync.d.ts +1 -1
- package/dist/src/cli/define-command.d.ts +1 -1
- package/dist/src/cli/define-command.js +176 -156
- package/dist/src/endpoint-types.js +13 -6
- package/dist/src/json-to-md.d.ts +32 -2
- package/dist/src/json-to-md.js +145 -5
- package/dist/src/md-to-json.js +7 -0
- package/dist/src/operations/add-node.d.ts +12 -9
- package/dist/src/operations/add-plan-task.d.ts +8 -6
- package/dist/src/operations/add-relationship.d.ts +11 -8
- package/dist/src/operations/check.d.ts +4 -3
- package/dist/src/operations/define-operation.d.ts +1 -1
- package/dist/src/operations/graph-decision.d.ts +329 -0
- package/dist/src/operations/graph-decision.js +96 -0
- package/dist/src/operations/graph-dependency.d.ts +329 -0
- package/dist/src/operations/graph-dependency.js +121 -0
- package/dist/src/operations/graph-refinement.d.ts +329 -0
- package/dist/src/operations/graph-refinement.js +97 -0
- package/dist/src/operations/graph-shared.d.ts +116 -0
- package/dist/src/operations/graph-shared.js +257 -0
- package/dist/src/operations/graph.d.ts +20 -4
- package/dist/src/operations/graph.js +129 -36
- package/dist/src/operations/index.d.ts +3 -0
- package/dist/src/operations/index.js +3 -0
- package/dist/src/operations/infer-completeness.d.ts +4 -3
- package/dist/src/operations/infer-derived.d.ts +4 -3
- package/dist/src/operations/infer-impact.d.ts +28 -21
- package/dist/src/operations/infer-lifecycle.d.ts +4 -3
- package/dist/src/operations/init-document.d.ts +4 -3
- package/dist/src/operations/json-to-markdown.d.ts +28 -3
- package/dist/src/operations/json-to-markdown.js +11 -1
- package/dist/src/operations/mark-task-done.d.ts +8 -6
- package/dist/src/operations/mark-task-undone.d.ts +8 -6
- package/dist/src/operations/markdown-to-json.d.ts +4 -3
- package/dist/src/operations/next-id.d.ts +4 -3
- package/dist/src/operations/node-history.d.ts +4 -3
- package/dist/src/operations/plan-add-task.d.ts +8 -6
- package/dist/src/operations/plan-gate.d.ts +4 -3
- package/dist/src/operations/plan-init.d.ts +4 -3
- package/dist/src/operations/plan-progress.d.ts +4 -3
- package/dist/src/operations/plan-status.d.ts +4 -3
- package/dist/src/operations/query-node.d.ts +24 -17
- package/dist/src/operations/query-nodes.d.ts +8 -6
- package/dist/src/operations/query-relationships.d.ts +7 -5
- package/dist/src/operations/remove-node.d.ts +12 -9
- package/dist/src/operations/remove-relationship.d.ts +10 -7
- package/dist/src/operations/rename.d.ts +8 -6
- package/dist/src/operations/search.d.ts +8 -6
- package/dist/src/operations/speckit-diff.d.ts +4 -3
- package/dist/src/operations/speckit-export.d.ts +4 -3
- package/dist/src/operations/speckit-import.d.ts +4 -3
- package/dist/src/operations/speckit-sync.d.ts +12 -9
- package/dist/src/operations/state-at.d.ts +4 -3
- package/dist/src/operations/stats.d.ts +4 -3
- package/dist/src/operations/sync.d.ts +12 -9
- package/dist/src/operations/task-list.d.ts +4 -3
- package/dist/src/operations/timeline.d.ts +4 -3
- package/dist/src/operations/trace-from-node.d.ts +12 -9
- package/dist/src/operations/update-metadata.d.ts +8 -6
- package/dist/src/operations/update-node.d.ts +11 -8
- package/dist/src/operations/update-plan-task.d.ts +8 -6
- package/dist/src/operations/validate.d.ts +4 -3
- package/dist/src/schema.d.ts +15 -10
- package/dist/src/schema.js +3 -11
- package/dist/src/utils/define-schema.d.ts +17 -0
- package/dist/src/utils/define-schema.js +21 -0
- package/package.json +98 -93
- package/schema.json +2 -1
|
@@ -187,8 +187,9 @@ declare const ImpactNode: z.ZodObject<{
|
|
|
187
187
|
requires: "requires";
|
|
188
188
|
disables: "disables";
|
|
189
189
|
influence: "influence";
|
|
190
|
+
justifies: "justifies";
|
|
190
191
|
}> & {
|
|
191
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
192
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
192
193
|
};
|
|
193
194
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
194
195
|
is(value: unknown): value is string | string[];
|
|
@@ -207,7 +208,7 @@ declare const ImpactNode: z.ZodObject<{
|
|
|
207
208
|
[x: string]: unknown;
|
|
208
209
|
from: string;
|
|
209
210
|
to: string;
|
|
210
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
211
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
211
212
|
description?: string | string[] | undefined;
|
|
212
213
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
213
214
|
strength?: number | undefined;
|
|
@@ -298,7 +299,7 @@ declare const ImpactNode: z.ZodObject<{
|
|
|
298
299
|
[x: string]: unknown;
|
|
299
300
|
from: string;
|
|
300
301
|
to: string;
|
|
301
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
302
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
302
303
|
description?: string | string[] | undefined;
|
|
303
304
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
304
305
|
strength?: number | undefined;
|
|
@@ -520,8 +521,9 @@ declare const ImpactOutput: z.ZodObject<{
|
|
|
520
521
|
requires: "requires";
|
|
521
522
|
disables: "disables";
|
|
522
523
|
influence: "influence";
|
|
524
|
+
justifies: "justifies";
|
|
523
525
|
}> & {
|
|
524
|
-
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";
|
|
526
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
525
527
|
};
|
|
526
528
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
527
529
|
is(value: unknown): value is string | string[];
|
|
@@ -540,7 +542,7 @@ declare const ImpactOutput: z.ZodObject<{
|
|
|
540
542
|
[x: string]: unknown;
|
|
541
543
|
from: string;
|
|
542
544
|
to: string;
|
|
543
|
-
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";
|
|
545
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
544
546
|
description?: string | string[] | undefined;
|
|
545
547
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
546
548
|
strength?: number | undefined;
|
|
@@ -631,7 +633,7 @@ declare const ImpactOutput: z.ZodObject<{
|
|
|
631
633
|
[x: string]: unknown;
|
|
632
634
|
from: string;
|
|
633
635
|
to: string;
|
|
634
|
-
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";
|
|
636
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
635
637
|
description?: string | string[] | undefined;
|
|
636
638
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
637
639
|
strength?: number | undefined;
|
|
@@ -863,8 +865,9 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
863
865
|
requires: "requires";
|
|
864
866
|
disables: "disables";
|
|
865
867
|
influence: "influence";
|
|
868
|
+
justifies: "justifies";
|
|
866
869
|
}> & {
|
|
867
|
-
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";
|
|
870
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
868
871
|
};
|
|
869
872
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
870
873
|
is(value: unknown): value is string | string[];
|
|
@@ -883,7 +886,7 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
883
886
|
[x: string]: unknown;
|
|
884
887
|
from: string;
|
|
885
888
|
to: string;
|
|
886
|
-
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
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
887
890
|
description?: string | string[] | undefined;
|
|
888
891
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
889
892
|
strength?: number | undefined;
|
|
@@ -974,7 +977,7 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
974
977
|
[x: string]: unknown;
|
|
975
978
|
from: string;
|
|
976
979
|
to: string;
|
|
977
|
-
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";
|
|
980
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
978
981
|
description?: string | string[] | undefined;
|
|
979
982
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
980
983
|
strength?: number | undefined;
|
|
@@ -1183,8 +1186,9 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
1183
1186
|
requires: "requires";
|
|
1184
1187
|
disables: "disables";
|
|
1185
1188
|
influence: "influence";
|
|
1189
|
+
justifies: "justifies";
|
|
1186
1190
|
}> & {
|
|
1187
|
-
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";
|
|
1191
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
1188
1192
|
};
|
|
1189
1193
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
1190
1194
|
is(value: unknown): value is string | string[];
|
|
@@ -1203,7 +1207,7 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
1203
1207
|
[x: string]: unknown;
|
|
1204
1208
|
from: string;
|
|
1205
1209
|
to: string;
|
|
1206
|
-
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";
|
|
1210
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
1207
1211
|
description?: string | string[] | undefined;
|
|
1208
1212
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
1209
1213
|
strength?: number | undefined;
|
|
@@ -1294,7 +1298,7 @@ export declare const inferImpactOp: import("./define-operation.js").DefinedOpera
|
|
|
1294
1298
|
[x: string]: unknown;
|
|
1295
1299
|
from: string;
|
|
1296
1300
|
to: string;
|
|
1297
|
-
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";
|
|
1301
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
1298
1302
|
description?: string | string[] | undefined;
|
|
1299
1303
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
1300
1304
|
strength?: number | undefined;
|
|
@@ -1520,8 +1524,9 @@ declare const ImpactSummaryOutput: z.ZodObject<{
|
|
|
1520
1524
|
requires: "requires";
|
|
1521
1525
|
disables: "disables";
|
|
1522
1526
|
influence: "influence";
|
|
1527
|
+
justifies: "justifies";
|
|
1523
1528
|
}> & {
|
|
1524
|
-
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";
|
|
1529
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
1525
1530
|
};
|
|
1526
1531
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
1527
1532
|
is(value: unknown): value is string | string[];
|
|
@@ -1540,7 +1545,7 @@ declare const ImpactSummaryOutput: z.ZodObject<{
|
|
|
1540
1545
|
[x: string]: unknown;
|
|
1541
1546
|
from: string;
|
|
1542
1547
|
to: string;
|
|
1543
|
-
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";
|
|
1548
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
1544
1549
|
description?: string | string[] | undefined;
|
|
1545
1550
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
1546
1551
|
strength?: number | undefined;
|
|
@@ -1631,7 +1636,7 @@ declare const ImpactSummaryOutput: z.ZodObject<{
|
|
|
1631
1636
|
[x: string]: unknown;
|
|
1632
1637
|
from: string;
|
|
1633
1638
|
to: string;
|
|
1634
|
-
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";
|
|
1639
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
1635
1640
|
description?: string | string[] | undefined;
|
|
1636
1641
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
1637
1642
|
strength?: number | undefined;
|
|
@@ -1849,8 +1854,9 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
1849
1854
|
requires: "requires";
|
|
1850
1855
|
disables: "disables";
|
|
1851
1856
|
influence: "influence";
|
|
1857
|
+
justifies: "justifies";
|
|
1852
1858
|
}> & {
|
|
1853
|
-
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";
|
|
1859
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
1854
1860
|
};
|
|
1855
1861
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
1856
1862
|
is(value: unknown): value is string | string[];
|
|
@@ -1869,7 +1875,7 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
1869
1875
|
[x: string]: unknown;
|
|
1870
1876
|
from: string;
|
|
1871
1877
|
to: string;
|
|
1872
|
-
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";
|
|
1878
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
1873
1879
|
description?: string | string[] | undefined;
|
|
1874
1880
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
1875
1881
|
strength?: number | undefined;
|
|
@@ -1960,7 +1966,7 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
1960
1966
|
[x: string]: unknown;
|
|
1961
1967
|
from: string;
|
|
1962
1968
|
to: string;
|
|
1963
|
-
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";
|
|
1969
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
1964
1970
|
description?: string | string[] | undefined;
|
|
1965
1971
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
1966
1972
|
strength?: number | undefined;
|
|
@@ -2160,8 +2166,9 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
2160
2166
|
requires: "requires";
|
|
2161
2167
|
disables: "disables";
|
|
2162
2168
|
influence: "influence";
|
|
2169
|
+
justifies: "justifies";
|
|
2163
2170
|
}> & {
|
|
2164
|
-
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";
|
|
2171
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
2165
2172
|
};
|
|
2166
2173
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
2167
2174
|
is(value: unknown): value is string | string[];
|
|
@@ -2180,7 +2187,7 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
2180
2187
|
[x: string]: unknown;
|
|
2181
2188
|
from: string;
|
|
2182
2189
|
to: string;
|
|
2183
|
-
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";
|
|
2190
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
2184
2191
|
description?: string | string[] | undefined;
|
|
2185
2192
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
2186
2193
|
strength?: number | undefined;
|
|
@@ -2271,7 +2278,7 @@ export declare const impactSummaryOp: import("./define-operation.js").DefinedOpe
|
|
|
2271
2278
|
[x: string]: unknown;
|
|
2272
2279
|
from: string;
|
|
2273
2280
|
to: string;
|
|
2274
|
-
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";
|
|
2281
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
2275
2282
|
description?: string | string[] | undefined;
|
|
2276
2283
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
2277
2284
|
strength?: number | undefined;
|
|
@@ -270,8 +270,9 @@ export declare const inferLifecycleOp: import("./define-operation.js").DefinedOp
|
|
|
270
270
|
requires: "requires";
|
|
271
271
|
disables: "disables";
|
|
272
272
|
influence: "influence";
|
|
273
|
+
justifies: "justifies";
|
|
273
274
|
}> & {
|
|
274
|
-
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";
|
|
275
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
275
276
|
};
|
|
276
277
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
277
278
|
is(value: unknown): value is string | string[];
|
|
@@ -290,7 +291,7 @@ export declare const inferLifecycleOp: import("./define-operation.js").DefinedOp
|
|
|
290
291
|
[x: string]: unknown;
|
|
291
292
|
from: string;
|
|
292
293
|
to: string;
|
|
293
|
-
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";
|
|
294
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
294
295
|
description?: string | string[] | undefined;
|
|
295
296
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
296
297
|
strength?: number | undefined;
|
|
@@ -381,7 +382,7 @@ export declare const inferLifecycleOp: import("./define-operation.js").DefinedOp
|
|
|
381
382
|
[x: string]: unknown;
|
|
382
383
|
from: string;
|
|
383
384
|
to: string;
|
|
384
|
-
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";
|
|
385
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
385
386
|
description?: string | string[] | undefined;
|
|
386
387
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
387
388
|
strength?: number | undefined;
|
|
@@ -187,8 +187,9 @@ export declare const initDocumentOp: import("./define-operation.js").DefinedOper
|
|
|
187
187
|
requires: "requires";
|
|
188
188
|
disables: "disables";
|
|
189
189
|
influence: "influence";
|
|
190
|
+
justifies: "justifies";
|
|
190
191
|
}> & {
|
|
191
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
192
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
192
193
|
};
|
|
193
194
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
194
195
|
is(value: unknown): value is string | string[];
|
|
@@ -207,7 +208,7 @@ export declare const initDocumentOp: import("./define-operation.js").DefinedOper
|
|
|
207
208
|
[x: string]: unknown;
|
|
208
209
|
from: string;
|
|
209
210
|
to: string;
|
|
210
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
211
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
211
212
|
description?: string | string[] | undefined;
|
|
212
213
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
213
214
|
strength?: number | undefined;
|
|
@@ -298,7 +299,7 @@ export declare const initDocumentOp: import("./define-operation.js").DefinedOper
|
|
|
298
299
|
[x: string]: unknown;
|
|
299
300
|
from: string;
|
|
300
301
|
to: string;
|
|
301
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
302
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
302
303
|
description?: string | string[] | undefined;
|
|
303
304
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
304
305
|
strength?: number | undefined;
|
|
@@ -185,8 +185,9 @@ export declare const jsonToMarkdownOp: import("./define-operation.js").DefinedOp
|
|
|
185
185
|
requires: "requires";
|
|
186
186
|
disables: "disables";
|
|
187
187
|
influence: "influence";
|
|
188
|
+
justifies: "justifies";
|
|
188
189
|
}> & {
|
|
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";
|
|
190
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
190
191
|
};
|
|
191
192
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
192
193
|
is(value: unknown): value is string | string[];
|
|
@@ -205,7 +206,7 @@ export declare const jsonToMarkdownOp: import("./define-operation.js").DefinedOp
|
|
|
205
206
|
[x: string]: unknown;
|
|
206
207
|
from: string;
|
|
207
208
|
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" | "influence";
|
|
209
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
209
210
|
description?: string | string[] | undefined;
|
|
210
211
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
211
212
|
strength?: number | undefined;
|
|
@@ -296,7 +297,7 @@ export declare const jsonToMarkdownOp: import("./define-operation.js").DefinedOp
|
|
|
296
297
|
[x: string]: unknown;
|
|
297
298
|
from: string;
|
|
298
299
|
to: string;
|
|
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";
|
|
300
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
300
301
|
description?: string | string[] | undefined;
|
|
301
302
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
302
303
|
strength?: number | undefined;
|
|
@@ -310,4 +311,28 @@ export declare const jsonToMarkdownOp: import("./define-operation.js").DefinedOp
|
|
|
310
311
|
}[] | undefined;
|
|
311
312
|
};
|
|
312
313
|
};
|
|
314
|
+
relationshipLayout: z.ZodOptional<z.ZodEnum<{
|
|
315
|
+
TD: "TD";
|
|
316
|
+
BT: "BT";
|
|
317
|
+
RL: "RL";
|
|
318
|
+
LR: "LR";
|
|
319
|
+
}>>;
|
|
320
|
+
refinementLayout: z.ZodOptional<z.ZodEnum<{
|
|
321
|
+
TD: "TD";
|
|
322
|
+
BT: "BT";
|
|
323
|
+
RL: "RL";
|
|
324
|
+
LR: "LR";
|
|
325
|
+
}>>;
|
|
326
|
+
decisionLayout: z.ZodOptional<z.ZodEnum<{
|
|
327
|
+
TD: "TD";
|
|
328
|
+
BT: "BT";
|
|
329
|
+
RL: "RL";
|
|
330
|
+
LR: "LR";
|
|
331
|
+
}>>;
|
|
332
|
+
dependencyLayout: z.ZodOptional<z.ZodEnum<{
|
|
333
|
+
TD: "TD";
|
|
334
|
+
BT: "BT";
|
|
335
|
+
RL: "RL";
|
|
336
|
+
LR: "LR";
|
|
337
|
+
}>>;
|
|
313
338
|
}, z.core.$strip>, z.ZodString>;
|
|
@@ -8,7 +8,17 @@ export const jsonToMarkdownOp = defineOperation({
|
|
|
8
8
|
description: "Convert a SysProM document to single-file Markdown",
|
|
9
9
|
input: z.object({
|
|
10
10
|
doc: SysProMDocument,
|
|
11
|
+
// Optional per-diagram layout overrides when converting to Markdown
|
|
12
|
+
relationshipLayout: z.enum(["LR", "TD", "RL", "BT"]).optional(),
|
|
13
|
+
refinementLayout: z.enum(["LR", "TD", "RL", "BT"]).optional(),
|
|
14
|
+
decisionLayout: z.enum(["LR", "TD", "RL", "BT"]).optional(),
|
|
15
|
+
dependencyLayout: z.enum(["LR", "TD", "RL", "BT"]).optional(),
|
|
11
16
|
}),
|
|
12
17
|
output: z.string(),
|
|
13
|
-
fn: ({ doc }) => jsonToMarkdownSingle(doc
|
|
18
|
+
fn: ({ doc, relationshipLayout, refinementLayout, decisionLayout, dependencyLayout, }) => jsonToMarkdownSingle(doc, {
|
|
19
|
+
relationshipLayout,
|
|
20
|
+
refinementLayout,
|
|
21
|
+
decisionLayout,
|
|
22
|
+
dependencyLayout,
|
|
23
|
+
}),
|
|
14
24
|
});
|
|
@@ -188,8 +188,9 @@ export declare const markTaskDoneOp: import("./define-operation.js").DefinedOper
|
|
|
188
188
|
requires: "requires";
|
|
189
189
|
disables: "disables";
|
|
190
190
|
influence: "influence";
|
|
191
|
+
justifies: "justifies";
|
|
191
192
|
}> & {
|
|
192
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
193
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
193
194
|
};
|
|
194
195
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
195
196
|
is(value: unknown): value is string | string[];
|
|
@@ -208,7 +209,7 @@ export declare const markTaskDoneOp: import("./define-operation.js").DefinedOper
|
|
|
208
209
|
[x: string]: unknown;
|
|
209
210
|
from: string;
|
|
210
211
|
to: string;
|
|
211
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
212
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
212
213
|
description?: string | string[] | undefined;
|
|
213
214
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
214
215
|
strength?: number | undefined;
|
|
@@ -299,7 +300,7 @@ export declare const markTaskDoneOp: import("./define-operation.js").DefinedOper
|
|
|
299
300
|
[x: string]: unknown;
|
|
300
301
|
from: string;
|
|
301
302
|
to: string;
|
|
302
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
303
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
303
304
|
description?: string | string[] | undefined;
|
|
304
305
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
305
306
|
strength?: number | undefined;
|
|
@@ -499,8 +500,9 @@ export declare const markTaskDoneOp: import("./define-operation.js").DefinedOper
|
|
|
499
500
|
requires: "requires";
|
|
500
501
|
disables: "disables";
|
|
501
502
|
influence: "influence";
|
|
503
|
+
justifies: "justifies";
|
|
502
504
|
}> & {
|
|
503
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
505
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
504
506
|
};
|
|
505
507
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
506
508
|
is(value: unknown): value is string | string[];
|
|
@@ -519,7 +521,7 @@ export declare const markTaskDoneOp: import("./define-operation.js").DefinedOper
|
|
|
519
521
|
[x: string]: unknown;
|
|
520
522
|
from: string;
|
|
521
523
|
to: string;
|
|
522
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
524
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
523
525
|
description?: string | string[] | undefined;
|
|
524
526
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
525
527
|
strength?: number | undefined;
|
|
@@ -610,7 +612,7 @@ export declare const markTaskDoneOp: import("./define-operation.js").DefinedOper
|
|
|
610
612
|
[x: string]: unknown;
|
|
611
613
|
from: string;
|
|
612
614
|
to: string;
|
|
613
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
615
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
614
616
|
description?: string | string[] | undefined;
|
|
615
617
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
616
618
|
strength?: number | undefined;
|
|
@@ -188,8 +188,9 @@ export declare const markTaskUndoneOp: import("./define-operation.js").DefinedOp
|
|
|
188
188
|
requires: "requires";
|
|
189
189
|
disables: "disables";
|
|
190
190
|
influence: "influence";
|
|
191
|
+
justifies: "justifies";
|
|
191
192
|
}> & {
|
|
192
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
193
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
193
194
|
};
|
|
194
195
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
195
196
|
is(value: unknown): value is string | string[];
|
|
@@ -208,7 +209,7 @@ export declare const markTaskUndoneOp: import("./define-operation.js").DefinedOp
|
|
|
208
209
|
[x: string]: unknown;
|
|
209
210
|
from: string;
|
|
210
211
|
to: string;
|
|
211
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
212
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
212
213
|
description?: string | string[] | undefined;
|
|
213
214
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
214
215
|
strength?: number | undefined;
|
|
@@ -299,7 +300,7 @@ export declare const markTaskUndoneOp: import("./define-operation.js").DefinedOp
|
|
|
299
300
|
[x: string]: unknown;
|
|
300
301
|
from: string;
|
|
301
302
|
to: string;
|
|
302
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
303
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
303
304
|
description?: string | string[] | undefined;
|
|
304
305
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
305
306
|
strength?: number | undefined;
|
|
@@ -499,8 +500,9 @@ export declare const markTaskUndoneOp: import("./define-operation.js").DefinedOp
|
|
|
499
500
|
requires: "requires";
|
|
500
501
|
disables: "disables";
|
|
501
502
|
influence: "influence";
|
|
503
|
+
justifies: "justifies";
|
|
502
504
|
}> & {
|
|
503
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
505
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
504
506
|
};
|
|
505
507
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
506
508
|
is(value: unknown): value is string | string[];
|
|
@@ -519,7 +521,7 @@ export declare const markTaskUndoneOp: import("./define-operation.js").DefinedOp
|
|
|
519
521
|
[x: string]: unknown;
|
|
520
522
|
from: string;
|
|
521
523
|
to: string;
|
|
522
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
524
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
523
525
|
description?: string | string[] | undefined;
|
|
524
526
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
525
527
|
strength?: number | undefined;
|
|
@@ -610,7 +612,7 @@ export declare const markTaskUndoneOp: import("./define-operation.js").DefinedOp
|
|
|
610
612
|
[x: string]: unknown;
|
|
611
613
|
from: string;
|
|
612
614
|
to: string;
|
|
613
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
615
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
614
616
|
description?: string | string[] | undefined;
|
|
615
617
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
616
618
|
strength?: number | undefined;
|
|
@@ -186,8 +186,9 @@ export declare const markdownToJsonOp: import("./define-operation.js").DefinedOp
|
|
|
186
186
|
requires: "requires";
|
|
187
187
|
disables: "disables";
|
|
188
188
|
influence: "influence";
|
|
189
|
+
justifies: "justifies";
|
|
189
190
|
}> & {
|
|
190
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
191
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
191
192
|
};
|
|
192
193
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
193
194
|
is(value: unknown): value is string | string[];
|
|
@@ -206,7 +207,7 @@ export declare const markdownToJsonOp: import("./define-operation.js").DefinedOp
|
|
|
206
207
|
[x: string]: unknown;
|
|
207
208
|
from: string;
|
|
208
209
|
to: string;
|
|
209
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
210
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
210
211
|
description?: string | string[] | undefined;
|
|
211
212
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
212
213
|
strength?: number | undefined;
|
|
@@ -297,7 +298,7 @@ export declare const markdownToJsonOp: import("./define-operation.js").DefinedOp
|
|
|
297
298
|
[x: string]: unknown;
|
|
298
299
|
from: string;
|
|
299
300
|
to: string;
|
|
300
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
301
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
301
302
|
description?: string | string[] | undefined;
|
|
302
303
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
303
304
|
strength?: number | undefined;
|
|
@@ -189,8 +189,9 @@ export declare const nextIdOp: import("./define-operation.js").DefinedOperation<
|
|
|
189
189
|
requires: "requires";
|
|
190
190
|
disables: "disables";
|
|
191
191
|
influence: "influence";
|
|
192
|
+
justifies: "justifies";
|
|
192
193
|
}> & {
|
|
193
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
194
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
194
195
|
};
|
|
195
196
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
196
197
|
is(value: unknown): value is string | string[];
|
|
@@ -209,7 +210,7 @@ export declare const nextIdOp: import("./define-operation.js").DefinedOperation<
|
|
|
209
210
|
[x: string]: unknown;
|
|
210
211
|
from: string;
|
|
211
212
|
to: string;
|
|
212
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
213
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
213
214
|
description?: string | string[] | undefined;
|
|
214
215
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
215
216
|
strength?: number | undefined;
|
|
@@ -300,7 +301,7 @@ export declare const nextIdOp: import("./define-operation.js").DefinedOperation<
|
|
|
300
301
|
[x: string]: unknown;
|
|
301
302
|
from: string;
|
|
302
303
|
to: string;
|
|
303
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
304
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
|
|
304
305
|
description?: string | string[] | undefined;
|
|
305
306
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
306
307
|
strength?: number | undefined;
|