Rocky_Mountain_Vending/.pnpm-store/v10/files/f1/c7082613a34a247498ae470210b4977edf5c0d2b0172716a17956f0f38e8ff67b149f3ab68df493e625af1c3bd32f32a45a71113e05cbc2b22e386b4617955
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

16 lines
464 B
Text

export const SCHEMA = {
BLOB: 0b0001_0101,
STREAMING_BLOB: 0b0010_1010,
BOOLEAN: 0b0000_0010,
STRING: 0b0000_0000,
NUMERIC: 0b0000_0001,
BIG_INTEGER: 0b0001_0001,
BIG_DECIMAL: 0b0001_0011,
DOCUMENT: 0b0000_1111,
TIMESTAMP_DEFAULT: 0b0000_0100,
TIMESTAMP_DATE_TIME: 0b0000_0101,
TIMESTAMP_HTTP_DATE: 0b0000_0110,
TIMESTAMP_EPOCH_SECONDS: 0b0000_0111,
LIST_MODIFIER: 0b0100_0000,
MAP_MODIFIER: 0b1000_0000,
};