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>
23 lines
997 B
Text
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;
|
|
};
|