@karmaniverous/jeeves-runner 0.2.0 → 0.2.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.
- package/dist/cli/jeeves-runner/index.js +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/mjs/index.js +1 -1
- package/package.json +1 -1
|
@@ -1219,7 +1219,7 @@ const gatewaySchema = z.object({
|
|
|
1219
1219
|
/** Full runner configuration schema. Validates and provides defaults. */
|
|
1220
1220
|
const runnerConfigSchema = z.object({
|
|
1221
1221
|
/** HTTP server port for the runner API. */
|
|
1222
|
-
port: z.number().default(
|
|
1222
|
+
port: z.number().default(1937),
|
|
1223
1223
|
/** Path to SQLite database file. */
|
|
1224
1224
|
dbPath: z.string().default('./data/runner.sqlite'),
|
|
1225
1225
|
/** Maximum number of concurrent job executions. */
|
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/dist/mjs/index.js
CHANGED
|
@@ -43,7 +43,7 @@ const gatewaySchema = z.object({
|
|
|
43
43
|
/** Full runner configuration schema. Validates and provides defaults. */
|
|
44
44
|
const runnerConfigSchema = z.object({
|
|
45
45
|
/** HTTP server port for the runner API. */
|
|
46
|
-
port: z.number().default(
|
|
46
|
+
port: z.number().default(1937),
|
|
47
47
|
/** Path to SQLite database file. */
|
|
48
48
|
dbPath: z.string().default('./data/runner.sqlite'),
|
|
49
49
|
/** Maximum number of concurrent job executions. */
|
package/package.json
CHANGED