Rocky_Mountain_Vending/.pnpm-store/v10/files/77/0bd924e37f62a8e40091e3a1d6fc5032ba969d44bcbc8348cf4bee1c9d8fe466446b8f658767bf64bc263d05fcf0909d361ad06d97b85487981a2588d2dee5
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

32 lines
1 KiB
Text

import { AwsCredentialIdentity } from "@aws-sdk/types";
import { BuildHandlerOptions, BuildMiddleware, Logger, MemoizedProvider, Pluggable } from "@smithy/types";
import { S3ExpressIdentity } from "../interfaces/S3ExpressIdentity";
import { S3ExpressIdentityProvider } from "../interfaces/S3ExpressIdentityProvider";
declare module "@smithy/types" {
interface HandlerExecutionContext {
/**
* Reserved key, only when using S3.
*/
s3ExpressIdentity?: S3ExpressIdentity;
}
}
/**
* @internal
*/
export interface S3ExpressResolvedConfig {
logger?: Logger;
s3ExpressIdentityProvider: S3ExpressIdentityProvider;
credentials: MemoizedProvider<AwsCredentialIdentity>;
}
/**
* @internal
*/
export declare const s3ExpressMiddleware: (options: S3ExpressResolvedConfig) => BuildMiddleware<any, any>;
/**
* @internal
*/
export declare const s3ExpressMiddlewareOptions: BuildHandlerOptions;
/**
* @internal
*/
export declare const getS3ExpressPlugin: (options: S3ExpressResolvedConfig) => Pluggable<any, any>;