@vm0/cli 9.9.1 → 9.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.
Files changed (2) hide show
  1. package/index.js +4 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -2179,6 +2179,8 @@ var scheduleResponseSchema = z16.object({
2179
2179
  volumeVersions: z16.record(z16.string(), z16.string()).nullable(),
2180
2180
  enabled: z16.boolean(),
2181
2181
  nextRunAt: z16.string().nullable(),
2182
+ lastRunAt: z16.string().nullable(),
2183
+ retryStartedAt: z16.string().nullable(),
2182
2184
  createdAt: z16.string(),
2183
2185
  updatedAt: z16.string()
2184
2186
  });
@@ -8463,7 +8465,7 @@ var cookAction = new Command27().name("cook").description("Quick start: prepare,
8463
8465
  ).option("-y, --yes", "Skip confirmation prompts").option("-v, --verbose", "Show full tool inputs and outputs").addOption(new Option4("--debug-no-mock-claude").hideHelp()).addOption(new Option4("--no-auto-update").hideHelp()).action(
8464
8466
  async (prompt, options) => {
8465
8467
  if (!options.noAutoUpdate) {
8466
- const shouldExit = await checkAndUpgrade("9.9.1", prompt);
8468
+ const shouldExit = await checkAndUpgrade("9.9.2", prompt);
8467
8469
  if (shouldExit) {
8468
8470
  process.exit(0);
8469
8471
  }
@@ -11640,7 +11642,7 @@ var setupClaudeCommand = new Command57().name("setup-claude").description("Insta
11640
11642
 
11641
11643
  // src/index.ts
11642
11644
  var program = new Command58();
11643
- program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.9.1");
11645
+ program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.9.2");
11644
11646
  program.addCommand(authCommand);
11645
11647
  program.addCommand(infoCommand);
11646
11648
  program.addCommand(composeCommand);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vm0/cli",
3
- "version": "9.9.1",
3
+ "version": "9.9.2",
4
4
  "description": "CLI application",
5
5
  "repository": {
6
6
  "type": "git",