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
558 B
Text
20 lines
558 B
Text
import { AwsJsonRpcProtocol } from "./AwsJsonRpcProtocol";
|
|
export class AwsJson1_1Protocol extends AwsJsonRpcProtocol {
|
|
constructor({ defaultNamespace, serviceTarget, awsQueryCompatible, jsonCodec, }) {
|
|
super({
|
|
defaultNamespace,
|
|
serviceTarget,
|
|
awsQueryCompatible,
|
|
jsonCodec,
|
|
});
|
|
}
|
|
getShapeId() {
|
|
return "aws.protocols#awsJson1_1";
|
|
}
|
|
getJsonRpcVersion() {
|
|
return "1.1";
|
|
}
|
|
getDefaultContentType() {
|
|
return "application/x-amz-json-1.1";
|
|
}
|
|
}
|