Rocky_Mountain_Vending/.pnpm-store/v10/files/66/cf2fbdc382d88413ab8b94cf013ddfc154aa28c887662929b60050a0c9715543c7b22e6ec5caa729a905fd92ed2a9eba1381c755b95bf5c247bac15bb149ad
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

9 lines
394 B
Text

export const DEFAULT_RETRY_DELAY_BASE = 100;
export const MAXIMUM_RETRY_DELAY = 20 * 1000;
export const THROTTLING_RETRY_DELAY_BASE = 500;
export const INITIAL_RETRY_TOKENS = 500;
export const RETRY_COST = 5;
export const TIMEOUT_RETRY_COST = 10;
export const NO_RETRY_INCREMENT = 1;
export const INVOCATION_ID_HEADER = "amz-sdk-invocation-id";
export const REQUEST_HEADER = "amz-sdk-request";