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

23 lines
1 KiB
Text

import { SmithyRpcV2CborProtocol } from "@smithy/core/cbor";
import type { EndpointBearer, HandlerExecutionContext, HttpRequest, HttpResponse, OperationSchema, ResponseMetadata, SerdeFunctions } from "@smithy/types";
/**
* Extends the Smithy implementation to add AwsQueryCompatibility support.
*
* @public
*/
export declare class AwsSmithyRpcV2CborProtocol extends SmithyRpcV2CborProtocol {
private readonly awsQueryCompatible;
private readonly mixin;
constructor({ defaultNamespace, awsQueryCompatible, }: {
defaultNamespace: string;
awsQueryCompatible?: boolean;
});
/**
* @override
*/
serializeRequest<Input extends object>(operationSchema: OperationSchema, input: Input, context: HandlerExecutionContext & SerdeFunctions & EndpointBearer): Promise<HttpRequest>;
/**
* @override
*/
protected handleError(operationSchema: OperationSchema, context: HandlerExecutionContext & SerdeFunctions, response: HttpResponse, dataObject: any, metadata: ResponseMetadata): Promise<never>;
}