@merchbase/cli 3.0.0 → 4.0.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.
- package/CHANGELOG.md +5 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# MerchBase CLI Changelog
|
|
2
2
|
|
|
3
|
+
## v4.0.0 - 2026-06-18
|
|
4
|
+
|
|
5
|
+
- 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.
|
|
6
|
+
- Sales series now returns `{ series, chartData }`, and dashboard product chart now returns `{ points, chartData }` so the canonical rows and chart projection travel together.
|
|
7
|
+
|
|
3
8
|
## v3.0.0 - 2026-06-15
|
|
4
9
|
|
|
5
10
|
- 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
|
+
"version": "4.0.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": "
|
|
36
|
+
"@merchbase/http-client": "4.0.0",
|
|
37
37
|
"commander": "12.1.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|