Rocky_Mountain_Vending/.pnpm-store/v10/files/72/8469233e759d6eeaef3cb241a6081023f28e481ffd0e2ca991ff14d3c8ffa7504b946289ea365b7e69fc6f701d69885cdcc795a2c073589b52b7870b4530bc
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 type { 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;