Rocky_Mountain_Vending/.pnpm-store/v10/files/2c/f3da46539b0cb66ad9120c15baf8a9a2370064000cb871de3bec6eee52b5b18f4d3944fd316b985471e9ea3bf23b46b8fd6a1b1a5c1f3db430cc309690621f
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

24 lines
1.2 KiB
Text

import type { DeserializeHandlerOptions, Endpoint, MetadataBearer, Pluggable, Provider, RequestSerializer, ResponseDeserializer, SerdeContext, SerdeFunctions, SerializeHandlerOptions, UrlParser } from "@smithy/types";
/**
* @deprecated will be replaced by schemaSerdePlugin from core/schema.
*/
export declare const deserializerMiddlewareOption: DeserializeHandlerOptions;
/**
* @deprecated will be replaced by schemaSerdePlugin from core/schema.
*/
export declare const serializerMiddlewareOption: SerializeHandlerOptions;
/**
* Modifies the EndpointBearer to make it compatible with Endpoints 2.0 change.
*
* @internal
* @deprecated
*/
export type V1OrV2Endpoint = {
urlParser?: UrlParser;
endpoint?: Provider<Endpoint>;
};
/**
* @internal
* @deprecated will be replaced by schemaSerdePlugin from core/schema.
*/
export declare function getSerdePlugin<InputType extends object = any, CommandSerdeContext extends SerdeContext = any, OutputType extends MetadataBearer = any>(config: SerdeFunctions, serializer: RequestSerializer<any, CommandSerdeContext>, deserializer: ResponseDeserializer<OutputType, any, CommandSerdeContext>): Pluggable<InputType, OutputType>;