@vm0/runner 3.9.1 → 3.9.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/index.js +3 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -8175,6 +8175,8 @@ var scheduleResponseSchema = z19.object({
|
|
|
8175
8175
|
volumeVersions: z19.record(z19.string(), z19.string()).nullable(),
|
|
8176
8176
|
enabled: z19.boolean(),
|
|
8177
8177
|
nextRunAt: z19.string().nullable(),
|
|
8178
|
+
lastRunAt: z19.string().nullable(),
|
|
8179
|
+
retryStartedAt: z19.string().nullable(),
|
|
8178
8180
|
createdAt: z19.string(),
|
|
8179
8181
|
updatedAt: z19.string()
|
|
8180
8182
|
});
|
|
@@ -11394,7 +11396,7 @@ var benchmarkCommand = new Command4("benchmark").description(
|
|
|
11394
11396
|
});
|
|
11395
11397
|
|
|
11396
11398
|
// src/index.ts
|
|
11397
|
-
var version = true ? "3.9.
|
|
11399
|
+
var version = true ? "3.9.2" : "0.1.0";
|
|
11398
11400
|
program.name("vm0-runner").version(version).description("Self-hosted runner for VM0 agents");
|
|
11399
11401
|
program.addCommand(startCommand);
|
|
11400
11402
|
program.addCommand(doctorCommand);
|