Rocky_Mountain_Vending/.pnpm-store/v10/files/95/0bdf473d50a41ec2a1423d3b9a3ced7753818b95d7ef700cb17006d30060868a2a98e19ef52a4516dd1da19936b41e6e0c622625d84b96515886a9d5785c08
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

47 lines
1.4 KiB
Text

import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import { AssumeRoleRequest, AssumeRoleResponse } from "../models/models_0";
import {
ServiceInputTypes,
ServiceOutputTypes,
STSClientResolvedConfig,
} from "../STSClient";
export { __MetadataBearer };
export { $Command };
export interface AssumeRoleCommandInput extends AssumeRoleRequest {}
export interface AssumeRoleCommandOutput
extends AssumeRoleResponse,
__MetadataBearer {}
declare const AssumeRoleCommand_base: {
new (
input: AssumeRoleCommandInput
): import("@smithy/smithy-client").CommandImpl<
AssumeRoleCommandInput,
AssumeRoleCommandOutput,
STSClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
new (
input: AssumeRoleCommandInput
): import("@smithy/smithy-client").CommandImpl<
AssumeRoleCommandInput,
AssumeRoleCommandOutput,
STSClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class AssumeRoleCommand extends AssumeRoleCommand_base {
protected static __types: {
api: {
input: AssumeRoleRequest;
output: AssumeRoleResponse;
};
sdk: {
input: AssumeRoleCommandInput;
output: AssumeRoleCommandOutput;
};
};
}