clishop 1.4.1 → 1.4.3
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 +3 -10
- package/dist/mcp.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -847,7 +847,7 @@ async function runSetupWizard(emailArg) {
|
|
|
847
847
|
console.log();
|
|
848
848
|
console.log(chalk4.bold.cyan(" W E L C O M E T O C L I S H O P"));
|
|
849
849
|
console.log(chalk4.dim(" Order anything from your terminal."));
|
|
850
|
-
console.log(chalk4.dim(` Build: ${"2026-04-03T15:
|
|
850
|
+
console.log(chalk4.dim(` Build: ${"2026-04-03T15:26:24.682Z"}`));
|
|
851
851
|
console.log();
|
|
852
852
|
divider(chalk4.cyan);
|
|
853
853
|
console.log();
|
|
@@ -897,17 +897,10 @@ async function runSetupWizard(emailArg) {
|
|
|
897
897
|
return;
|
|
898
898
|
}
|
|
899
899
|
console.log();
|
|
900
|
-
console.log(chalk4.bold("
|
|
900
|
+
console.log(chalk4.bold(" Give this link to your human to configure the payment method:"));
|
|
901
901
|
console.log();
|
|
902
902
|
console.log(" " + chalk4.cyan.underline(setupUrl));
|
|
903
903
|
console.log();
|
|
904
|
-
const opened = await openBrowser(setupUrl);
|
|
905
|
-
if (opened) {
|
|
906
|
-
console.log(chalk4.dim(" (Browser opened automatically)"));
|
|
907
|
-
} else {
|
|
908
|
-
console.log(chalk4.yellow(" Could not open browser automatically. Please visit the link above."));
|
|
909
|
-
}
|
|
910
|
-
console.log();
|
|
911
904
|
const pollSpinner = ora3("Waiting for you to complete payment setup...").start();
|
|
912
905
|
const baseUrl = getApiBaseUrl();
|
|
913
906
|
const maxAttempts = 120;
|
|
@@ -4074,7 +4067,7 @@ function registerDoctorCommand(program2) {
|
|
|
4074
4067
|
|
|
4075
4068
|
// src/index.ts
|
|
4076
4069
|
var program = new Command();
|
|
4077
|
-
program.name("clishop").version("1.4.
|
|
4070
|
+
program.name("clishop").version("1.4.3").description(
|
|
4078
4071
|
chalk16.bold("CLISHOP") + ` \u2014 Order anything from your terminal.
|
|
4079
4072
|
|
|
4080
4073
|
Run 'clishop setup' to get started with a single payment link.
|
package/dist/mcp.js
CHANGED
|
@@ -13840,7 +13840,7 @@ server.registerTool("setup", {
|
|
|
13840
13840
|
});
|
|
13841
13841
|
return {
|
|
13842
13842
|
...res.data,
|
|
13843
|
-
message: "
|
|
13843
|
+
message: "Give this link to your human to configure their payment method in the browser. Then call setup_status with the deviceCode to check when they're done."
|
|
13844
13844
|
};
|
|
13845
13845
|
});
|
|
13846
13846
|
});
|