Rocky_Mountain_Vending/.pnpm-store/v10/files/9f/8d12117961bf42e5de03eae46bee15d7236ae6a2ed3f31ee1811e63d55ff441c34f57a3dbb5824d69679d034a0921fb08ce7cb0451148d2c9362d6bd68f56c
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
603 B
Text

import { AwsIdentityProperties } from "@aws-sdk/types";
import { AwsCredentialIdentity, Profile } from "@smithy/types";
import { FromIniInit } from "./fromIni";
export interface WebIdentityProfile extends Profile {
web_identity_token_file: string;
role_arn: string;
role_session_name?: string;
}
export declare const isWebIdentityProfile: (
arg: any
) => arg is WebIdentityProfile;
export declare const resolveWebIdentityCredentials: (
profile: WebIdentityProfile,
options: FromIniInit,
callerClientConfig?: AwsIdentityProperties["callerClientConfig"]
) => Promise<AwsCredentialIdentity>;