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>
16 lines
464 B
Text
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,
|
|
};
|