@karmaniverous/jeeves-runner 0.7.0 → 0.7.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -2
  2. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -102,8 +102,8 @@ 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
- pending: "pending";
106
105
  error: "error";
106
+ pending: "pending";
107
107
  running: "running";
108
108
  ok: "ok";
109
109
  timeout: "timeout";
@@ -120,8 +120,8 @@ declare const runSchema: z.ZodObject<{
120
120
  id: z.ZodNumber;
121
121
  jobId: z.ZodString;
122
122
  status: z.ZodEnum<{
123
- pending: "pending";
124
123
  error: "error";
124
+ pending: "pending";
125
125
  running: "running";
126
126
  ok: "ok";
127
127
  timeout: "timeout";
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.1",
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",