Rocky_Mountain_Vending/.pnpm-store/v10/files/df/9b48f02e0610bab283031a14017cc4535bae30b26c0cb69bc11c75f1ee83ae0fa511569882a2a80f3f016efb3b87d54e595860a9e342da7d2e652ed7dbea62
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

39 lines
1.1 KiB
Text

import {
CredentialProviderOptions,
RuntimeConfigAwsCredentialIdentityProvider,
} from "@aws-sdk/types";
import { AwsCredentialIdentity, Pluggable } from "@smithy/types";
export interface AssumeRoleWithWebIdentityParams {
RoleArn: string;
RoleSessionName: string;
WebIdentityToken: string;
ProviderId?: string;
PolicyArns?: {
arn?: string;
}[];
Policy?: string;
DurationSeconds?: number;
}
type LowerCaseKey<T> = {
[K in keyof T as `${Uncapitalize<string & K>}`]: T[K];
};
export interface FromWebTokenInit
extends Pick<
LowerCaseKey<AssumeRoleWithWebIdentityParams>,
Exclude<
keyof LowerCaseKey<AssumeRoleWithWebIdentityParams>,
"roleSessionName"
>
>,
CredentialProviderOptions {
roleSessionName?: string;
roleAssumerWithWebIdentity?: (
params: AssumeRoleWithWebIdentityParams
) => Promise<AwsCredentialIdentity>;
clientConfig?: any;
clientPlugins?: Pluggable<any, any>[];
}
export declare const fromWebToken: (
init: FromWebTokenInit
) => RuntimeConfigAwsCredentialIdentityProvider;
export {};