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>
10 lines
441 B
Text
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];
|