@merchbase/cli 3.0.0 → 4.1.0

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/CHANGELOG.md +10 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # MerchBase CLI Changelog
2
2
 
3
+ ## v4.1.0 - 2026-07-07
4
+
5
+ - Product reads now return Core-served thumbnail references and thumbnail state so desktop and agent clients can render Merch product images without local thumbnail storage.
6
+ - The typed HTTP client now includes product thumbnail requests and realtime thumbnail update subscriptions for lazy image loading.
7
+
8
+ ## v4.0.0 - 2026-06-18
9
+
10
+ - Sales series, sales breakdowns, dashboard KPIs, sales tables, and product chart reads now include neutral `chartData` that agents can hand to any chart, table, or text renderer.
11
+ - Sales series now returns `{ series, chartData }`, and dashboard product chart now returns `{ points, chartData }` so the canonical rows and chart projection travel together.
12
+
3
13
  ## v3.0.0 - 2026-06-15
4
14
 
5
15
  - Added `merchbase auth status`, `merchbase auth set`, `merchbase auth set --stdin`, and `merchbase auth clear` so local users and desktop agents can use macOS Keychain auth while automation can keep using `MERCHBASE_API_KEY`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@merchbase/cli",
3
- "version": "3.0.0",
3
+ "version": "4.1.0",
4
4
  "description": "MerchBase CLI for MerchBase Core APIs",
5
5
  "type": "module",
6
6
  "bin": {
@@ -33,7 +33,7 @@
33
33
  "test": "vitest run --config vitest.config.ts"
34
34
  },
35
35
  "dependencies": {
36
- "@merchbase/http-client": "3.0.0",
36
+ "@merchbase/http-client": "4.1.0",
37
37
  "commander": "12.1.0"
38
38
  },
39
39
  "devDependencies": {