Rocky_Mountain_Vending/.pnpm-store/v10/files/60/3dde4cf0372bee4b4ef69e3da4f20f9485f2f559fb4fe4344240927b0c44f232e398455914cdddea9242f9307c29295a92cff787b4c96cc903b90102a09fa6
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

22 lines
804 B
Text

import { RelativeMiddlewareOptions, SerializeMiddleware } from "@smithy/types";
import { PreviouslyResolved } from "./configuration";
/**
* @internal
*/
export interface FlexibleChecksumsInputMiddlewareConfig {
/**
* Defines a top-level operation input member used to opt-in to best-effort validation
* of a checksum returned in the HTTP response of the operation.
*/
requestValidationModeMember?: string;
}
/**
* @internal
*/
export declare const flexibleChecksumsInputMiddlewareOptions: RelativeMiddlewareOptions;
/**
* @internal
*
* The input counterpart to the flexibleChecksumsMiddleware.
*/
export declare const flexibleChecksumsInputMiddleware: (config: PreviouslyResolved, middlewareConfig: FlexibleChecksumsInputMiddlewareConfig) => SerializeMiddleware<any, any>;