Rocky_Mountain_Vending/.pnpm-store/v10/files/71/7aac90f4432a3cd2179712e7c754e0e511809dc212680a9ca39deb9f2c8fda706cb23ab2791feee977133b9b3247f053d84e11aac3910d7087b020c1639f51
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.5 KiB
Text

import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
CreateOAuth2TokenRequest,
CreateOAuth2TokenResponse,
} from "../models/models_0";
import { SigninClientResolvedConfig } from "../SigninClient";
export { __MetadataBearer };
export { $Command };
export interface CreateOAuth2TokenCommandInput
extends CreateOAuth2TokenRequest {}
export interface CreateOAuth2TokenCommandOutput
extends CreateOAuth2TokenResponse,
__MetadataBearer {}
declare const CreateOAuth2TokenCommand_base: {
new (
input: CreateOAuth2TokenCommandInput
): import("@smithy/smithy-client").CommandImpl<
CreateOAuth2TokenCommandInput,
CreateOAuth2TokenCommandOutput,
SigninClientResolvedConfig,
CreateOAuth2TokenCommandInput,
CreateOAuth2TokenCommandOutput
>;
new (
input: CreateOAuth2TokenCommandInput
): import("@smithy/smithy-client").CommandImpl<
CreateOAuth2TokenCommandInput,
CreateOAuth2TokenCommandOutput,
SigninClientResolvedConfig,
CreateOAuth2TokenCommandInput,
CreateOAuth2TokenCommandOutput
>;
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class CreateOAuth2TokenCommand extends CreateOAuth2TokenCommand_base {
protected static __types: {
api: {
input: CreateOAuth2TokenRequest;
output: CreateOAuth2TokenResponse;
};
sdk: {
input: CreateOAuth2TokenCommandInput;
output: CreateOAuth2TokenCommandOutput;
};
};
}