clishop 1.2.1 → 1.2.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 CHANGED
@@ -932,7 +932,7 @@ async function runSetupWizard() {
932
932
  console.log();
933
933
  console.log(chalk4.bold.cyan(" W E L C O M E T O C L I S H O P"));
934
934
  console.log(chalk4.dim(" Order anything from your terminal."));
935
- console.log(chalk4.dim(` Build: ${"2026-03-03T19:01:39.979Z"}`));
935
+ console.log(chalk4.dim(` Build: ${"2026-03-04T12:59:38.729Z"}`));
936
936
  console.log();
937
937
  divider(chalk4.cyan);
938
938
  console.log();
@@ -4587,7 +4587,7 @@ function registerFeedbackCommands(program2) {
4587
4587
 
4588
4588
  // src/index.ts
4589
4589
  var program = new Command();
4590
- program.name("clishop").version("1.1.0").description(
4590
+ program.name("clishop").version("1.2.3").description(
4591
4591
  chalk15.bold("CLISHOP") + ' \u2014 Order anything from your terminal.\n\n Use agents to set safety limits, addresses, and payment methods.\n The "default" agent is used when no agent is specified.'
4592
4592
  ).option("--agent <name>", "Use a specific agent for this command").hook("preAction", (thisCommand) => {
4593
4593
  const agentOpt = thisCommand.opts().agent;
package/dist/mcp.js CHANGED
@@ -13810,7 +13810,7 @@ function safeCall(fn) {
13810
13810
  var server = new McpServer(
13811
13811
  {
13812
13812
  name: "clishop",
13813
- version: "1.2.1"
13813
+ version: "1.2.3"
13814
13814
  },
13815
13815
  {
13816
13816
  capabilities: {
@@ -13853,7 +13853,7 @@ server.registerTool("search_products", {
13853
13853
  if (!country) {
13854
13854
  const agent = getActiveAgent();
13855
13855
  try {
13856
- const addrRes = await api.get("/addresses", { params: { agent: agent.name } });
13856
+ const addrRes = await api.get("/addresses");
13857
13857
  const addresses = addrRes.data.addresses || [];
13858
13858
  const resolved = agent.defaultAddressId && addresses.find((a) => a.id === agent.defaultAddressId) || addresses[0];
13859
13859
  if (resolved) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clishop",
3
- "version": "1.2.1",
3
+ "version": "1.2.3",
4
4
  "mcpName": "io.github.StefDCL/clishop",
5
5
  "description": "CLISHOP — Order anything from your terminal",
6
6
  "main": "dist/index.js",