@insforge/cli 0.1.63 → 0.1.64

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/README.md CHANGED
@@ -465,7 +465,7 @@ npx @insforge/cli payments catalog --environment test
465
465
  npx @insforge/cli payments catalog --environment test --json
466
466
  ```
467
467
 
468
- #### `npx @insforge/cli payments customers`
468
+ #### `npx @insforge/cli payments customers --environment <environment>`
469
469
 
470
470
  List mirrored Stripe customers for admin/debugging workflows.
471
471
 
package/dist/index.js CHANGED
@@ -1162,7 +1162,7 @@ function registerProjectsCommands(projectsCmd2) {
1162
1162
 
1163
1163
  // src/lib/analytics.ts
1164
1164
  import { PostHog } from "posthog-node";
1165
- var POSTHOG_API_KEY = "phc_ueV1ii62wdBTkH7E70ugyeqHIHu8dFDdjs0qq3TZhJz";
1165
+ var POSTHOG_API_KEY = "";
1166
1166
  var POSTHOG_HOST = process.env.POSTHOG_HOST || "https://us.i.posthog.com";
1167
1167
  var client = null;
1168
1168
  function getClient() {
@@ -6767,7 +6767,7 @@ function registerDiagnoseCommands(diagnoseCmd2) {
6767
6767
  const s = !json ? clack14.spinner() : null;
6768
6768
  s?.start("Collecting diagnostic data...");
6769
6769
  const data2 = await collectDiagnosticData(projectId, ossMode, apiUrl);
6770
- const cliVersion = "0.1.63";
6770
+ const cliVersion = "0.1.64";
6771
6771
  s?.stop("Data collected");
6772
6772
  if (!json) {
6773
6773
  console.log(`
@@ -7234,7 +7234,7 @@ function formatAmount(amount, currency) {
7234
7234
  fractionDigits = new Intl.NumberFormat(void 0, {
7235
7235
  style: "currency",
7236
7236
  currency: code
7237
- }).resolvedOptions().maximumFractionDigits;
7237
+ }).resolvedOptions().maximumFractionDigits ?? 2;
7238
7238
  } catch {
7239
7239
  fractionDigits = 2;
7240
7240
  }