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>
27 lines
1,003 B
Text
27 lines
1,003 B
Text
import { DeserializeMiddleware, RelativeMiddlewareOptions } from "@smithy/types";
|
|
import { PreviouslyResolved } from "./configuration";
|
|
/**
|
|
* @internal
|
|
*/
|
|
export interface FlexibleChecksumsResponseMiddlewareConfig {
|
|
/**
|
|
* 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;
|
|
/**
|
|
* Defines the checksum algorithms clients SHOULD look for when validating checksums
|
|
* returned in the HTTP response.
|
|
*/
|
|
responseAlgorithms?: string[];
|
|
}
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare const flexibleChecksumsResponseMiddlewareOptions: RelativeMiddlewareOptions;
|
|
/**
|
|
* @internal
|
|
*
|
|
* The validation counterpart to the flexibleChecksumsMiddleware.
|
|
*/
|
|
export declare const flexibleChecksumsResponseMiddleware: (config: PreviouslyResolved, middlewareConfig: FlexibleChecksumsResponseMiddlewareConfig) => DeserializeMiddleware<any, any>;
|