@koda-sl/baker-cli 0.135.0 → 0.135.1-dev.6a3e6978d
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 +36 -0
- package/dist/{chunk-CIF62V7L.js → chunk-GKL4CUCC.js} +4 -4
- package/dist/chunk-GKL4CUCC.js.map +1 -0
- package/dist/cli.js +1348 -1191
- package/dist/cli.js.map +1 -1
- package/dist/engine/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-CIF62V7L.js.map +0 -1
package/README.md
CHANGED
|
@@ -2536,6 +2536,42 @@ baker mcp remove --name weather
|
|
|
2536
2536
|
|
|
2537
2537
|
---
|
|
2538
2538
|
|
|
2539
|
+
### `baker history list`
|
|
2540
|
+
|
|
2541
|
+
Unified account history (audit log) — everything that changed on the account, newest first: publishes, chat lifecycle, backlog actions, team changes, setup links, tag and schedule changes, executed ad-platform writes, followed advertisers, media (images, videos, testimonials), creative generations, reports, domains, integrations, and API keys. Read-only.
|
|
2542
|
+
|
|
2543
|
+
```bash
|
|
2544
|
+
baker history list # last 30 changes, compact
|
|
2545
|
+
baker history list --limit 50 --days 7 # last week, up to 50 entries
|
|
2546
|
+
baker history list --category publish # only publishes
|
|
2547
|
+
baker history list --category ads --full # ad writes with raw metadata
|
|
2548
|
+
```
|
|
2549
|
+
|
|
2550
|
+
**Flags:**
|
|
2551
|
+
|
|
2552
|
+
| Flag | Description |
|
|
2553
|
+
|--------------|----------------------------------------------------------------------|
|
|
2554
|
+
| `--limit` | Max entries, 1-200 (default 30) |
|
|
2555
|
+
| `--category` | one of: publish, chat, action, team, setup_link, company, tag, schedule, ads, advertiser, media, creative, report, domain, integration |
|
|
2556
|
+
| `--days` | Only entries from the last N days (1-365) |
|
|
2557
|
+
| `--full` | Include raw metadata per entry |
|
|
2558
|
+
|
|
2559
|
+
**Response:**
|
|
2560
|
+
|
|
2561
|
+
```json
|
|
2562
|
+
{
|
|
2563
|
+
"ok": true,
|
|
2564
|
+
"data": {
|
|
2565
|
+
"entries": [
|
|
2566
|
+
{ "id": "…", "at": 1750000000000, "category": "publish", "action": "publish.commit", "actorType": "user", "actor": "Jane Doe", "target": "Update hero copy" }
|
|
2567
|
+
]
|
|
2568
|
+
},
|
|
2569
|
+
"meta": { "count": 1 }
|
|
2570
|
+
}
|
|
2571
|
+
```
|
|
2572
|
+
|
|
2573
|
+
---
|
|
2574
|
+
|
|
2539
2575
|
### `baker schema [command]`
|
|
2540
2576
|
|
|
2541
2577
|
Inspect command argument schemas for AI agent introspection.
|
|
@@ -7,9 +7,9 @@ import {
|
|
|
7
7
|
__toESM
|
|
8
8
|
} from "./chunk-RK67WL4O.js";
|
|
9
9
|
|
|
10
|
-
//
|
|
10
|
+
// ../../.pnpm-store/v10/links/@/safe-stable-stringify/2.5.0/810146e81bae4e3a061fe487864f2fde80c4b03b886877dc0f1fffbc6480b67e/node_modules/safe-stable-stringify/index.js
|
|
11
11
|
var require_safe_stable_stringify = __commonJS({
|
|
12
|
-
"
|
|
12
|
+
"../../.pnpm-store/v10/links/@/safe-stable-stringify/2.5.0/810146e81bae4e3a061fe487864f2fde80c4b03b886877dc0f1fffbc6480b67e/node_modules/safe-stable-stringify/index.js"(exports, module) {
|
|
13
13
|
"use strict";
|
|
14
14
|
var { hasOwnProperty } = Object.prototype;
|
|
15
15
|
var stringify = configure2();
|
|
@@ -1034,7 +1034,7 @@ function resolveAdaptFormats(params) {
|
|
|
1034
1034
|
return params.formats ?? [];
|
|
1035
1035
|
}
|
|
1036
1036
|
|
|
1037
|
-
//
|
|
1037
|
+
// ../../.pnpm-store/v10/links/@/safe-stable-stringify/2.5.0/810146e81bae4e3a061fe487864f2fde80c4b03b886877dc0f1fffbc6480b67e/node_modules/safe-stable-stringify/esm/wrapper.js
|
|
1038
1038
|
var import__ = __toESM(require_safe_stable_stringify(), 1);
|
|
1039
1039
|
var configure = import__.default.configure;
|
|
1040
1040
|
var wrapper_default = import__.default;
|
|
@@ -7798,4 +7798,4 @@ export {
|
|
|
7798
7798
|
defaultRegistry,
|
|
7799
7799
|
createEngineFromEnv
|
|
7800
7800
|
};
|
|
7801
|
-
//# sourceMappingURL=chunk-
|
|
7801
|
+
//# sourceMappingURL=chunk-GKL4CUCC.js.map
|