Rocky_Mountain_Vending/.pnpm-store/v10/files/7c/4c2052b99f7ffd42ac022a7020009935e2cb11d5f12cc1fb69a77a1c2a56a78a3ef995da905f9362e8da2adbe902d151ae672ec918e011cb80fd75d7a7ca7d
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

13 lines
659 B
Text

export declare const AccessDeniedExceptionReason: {
readonly KMS_ACCESS_DENIED: "KMS_AccessDeniedException";
};
export type AccessDeniedExceptionReason =
(typeof AccessDeniedExceptionReason)[keyof typeof AccessDeniedExceptionReason];
export declare const InvalidRequestExceptionReason: {
readonly KMS_DISABLED_KEY: "KMS_DisabledException";
readonly KMS_INVALID_KEY_USAGE: "KMS_InvalidKeyUsageException";
readonly KMS_INVALID_STATE: "KMS_InvalidStateException";
readonly KMS_KEY_NOT_FOUND: "KMS_NotFoundException";
};
export type InvalidRequestExceptionReason =
(typeof InvalidRequestExceptionReason)[keyof typeof InvalidRequestExceptionReason];