Rocky_Mountain_Vending/.pnpm-store/v10/files/1b/5b9251c28cb95984695a02340ed1b6e09e49ef0841ea096088e7713355789f28aaaf67e257cb6e12a1e8c2fcc50e7d2661e7cf33ed0f25798f00686713bc1e
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 { 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>;