@vm0/cli 4.21.1 → 4.21.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 -3
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -12927,7 +12927,8 @@ var storagesContract = c5.router({
12927
12927
  // ../../packages/core/src/contracts/webhooks.ts
12928
12928
  var c6 = initContract();
12929
12929
  var agentEventSchema = external_exports.object({
12930
- type: external_exports.string()
12930
+ type: external_exports.string(),
12931
+ sequenceNumber: external_exports.number().int().positive()
12931
12932
  }).passthrough();
12932
12933
  var artifactSnapshotSchema = external_exports.object({
12933
12934
  artifactName: external_exports.string(),
@@ -16724,7 +16725,7 @@ async function generateEnvPlaceholders(missingVars, envFilePath) {
16724
16725
  }
16725
16726
  }
16726
16727
  var cookCommand = new Command13().name("cook").description("One-click agent preparation and execution from vm0.yaml").argument("[prompt]", "Prompt for the agent").action(async (prompt) => {
16727
- const shouldExit = await checkAndUpgrade("4.21.1", prompt);
16728
+ const shouldExit = await checkAndUpgrade("4.21.2", prompt);
16728
16729
  if (shouldExit) {
16729
16730
  process.exit(0);
16730
16731
  }
@@ -17662,7 +17663,7 @@ var scopeCommand = new Command22().name("scope").description("Manage your scope
17662
17663
 
17663
17664
  // src/index.ts
17664
17665
  var program = new Command23();
17665
- program.name("vm0").description("VM0 CLI - A modern build tool").version("4.21.1");
17666
+ program.name("vm0").description("VM0 CLI - A modern build tool").version("4.21.2");
17666
17667
  program.command("info").description("Display environment information").action(async () => {
17667
17668
  console.log(chalk24.cyan("System Information:"));
17668
17669
  console.log(`Node Version: ${process.version}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vm0/cli",
3
- "version": "4.21.1",
3
+ "version": "4.21.2",
4
4
  "description": "CLI application",
5
5
  "repository": {
6
6
  "type": "git",