Rocky_Mountain_Vending/.pnpm-store/v10/files/33/6bdeb591014939aab4e779d54216bffff36ca92052dab05420bc642706fcbb134c40209704e9d70c453ad403ee716dfdc38462c8091506d0d4afe6d07c789a
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

24 lines
832 B
Text

import { AwsCredentialIdentity, AwsIdentityProperties } from "@aws-sdk/types";
import { IniSection } from "@smithy/types";
import { FromLoginCredentialsInit } from "./types";
export declare class LoginCredentialsFetcher {
private readonly profileData;
private readonly init?;
private readonly callerClientConfig?;
private static readonly REFRESH_THRESHOLD;
constructor(
profileData: IniSection,
init?: FromLoginCredentialsInit | undefined,
callerClientConfig?: AwsIdentityProperties["callerClientConfig"]
);
loadCredentials(): Promise<AwsCredentialIdentity>;
private readonly logger: any;
private readonly loginSession: any;
private refresh;
private loadToken;
private saveToken;
private getTokenFilePath;
private derToRawSignature;
private createDPoPInterceptor;
private generateDpop;
}