@vm0/runner 2.13.2 → 2.13.3
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 +4 -4
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -5431,7 +5431,7 @@ var agentDefinitionSchema = z5.object({
|
|
|
5431
5431
|
* This field will be removed in a future version.
|
|
5432
5432
|
*/
|
|
5433
5433
|
image: z5.string().optional(),
|
|
5434
|
-
|
|
5434
|
+
framework: z5.string().min(1, "Framework is required"),
|
|
5435
5435
|
/**
|
|
5436
5436
|
* Array of pre-installed apps/tools for the agent environment.
|
|
5437
5437
|
* Format: "app" or "app:tag" (e.g., "github", "github:dev", "github:latest")
|
|
@@ -5690,7 +5690,7 @@ var eventsResponseSchema = z6.object({
|
|
|
5690
5690
|
hasMore: z6.boolean(),
|
|
5691
5691
|
nextSequence: z6.number(),
|
|
5692
5692
|
run: runStateSchema,
|
|
5693
|
-
|
|
5693
|
+
framework: z6.string()
|
|
5694
5694
|
});
|
|
5695
5695
|
var runsMainContract = c3.router({
|
|
5696
5696
|
/**
|
|
@@ -5772,7 +5772,7 @@ var metricsResponseSchema = z6.object({
|
|
|
5772
5772
|
var agentEventsResponseSchema = z6.object({
|
|
5773
5773
|
events: z6.array(runEventSchema),
|
|
5774
5774
|
hasMore: z6.boolean(),
|
|
5775
|
-
|
|
5775
|
+
framework: z6.string()
|
|
5776
5776
|
});
|
|
5777
5777
|
var networkLogEntrySchema = z6.object({
|
|
5778
5778
|
timestamp: z6.string(),
|
|
@@ -9949,7 +9949,7 @@ var benchmarkCommand = new Command4("benchmark").description(
|
|
|
9949
9949
|
});
|
|
9950
9950
|
|
|
9951
9951
|
// src/index.ts
|
|
9952
|
-
var version = true ? "2.13.
|
|
9952
|
+
var version = true ? "2.13.3" : "0.1.0";
|
|
9953
9953
|
program.name("vm0-runner").version(version).description("Self-hosted runner for VM0 agents");
|
|
9954
9954
|
program.addCommand(startCommand);
|
|
9955
9955
|
program.addCommand(doctorCommand);
|