@oisincoveney/pipeline 3.11.12 → 3.11.13
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/config/schemas.d.ts
CHANGED
|
@@ -233,8 +233,8 @@ declare const configSchema: z.ZodObject<{
|
|
|
233
233
|
policy: z.ZodOptional<z.ZodObject<{
|
|
234
234
|
commands: z.ZodOptional<z.ZodEnum<{
|
|
235
235
|
allow: "allow";
|
|
236
|
-
"trusted-only": "trusted-only";
|
|
237
236
|
deny: "deny";
|
|
237
|
+
"trusted-only": "trusted-only";
|
|
238
238
|
}>>;
|
|
239
239
|
modules: z.ZodOptional<z.ZodEnum<{
|
|
240
240
|
allow: "allow";
|
|
@@ -262,8 +262,8 @@ declare const configSchema: z.ZodObject<{
|
|
|
262
262
|
global: "global";
|
|
263
263
|
}>>;
|
|
264
264
|
mode: z.ZodEnum<{
|
|
265
|
-
hosted: "hosted";
|
|
266
265
|
local: "local";
|
|
266
|
+
hosted: "hosted";
|
|
267
267
|
}>;
|
|
268
268
|
provider: z.ZodLiteral<"toolhive">;
|
|
269
269
|
authorization_env: z.ZodDefault<z.ZodString>;
|
|
@@ -306,10 +306,10 @@ declare const configSchema: z.ZodObject<{
|
|
|
306
306
|
}, z.core.$strict>>;
|
|
307
307
|
output: z.ZodOptional<z.ZodObject<{
|
|
308
308
|
format: z.ZodEnum<{
|
|
309
|
+
json_schema: "json_schema";
|
|
309
310
|
text: "text";
|
|
310
311
|
json: "json";
|
|
311
312
|
jsonl: "jsonl";
|
|
312
|
-
json_schema: "json_schema";
|
|
313
313
|
}>;
|
|
314
314
|
repair: z.ZodOptional<z.ZodObject<{
|
|
315
315
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -385,10 +385,10 @@ declare const configSchema: z.ZodObject<{
|
|
|
385
385
|
disabled: "disabled";
|
|
386
386
|
}>>>;
|
|
387
387
|
output_formats: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
388
|
+
json_schema: "json_schema";
|
|
388
389
|
text: "text";
|
|
389
390
|
json: "json";
|
|
390
391
|
jsonl: "jsonl";
|
|
391
|
-
json_schema: "json_schema";
|
|
392
392
|
}>>>;
|
|
393
393
|
rules: z.ZodOptional<z.ZodBoolean>;
|
|
394
394
|
skills: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -509,8 +509,8 @@ declare const configSchema: z.ZodObject<{
|
|
|
509
509
|
schedules: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
510
510
|
description: z.ZodOptional<z.ZodString>;
|
|
511
511
|
baseline: z.ZodEnum<{
|
|
512
|
-
quick: "quick";
|
|
513
512
|
execute: "execute";
|
|
513
|
+
quick: "quick";
|
|
514
514
|
}>;
|
|
515
515
|
max_parallel_nodes: z.ZodOptional<z.ZodNumber>;
|
|
516
516
|
node_catalog: z.ZodOptional<z.ZodString>;
|
package/dist/hooks.d.ts
CHANGED
|
@@ -13,8 +13,8 @@ declare const hookResultSchema: z.ZodObject<{
|
|
|
13
13
|
taskContext: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
14
14
|
}, z.core.$strict>>;
|
|
15
15
|
status: z.ZodEnum<{
|
|
16
|
-
pass: "pass";
|
|
17
16
|
fail: "fail";
|
|
17
|
+
pass: "pass";
|
|
18
18
|
skip: "skip";
|
|
19
19
|
}>;
|
|
20
20
|
summary: z.ZodOptional<z.ZodString>;
|
package/dist/moka-submit.d.ts
CHANGED
|
@@ -161,8 +161,8 @@ declare const mokaSubmitOptionsSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
161
161
|
}, z.core.$strict>>;
|
|
162
162
|
serviceAccountName: z.ZodOptional<z.ZodString>;
|
|
163
163
|
mode: z.ZodEnum<{
|
|
164
|
-
full: "full";
|
|
165
164
|
quick: "quick";
|
|
165
|
+
full: "full";
|
|
166
166
|
}>;
|
|
167
167
|
schedulePath: z.ZodOptional<z.ZodString>;
|
|
168
168
|
scheduleYaml: z.ZodOptional<z.ZodString>;
|
|
@@ -43,8 +43,8 @@ declare const runnerDeliverySchema: z.ZodObject<{
|
|
|
43
43
|
declare const mokaSubmissionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
44
44
|
kind: z.ZodLiteral<"graph">;
|
|
45
45
|
mode: z.ZodEnum<{
|
|
46
|
-
full: "full";
|
|
47
46
|
quick: "quick";
|
|
47
|
+
full: "full";
|
|
48
48
|
}>;
|
|
49
49
|
}, z.core.$strict>, z.ZodObject<{
|
|
50
50
|
argv: z.ZodArray<z.ZodString>;
|
|
@@ -104,8 +104,8 @@ declare const runnerCommandPayloadSchema: z.ZodObject<{
|
|
|
104
104
|
submission: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
105
105
|
kind: z.ZodLiteral<"graph">;
|
|
106
106
|
mode: z.ZodEnum<{
|
|
107
|
-
full: "full";
|
|
108
107
|
quick: "quick";
|
|
108
|
+
full: "full";
|
|
109
109
|
}>;
|
|
110
110
|
}, z.core.$strict>, z.ZodObject<{
|
|
111
111
|
argv: z.ZodArray<z.ZodString>;
|
|
@@ -108,8 +108,8 @@ declare const runnerEventRecordSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
108
108
|
nodeId: z.ZodOptional<z.ZodString>;
|
|
109
109
|
outputs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
110
110
|
status: z.ZodEnum<{
|
|
111
|
-
pass: "pass";
|
|
112
111
|
fail: "fail";
|
|
112
|
+
pass: "pass";
|
|
113
113
|
skip: "skip";
|
|
114
114
|
}>;
|
|
115
115
|
summary: z.ZodOptional<z.ZodString>;
|
|
@@ -286,8 +286,8 @@ declare const runnerEventBatchSchema: z.ZodObject<{
|
|
|
286
286
|
nodeId: z.ZodOptional<z.ZodString>;
|
|
287
287
|
outputs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
288
288
|
status: z.ZodEnum<{
|
|
289
|
-
pass: "pass";
|
|
290
289
|
fail: "fail";
|
|
290
|
+
pass: "pass";
|
|
291
291
|
skip: "skip";
|
|
292
292
|
}>;
|
|
293
293
|
summary: z.ZodOptional<z.ZodString>;
|
package/package.json
CHANGED
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
"@biomejs/biome": "2.4.15",
|
|
32
32
|
"@effect/vitest": "^0.29.0",
|
|
33
33
|
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
34
|
+
"@semantic-release/exec": "^7.1.0",
|
|
34
35
|
"@semantic-release/github": "^12.0.8",
|
|
35
36
|
"@semantic-release/npm": "^13.1.5",
|
|
36
37
|
"@semantic-release/release-notes-generator": "^14.1.1",
|
|
@@ -127,7 +128,7 @@
|
|
|
127
128
|
"prepack": "bun run build:cli"
|
|
128
129
|
},
|
|
129
130
|
"type": "module",
|
|
130
|
-
"version": "3.11.
|
|
131
|
+
"version": "3.11.13",
|
|
131
132
|
"description": "Config-driven multi-agent pipeline runner for repository work",
|
|
132
133
|
"main": "./dist/index.js",
|
|
133
134
|
"types": "./dist/index.d.ts",
|