@plaud-ai/cli 0.3.0 → 0.3.1

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/dist/index.js +5 -5
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -16084,7 +16084,7 @@ function loadConfig() {
16084
16084
  optOutReason: "PLAUD_TELEMETRY_DISABLED is set"
16085
16085
  };
16086
16086
  }
16087
- const apiKey = process.env.PLAUD_POSTHOG_KEY ?? null;
16087
+ const apiKey = "phc_Be6wE0Vfi6lsbbfKfl4tgpzqKkB1UG29ddOlSA6B8NW";
16088
16088
  const host = process.env.PLAUD_POSTHOG_HOST ?? DEFAULT_HOST;
16089
16089
  return { apiKey, host, optedOut: false, optOutReason: null };
16090
16090
  }
@@ -21270,7 +21270,7 @@ function isNewer(current, latest) {
21270
21270
  return false;
21271
21271
  }
21272
21272
  var updateCommand = new Command9("update").description("Check npm for the latest Plaud CLI and print the upgrade command").action(async () => {
21273
- const current = "0.3.0";
21273
+ const current = "0.3.1";
21274
21274
  const spinner = ora8("Checking npm for latest version...").start();
21275
21275
  const latest = await fetchLatestVersion();
21276
21276
  spinner.stop();
@@ -21325,10 +21325,10 @@ async function checkForUpdate(current) {
21325
21325
  return isNewer(current, latest) ? latest : null;
21326
21326
  }
21327
21327
  var versionCommand = new Command10("version").description("Show CLI version information").action(async () => {
21328
- const current = "0.3.0";
21328
+ const current = "0.3.1";
21329
21329
  console.log(`plaud ${current}`);
21330
21330
  if ("24269f2") console.log(`commit ${"24269f2"}`);
21331
- if ("2026-06-11T07:45:31.154Z") console.log(`built ${"2026-06-11T07:45:31.154Z"}`);
21331
+ if ("2026-06-11T08:16:17.444Z") console.log(`built ${"2026-06-11T08:16:17.444Z"}`);
21332
21332
  if (current === "unknown") return;
21333
21333
  const newer = await checkForUpdate(current);
21334
21334
  if (newer) {
@@ -21634,7 +21634,7 @@ async function runWizard() {
21634
21634
  try {
21635
21635
  await initTelemetry({
21636
21636
  surface: "cli",
21637
- appVersion: "0.3.0"
21637
+ appVersion: "0.3.1"
21638
21638
  });
21639
21639
  } catch {
21640
21640
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plaud-ai/cli",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "plaud": "dist/index.js"