Rocky_Mountain_Vending/.pnpm-store/v10/files/3b/dd1dc98ddc3f695989997cf9008ddcf79294c8ca8366669f54ac5680c806d6243a0e98f1080e2c2fde239ab67d2691b55c97215c50bd3e7df8664a105b0f62
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

29 lines
1.5 KiB
Text

import { HttpBindingProtocol } from "@smithy/core/protocols";
import type { EndpointBearer, HandlerExecutionContext, HttpRequest as IHttpRequest, HttpResponse as IHttpResponse, MetadataBearer, OperationSchema, ResponseMetadata, SerdeFunctions, ShapeDeserializer, ShapeSerializer } from "@smithy/types";
import { XmlCodec } from "./XmlCodec";
/**
* @public
*/
export declare class AwsRestXmlProtocol extends HttpBindingProtocol {
private readonly codec;
protected serializer: ShapeSerializer<string | Uint8Array>;
protected deserializer: ShapeDeserializer<string | Uint8Array>;
private readonly mixin;
constructor(options: {
defaultNamespace: string;
xmlNamespace: string;
});
getPayloadCodec(): XmlCodec;
getShapeId(): string;
serializeRequest<Input extends object>(operationSchema: OperationSchema, input: Input, context: HandlerExecutionContext & SerdeFunctions & EndpointBearer): Promise<IHttpRequest>;
deserializeResponse<Output extends MetadataBearer>(operationSchema: OperationSchema, context: HandlerExecutionContext & SerdeFunctions, response: IHttpResponse): Promise<Output>;
/**
* @override
*/
protected handleError(operationSchema: OperationSchema, context: HandlerExecutionContext & SerdeFunctions, response: IHttpResponse, dataObject: any, metadata: ResponseMetadata): Promise<never>;
/**
* @override
*/
protected getDefaultContentType(): string;
private hasUnstructuredPayloadBinding;
}