Rocky_Mountain_Vending/.pnpm-store/v10/files/ae/747a4faf7156f0381e894d1250ba7e0854a4594f58a5d06f230be53b8a2da56a23aaefebce35b2ef14659752fcb1f1c430ca693d6001cb69182d591f89dee4
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

30 lines
905 B
Text

/**
* Errors encountered when the client clock and server clock cannot agree on the
* current time.
*
* These errors are retryable, assuming the SDK has enabled clock skew
* correction.
*/
export declare const CLOCK_SKEW_ERROR_CODES: string[];
/**
* Errors that indicate the SDK is being throttled.
*
* These errors are always retryable.
*/
export declare const THROTTLING_ERROR_CODES: string[];
/**
* Error codes that indicate transient issues
*/
export declare const TRANSIENT_ERROR_CODES: string[];
/**
* Error codes that indicate transient issues
*/
export declare const TRANSIENT_ERROR_STATUS_CODES: number[];
/**
* Node.js system error codes that indicate timeout.
*/
export declare const NODEJS_TIMEOUT_ERROR_CODES: string[];
/**
* Node.js system error codes that indicate network error.
*/
export declare const NODEJS_NETWORK_ERROR_CODES: string[];