Rocky_Mountain_Vending/.pnpm-store/v10/files/fa/4f44155162ee35b346fe4dd89058a867160f961fd68588edf67246c9adb716c985a4a625f55461568ea34f97298b1075bab8e14b1ed15117be8db9ad61e15a
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

19 lines
665 B
Text

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