@karmaniverous/jeeves-runner 0.3.1 → 0.4.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/index.d.ts +2 -2
- package/package.json +3 -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.
|
|
3
|
+
"version": "0.4.0",
|
|
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",
|
|
@@ -90,7 +90,8 @@
|
|
|
90
90
|
"output": "CHANGELOG.md",
|
|
91
91
|
"unreleased": true,
|
|
92
92
|
"commitLimit": false,
|
|
93
|
-
"hideCredit": true
|
|
93
|
+
"hideCredit": true,
|
|
94
|
+
"tagPrefix": "service/"
|
|
94
95
|
},
|
|
95
96
|
"release-it": {
|
|
96
97
|
"git": {
|