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>
111 lines
4.4 KiB
Text
111 lines
4.4 KiB
Text
import { NoAuthSigner } from "@smithy/core";
|
|
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
import { IdentityProviderConfig } from "@smithy/types";
|
|
import { STSClientConfig } from "./STSClient";
|
|
export declare const getRuntimeConfig: (config: STSClientConfig) => {
|
|
runtime: string;
|
|
defaultsMode: import("@smithy/types").Provider<
|
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
>;
|
|
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
defaultUserAgentProvider: (
|
|
config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
httpAuthSchemes:
|
|
| import("@smithy/types").HttpAuthScheme[]
|
|
| {
|
|
schemeId: string;
|
|
identityProvider: (
|
|
ipc: IdentityProviderConfig
|
|
) =>
|
|
| import("@smithy/types").IdentityProvider<
|
|
import("@smithy/types").Identity
|
|
>
|
|
| (() => Promise<{}>);
|
|
signer: NoAuthSigner;
|
|
}[];
|
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
region: string | import("@smithy/types").Provider<string>;
|
|
requestHandler:
|
|
| RequestHandler
|
|
| import("@smithy/protocol-http").HttpHandler<any>;
|
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
sha256: import("@smithy/types").HashConstructor;
|
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
cacheMiddleware?: boolean | undefined;
|
|
protocol:
|
|
| import("@smithy/types").ClientProtocol<any, any>
|
|
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
| typeof import("@aws-sdk/core").AwsQueryProtocol;
|
|
protocolSettings: {
|
|
defaultNamespace?: string;
|
|
[setting: string]: unknown;
|
|
};
|
|
apiVersion: string;
|
|
urlParser: import("@smithy/types").UrlParser;
|
|
base64Decoder: import("@smithy/types").Decoder;
|
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
utf8Encoder: (input: Uint8Array | string) => string;
|
|
disableHostPrefix: boolean;
|
|
serviceId: string;
|
|
profile?: string;
|
|
credentialDefaultProvider?: (
|
|
input: any
|
|
) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
logger: import("@smithy/types").Logger;
|
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
retryStrategy?:
|
|
| import("@smithy/types").RetryStrategy
|
|
| import("@smithy/types").RetryStrategyV2;
|
|
endpoint?:
|
|
| ((
|
|
| string
|
|
| import("@smithy/types").Endpoint
|
|
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
| import("@smithy/types").EndpointV2
|
|
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
) &
|
|
(
|
|
| string
|
|
| import("@smithy/types").Provider<string>
|
|
| import("@smithy/types").Endpoint
|
|
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
| import("@smithy/types").EndpointV2
|
|
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
))
|
|
| undefined;
|
|
endpointProvider: (
|
|
params: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
context?: {
|
|
logger?: import("@smithy/types").Logger;
|
|
}
|
|
) => import("@smithy/types").EndpointV2;
|
|
tls?: boolean;
|
|
serviceConfiguredEndpoint?: never;
|
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").STSHttpAuthSchemeProvider;
|
|
credentials?:
|
|
| import("@smithy/types").AwsCredentialIdentity
|
|
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
signer?:
|
|
| import("@smithy/types").RequestSigner
|
|
| ((
|
|
authScheme?: import("@smithy/types").AuthScheme
|
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
signingEscapePath?: boolean;
|
|
systemClockOffset?: number;
|
|
signingRegion?: string;
|
|
signerConstructor?: new (
|
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
) => import("@smithy/types").RequestSigner;
|
|
useGlobalEndpoint?:
|
|
| boolean
|
|
| undefined
|
|
| import("@smithy/types").Provider<boolean | undefined>;
|
|
};
|