Rocky_Mountain_Vending/.pnpm-store/v10/files/20/1112d442bce7e0727933b88aa9b591d8fb38fe0c6cf6f78c8e72b6fc5cc7982abe4046ea92aefc1ad78f54e60c39a3a2e1a6df18068c2b893b1d065430d8ae
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

66 lines
1.7 KiB
Text

import type { LoadedConfigSelectors } from "@smithy/node-config-provider";
import type { Provider, RetryStrategy, RetryStrategyV2 } from "@smithy/types";
/**
* @internal
*/
export declare const ENV_MAX_ATTEMPTS = "AWS_MAX_ATTEMPTS";
/**
* @internal
*/
export declare const CONFIG_MAX_ATTEMPTS = "max_attempts";
/**
* @internal
*/
export declare const NODE_MAX_ATTEMPT_CONFIG_OPTIONS: LoadedConfigSelectors<number>;
/**
* @public
*/
export interface RetryInputConfig {
/**
* The maximum number of times requests that encounter retryable failures should be attempted.
*/
maxAttempts?: number | Provider<number>;
/**
* The strategy to retry the request. Using built-in exponential backoff strategy by default.
*/
retryStrategy?: RetryStrategy | RetryStrategyV2;
}
/**
* @internal
*/
export interface PreviouslyResolved {
/**
* Specifies provider for retry algorithm to use.
* @internal
*/
retryMode: string | Provider<string>;
}
/**
* @internal
*/
export interface RetryResolvedConfig {
/**
* Resolved value for input config {@link RetryInputConfig.maxAttempts}
*/
maxAttempts: Provider<number>;
/**
* Resolved value for input config {@link RetryInputConfig.retryStrategy}
*/
retryStrategy: Provider<RetryStrategyV2 | RetryStrategy>;
}
/**
* @internal
*/
export declare const resolveRetryConfig: <T>(input: T & PreviouslyResolved & RetryInputConfig) => T & RetryResolvedConfig;
/**
* @internal
*/
export declare const ENV_RETRY_MODE = "AWS_RETRY_MODE";
/**
* @internal
*/
export declare const CONFIG_RETRY_MODE = "retry_mode";
/**
* @internal
*/
export declare const NODE_RETRY_MODE_CONFIG_OPTIONS: LoadedConfigSelectors<string>;