Rocky_Mountain_Vending/.pnpm-store/v10/files/3a/93be212d5d5e3edf77d667cad04c3187499b4e8ec8aebd156cc1cb398679b3218b1d590b8cbdd26df86eaca43fce214feaa111cd2d5d8aafd6d1011cf331ec
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

50 lines
1.5 KiB
Text

import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
ListAccountRolesRequest,
ListAccountRolesResponse,
} from "../models/models_0";
import {
ServiceInputTypes,
ServiceOutputTypes,
SSOClientResolvedConfig,
} from "../SSOClient";
export { __MetadataBearer };
export { $Command };
export interface ListAccountRolesCommandInput extends ListAccountRolesRequest {}
export interface ListAccountRolesCommandOutput
extends ListAccountRolesResponse,
__MetadataBearer {}
declare const ListAccountRolesCommand_base: {
new (
input: ListAccountRolesCommandInput
): import("@smithy/smithy-client").CommandImpl<
ListAccountRolesCommandInput,
ListAccountRolesCommandOutput,
SSOClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
new (
input: ListAccountRolesCommandInput
): import("@smithy/smithy-client").CommandImpl<
ListAccountRolesCommandInput,
ListAccountRolesCommandOutput,
SSOClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class ListAccountRolesCommand extends ListAccountRolesCommand_base {
protected static __types: {
api: {
input: ListAccountRolesRequest;
output: ListAccountRolesResponse;
};
sdk: {
input: ListAccountRolesCommandInput;
output: ListAccountRolesCommandOutput;
};
};
}