Rocky_Mountain_Vending/.pnpm-store/v10/files/c9/e0ce8bf1dd0e1306c0e50999100314a4c10679938a4ba555fa6253badfcb4b0306989ad4577834318d4c45b87f110aa958ceb7c9c3092dc42d475d56ce6506
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

106 lines
3.3 KiB
Text

import {
Endpoint,
EndpointParameters as __EndpointParameters,
EndpointV2,
Provider,
} from "@smithy/types";
export interface ClientInputEndpointParameters {
clientContextParams?: {
disableS3ExpressSessionAuth?:
| boolean
| undefined
| Provider<boolean | undefined>;
};
region?: string | undefined | Provider<string | undefined>;
useFipsEndpoint?: boolean | undefined | Provider<boolean | undefined>;
useDualstackEndpoint?: boolean | undefined | Provider<boolean | undefined>;
endpoint?:
| string
| Provider<string>
| Endpoint
| Provider<Endpoint>
| EndpointV2
| Provider<EndpointV2>;
forcePathStyle?: boolean | undefined | Provider<boolean | undefined>;
useAccelerateEndpoint?: boolean | undefined | Provider<boolean | undefined>;
useGlobalEndpoint?: boolean | undefined | Provider<boolean | undefined>;
disableMultiregionAccessPoints?:
| boolean
| undefined
| Provider<boolean | undefined>;
useArnRegion?: boolean | undefined | Provider<boolean | undefined>;
disableS3ExpressSessionAuth?:
| boolean
| undefined
| Provider<boolean | undefined>;
}
export type ClientResolvedEndpointParameters = Pick<
ClientInputEndpointParameters,
Exclude<keyof ClientInputEndpointParameters, "endpoint">
> & {
defaultSigningName: string;
};
export declare const resolveClientEndpointParameters: <T>(
options: T & ClientInputEndpointParameters
) => T & ClientResolvedEndpointParameters;
export declare const commonParams: {
readonly ForcePathStyle: {
readonly type: "clientContextParams";
readonly name: "forcePathStyle";
};
readonly UseArnRegion: {
readonly type: "clientContextParams";
readonly name: "useArnRegion";
};
readonly DisableMultiRegionAccessPoints: {
readonly type: "clientContextParams";
readonly name: "disableMultiregionAccessPoints";
};
readonly Accelerate: {
readonly type: "clientContextParams";
readonly name: "useAccelerateEndpoint";
};
readonly DisableS3ExpressSessionAuth: {
readonly type: "clientContextParams";
readonly name: "disableS3ExpressSessionAuth";
};
readonly UseGlobalEndpoint: {
readonly type: "builtInParams";
readonly name: "useGlobalEndpoint";
};
readonly UseFIPS: {
readonly type: "builtInParams";
readonly name: "useFipsEndpoint";
};
readonly Endpoint: {
readonly type: "builtInParams";
readonly name: "endpoint";
};
readonly Region: {
readonly type: "builtInParams";
readonly name: "region";
};
readonly UseDualStack: {
readonly type: "builtInParams";
readonly name: "useDualstackEndpoint";
};
};
export interface EndpointParameters extends __EndpointParameters {
Bucket?: string | undefined;
Region?: string | undefined;
UseFIPS?: boolean | undefined;
UseDualStack?: boolean | undefined;
Endpoint?: string | undefined;
ForcePathStyle?: boolean | undefined;
Accelerate?: boolean | undefined;
UseGlobalEndpoint?: boolean | undefined;
UseObjectLambdaEndpoint?: boolean | undefined;
Key?: string | undefined;
Prefix?: string | undefined;
CopySource?: string | undefined;
DisableAccessPoints?: boolean | undefined;
DisableMultiRegionAccessPoints?: boolean | undefined;
UseArnRegion?: boolean | undefined;
UseS3ExpressControlEndpoint?: boolean | undefined;
DisableS3ExpressSessionAuth?: boolean | undefined;
}