Rocky_Mountain_Vending/.pnpm-store/v10/files/cf/58acc946d899bac0eade863580940309992b87f8112a007e71f2fdb6e22d84cf4ba1a6835e1138fae0341abbfc09955bfc6efe285b9756e2d92ca48053e0ec
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

57 lines
1.8 KiB
Text

import { RpcProtocol } from "@smithy/core/protocols";
import {
Codec,
EndpointBearer,
HandlerExecutionContext,
HttpRequest,
HttpResponse as IHttpResponse,
MetadataBearer,
OperationSchema,
ResponseMetadata,
SerdeFunctions,
} from "@smithy/types";
import { XmlShapeDeserializer } from "../xml/XmlShapeDeserializer";
import { QueryShapeSerializer } from "./QueryShapeSerializer";
export declare class AwsQueryProtocol extends RpcProtocol {
options: {
defaultNamespace: string;
xmlNamespace: string;
version: string;
};
protected serializer: QueryShapeSerializer;
protected deserializer: XmlShapeDeserializer;
private readonly mixin;
constructor(options: {
defaultNamespace: string;
xmlNamespace: string;
version: string;
});
getShapeId(): string;
setSerdeContext(serdeContext: SerdeFunctions): void;
getPayloadCodec(): Codec<any, any>;
serializeRequest<Input extends object>(
operationSchema: OperationSchema,
input: Input,
context: HandlerExecutionContext & SerdeFunctions & EndpointBearer
): Promise<HttpRequest>;
deserializeResponse<Output extends MetadataBearer>(
operationSchema: OperationSchema,
context: HandlerExecutionContext & SerdeFunctions,
response: IHttpResponse
): Promise<Output>;
protected useNestedResult(): boolean;
protected handleError(
operationSchema: OperationSchema,
context: HandlerExecutionContext & SerdeFunctions,
response: IHttpResponse,
dataObject: any,
metadata: ResponseMetadata
): Promise<never>;
protected loadQueryErrorCode(
output: IHttpResponse,
data: any
): string | undefined;
protected loadQueryError(data: any): any | undefined;
protected loadQueryErrorMessage(data: any): string;
protected getDefaultContentType(): string;
}