bkper 4.16.9 → 4.16.10

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.
@@ -4,6 +4,21 @@ Interact with books, files, accounts, transactions, and balances using the `bkpe
4
4
 
5
5
  All commands that operate within a book use `-b, --book <bookId>` to specify the book context.
6
6
 
7
+ ## Bkper UI links for human review
8
+
9
+ When asking a user to review or confirm Bkper data, include a browser link when the relevant IDs or query are known.
10
+
11
+ Use canonical Bkper links:
12
+
13
+ - Book transactions: `https://bkper.app/books/{bookId}/transactions`
14
+ - Transaction: `https://bkper.app/books/{bookId}/transactions/{transactionId}`
15
+ - Accounts: `https://bkper.app/books/{bookId}/accounts`
16
+ - Account: `https://bkper.app/books/{bookId}/accounts/{accountId}`
17
+ - Query view: `https://bkper.app/books/{bookId}/transactions?query={encodedQuery}`
18
+ - Chart/report view: `https://bkper.app/books/{bookId}/transactions?query={encodedQuery}&charts=true`
19
+
20
+ Encode query parameter values. Only build links from IDs and queries obtained from Bkper or provided by the user; do not invent IDs.
21
+
7
22
  ---
8
23
 
9
24
  ## Books
package/lib/docs/index.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Reference docs for Bkper tasks. Load only the specific doc(s) relevant to the task — do not load all of them. All docs are in the same directory as this index.
4
4
 
5
- - **data-management.md** — CLI reference for managing financial data and files: books, accounts, groups, files, transactions, per-account balance queries, query operators (on:, after:, before:, account:, group:), output formats (table/json/csv), batch operations via stdin/piping, collections.
5
+ - **data-management.md** — CLI reference for managing financial data and files: books, accounts, groups, files, transactions, per-account balance queries, query operators (on:, after:, before:, account:, group:), output formats (table/json/csv), human-review Bkper UI links, batch operations via stdin/piping, collections.
6
6
  - **app-management.md** — CLI reference for building and deploying Bkper apps: dev/build/deploy workflow, app install/uninstall, secrets management, app logs, bkper.yaml configuration reference (identity, branding, events, menu integration, deployment).
7
7
  - **app-building.md** — Full app-building reference: single Worker app architecture (`client/` + `server/`), development loop, `/api/*` routes, `/events` handlers, deployment patterns, the Bkper Platform, and self-hosted alternatives. Includes authentication patterns for web clients (`@bkper/web-auth`), server API routes (`Authorization: Bearer` on `/api/*` with outbound auth injection), platform event handlers (`new Bkper()` with outbound auth injection), and local development.
8
8
  - **financial-statements.md** — Deterministic reporting principles and Bkper query semantics for balance sheet and P&L: trusted routes, root reporting groups, permanent vs period date rules, and provisional query patterns.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bkper",
3
- "version": "4.16.9",
3
+ "version": "4.16.10",
4
4
  "description": "Command line client for Bkper",
5
5
  "bin": {
6
6
  "bkper": "./lib/cli.js"
@@ -51,7 +51,7 @@
51
51
  "upgrade:api": "bun update @bkper/bkper-api-types --latest && bun update bkper-js --latest"
52
52
  },
53
53
  "dependencies": {
54
- "@earendil-works/pi-coding-agent": "0.79.3",
54
+ "@earendil-works/pi-coding-agent": "0.79.4",
55
55
  "bkper-js": "^2.35.2",
56
56
  "commander": "^13.1.0",
57
57
  "dotenv": "^8.2.0",