Rocky_Mountain_Vending/.pnpm-store/v10/files/87/e77a79cc5fab4029c7bc4513f6127d3484d39f6c20875c556b25918d1a6b703872bbdb303380b717339b397145982481c9ed636ec56162b10b78702a281345
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

40 lines
854 B
Text

import type { Logger } from "@smithy/types";
/**
* @internal
*/
export declare const DEFAULT_TIMEOUT = 1000;
/**
* @internal
*/
export declare const DEFAULT_MAX_RETRIES = 0;
/**
* @public
*/
export interface RemoteProviderConfig {
/**
* The connection timeout (in milliseconds)
*/
timeout: number;
/**
* The maximum number of times the HTTP connection should be retried
*/
maxRetries: number;
}
/**
* @public
*/
export interface RemoteProviderInit extends Partial<RemoteProviderConfig> {
logger?: Logger;
/**
* Only used in the IMDS credential provider.
*/
ec2MetadataV1Disabled?: boolean;
/**
* AWS_PROFILE.
*/
profile?: string;
}
/**
* @internal
*/
export declare const providerConfigFromInit: ({ maxRetries, timeout, }: RemoteProviderInit) => RemoteProviderConfig;