Rocky_Mountain_Vending/.pnpm-store/v10/files/60/31b02ca8c86c3cfcd18dc692b565016b0a8b72a166d1720ca3576bb875d05778fdb5a83425b155acd76768ad3d46cbd688c206e5018062dc0fb6e39a6c5aeb
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

65 lines
1.3 KiB
Text

/**
* The blob Smithy type, in JS as Uint8Array and other representations
* such as Buffer, string, or Readable(Stream) depending on circumstances.
* @public
*/
export type BlobSchema = 21;
/**
* @public
*/
export type StreamingBlobSchema = 42;
/**
* @public
*/
export type BooleanSchema = 2;
/**
* Includes string and enum Smithy types.
* @public
*/
export type StringSchema = 0;
/**
* Includes all numeric Smithy types except bigInteger and bigDecimal.
* byte, short, integer, long, float, double, intEnum.
*
* @public
*/
export type NumericSchema = 1;
/**
* @public
*/
export type BigIntegerSchema = 17;
/**
* @public
*/
export type BigDecimalSchema = 19;
/**
* @public
*/
export type DocumentSchema = 15;
/**
* Smithy type timestamp, in JS as native Date object.
* @public
*/
export type TimestampDefaultSchema = 4;
/**
* @public
*/
export type TimestampDateTimeSchema = 5;
/**
* @public
*/
export type TimestampHttpDateSchema = 6;
/**
* @public
*/
export type TimestampEpochSecondsSchema = 7;
/**
* Additional bit indicating the type is a list.
* @public
*/
export type ListSchemaModifier = 64;
/**
* Additional bit indicating the type is a map.
* @public
*/
export type MapSchemaModifier = 128;