@karmaniverous/jeeves-runner 0.7.0 → 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.
Files changed (2) hide show
  1. package/dist/index.d.ts +3 -3
  2. package/package.json +2 -2
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>;
@@ -103,9 +103,9 @@ type Queue = z.infer<typeof queueSchema>;
103
103
  /** Run status enumeration schema (pending, running, ok, error, timeout, skipped). */
104
104
  declare const runStatusSchema: z.ZodEnum<{
105
105
  pending: "pending";
106
- error: "error";
107
106
  running: "running";
108
107
  ok: "ok";
108
+ error: "error";
109
109
  timeout: "timeout";
110
110
  skipped: "skipped";
111
111
  }>;
@@ -121,9 +121,9 @@ declare const runSchema: z.ZodObject<{
121
121
  jobId: z.ZodString;
122
122
  status: z.ZodEnum<{
123
123
  pending: "pending";
124
- error: "error";
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@karmaniverous/jeeves-runner",
3
- "version": "0.7.0",
3
+ "version": "0.7.2",
4
4
  "author": "Jason Williscroft",
5
5
  "description": "Graph-aware job execution engine with SQLite state. Part of the Jeeves platform.",
6
6
  "license": "BSD-3-Clause",
@@ -47,7 +47,7 @@
47
47
  },
48
48
  "dependencies": {
49
49
  "@karmaniverous/jeeves": "^0.3.0",
50
- "@karmaniverous/rrstack": "^0.17.0",
50
+ "@karmaniverous/rrstack": "^0.17.1",
51
51
  "commander": "^14.0.3",
52
52
  "croner": "^10.0.1",
53
53
  "fastify": "^5.7.4",