Rocky_Mountain_Vending/.pnpm-store/v10/files/b2/4023bc360b8bef5da455d5c8521edfb6a302d1f72a751efbd961624a2ce1759500e418b97a3cc7bae843d148d5f0a909d6651f162096c197ca721dd0cc76e3
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

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];