Rocky_Mountain_Vending/.pnpm-store/v10/files/d3/8fc24f1460a98d0dbaed423efe51065b4139854686e47d4e4b83fc3c80f27c955efd3982f4ed6791cba1fb568581a192955b89ca23c9c64626610c9113bc5a
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

40 lines
1.2 KiB
Text

import { IHttpRequest } from "@smithy/protocol-http";
import {
AuthScheme,
AwsCredentialIdentity,
FinalizeRequestMiddleware,
Pluggable,
RequestSigner,
} from "@smithy/types";
interface SigningProperties {
signingRegion: string;
signingDate: Date;
signingService: string;
}
interface PreviouslyResolved {
signer: (authScheme?: AuthScheme | undefined) => Promise<
RequestSigner & {
signWithCredentials(
req: IHttpRequest,
identity: AwsCredentialIdentity,
opts?: Partial<SigningProperties>
): Promise<IHttpRequest>;
}
>;
}
export declare const s3ExpressHttpSigningMiddlewareOptions: import("@smithy/types").FinalizeRequestHandlerOptions &
import("@smithy/types").RelativeLocation &
Pick<
import("@smithy/types").HandlerOptions,
Exclude<keyof import("@smithy/types").HandlerOptions, "step">
>;
export declare const s3ExpressHttpSigningMiddleware: <
Input extends object,
Output extends object
>(
config: PreviouslyResolved
) => FinalizeRequestMiddleware<any, any>;
export declare const getS3ExpressHttpSigningPlugin: (config: {
signer: (authScheme?: AuthScheme | undefined) => Promise<RequestSigner>;
}) => Pluggable<any, any>;
export {};