botapp-cli 0.1.1 → 0.1.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/dist/index.js CHANGED
@@ -745,7 +745,7 @@ Configured for ${serverUrl}`));
745
745
  }
746
746
  return;
747
747
  }
748
- if (opts.noBrowser) {
748
+ if (opts.browser === false) {
749
749
  console.error(pc4.red("Hosted server needs browser auth but --no-browser was passed."));
750
750
  process.exitCode = 1;
751
751
  return;
@@ -3034,7 +3034,7 @@ Invalid ACP stdout: ${line}`;
3034
3034
  clientInfo: {
3035
3035
  name: "botapp-daemon",
3036
3036
  title: "botapp daemon",
3037
- version: "0.1.0"
3037
+ version: "0.1.2"
3038
3038
  }
3039
3039
  });
3040
3040
  const session = await request2("session/new", {
@@ -3159,7 +3159,7 @@ async function waitForChild(child, timeoutMs, label) {
3159
3159
  }
3160
3160
 
3161
3161
  // src/index.ts
3162
- var version = "0.1.0";
3162
+ var version = "0.1.2";
3163
3163
  var program = new Command19().name("bot").description("botapp CLI \u2014 operate apps from the command line").version(version).enablePositionalOptions(true).option("--json", "Output as JSON").option("-s, --server <url>", "Server URL override").option("-t, --token <token>", "Auth token override").option("-v, --verbose", "Verbose output");
3164
3164
  program.addCommand(launchCommand);
3165
3165
  program.addCommand(runCommand);