@insforge/cli 0.1.63 → 0.1.65
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 +1 -1
- package/dist/index.js +21 -33
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
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
|
@@ -3022,6 +3022,18 @@ var execAsync3 = promisify4(exec3);
|
|
|
3022
3022
|
function buildOssHost2(appkey, region) {
|
|
3023
3023
|
return `https://${appkey}.${region}.insforge.app`;
|
|
3024
3024
|
}
|
|
3025
|
+
async function runNpmInstall(startMessage = "Installing dependencies...") {
|
|
3026
|
+
const spinner8 = clack12.spinner();
|
|
3027
|
+
spinner8.start(startMessage);
|
|
3028
|
+
try {
|
|
3029
|
+
await execAsync3("npm install", { cwd: process.cwd(), maxBuffer: 10 * 1024 * 1024 });
|
|
3030
|
+
spinner8.stop("Dependencies installed");
|
|
3031
|
+
} catch (err) {
|
|
3032
|
+
spinner8.stop("Failed to install dependencies");
|
|
3033
|
+
clack12.log.warn(`npm install failed: ${err.message}`);
|
|
3034
|
+
clack12.log.info("Run `npm install` manually to install dependencies.");
|
|
3035
|
+
}
|
|
3036
|
+
}
|
|
3025
3037
|
function registerProjectLinkCommand(program2) {
|
|
3026
3038
|
program2.command("link").description("Link current directory to an InsForge project").option("--project-id <id>", "Project ID to link").option("--org-id <id>", "Organization ID").option("--template <template>", "Download a template after linking: react, nextjs, chatbot, crm, e-commerce, todo").option("--auth <provider>", "Wire a third-party auth provider into the chosen template (currently: better-auth)").option("--api-base-url <url>", "API Base URL for direct linking (OSS/Self-hosted)").option("--api-key <key>", "API Key for direct linking (OSS/Self-hosted)").action(async (opts, cmd) => {
|
|
3027
3039
|
const { json, apiUrl } = getRootOpts(cmd);
|
|
@@ -3106,16 +3118,7 @@ function registerProjectLinkCommand(program2) {
|
|
|
3106
3118
|
}
|
|
3107
3119
|
}
|
|
3108
3120
|
if (templateDownloaded && !json) {
|
|
3109
|
-
|
|
3110
|
-
installSpinner.start("Installing dependencies...");
|
|
3111
|
-
try {
|
|
3112
|
-
await execAsync3("npm install", { cwd: process.cwd(), maxBuffer: 10 * 1024 * 1024 });
|
|
3113
|
-
installSpinner.stop("Dependencies installed");
|
|
3114
|
-
} catch (err) {
|
|
3115
|
-
installSpinner.stop("Failed to install dependencies");
|
|
3116
|
-
clack12.log.warn(`npm install failed: ${err.message}`);
|
|
3117
|
-
clack12.log.info("Run `npm install` manually to install dependencies.");
|
|
3118
|
-
}
|
|
3121
|
+
await runNpmInstall();
|
|
3119
3122
|
}
|
|
3120
3123
|
await installSkills(json);
|
|
3121
3124
|
trackCommand("link", "oss-org", { direct: true, template: template2 });
|
|
@@ -3154,16 +3157,7 @@ function registerProjectLinkCommand(program2) {
|
|
|
3154
3157
|
clack12.log.success(`Wired in ${opts.auth}: ${result.written.length} new, ${result.overwritten.length} replaced`);
|
|
3155
3158
|
}
|
|
3156
3159
|
if (result.packageJsonPatched && !json) {
|
|
3157
|
-
|
|
3158
|
-
installSpinner.start("Installing new dependencies...");
|
|
3159
|
-
try {
|
|
3160
|
-
await execAsync3("npm install", { cwd: process.cwd(), maxBuffer: 10 * 1024 * 1024 });
|
|
3161
|
-
installSpinner.stop("Dependencies installed");
|
|
3162
|
-
} catch (err) {
|
|
3163
|
-
installSpinner.stop("Failed to install dependencies");
|
|
3164
|
-
clack12.log.warn(`npm install failed: ${err.message}`);
|
|
3165
|
-
clack12.log.info("Run `npm install` manually to install dependencies.");
|
|
3166
|
-
}
|
|
3160
|
+
await runNpmInstall("Installing new dependencies...");
|
|
3167
3161
|
}
|
|
3168
3162
|
if (!json) clack12.note(result.nextSteps, "What's next");
|
|
3169
3163
|
} catch (err) {
|
|
@@ -3318,16 +3312,7 @@ function registerProjectLinkCommand(program2) {
|
|
|
3318
3312
|
}
|
|
3319
3313
|
}
|
|
3320
3314
|
if (templateDownloaded && !json) {
|
|
3321
|
-
|
|
3322
|
-
installSpinner.start("Installing dependencies...");
|
|
3323
|
-
try {
|
|
3324
|
-
await execAsync3("npm install", { cwd: process.cwd(), maxBuffer: 10 * 1024 * 1024 });
|
|
3325
|
-
installSpinner.stop("Dependencies installed");
|
|
3326
|
-
} catch (err) {
|
|
3327
|
-
installSpinner.stop("Failed to install dependencies");
|
|
3328
|
-
clack12.log.warn(`npm install failed: ${err.message}`);
|
|
3329
|
-
clack12.log.info("Run `npm install` manually to install dependencies.");
|
|
3330
|
-
}
|
|
3315
|
+
await runNpmInstall();
|
|
3331
3316
|
}
|
|
3332
3317
|
await installSkills(json);
|
|
3333
3318
|
await reportCliUsage("cli.link", true, 6, projectConfig);
|
|
@@ -3351,8 +3336,11 @@ function registerProjectLinkCommand(program2) {
|
|
|
3351
3336
|
const result = await applyAuthProvider(opts.auth, process.cwd(), projectConfig, json);
|
|
3352
3337
|
if (!json) {
|
|
3353
3338
|
clack12.log.success(`Wired in ${opts.auth}: ${result.written.length} new, ${result.overwritten.length} replaced`);
|
|
3354
|
-
clack12.note(result.nextSteps, "What's next");
|
|
3355
3339
|
}
|
|
3340
|
+
if (result.packageJsonPatched && !json) {
|
|
3341
|
+
await runNpmInstall("Installing new dependencies...");
|
|
3342
|
+
}
|
|
3343
|
+
if (!json) clack12.note(result.nextSteps, "What's next");
|
|
3356
3344
|
} catch (err) {
|
|
3357
3345
|
const msg = `Failed to apply --auth ${opts.auth}: ${err.message}`;
|
|
3358
3346
|
if (json) console.error(JSON.stringify({ warning: msg }));
|
|
@@ -6767,7 +6755,7 @@ function registerDiagnoseCommands(diagnoseCmd2) {
|
|
|
6767
6755
|
const s = !json ? clack14.spinner() : null;
|
|
6768
6756
|
s?.start("Collecting diagnostic data...");
|
|
6769
6757
|
const data2 = await collectDiagnosticData(projectId, ossMode, apiUrl);
|
|
6770
|
-
const cliVersion = "0.1.
|
|
6758
|
+
const cliVersion = "0.1.65";
|
|
6771
6759
|
s?.stop("Data collected");
|
|
6772
6760
|
if (!json) {
|
|
6773
6761
|
console.log(`
|
|
@@ -7234,7 +7222,7 @@ function formatAmount(amount, currency) {
|
|
|
7234
7222
|
fractionDigits = new Intl.NumberFormat(void 0, {
|
|
7235
7223
|
style: "currency",
|
|
7236
7224
|
currency: code
|
|
7237
|
-
}).resolvedOptions().maximumFractionDigits;
|
|
7225
|
+
}).resolvedOptions().maximumFractionDigits ?? 2;
|
|
7238
7226
|
} catch {
|
|
7239
7227
|
fractionDigits = 2;
|
|
7240
7228
|
}
|