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