Files
defiQUG 3f7cc0f854 feat(finance): BTC basket flows, client scoping, and jewelry-box store
- Finance API: baskets, holdings, rebalances, deposits, bridge withdrawals, vault checks.
- Schemas: btc-basket; api-client finance types; workspace lockfile update.
- Vitest config for finance service; expanded tests.

Made-with: Cursor
2026-04-07 22:59:32 -07:00
..

@the-order/schemas

Shared schemas and contracts for The Order using Zod.

Usage

import { UserSchema, DocumentSchema } from '@the-order/schemas';

const user = UserSchema.parse(userData);
const document = DocumentSchema.parse(documentData);

Available Schemas

  • UserSchema - User entity schema
  • DocumentSchema - Document entity schema
  • DealSchema - Deal entity schema

OpenAPI Generation

pnpm generate:openapi