Files
buildfor_life_ops/src/lib/server/db/schema/index.ts
T
grabowski 3417ed6698 feat(properties): expenses tab with electricity+water chart
- expense_kind enum (utilities + maintenance/repair/cleaning/insurance/tax/rent/other)
- property_expenses table with optional link to a property_accounts row
  (preserves history via ON DELETE SET NULL)
- services/expenses.ts: CRUD + 12-month monthly series aggregation +
  year-to-date summary by kind
- /properties/[id]/expenses tab: inline SVG line chart for electricity +
  water last 12 months (no chart library), summary card, add/edit/delete
  inline with account linking when kind matches
2026-04-23 15:32:20 +07:00

16 lines
428 B
TypeScript

export * from './_shared';
export * from './tenancy';
export * from './properties';
export * from './rooms';
export * from './accounts';
export * from './expenses';
export * from './assets';
export * from './documents';
export * from './checklists';
export * from './maintenance';
export * from './projects';
export * from './decisions';
export * from './wiki';
export * from './notifications';
// audit ships in a later phase.