Rocky_Mountain_Vending/.pnpm-store/v10/files/00/07bc4ea6d4b00d47dc9d43c08b3e0bfef8ebd9e1da7059d1dc237a168c1a0ad7997922f1fc6edbcfb209ad992ebcb7513b5b7f50d92889ccc9bbbf30ca6080
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

23 lines
997 B
Text

import type { BigDecimalSchema, BigIntegerSchema, BlobSchema, BooleanSchema, DocumentSchema, ListSchemaModifier, MapSchemaModifier, NumericSchema, StreamingBlobSchema, StringSchema, TimestampDateTimeSchema, TimestampDefaultSchema, TimestampEpochSecondsSchema, TimestampHttpDateSchema } from "@smithy/types";
/**
* Schema sentinel runtime values.
* @internal
*
* @deprecated use inline numbers with type annotation to save space.
*/
export declare const SCHEMA: {
BLOB: BlobSchema;
STREAMING_BLOB: StreamingBlobSchema;
BOOLEAN: BooleanSchema;
STRING: StringSchema;
NUMERIC: NumericSchema;
BIG_INTEGER: BigIntegerSchema;
BIG_DECIMAL: BigDecimalSchema;
DOCUMENT: DocumentSchema;
TIMESTAMP_DEFAULT: TimestampDefaultSchema;
TIMESTAMP_DATE_TIME: TimestampDateTimeSchema;
TIMESTAMP_HTTP_DATE: TimestampHttpDateSchema;
TIMESTAMP_EPOCH_SECONDS: TimestampEpochSecondsSchema;
LIST_MODIFIER: ListSchemaModifier;
MAP_MODIFIER: MapSchemaModifier;
};