Rocky_Mountain_Vending/.pnpm-store/v10/files/b2/8e54396f5fde72f6e5af3a18d1ac805e6432abc57fea4689c563914068cea48a5c8a7586d66a6f479f54a322d5b08595f3141eaac288c7bf3e04debee1bad8
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

21 lines
702 B
Text

import { AwsCredentialIdentityProvider } from "@smithy/types";
import { RemoteProviderInit } from "./remoteProvider/RemoteProviderInit";
/**
* @internal
*/
export declare const ENV_CMDS_FULL_URI = "AWS_CONTAINER_CREDENTIALS_FULL_URI";
/**
* @internal
*/
export declare const ENV_CMDS_RELATIVE_URI = "AWS_CONTAINER_CREDENTIALS_RELATIVE_URI";
/**
* @internal
*/
export declare const ENV_CMDS_AUTH_TOKEN = "AWS_CONTAINER_AUTHORIZATION_TOKEN";
/**
* @internal
*
* Creates a credential provider that will source credentials from the ECS
* Container Metadata Service
*/
export declare const fromContainerMetadata: (init?: RemoteProviderInit) => AwsCredentialIdentityProvider;