Rocky_Mountain_Vending/.pnpm-store/v10/files/c4/606e344dd1020fe1507066330c4fd085bad3c26c3fe94ee9b04739615cd978d18daf9d8919cc3be8dbac94bd053643fe31139781708a3b9c2edce704b625c4
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

59 lines
1.5 KiB
Text

/**
* @public
*
* The base number of milliseconds to use in calculating a suitable cool-down
* time when a retryable error is encountered.
*/
export declare const DEFAULT_RETRY_DELAY_BASE = 100;
/**
* @public
*
* The maximum amount of time (in milliseconds) that will be used as a delay
* between retry attempts.
*/
export declare const MAXIMUM_RETRY_DELAY: number;
/**
* @public
*
* The retry delay base (in milliseconds) to use when a throttling error is
* encountered.
*/
export declare const THROTTLING_RETRY_DELAY_BASE = 500;
/**
* @public
*
* Initial number of retry tokens in Retry Quota
*/
export declare const INITIAL_RETRY_TOKENS = 500;
/**
* @public
*
* The total amount of retry tokens to be decremented from retry token balance.
*/
export declare const RETRY_COST = 5;
/**
* @public
*
* The total amount of retry tokens to be decremented from retry token balance
* when a throttling error is encountered.
*/
export declare const TIMEOUT_RETRY_COST = 10;
/**
* @public
*
* The total amount of retry token to be incremented from retry token balance
* if an SDK operation invocation succeeds without requiring a retry request.
*/
export declare const NO_RETRY_INCREMENT = 1;
/**
* @public
*
* Header name for SDK invocation ID
*/
export declare const INVOCATION_ID_HEADER = "amz-sdk-invocation-id";
/**
* @public
*
* Header name for request retry information.
*/
export declare const REQUEST_HEADER = "amz-sdk-request";