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>
15 lines
600 B
Text
15 lines
600 B
Text
import { createAggregatedClient } from "@smithy/smithy-client";
|
|
import { GetRoleCredentialsCommand, } from "./commands/GetRoleCredentialsCommand";
|
|
import { ListAccountRolesCommand, } from "./commands/ListAccountRolesCommand";
|
|
import { ListAccountsCommand, } from "./commands/ListAccountsCommand";
|
|
import { LogoutCommand } from "./commands/LogoutCommand";
|
|
import { SSOClient } from "./SSOClient";
|
|
const commands = {
|
|
GetRoleCredentialsCommand,
|
|
ListAccountRolesCommand,
|
|
ListAccountsCommand,
|
|
LogoutCommand,
|
|
};
|
|
export class SSO extends SSOClient {
|
|
}
|
|
createAggregatedClient(commands, SSO);
|