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>
62 lines
4.2 KiB
Text
62 lines
4.2 KiB
Text
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
import type { SSOClientConfig } from "./SSOClient";
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
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>;
|
|
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").AwsRestJsonProtocol;
|
|
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;
|
|
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: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
logger?: import("@smithy/types").Logger;
|
|
}) => import("@smithy/types").EndpointV2;
|
|
tls?: boolean;
|
|
serviceConfiguredEndpoint?: never;
|
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[] | ({
|
|
schemeId: string;
|
|
identityProvider: (ipc: import("@smithy/types").IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
|
|
signer: import("@aws-sdk/core").AwsSdkSigV4Signer;
|
|
} | {
|
|
schemeId: string;
|
|
identityProvider: (ipc: import("@smithy/types").IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | (() => Promise<{}>);
|
|
signer: import("@smithy/core").NoAuthSigner;
|
|
})[];
|
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSOHttpAuthSchemeProvider;
|
|
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;
|
|
};
|