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>
17 lines
480 B
Text
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;
|
|
}
|
|
}
|