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>
20 lines
747 B
Text
20 lines
747 B
Text
import { DeserializeMiddleware, Encoder, Pluggable, RelativeMiddlewareOptions } from "@smithy/types";
|
|
type PreviouslyResolved = {
|
|
utf8Encoder: Encoder;
|
|
};
|
|
/**
|
|
* In case of an internal error/terminated connection, S3 operations may return 200 errors. CopyObject, UploadPartCopy,
|
|
* CompleteMultipartUpload may return empty payload or payload with only xml Preamble.
|
|
* @internal
|
|
*/
|
|
export declare const throw200ExceptionsMiddleware: (config: PreviouslyResolved) => DeserializeMiddleware<any, any>;
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare const throw200ExceptionsMiddlewareOptions: RelativeMiddlewareOptions;
|
|
/**
|
|
*
|
|
* @internal
|
|
*/
|
|
export declare const getThrow200ExceptionsPlugin: (config: PreviouslyResolved) => Pluggable<any, any>;
|
|
export {};
|