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>
32 lines
1.1 KiB
Text
32 lines
1.1 KiB
Text
import {
|
|
HttpAuthScheme,
|
|
AwsCredentialIdentity,
|
|
AwsCredentialIdentityProvider,
|
|
} from "@smithy/types";
|
|
import { SSOHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
export interface HttpAuthExtensionConfiguration {
|
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
setHttpAuthSchemeProvider(
|
|
httpAuthSchemeProvider: SSOHttpAuthSchemeProvider
|
|
): void;
|
|
httpAuthSchemeProvider(): SSOHttpAuthSchemeProvider;
|
|
setCredentials(
|
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
|
|
): void;
|
|
credentials():
|
|
| AwsCredentialIdentity
|
|
| AwsCredentialIdentityProvider
|
|
| undefined;
|
|
}
|
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
httpAuthSchemes: HttpAuthScheme[];
|
|
httpAuthSchemeProvider: SSOHttpAuthSchemeProvider;
|
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
}>;
|
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
runtimeConfig: HttpAuthRuntimeConfig
|
|
) => HttpAuthExtensionConfiguration;
|
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
config: HttpAuthExtensionConfiguration
|
|
) => HttpAuthRuntimeConfig;
|