Rocky_Mountain_Vending/.pnpm-store/v10/files/a1/93ccc4b8a672b99b3726a54f21ba3fa841a971e86e65fb9482b155361499a92892aed2e6826ee9fb8fb3072835227f7ebb34c01b1b338f3b0abd25873334b1
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

10 lines
786 B
Text

import { InitializeHandlerOptions, InitializeMiddleware, Pluggable } from "@smithy/types";
import { LocationConstraintResolvedConfig } from "./configuration";
/**
* This middleware modifies the input on S3 CreateBucket requests. If the LocationConstraint has not been set, this
* middleware will set a LocationConstraint to match the configured region. The CreateBucketConfiguration will be
* removed entirely on requests to the us-east-1 region.
*/
export declare function locationConstraintMiddleware(options: LocationConstraintResolvedConfig): InitializeMiddleware<any, any>;
export declare const locationConstraintMiddlewareOptions: InitializeHandlerOptions;
export declare const getLocationConstraintPlugin: (config: LocationConstraintResolvedConfig) => Pluggable<any, any>;