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>
34 lines
936 B
Text
34 lines
936 B
Text
/**
|
|
* @public
|
|
* @enum
|
|
*/
|
|
export declare const OAuth2ErrorCode: {
|
|
/**
|
|
* Authorization code has expired
|
|
*/
|
|
readonly AUTHCODE_EXPIRED: "AUTHCODE_EXPIRED";
|
|
/**
|
|
* Insufficient permissions to perform this operation
|
|
*/
|
|
readonly INSUFFICIENT_PERMISSIONS: "INSUFFICIENT_PERMISSIONS";
|
|
/**
|
|
* The request is missing a required parameter, includes an invalid parameter value, or is otherwise malformed
|
|
*/
|
|
readonly INVALID_REQUEST: "INVALID_REQUEST";
|
|
/**
|
|
* Internal server error occurred
|
|
*/
|
|
readonly SERVER_ERROR: "server_error";
|
|
/**
|
|
* Token has expired and needs to be refreshed
|
|
*/
|
|
readonly TOKEN_EXPIRED: "TOKEN_EXPIRED";
|
|
/**
|
|
* User credentials have been changed
|
|
*/
|
|
readonly USER_CREDENTIALS_CHANGED: "USER_CREDENTIALS_CHANGED";
|
|
};
|
|
/**
|
|
* @public
|
|
*/
|
|
export type OAuth2ErrorCode = (typeof OAuth2ErrorCode)[keyof typeof OAuth2ErrorCode];
|