@karmaniverous/jeeves-runner 0.7.1 → 0.7.2
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/index.d.ts +3 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -25,11 +25,11 @@ declare const runnerConfigSchema: z.ZodObject<{
|
|
|
25
25
|
}, z.core.$strip>>;
|
|
26
26
|
log: z.ZodDefault<z.ZodObject<{
|
|
27
27
|
level: z.ZodDefault<z.ZodEnum<{
|
|
28
|
+
error: "error";
|
|
28
29
|
trace: "trace";
|
|
29
30
|
debug: "debug";
|
|
30
31
|
info: "info";
|
|
31
32
|
warn: "warn";
|
|
32
|
-
error: "error";
|
|
33
33
|
fatal: "fatal";
|
|
34
34
|
}>>;
|
|
35
35
|
file: z.ZodOptional<z.ZodString>;
|
|
@@ -102,10 +102,10 @@ type Queue = z.infer<typeof queueSchema>;
|
|
|
102
102
|
|
|
103
103
|
/** Run status enumeration schema (pending, running, ok, error, timeout, skipped). */
|
|
104
104
|
declare const runStatusSchema: z.ZodEnum<{
|
|
105
|
-
error: "error";
|
|
106
105
|
pending: "pending";
|
|
107
106
|
running: "running";
|
|
108
107
|
ok: "ok";
|
|
108
|
+
error: "error";
|
|
109
109
|
timeout: "timeout";
|
|
110
110
|
skipped: "skipped";
|
|
111
111
|
}>;
|
|
@@ -120,10 +120,10 @@ declare const runSchema: z.ZodObject<{
|
|
|
120
120
|
id: z.ZodNumber;
|
|
121
121
|
jobId: z.ZodString;
|
|
122
122
|
status: z.ZodEnum<{
|
|
123
|
-
error: "error";
|
|
124
123
|
pending: "pending";
|
|
125
124
|
running: "running";
|
|
126
125
|
ok: "ok";
|
|
126
|
+
error: "error";
|
|
127
127
|
timeout: "timeout";
|
|
128
128
|
skipped: "skipped";
|
|
129
129
|
}>;
|
package/package.json
CHANGED