Rocky_Mountain_Vending/.pnpm-store/v10/files/b8/fe86a695395241e184dc3fbf8955c3754d19e7cb1c04b74f99f7e02d10e1c2e0f1c6ebb49f89a021534947ea9619293b9594f6cdd271f883d15294284918fc
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

20 lines
689 B
Text

import { AwsJsonRpcProtocol } from "./AwsJsonRpcProtocol";
import type { JsonCodec } from "./JsonCodec";
/**
* @public
* @see https://smithy.io/2.0/aws/protocols/aws-json-1_1-protocol.html#differences-between-awsjson1-0-and-awsjson1-1
*/
export declare class AwsJson1_0Protocol extends AwsJsonRpcProtocol {
constructor({ defaultNamespace, serviceTarget, awsQueryCompatible, jsonCodec, }: {
defaultNamespace: string;
serviceTarget: string;
awsQueryCompatible?: boolean;
jsonCodec?: JsonCodec;
});
getShapeId(): string;
protected getJsonRpcVersion(): "1.0";
/**
* @override
*/
protected getDefaultContentType(): string;
}