Rocky_Mountain_Vending/.pnpm-store/v10/files/86/a4723bf2749adc4ef706a901d2a27b3b670c8380014a909d752ea209f679aedb07a8b2e9963fb131035425005d0e42efb5971df7c78f82891be76457b11482
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

10 lines
441 B
Text

export declare const OAuth2ErrorCode: {
readonly AUTHCODE_EXPIRED: "AUTHCODE_EXPIRED";
readonly INSUFFICIENT_PERMISSIONS: "INSUFFICIENT_PERMISSIONS";
readonly INVALID_REQUEST: "INVALID_REQUEST";
readonly SERVER_ERROR: "server_error";
readonly TOKEN_EXPIRED: "TOKEN_EXPIRED";
readonly USER_CREDENTIALS_CHANGED: "USER_CREDENTIALS_CHANGED";
};
export type OAuth2ErrorCode =
(typeof OAuth2ErrorCode)[keyof typeof OAuth2ErrorCode];