@vm0/cli 9.37.6 → 9.37.7

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 +8 -8
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -45,7 +45,7 @@ if (DSN) {
45
45
  Sentry.init({
46
46
  dsn: DSN,
47
47
  environment: process.env.SENTRY_ENVIRONMENT ?? "production",
48
- release: "9.37.6",
48
+ release: "9.37.7",
49
49
  sendDefaultPii: false,
50
50
  tracesSampleRate: 0,
51
51
  shutdownTimeout: 500,
@@ -64,7 +64,7 @@ if (DSN) {
64
64
  }
65
65
  });
66
66
  Sentry.setContext("cli", {
67
- version: "9.37.6",
67
+ version: "9.37.7",
68
68
  command: process.argv.slice(2).join(" ")
69
69
  });
70
70
  Sentry.setContext("runtime", {
@@ -607,7 +607,7 @@ function getConfigPath() {
607
607
  return join2(homedir2(), ".vm0", "config.json");
608
608
  }
609
609
  var infoCommand = new Command6().name("info").description("Display environment and debug information").action(async () => {
610
- console.log(chalk7.bold(`VM0 CLI v${"9.37.6"}`));
610
+ console.log(chalk7.bold(`VM0 CLI v${"9.37.7"}`));
611
611
  console.log();
612
612
  const config = await loadConfig();
613
613
  const hasEnvToken = !!process.env.VM0_TOKEN;
@@ -3854,7 +3854,7 @@ var connectorSessionByIdContract = c19.router({
3854
3854
  });
3855
3855
  var computerConnectorCreateResponseSchema = z23.object({
3856
3856
  id: z23.string().uuid(),
3857
- authtoken: z23.string(),
3857
+ ngrokToken: z23.string(),
3858
3858
  bridgeToken: z23.string(),
3859
3859
  endpointPrefix: z23.string(),
3860
3860
  domain: z23.string()
@@ -6480,7 +6480,7 @@ var composeCommand = new Command7().name("compose").description("Create or updat
6480
6480
  options.autoUpdate = false;
6481
6481
  }
6482
6482
  if (options.autoUpdate !== false) {
6483
- await startSilentUpgrade("9.37.6");
6483
+ await startSilentUpgrade("9.37.7");
6484
6484
  }
6485
6485
  try {
6486
6486
  let result;
@@ -8694,7 +8694,7 @@ var mainRunCommand = new Command8().name("run").description("Run an agent").argu
8694
8694
  async (identifier, prompt, options) => {
8695
8695
  try {
8696
8696
  if (options.autoUpdate !== false) {
8697
- await startSilentUpgrade("9.37.6");
8697
+ await startSilentUpgrade("9.37.7");
8698
8698
  }
8699
8699
  const { scope, name, version } = parseIdentifier(identifier);
8700
8700
  if (scope && !options.experimentalSharedAgent) {
@@ -10270,7 +10270,7 @@ var cookAction = new Command27().name("cook").description("Quick start: prepare,
10270
10270
  ).option("-y, --yes", "Skip confirmation prompts").option("-v, --verbose", "Show full tool inputs and outputs").addOption(new Option5("--debug-no-mock-claude").hideHelp()).addOption(new Option5("--no-auto-update").hideHelp()).action(
10271
10271
  async (prompt, options) => {
10272
10272
  if (options.autoUpdate !== false) {
10273
- const shouldExit = await checkAndUpgrade("9.37.6", prompt);
10273
+ const shouldExit = await checkAndUpgrade("9.37.7", prompt);
10274
10274
  if (shouldExit) {
10275
10275
  process.exit(0);
10276
10276
  }
@@ -14995,7 +14995,7 @@ var preferenceCommand = new Command77().name("preference").description("View or
14995
14995
 
14996
14996
  // src/index.ts
14997
14997
  var program = new Command78();
14998
- program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.37.6");
14998
+ program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.37.7");
14999
14999
  program.addCommand(authCommand);
15000
15000
  program.addCommand(infoCommand);
15001
15001
  program.addCommand(composeCommand);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vm0/cli",
3
- "version": "9.37.6",
3
+ "version": "9.37.7",
4
4
  "description": "CLI application",
5
5
  "repository": {
6
6
  "type": "git",