Rocky_Mountain_Vending/.pnpm-store/v10/files/6d/b5a82e7696404ed0d6505694a6b0ae997afbba4717ccd06cf92e78ceb68f016f73c923e257f21c4403a71181c1ee3d4a106c0f4dfbbc0e81f924f92b59d827
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

58 lines
2.1 KiB
Text

import { AwsSdkSigV4Signer } from "@aws-sdk/core";
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
import { NoAuthSigner } from "@smithy/core";
import { IdentityProviderConfig } from "@smithy/types";
import { SSOOIDCClientConfig } from "./SSOOIDCClient";
export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
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").SSOOIDCHttpAuthSchemeProvider;
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;
};