Rocky_Mountain_Vending/.pnpm-store/v10/files/9a/8389e2ce2b0656a20858bf414705a5a42184dcc82888dd89f2a510807f530eed4d031f5f46844ab1f2c44dca75d520d1d66edfd67fb9fa5b2c7f988f48269f
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

16 lines
714 B
Text

import type { Logger, Provider } from "@smithy/types";
import type { InstanceMetadataCredentials } from "../types";
/**
* @internal
*
* IMDS credential supports static stability feature. When used, the expiration
* of recently issued credentials is extended. The server side allows using
* the recently expired credentials. This mitigates impact when clients using
* refreshable credentials are unable to retrieve updates.
*
* @param provider Credential provider
* @returns A credential provider that supports static stability
*/
export declare const staticStabilityProvider: (provider: Provider<InstanceMetadataCredentials>, options?: {
logger?: Logger;
}) => Provider<InstanceMetadataCredentials>;