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>
22 lines
804 B
Text
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>;
|