Rocky_Mountain_Vending/.pnpm-store/v10/files/31/2c0c725f5229c84dde4771cf9105e02d9b1d4d09a472c66148654452433ab8c29c6e389c93c8d8a5f806793916240e4165c47c11e42338211102fd30700bde
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.2 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;