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>
37 lines
1.4 KiB
Text
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;
|