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>
17 lines
726 B
Text
17 lines
726 B
Text
/**
|
|
* AWS Sign-In manages authentication for AWS services. This service provides
|
|
* secure authentication flows for accessing AWS resources from the console and developer tools.
|
|
*
|
|
* @packageDocumentation
|
|
*/
|
|
export * from "./SigninClient";
|
|
export * from "./Signin";
|
|
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
export type { SigninExtensionConfiguration } from "./extensionConfiguration";
|
|
export * from "./commands";
|
|
export * from "./schemas/schemas_0";
|
|
export * from "./models/enums";
|
|
export * from "./models/errors";
|
|
export * from "./models/models_0";
|
|
export { SigninServiceException } from "./models/SigninServiceException";
|