Rocky_Mountain_Vending/.pnpm-store/v10/files/5f/03d8b2eff1f40a981d612d09eace6060faaf2cf510739702bb3093f93f7f5ab8f12f907887362ef3b4b760a775243dee76c3a8aefecf1f45c547f402cc38ed
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
864 B
Text

import type { AwsIdentityProperties } from "@aws-sdk/types";
import type { AwsCredentialIdentity, ParsedIniData } from "@smithy/types";
import { FromIniInit } from "./fromIni";
/**
* @internal
*/
export type ResolveProfileData = typeof resolveProfileData;
/**
* @internal
*/
export declare const resolveProfileData: (profileName: string, profiles: ParsedIniData, options: FromIniInit, callerClientConfig?: AwsIdentityProperties["callerClientConfig"], visitedProfiles?: Record<string, true>,
/**
* This override comes from recursive calls only.
* It is used to flag a recursive profile section
* that does not have a role_arn, e.g. a credential_source
* with no role_arn, as part of a larger recursive assume-role
* call stack, and to re-enter the assume-role resolver function.
*/
isAssumeRoleRecursiveCall?: boolean) => Promise<AwsCredentialIdentity>;