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>
20 lines
689 B
Text
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_1Protocol extends AwsJsonRpcProtocol {
|
|
constructor({ defaultNamespace, serviceTarget, awsQueryCompatible, jsonCodec, }: {
|
|
defaultNamespace: string;
|
|
serviceTarget: string;
|
|
awsQueryCompatible?: boolean;
|
|
jsonCodec?: JsonCodec;
|
|
});
|
|
getShapeId(): string;
|
|
protected getJsonRpcVersion(): "1.1";
|
|
/**
|
|
* @override
|
|
*/
|
|
protected getDefaultContentType(): string;
|
|
}
|