create-kumiko-app 0.4.23 → 0.4.25

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "source": "samples/apps/use-all-bundled APP_FEATURES (composeFeatures includeBundled)",
3
- "featureCount": 44,
3
+ "featureCount": 45,
4
4
  "features": [
5
5
  {
6
6
  "name": "audit",
@@ -658,6 +658,30 @@
658
658
  "recommended": false
659
659
  }
660
660
  },
661
+ {
662
+ "name": "ledger",
663
+ "description": "Double-entry bookkeeping primitive. Owns two event-sourced entities — the per-tenant `account` chart of accounts (`read_ledger_accounts`, self-referential via parentId, typed asset/liability/equity/income/expense) and immutable `transaction` journal entries (`read_ledger_transactions`) whose balanced posting lines are embedded as jsonb (Σ amount = 0, signed integer minor units). The account catalog uses the generic entity handlers (create, update, list, detail); create-transaction books a balanced entry (Σ=0 and ≥2 distinct accounts enforced at the command boundary, referential integrity against accounts checked) and reverse-transaction books its Storno mirror — there is deliberately NO transaction update/delete, so a posted entry is an immutable fact and the audit trail stays intact. Balances and reports (balance sheet, P&L, cashflow) derive as pure queries over the postings. Everything financial — banking, accounting, rent cashflow, credits, invoices — models as accounts + balanced transactions on top. Pin roles with createLedgerFeature({ roles }) or adopt the host model with { access }; pass { toggleable: { default: false } } to tier-gate the whole feature.",
664
+ "toggleableDefault": null,
665
+ "requires": [],
666
+ "optionalRequires": [],
667
+ "configReads": [],
668
+ "exposesApis": [],
669
+ "usesApis": [],
670
+ "extensionsUsed": [],
671
+ "configKeys": [],
672
+ "secrets": [],
673
+ "writeHandlers": [
674
+ "ledger:write:account:create",
675
+ "ledger:write:account:update",
676
+ "ledger:write:create-transaction",
677
+ "ledger:write:reverse-transaction"
678
+ ],
679
+ "uiHints": {
680
+ "displayLabel": "Ledger",
681
+ "category": "data",
682
+ "recommended": false
683
+ }
684
+ },
661
685
  {
662
686
  "name": "legal-pages",
663
687
  "description": "Opt-in wrapper around `text-content` that registers four public HTML routes (`/legal/impressum`, `/legal/datenschutz`, `/legal/imprint`, `/legal/privacy`) with Markdown-to-HTML rendering and a boot-time job that hard-fails in production when the required DE blocks (`imprint/de`, `privacy/de`) are not seeded in `SYSTEM_TENANT`. Requires `anonymousAccess: { defaultTenantId: SYSTEM_TENANT_ID }` and `extraContext.textContent` to be wired at app bootstrap; for per-tenant imprints or a custom layout call `text-content:query:by-slug` directly.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-kumiko-app",
3
- "version": "0.4.23",
3
+ "version": "0.4.25",
4
4
  "description": "`bun create kumiko-app <name>` — scaffold a new Kumiko app with an interactive feature picker.",
5
5
  "license": "BUSL-1.1",
6
6
  "author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
@@ -30,8 +30,8 @@
30
30
  "vendor:manifest": "bun run scripts/vendor-manifest.ts"
31
31
  },
32
32
  "dependencies": {
33
- "@cosmicdrift/kumiko-dev-server": "0.90.2",
34
- "@cosmicdrift/kumiko-framework": "0.90.2",
33
+ "@cosmicdrift/kumiko-dev-server": "0.91.0",
34
+ "@cosmicdrift/kumiko-framework": "0.91.0",
35
35
  "@inquirer/prompts": "^7.4.0"
36
36
  },
37
37
  "publishConfig": {