Rocky_Mountain_Vending/.pnpm-store/v10/files/2f/7037b9f9a7d74061190facddf78ccecd994a518dc2b8b87a30b4e48c26a6abf14804ce70e6205d1ce704370ca3bfcc1325df86050eac7e8f422f3e8170a749
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

31 lines
970 B
Text

import { AwsCredentialIdentity } from "@aws-sdk/types";
import { S3ExpressIdentity } from "../interfaces/S3ExpressIdentity";
import { S3ExpressIdentityProvider } from "../interfaces/S3ExpressIdentityProvider";
import { S3ExpressIdentityCache } from "./S3ExpressIdentityCache";
type Credentials = {
AccessKeyId: string | undefined;
SecretAccessKey: string | undefined;
SessionToken: string | undefined;
Expiration: Date | undefined;
};
export declare class S3ExpressIdentityProviderImpl
implements S3ExpressIdentityProvider
{
private createSessionFn;
private cache;
static REFRESH_WINDOW_MS: number;
constructor(
createSessionFn: (key: string) => Promise<{
Credentials: Credentials;
}>,
cache?: S3ExpressIdentityCache
);
getS3ExpressIdentity(
awsIdentity: AwsCredentialIdentity,
identityProperties: {
Bucket: string;
} & Record<string, string>
): Promise<S3ExpressIdentity>;
private getIdentity;
}
export {};