Rocky_Mountain_Vending/.pnpm-store/v10/files/dd/4fa9facee6383dc316a3db5388592519526823723f5e175dc79623cdca72014e937db6cff90ec65304a11f7874142b8a71b093b5ece771174fe88385cb7928
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

95 lines
3.2 KiB
Text

import { Provider, RegionInfoProvider } from "@smithy/types";
/**
* @deprecated unused as of EndpointsV2.
*/
export interface BucketEndpointInputConfig {
/**
* Whether to use the bucket name as the endpoint for this request. The bucket
* name must be a domain name with a CNAME record alias to an appropriate virtual
* hosted-style S3 hostname, e.g. a bucket of `images.johnsmith.net` and a DNS
* record of:
*
* ```
* images.johnsmith.net CNAME images.johnsmith.net.s3.amazonaws.com.
* ```
*
* @see https://docs.aws.amazon.com/AmazonS3/latest/userguide/VirtualHosting.html#VirtualHostingCustomURLs
*/
bucketEndpoint?: boolean;
/**
* Whether to force path style URLs for S3 objects (e.g., https://s3.amazonaws.com/<bucketName>/<key> instead of https://<bucketName>.s3.amazonaws.com/<key>
*/
forcePathStyle?: boolean;
/**
* Whether to use the S3 Transfer Acceleration endpoint by default
*/
useAccelerateEndpoint?: boolean;
/**
* Whether to override the request region with the region inferred from requested resource's ARN. Defaults to false
*/
useArnRegion?: boolean | Provider<boolean>;
/**
* Whether to prevent SDK from making cross-region request when supplied bucket is a multi-region access point ARN.
* Defaults to false
*/
disableMultiregionAccessPoints?: boolean | Provider<boolean>;
}
/**
* @deprecated unused as of EndpointsV2.
*/
interface PreviouslyResolved {
isCustomEndpoint?: boolean;
region: Provider<string>;
regionInfoProvider: RegionInfoProvider;
useFipsEndpoint: Provider<boolean>;
useDualstackEndpoint: Provider<boolean>;
}
/**
* @deprecated unused as of EndpointsV2.
*/
export interface BucketEndpointResolvedConfig {
/**
* Whether the endpoint is specified by caller.
* @internal
*/
isCustomEndpoint?: boolean;
/**
* Resolved value for input config {@link BucketEndpointInputConfig.bucketEndpoint}
*/
bucketEndpoint: boolean;
/**
* Resolved value for input config {@link BucketEndpointInputConfig.forcePathStyle}
*/
forcePathStyle: boolean;
/**
* Resolved value for input config {@link BucketEndpointInputConfig.useAccelerateEndpoint}
*/
useAccelerateEndpoint: boolean;
/**
* Enables FIPS compatible endpoints.
*/
useFipsEndpoint: Provider<boolean>;
/**
* Enables IPv6/IPv4 dualstack endpoint.
*/
useDualstackEndpoint: Provider<boolean>;
/**
* Resolved value for input config {@link BucketEndpointInputConfig.useArnRegion}
*/
useArnRegion: Provider<boolean | undefined>;
/**
* Resolved value for input config {@link RegionInputConfig.region}
*/
region: Provider<string>;
/**
* Fetch related hostname, signing name or signing region with given region.
* @internal
*/
regionInfoProvider: RegionInfoProvider;
disableMultiregionAccessPoints: Provider<boolean>;
}
/**
* @deprecated unused as of EndpointsV2.
*/
export declare function resolveBucketEndpointConfig<T>(input: T & PreviouslyResolved & BucketEndpointInputConfig): T & BucketEndpointResolvedConfig;
export {};