@oisincoveney/pipeline 1.10.3 → 1.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/config.d.ts +4 -4
- package/package.json +1 -1
package/dist/config.d.ts
CHANGED
|
@@ -222,10 +222,10 @@ declare const configSchema: z.ZodObject<{
|
|
|
222
222
|
}, z.core.$strict>>;
|
|
223
223
|
output: z.ZodOptional<z.ZodObject<{
|
|
224
224
|
format: z.ZodEnum<{
|
|
225
|
-
json_schema: "json_schema";
|
|
226
225
|
text: "text";
|
|
227
226
|
json: "json";
|
|
228
227
|
jsonl: "jsonl";
|
|
228
|
+
json_schema: "json_schema";
|
|
229
229
|
}>;
|
|
230
230
|
repair: z.ZodOptional<z.ZodObject<{
|
|
231
231
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -238,7 +238,6 @@ declare const configSchema: z.ZodObject<{
|
|
|
238
238
|
runner: z.ZodString;
|
|
239
239
|
skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
240
240
|
tools: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
241
|
-
task: "task";
|
|
242
241
|
read: "read";
|
|
243
242
|
list: "list";
|
|
244
243
|
grep: "grep";
|
|
@@ -246,6 +245,7 @@ declare const configSchema: z.ZodObject<{
|
|
|
246
245
|
bash: "bash";
|
|
247
246
|
edit: "edit";
|
|
248
247
|
write: "write";
|
|
248
|
+
task: "task";
|
|
249
249
|
}>>>;
|
|
250
250
|
}, z.core.$strict>>>;
|
|
251
251
|
rules: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -265,15 +265,14 @@ declare const configSchema: z.ZodObject<{
|
|
|
265
265
|
disabled: "disabled";
|
|
266
266
|
}>>>;
|
|
267
267
|
output_formats: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
268
|
-
json_schema: "json_schema";
|
|
269
268
|
text: "text";
|
|
270
269
|
json: "json";
|
|
271
270
|
jsonl: "jsonl";
|
|
271
|
+
json_schema: "json_schema";
|
|
272
272
|
}>>>;
|
|
273
273
|
rules: z.ZodOptional<z.ZodBoolean>;
|
|
274
274
|
skills: z.ZodOptional<z.ZodBoolean>;
|
|
275
275
|
tools: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
276
|
-
task: "task";
|
|
277
276
|
read: "read";
|
|
278
277
|
list: "list";
|
|
279
278
|
grep: "grep";
|
|
@@ -281,6 +280,7 @@ declare const configSchema: z.ZodObject<{
|
|
|
281
280
|
bash: "bash";
|
|
282
281
|
edit: "edit";
|
|
283
282
|
write: "write";
|
|
283
|
+
task: "task";
|
|
284
284
|
}>>>;
|
|
285
285
|
}, z.core.$strict>;
|
|
286
286
|
command: z.ZodOptional<z.ZodString>;
|
package/package.json
CHANGED