Rocky_Mountain_Vending/.pnpm-store/v10/files/c8/6c50b76d50d84a4633fec82ebda5f9deb68aa4c1edf1425b64e97c013e0b77163955a5477f8fa1c4e16e14350ab7a3060a8519de6cf2067c2b5312fbda0e81
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

14 lines
417 B
Text

import type { HttpRequest } from "@smithy/types";
export interface TestCase {
name: string;
request: HttpRequest;
authorization: string;
}
export declare const region = "us-east-1";
export declare const service = "service";
export declare const credentials: {
accessKeyId: string;
secretAccessKey: string;
};
export declare const signingDate: Date;
export declare const requests: Array<TestCase>;