@cosmicdrift/kumiko-bundled-features 0.95.0 → 0.96.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cosmicdrift/kumiko-bundled-features",
3
- "version": "0.95.0",
3
+ "version": "0.96.0",
4
4
  "description": "Built-in features — tenant, user, auth, delivery. The stuff you'd rewrite anyway, already typed.",
5
5
  "license": "BUSL-1.1",
6
6
  "author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
@@ -36,6 +36,7 @@
36
36
  "./folders/web": "./src/folders/web/index.ts",
37
37
  "./folders-user-data": "./src/folders-user-data/index.ts",
38
38
  "./ledger": "./src/ledger/index.ts",
39
+ "./ledger/web": "./src/ledger/web/index.ts",
39
40
  "./billing-foundation": "./src/billing-foundation/index.ts",
40
41
  "./subscription-stripe": "./src/subscription-stripe/index.ts",
41
42
  "./subscription-mollie": "./src/subscription-mollie/index.ts",
@@ -90,11 +91,11 @@
90
91
  "./step-dispatcher": "./src/step-dispatcher/index.ts"
91
92
  },
92
93
  "dependencies": {
93
- "@cosmicdrift/kumiko-dispatcher-live": "0.95.0",
94
- "@cosmicdrift/kumiko-framework": "0.95.0",
95
- "@cosmicdrift/kumiko-headless": "0.95.0",
96
- "@cosmicdrift/kumiko-renderer": "0.95.0",
97
- "@cosmicdrift/kumiko-renderer-web": "0.95.0",
94
+ "@cosmicdrift/kumiko-dispatcher-live": "0.96.0",
95
+ "@cosmicdrift/kumiko-framework": "0.96.0",
96
+ "@cosmicdrift/kumiko-headless": "0.96.0",
97
+ "@cosmicdrift/kumiko-renderer": "0.96.0",
98
+ "@cosmicdrift/kumiko-renderer-web": "0.96.0",
98
99
  "@mollie/api-client": "^4.5.0",
99
100
  "@node-rs/argon2": "^2.0.2",
100
101
  "@types/nodemailer": "^8.0.0",
@@ -0,0 +1,35 @@
1
+ // @runtime client
2
+ // Client-safe ledger surface: QN constants + the pure recurring helpers
3
+ // (projection + Soll/Ist merge), nothing else. The full `../ledger` entry
4
+ // re-exports the feature/handlers/executor, which pull bun-db/postgres — a
5
+ // browser bundle that imports from there fails on Node builtins. A client screen
6
+ // (e.g. a rent-cashflow view) imports the dispatch QNs + the pure forecast/merge
7
+ // from HERE, then dispatches via the renderer's useDispatcher.
8
+
9
+ export {
10
+ ACCOUNT_TYPES,
11
+ type AccountType,
12
+ LEDGER_FEATURE_NAME,
13
+ LedgerHandlers,
14
+ LedgerQueries,
15
+ SCHEDULE_INTERVALS,
16
+ type ScheduleInterval,
17
+ TRANSACTION_STATUS,
18
+ type TransactionStatus,
19
+ } from "../constants";
20
+ export {
21
+ type LedgerTxRow,
22
+ mergeScheduleActuals,
23
+ type ProjectedPeriod,
24
+ projectSchedule,
25
+ type ScheduleDef,
26
+ type ScheduleMonth,
27
+ type ScheduleMonthStatus,
28
+ scheduleReference,
29
+ } from "../recurring";
30
+ export {
31
+ type ConfirmSchedulePeriodPayload,
32
+ confirmSchedulePeriodPayloadSchema,
33
+ type Posting,
34
+ postingSchema,
35
+ } from "../schemas";