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>
14 lines
417 B
Text
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>;
|