Rocky_Mountain_Vending/.pnpm-store/v10/files/d9/a145ba1c7c18e902c742f13e25c2b5292b1874eea172b285dc2c78643476acc8148be8f4b0e07ebb5702dc1327fa0eed55eec56b4520160e1a6e31cc10af34
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

73 lines
2.3 KiB
Text

import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
import {
GetRoleCredentialsCommandInput,
GetRoleCredentialsCommandOutput,
} from "./commands/GetRoleCredentialsCommand";
import {
ListAccountRolesCommandInput,
ListAccountRolesCommandOutput,
} from "./commands/ListAccountRolesCommand";
import {
ListAccountsCommandInput,
ListAccountsCommandOutput,
} from "./commands/ListAccountsCommand";
import {
LogoutCommandInput,
LogoutCommandOutput,
} from "./commands/LogoutCommand";
import { SSOClient } from "./SSOClient";
export interface SSO {
getRoleCredentials(
args: GetRoleCredentialsCommandInput,
options?: __HttpHandlerOptions
): Promise<GetRoleCredentialsCommandOutput>;
getRoleCredentials(
args: GetRoleCredentialsCommandInput,
cb: (err: any, data?: GetRoleCredentialsCommandOutput) => void
): void;
getRoleCredentials(
args: GetRoleCredentialsCommandInput,
options: __HttpHandlerOptions,
cb: (err: any, data?: GetRoleCredentialsCommandOutput) => void
): void;
listAccountRoles(
args: ListAccountRolesCommandInput,
options?: __HttpHandlerOptions
): Promise<ListAccountRolesCommandOutput>;
listAccountRoles(
args: ListAccountRolesCommandInput,
cb: (err: any, data?: ListAccountRolesCommandOutput) => void
): void;
listAccountRoles(
args: ListAccountRolesCommandInput,
options: __HttpHandlerOptions,
cb: (err: any, data?: ListAccountRolesCommandOutput) => void
): void;
listAccounts(
args: ListAccountsCommandInput,
options?: __HttpHandlerOptions
): Promise<ListAccountsCommandOutput>;
listAccounts(
args: ListAccountsCommandInput,
cb: (err: any, data?: ListAccountsCommandOutput) => void
): void;
listAccounts(
args: ListAccountsCommandInput,
options: __HttpHandlerOptions,
cb: (err: any, data?: ListAccountsCommandOutput) => void
): void;
logout(
args: LogoutCommandInput,
options?: __HttpHandlerOptions
): Promise<LogoutCommandOutput>;
logout(
args: LogoutCommandInput,
cb: (err: any, data?: LogoutCommandOutput) => void
): void;
logout(
args: LogoutCommandInput,
options: __HttpHandlerOptions,
cb: (err: any, data?: LogoutCommandOutput) => void
): void;
}
export declare class SSO extends SSOClient implements SSO {}