bkper 4.12.5 → 4.12.7

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.
@@ -18,8 +18,8 @@ Bkper organizes Accounts into four types that determine how an Account behaves a
18
18
 
19
19
  - **Asset** (blue) — **permanent**. Real resources you own: bank accounts, cash, receivables. Balances carry forward continuously, showing your position at any point in time.
20
20
  - **Liability** (yellow) — **permanent**. Obligations you owe: credit cards, loans, supplier debts. Balances also carry forward continuously.
21
- - **Incoming** (green) — **non-permanent**. Revenue sources: salary, sales, interest. Balances track activity within a period and reset to zero for the next one.
22
- - **Outgoing** (red) — **non-permanent**. Expenses and costs: rent, supplies, payroll. Balances also track activity within a period.
21
+ - **Incoming** (green) — **non-permanent**. Revenue sources: salary, sales, interest. Balances track activity within a selected period rather than as a cumulative position.
22
+ - **Outgoing** (red) — **non-permanent**. Expenses and costs: rent, supplies, payroll. Balances also track activity within a selected period.
23
23
 
24
24
  ## Transactions
25
25
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bkper",
3
- "version": "4.12.5",
3
+ "version": "4.12.7",
4
4
  "description": "Command line client for Bkper",
5
5
  "bin": {
6
6
  "bkper": "./lib/cli.js"
@@ -26,14 +26,14 @@
26
26
  ],
27
27
  "scripts": {
28
28
  "clean": "rm -rf ./lib & rm -rf ./node_modules & wait",
29
- "sync:core-concepts": "bun ./scripts/fetch-core-concepts.ts",
30
- "prebuild": "bun install",
29
+ "sync:docs": "bun ./scripts/sync-docs.ts",
30
+ "prebuild": "bun install && bun sync:docs",
31
31
  "build": "run-s build:clean build:compile build:copy-docs",
32
32
  "build:clean": "gts clean && rimraf temp",
33
33
  "build:compile": "tsc",
34
+ "build:copy-docs": "mkdir -p lib/docs && cp -f docs/*.md lib/docs/ 2>/dev/null || true && cp -f README.md lib/docs/cli-reference.md",
34
35
  "api:platform": "openapi-typescript https://platform.bkper.app/openapi.json -o src/platform/types.d.ts",
35
36
  "api:platform:local": "openapi-typescript http://localhost:8790/openapi.json -o src/platform/types.d.ts",
36
- "build:copy-docs": "mkdir -p lib/docs && cp -f docs/*.md lib/docs/ 2>/dev/null || true && cp -f README.md lib/docs/cli-reference.md",
37
37
  "predev": "bun run build",
38
38
  "dev": "tsc -w",
39
39
  "ports": "devpod ssh ../ -L 6274",
@@ -48,7 +48,7 @@
48
48
  },
49
49
  "dependencies": {
50
50
  "@mariozechner/pi-coding-agent": "^0.65.2",
51
- "bkper-js": "^2.32.1",
51
+ "bkper-js": "^2.32.2",
52
52
  "commander": "^13.1.0",
53
53
  "dotenv": "^8.2.0",
54
54
  "esbuild": "^0.27.2",