Rocky_Mountain_Vending/.pnpm-store/v10/files/c9/7ab154610ce082147b3423941435bc9acf3ad90c2a480b567d471cc3618fcf19d58d48a4be795fe880d404d5b12f5ce96cef903095e2a5136d076c4039e158
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

17 lines
480 B
Text

import { AwsQueryProtocol } from "./AwsQueryProtocol";
export class AwsEc2QueryProtocol extends AwsQueryProtocol {
options;
constructor(options) {
super(options);
this.options = options;
const ec2Settings = {
capitalizeKeys: true,
flattenLists: true,
serializeEmptyLists: false,
};
Object.assign(this.serializer.settings, ec2Settings);
}
useNestedResult() {
return false;
}
}