Rocky_Mountain_Vending/.pnpm-store/v10/files/97/9a3367630518acd7f863e7304f1bfcba89db177d478cb64a5e010af381c6b09a94464a1b2060877dbd9e41827bd09a0fa1d1a037a630bf8f4a1bd9b62793da
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
875 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[];