Rocky_Mountain_Vending/.pnpm-store/v10/files/12/46a61725043ee3b90a7f39f09930e61cc9705e12823709a9b46d7fcf893479b9c96c6ca1a2cbf90f7f2a2108b44565d0a4f9a2cacd6812fc3aeb80c439d225
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

149 lines
4.8 KiB
Text

import { EndpointV2 } from "../endpoint";
import { HandlerExecutionContext } from "../middleware";
import { MetadataBearer } from "../response";
import { EndpointBearer, SerdeFunctions } from "../serde";
import { ConfigurableSerdeContext, NormalizedSchema, SchemaTraits, SimpleSchema, UnitSchema } from "./schema";
import { StaticSchema } from "./static-schemas";
/**
* A schema is an object or value that describes how to serialize/deserialize data.
* @internal
* @deprecated use $Schema
*/
export type Schema = UnitSchema | TraitsSchema | SimpleSchema | ListSchema | MapSchema | StructureSchema | MemberSchema | OperationSchema | StaticSchema | NormalizedSchema;
/**
* A schema "reference" is either a schema or a function that
* provides a schema. This is useful for lazy loading, and to allow
* code generation to define schema out of dependency order.
* @internal
* @deprecated use $SchemaRef
*/
export type SchemaRef = Schema | (() => Schema);
/**
* A schema that has traits.
*
* @internal
* @deprecated use static schema.
*/
export interface TraitsSchema {
namespace: string;
name: string;
traits: SchemaTraits;
}
/**
* Indicates the schema is a member of a parent Structure schema.
* It may also have a set of member traits distinct from its target shape's traits.
* @internal
* @deprecated use $MemberSchema
*/
export type MemberSchema = [
SchemaRef,
SchemaTraits
];
/**
* Schema for the structure aggregate type.
* @internal
* @deprecated use static schema.
*/
export interface StructureSchema extends TraitsSchema {
memberNames: string[];
memberList: SchemaRef[];
/**
* @deprecated structure member iteration will be linear on the memberNames and memberList arrays.
* It can be collected into a hashmap form on an ad-hoc basis, but will not initialize as such.
*/
members?: Record<string, [
SchemaRef,
SchemaTraits
]> | undefined;
}
/**
* Schema for the list aggregate type.
* @internal
* @deprecated use static schema.
*/
export interface ListSchema extends TraitsSchema {
valueSchema: SchemaRef;
}
/**
* Schema for the map aggregate type.
* @internal
* @deprecated use static schema.
*/
export interface MapSchema extends TraitsSchema {
keySchema: SchemaRef;
valueSchema: SchemaRef;
}
/**
* Schema for an operation.
* @internal
* @deprecated use StaticOperationSchema or $OperationSchema
*/
export interface OperationSchema {
namespace: string;
name: string;
traits: SchemaTraits;
input: SchemaRef;
output: SchemaRef;
}
/**
* Turns a serialization into a data object.
* @internal
* @deprecated use $ShapeDeserializer
*/
export interface ShapeDeserializer<SerializationType = Uint8Array> extends ConfigurableSerdeContext {
/**
* Optionally async.
*/
read(schema: Schema, data: SerializationType): any | Promise<any>;
}
/**
* Turns a data object into a serialization.
* @internal
* @deprecated use $ShapeSerializer
*/
export interface ShapeSerializer<SerializationType = Uint8Array> extends ConfigurableSerdeContext {
write(schema: Schema, value: unknown): void;
flush(): SerializationType;
}
/**
* A codec creates serializers and deserializers for some format such as JSON, XML, or CBOR.
*
* @internal
* @deprecated use $Codec
*/
export interface Codec<S, D> extends ConfigurableSerdeContext {
createSerializer(): ShapeSerializer<S>;
createDeserializer(): ShapeDeserializer<D>;
}
/**
* A client protocol defines how to convert a message (e.g. HTTP request/response) to and from a data object.
* @internal
* @deprecated use $ClientProtocol
*/
export interface ClientProtocol<Request, Response> extends ConfigurableSerdeContext {
/**
* @returns the Smithy qualified shape id.
*/
getShapeId(): string;
getRequestType(): {
new (...args: any[]): Request;
};
getResponseType(): {
new (...args: any[]): Response;
};
/**
* @returns the payload codec if the requests/responses have a symmetric format.
* It otherwise may return null.
*/
getPayloadCodec(): Codec<any, any>;
serializeRequest<Input extends object>(operationSchema: OperationSchema, input: Input, context: HandlerExecutionContext & SerdeFunctions & EndpointBearer): Promise<Request>;
updateServiceEndpoint(request: Request, endpoint: EndpointV2): Request;
deserializeResponse<Output extends MetadataBearer>(operationSchema: OperationSchema, context: HandlerExecutionContext & SerdeFunctions, response: Response): Promise<Output>;
}
/**
* @public
* @deprecated use $ClientProtocolCtor.
*/
export interface ClientProtocolCtor<Request, Response> {
new (args: any): ClientProtocol<Request, Response>;
}