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>
38 lines
1.8 KiB
Text
38 lines
1.8 KiB
Text
import { AwsSdkSigV4Signer } from "@aws-sdk/core";
|
|
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
import { NoAuthSigner } from "@smithy/core";
|
|
import type { IdentityProviderConfig } from "@smithy/types";
|
|
import type { SSOClientConfig } from "./SSOClient";
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
apiVersion: string;
|
|
base64Decoder: import("@smithy/types").Decoder;
|
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
disableHostPrefix: boolean;
|
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
logger?: import("@smithy/types").Logger;
|
|
}) => import("@smithy/types").EndpointV2;
|
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSOHttpAuthSchemeProvider;
|
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[] | ({
|
|
schemeId: string;
|
|
identityProvider: (ipc: IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
|
|
signer: AwsSdkSigV4Signer;
|
|
} | {
|
|
schemeId: string;
|
|
identityProvider: (ipc: IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | (() => Promise<{}>);
|
|
signer: NoAuthSigner;
|
|
})[];
|
|
logger: import("@smithy/types").Logger;
|
|
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof AwsRestJsonProtocol;
|
|
protocolSettings: {
|
|
[setting: string]: unknown;
|
|
defaultNamespace?: string;
|
|
};
|
|
serviceId: string;
|
|
urlParser: import("@smithy/types").UrlParser;
|
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
utf8Encoder: (input: Uint8Array | string) => string;
|
|
};
|