Rocky_Mountain_Vending/.pnpm-store/v10/files/29/49292e24a6a83b462f52241494384115e5c7edc184563380c1960255c884c70f1baacd542f80176cc947afa458daaf33d7f5bad7f56b93462d91867fe14e48
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

37 lines
1.4 KiB
Text

import { SchemaRef, SchemaTraits } from "@smithy/types";
import { StructureSchema } from "./StructureSchema";
/**
* A schema for a structure shape having the error trait. These represent enumerated operation errors.
* Because Smithy-TS SDKs use classes for exceptions, whereas plain objects are used for all other data,
* and have an existing notion of a XYZServiceBaseException, the ErrorSchema differs from a StructureSchema
* by additionally holding the class reference for the corresponding ServiceException class.
*
* @internal
* @deprecated use StaticSchema
*/
export declare class ErrorSchema extends StructureSchema {
static readonly symbol: unique symbol;
/**
* @deprecated - field unused.
*/
ctor: any;
protected readonly symbol: symbol;
}
/**
* Factory for ErrorSchema, to reduce codegen output and register the schema.
*
* @internal
* @deprecated use StaticSchema
*
* @param namespace - shapeId namespace.
* @param name - shapeId name.
* @param traits - shape level serde traits.
* @param memberNames - list of member names.
* @param memberList - list of schemaRef corresponding to each
* @param ctor - class reference for the existing Error extending class.
*/
export declare const error: (namespace: string, name: string, traits: SchemaTraits, memberNames: string[], memberList: SchemaRef[],
/**
* @deprecated - field unused.
*/
ctor?: any) => ErrorSchema;