sysprom 1.15.0 → 1.16.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/schema.json +18 -1
- package/dist/src/cli/commands/infer.js +31 -2
- package/dist/src/endpoint-types.js +23 -0
- package/dist/src/index.d.ts +2 -2
- package/dist/src/index.js +2 -2
- package/dist/src/mcp/server.js +42 -4
- package/dist/src/operations/add-node.d.ts +51 -9
- package/dist/src/operations/add-plan-task.d.ts +34 -6
- package/dist/src/operations/add-relationship.d.ts +48 -8
- package/dist/src/operations/check.d.ts +17 -3
- package/dist/src/operations/graph.d.ts +17 -3
- package/dist/src/operations/index.d.ts +1 -1
- package/dist/src/operations/index.js +1 -1
- package/dist/src/operations/infer-completeness.d.ts +17 -3
- package/dist/src/operations/infer-derived.d.ts +17 -3
- package/dist/src/operations/infer-impact.d.ts +1066 -13
- package/dist/src/operations/infer-impact.js +157 -39
- package/dist/src/operations/infer-lifecycle.d.ts +17 -3
- package/dist/src/operations/init-document.d.ts +17 -3
- package/dist/src/operations/json-to-markdown.d.ts +17 -3
- package/dist/src/operations/mark-task-done.d.ts +34 -6
- package/dist/src/operations/mark-task-undone.d.ts +34 -6
- package/dist/src/operations/markdown-to-json.d.ts +17 -3
- package/dist/src/operations/next-id.d.ts +17 -3
- package/dist/src/operations/node-history.d.ts +17 -3
- package/dist/src/operations/plan-add-task.d.ts +34 -6
- package/dist/src/operations/plan-gate.d.ts +17 -3
- package/dist/src/operations/plan-init.d.ts +17 -3
- package/dist/src/operations/plan-progress.d.ts +17 -3
- package/dist/src/operations/plan-status.d.ts +17 -3
- package/dist/src/operations/query-node.d.ts +107 -17
- package/dist/src/operations/query-nodes.d.ts +34 -6
- package/dist/src/operations/query-relationships.d.ts +31 -5
- package/dist/src/operations/remove-node.d.ts +51 -9
- package/dist/src/operations/remove-relationship.d.ts +36 -7
- package/dist/src/operations/rename.d.ts +34 -6
- package/dist/src/operations/search.d.ts +34 -6
- package/dist/src/operations/speckit-diff.d.ts +17 -3
- package/dist/src/operations/speckit-export.d.ts +17 -3
- package/dist/src/operations/speckit-import.d.ts +17 -3
- package/dist/src/operations/speckit-sync.d.ts +51 -9
- package/dist/src/operations/state-at.d.ts +17 -3
- package/dist/src/operations/stats.d.ts +17 -3
- package/dist/src/operations/sync.d.ts +51 -9
- package/dist/src/operations/task-list.d.ts +17 -3
- package/dist/src/operations/timeline.d.ts +17 -3
- package/dist/src/operations/trace-from-node.d.ts +51 -9
- package/dist/src/operations/update-metadata.d.ts +34 -6
- package/dist/src/operations/update-node.d.ts +48 -8
- package/dist/src/operations/update-plan-task.d.ts +34 -6
- package/dist/src/operations/validate.d.ts +17 -3
- package/dist/src/schema.d.ts +70 -10
- package/dist/src/schema.js +21 -0
- package/package.json +1 -1
- package/schema.json +18 -1
|
@@ -185,19 +185,31 @@ export declare const markdownToJsonOp: import("./define-operation.js").DefinedOp
|
|
|
185
185
|
selects: "selects";
|
|
186
186
|
requires: "requires";
|
|
187
187
|
disables: "disables";
|
|
188
|
+
influence: "influence";
|
|
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";
|
|
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";
|
|
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[];
|
|
193
194
|
}>;
|
|
195
|
+
polarity: z.ZodOptional<z.ZodEnum<{
|
|
196
|
+
positive: "positive";
|
|
197
|
+
negative: "negative";
|
|
198
|
+
neutral: "neutral";
|
|
199
|
+
uncertain: "uncertain";
|
|
200
|
+
}> & {
|
|
201
|
+
is(value: unknown): value is "positive" | "negative" | "neutral" | "uncertain";
|
|
202
|
+
}>;
|
|
203
|
+
strength: z.ZodOptional<z.ZodNumber>;
|
|
194
204
|
}, z.core.$loose> & {
|
|
195
205
|
is(value: unknown): value is {
|
|
196
206
|
[x: string]: unknown;
|
|
197
207
|
from: string;
|
|
198
208
|
to: string;
|
|
199
|
-
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";
|
|
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";
|
|
200
210
|
description?: string | string[] | undefined;
|
|
211
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
212
|
+
strength?: number | undefined;
|
|
201
213
|
};
|
|
202
214
|
}>>;
|
|
203
215
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -285,8 +297,10 @@ export declare const markdownToJsonOp: import("./define-operation.js").DefinedOp
|
|
|
285
297
|
[x: string]: unknown;
|
|
286
298
|
from: string;
|
|
287
299
|
to: string;
|
|
288
|
-
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";
|
|
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";
|
|
289
301
|
description?: string | string[] | undefined;
|
|
302
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
303
|
+
strength?: number | undefined;
|
|
290
304
|
}[] | undefined;
|
|
291
305
|
external_references?: {
|
|
292
306
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
@@ -188,19 +188,31 @@ export declare const nextIdOp: import("./define-operation.js").DefinedOperation<
|
|
|
188
188
|
selects: "selects";
|
|
189
189
|
requires: "requires";
|
|
190
190
|
disables: "disables";
|
|
191
|
+
influence: "influence";
|
|
191
192
|
}> & {
|
|
192
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables";
|
|
193
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
193
194
|
};
|
|
194
195
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
195
196
|
is(value: unknown): value is string | string[];
|
|
196
197
|
}>;
|
|
198
|
+
polarity: z.ZodOptional<z.ZodEnum<{
|
|
199
|
+
positive: "positive";
|
|
200
|
+
negative: "negative";
|
|
201
|
+
neutral: "neutral";
|
|
202
|
+
uncertain: "uncertain";
|
|
203
|
+
}> & {
|
|
204
|
+
is(value: unknown): value is "positive" | "negative" | "neutral" | "uncertain";
|
|
205
|
+
}>;
|
|
206
|
+
strength: z.ZodOptional<z.ZodNumber>;
|
|
197
207
|
}, z.core.$loose> & {
|
|
198
208
|
is(value: unknown): value is {
|
|
199
209
|
[x: string]: unknown;
|
|
200
210
|
from: string;
|
|
201
211
|
to: string;
|
|
202
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables";
|
|
212
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
203
213
|
description?: string | string[] | undefined;
|
|
214
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
215
|
+
strength?: number | undefined;
|
|
204
216
|
};
|
|
205
217
|
}>>;
|
|
206
218
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -288,8 +300,10 @@ export declare const nextIdOp: import("./define-operation.js").DefinedOperation<
|
|
|
288
300
|
[x: string]: unknown;
|
|
289
301
|
from: string;
|
|
290
302
|
to: string;
|
|
291
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables";
|
|
303
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
292
304
|
description?: string | string[] | undefined;
|
|
305
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
306
|
+
strength?: number | undefined;
|
|
293
307
|
}[] | undefined;
|
|
294
308
|
external_references?: {
|
|
295
309
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
@@ -194,19 +194,31 @@ export declare const nodeHistoryOp: import("./define-operation.js").DefinedOpera
|
|
|
194
194
|
selects: "selects";
|
|
195
195
|
requires: "requires";
|
|
196
196
|
disables: "disables";
|
|
197
|
+
influence: "influence";
|
|
197
198
|
}> & {
|
|
198
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables";
|
|
199
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
199
200
|
};
|
|
200
201
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
201
202
|
is(value: unknown): value is string | string[];
|
|
202
203
|
}>;
|
|
204
|
+
polarity: z.ZodOptional<z.ZodEnum<{
|
|
205
|
+
positive: "positive";
|
|
206
|
+
negative: "negative";
|
|
207
|
+
neutral: "neutral";
|
|
208
|
+
uncertain: "uncertain";
|
|
209
|
+
}> & {
|
|
210
|
+
is(value: unknown): value is "positive" | "negative" | "neutral" | "uncertain";
|
|
211
|
+
}>;
|
|
212
|
+
strength: z.ZodOptional<z.ZodNumber>;
|
|
203
213
|
}, z.core.$loose> & {
|
|
204
214
|
is(value: unknown): value is {
|
|
205
215
|
[x: string]: unknown;
|
|
206
216
|
from: string;
|
|
207
217
|
to: string;
|
|
208
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables";
|
|
218
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
209
219
|
description?: string | string[] | undefined;
|
|
220
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
221
|
+
strength?: number | undefined;
|
|
210
222
|
};
|
|
211
223
|
}>>;
|
|
212
224
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -294,8 +306,10 @@ export declare const nodeHistoryOp: import("./define-operation.js").DefinedOpera
|
|
|
294
306
|
[x: string]: unknown;
|
|
295
307
|
from: string;
|
|
296
308
|
to: string;
|
|
297
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables";
|
|
309
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
298
310
|
description?: string | string[] | undefined;
|
|
311
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
312
|
+
strength?: number | undefined;
|
|
299
313
|
}[] | undefined;
|
|
300
314
|
external_references?: {
|
|
301
315
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
@@ -184,19 +184,31 @@ export declare const planAddTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
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 planAddTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
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";
|
|
@@ -482,19 +496,31 @@ export declare const planAddTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
482
496
|
selects: "selects";
|
|
483
497
|
requires: "requires";
|
|
484
498
|
disables: "disables";
|
|
499
|
+
influence: "influence";
|
|
485
500
|
}> & {
|
|
486
|
-
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";
|
|
501
|
+
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";
|
|
487
502
|
};
|
|
488
503
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
489
504
|
is(value: unknown): value is string | string[];
|
|
490
505
|
}>;
|
|
506
|
+
polarity: z.ZodOptional<z.ZodEnum<{
|
|
507
|
+
positive: "positive";
|
|
508
|
+
negative: "negative";
|
|
509
|
+
neutral: "neutral";
|
|
510
|
+
uncertain: "uncertain";
|
|
511
|
+
}> & {
|
|
512
|
+
is(value: unknown): value is "positive" | "negative" | "neutral" | "uncertain";
|
|
513
|
+
}>;
|
|
514
|
+
strength: z.ZodOptional<z.ZodNumber>;
|
|
491
515
|
}, z.core.$loose> & {
|
|
492
516
|
is(value: unknown): value is {
|
|
493
517
|
[x: string]: unknown;
|
|
494
518
|
from: string;
|
|
495
519
|
to: string;
|
|
496
|
-
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";
|
|
520
|
+
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";
|
|
497
521
|
description?: string | string[] | undefined;
|
|
522
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
523
|
+
strength?: number | undefined;
|
|
498
524
|
};
|
|
499
525
|
}>>;
|
|
500
526
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -582,8 +608,10 @@ export declare const planAddTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
582
608
|
[x: string]: unknown;
|
|
583
609
|
from: string;
|
|
584
610
|
to: string;
|
|
585
|
-
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";
|
|
611
|
+
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";
|
|
586
612
|
description?: string | string[] | undefined;
|
|
613
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
614
|
+
strength?: number | undefined;
|
|
587
615
|
}[] | undefined;
|
|
588
616
|
external_references?: {
|
|
589
617
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
@@ -221,19 +221,31 @@ export declare const planGateOp: import("./define-operation.js").DefinedOperatio
|
|
|
221
221
|
selects: "selects";
|
|
222
222
|
requires: "requires";
|
|
223
223
|
disables: "disables";
|
|
224
|
+
influence: "influence";
|
|
224
225
|
}> & {
|
|
225
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables";
|
|
226
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
226
227
|
};
|
|
227
228
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
228
229
|
is(value: unknown): value is string | string[];
|
|
229
230
|
}>;
|
|
231
|
+
polarity: z.ZodOptional<z.ZodEnum<{
|
|
232
|
+
positive: "positive";
|
|
233
|
+
negative: "negative";
|
|
234
|
+
neutral: "neutral";
|
|
235
|
+
uncertain: "uncertain";
|
|
236
|
+
}> & {
|
|
237
|
+
is(value: unknown): value is "positive" | "negative" | "neutral" | "uncertain";
|
|
238
|
+
}>;
|
|
239
|
+
strength: z.ZodOptional<z.ZodNumber>;
|
|
230
240
|
}, z.core.$loose> & {
|
|
231
241
|
is(value: unknown): value is {
|
|
232
242
|
[x: string]: unknown;
|
|
233
243
|
from: string;
|
|
234
244
|
to: string;
|
|
235
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables";
|
|
245
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
236
246
|
description?: string | string[] | undefined;
|
|
247
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
248
|
+
strength?: number | undefined;
|
|
237
249
|
};
|
|
238
250
|
}>>;
|
|
239
251
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -321,8 +333,10 @@ export declare const planGateOp: import("./define-operation.js").DefinedOperatio
|
|
|
321
333
|
[x: string]: unknown;
|
|
322
334
|
from: string;
|
|
323
335
|
to: string;
|
|
324
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables";
|
|
336
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
325
337
|
description?: string | string[] | undefined;
|
|
338
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
339
|
+
strength?: number | undefined;
|
|
326
340
|
}[] | undefined;
|
|
327
341
|
external_references?: {
|
|
328
342
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
@@ -186,19 +186,31 @@ export declare const planInitOp: import("./define-operation.js").DefinedOperatio
|
|
|
186
186
|
selects: "selects";
|
|
187
187
|
requires: "requires";
|
|
188
188
|
disables: "disables";
|
|
189
|
+
influence: "influence";
|
|
189
190
|
}> & {
|
|
190
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables";
|
|
191
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
191
192
|
};
|
|
192
193
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
193
194
|
is(value: unknown): value is string | string[];
|
|
194
195
|
}>;
|
|
196
|
+
polarity: z.ZodOptional<z.ZodEnum<{
|
|
197
|
+
positive: "positive";
|
|
198
|
+
negative: "negative";
|
|
199
|
+
neutral: "neutral";
|
|
200
|
+
uncertain: "uncertain";
|
|
201
|
+
}> & {
|
|
202
|
+
is(value: unknown): value is "positive" | "negative" | "neutral" | "uncertain";
|
|
203
|
+
}>;
|
|
204
|
+
strength: z.ZodOptional<z.ZodNumber>;
|
|
195
205
|
}, z.core.$loose> & {
|
|
196
206
|
is(value: unknown): value is {
|
|
197
207
|
[x: string]: unknown;
|
|
198
208
|
from: string;
|
|
199
209
|
to: string;
|
|
200
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables";
|
|
210
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
201
211
|
description?: string | string[] | undefined;
|
|
212
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
213
|
+
strength?: number | undefined;
|
|
202
214
|
};
|
|
203
215
|
}>>;
|
|
204
216
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -286,8 +298,10 @@ export declare const planInitOp: import("./define-operation.js").DefinedOperatio
|
|
|
286
298
|
[x: string]: unknown;
|
|
287
299
|
from: string;
|
|
288
300
|
to: string;
|
|
289
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables";
|
|
301
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
290
302
|
description?: string | string[] | undefined;
|
|
303
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
304
|
+
strength?: number | undefined;
|
|
291
305
|
}[] | undefined;
|
|
292
306
|
external_references?: {
|
|
293
307
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
@@ -193,19 +193,31 @@ export declare const planProgressOp: import("./define-operation.js").DefinedOper
|
|
|
193
193
|
selects: "selects";
|
|
194
194
|
requires: "requires";
|
|
195
195
|
disables: "disables";
|
|
196
|
+
influence: "influence";
|
|
196
197
|
}> & {
|
|
197
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables";
|
|
198
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
198
199
|
};
|
|
199
200
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
200
201
|
is(value: unknown): value is string | string[];
|
|
201
202
|
}>;
|
|
203
|
+
polarity: z.ZodOptional<z.ZodEnum<{
|
|
204
|
+
positive: "positive";
|
|
205
|
+
negative: "negative";
|
|
206
|
+
neutral: "neutral";
|
|
207
|
+
uncertain: "uncertain";
|
|
208
|
+
}> & {
|
|
209
|
+
is(value: unknown): value is "positive" | "negative" | "neutral" | "uncertain";
|
|
210
|
+
}>;
|
|
211
|
+
strength: z.ZodOptional<z.ZodNumber>;
|
|
202
212
|
}, z.core.$loose> & {
|
|
203
213
|
is(value: unknown): value is {
|
|
204
214
|
[x: string]: unknown;
|
|
205
215
|
from: string;
|
|
206
216
|
to: string;
|
|
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";
|
|
217
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
208
218
|
description?: string | string[] | undefined;
|
|
219
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
220
|
+
strength?: number | undefined;
|
|
209
221
|
};
|
|
210
222
|
}>>;
|
|
211
223
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -293,8 +305,10 @@ export declare const planProgressOp: import("./define-operation.js").DefinedOper
|
|
|
293
305
|
[x: string]: unknown;
|
|
294
306
|
from: string;
|
|
295
307
|
to: string;
|
|
296
|
-
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";
|
|
308
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
297
309
|
description?: string | string[] | undefined;
|
|
310
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
311
|
+
strength?: number | undefined;
|
|
298
312
|
}[] | undefined;
|
|
299
313
|
external_references?: {
|
|
300
314
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
@@ -211,19 +211,31 @@ export declare const planStatusOp: import("./define-operation.js").DefinedOperat
|
|
|
211
211
|
selects: "selects";
|
|
212
212
|
requires: "requires";
|
|
213
213
|
disables: "disables";
|
|
214
|
+
influence: "influence";
|
|
214
215
|
}> & {
|
|
215
|
-
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";
|
|
216
|
+
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";
|
|
216
217
|
};
|
|
217
218
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
218
219
|
is(value: unknown): value is string | string[];
|
|
219
220
|
}>;
|
|
221
|
+
polarity: z.ZodOptional<z.ZodEnum<{
|
|
222
|
+
positive: "positive";
|
|
223
|
+
negative: "negative";
|
|
224
|
+
neutral: "neutral";
|
|
225
|
+
uncertain: "uncertain";
|
|
226
|
+
}> & {
|
|
227
|
+
is(value: unknown): value is "positive" | "negative" | "neutral" | "uncertain";
|
|
228
|
+
}>;
|
|
229
|
+
strength: z.ZodOptional<z.ZodNumber>;
|
|
220
230
|
}, z.core.$loose> & {
|
|
221
231
|
is(value: unknown): value is {
|
|
222
232
|
[x: string]: unknown;
|
|
223
233
|
from: string;
|
|
224
234
|
to: string;
|
|
225
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables";
|
|
235
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence";
|
|
226
236
|
description?: string | string[] | undefined;
|
|
237
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
238
|
+
strength?: number | undefined;
|
|
227
239
|
};
|
|
228
240
|
}>>;
|
|
229
241
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -311,8 +323,10 @@ export declare const planStatusOp: import("./define-operation.js").DefinedOperat
|
|
|
311
323
|
[x: string]: unknown;
|
|
312
324
|
from: string;
|
|
313
325
|
to: string;
|
|
314
|
-
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";
|
|
326
|
+
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";
|
|
315
327
|
description?: string | string[] | undefined;
|
|
328
|
+
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
329
|
+
strength?: number | undefined;
|
|
316
330
|
}[] | undefined;
|
|
317
331
|
external_references?: {
|
|
318
332
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|