Rocky_Mountain_Vending/.pnpm-store/v10/files/9c/340bb35d763fe0d8f5d8586976e3d7b6a4443cc616d1b5282132f6c9e601e951d16d9adaf43ab878a1e41a2e72a92f2f39e0c543c446495548027653c7508d
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

51 lines
1.5 KiB
Text

import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
ListObjectVersionsOutput,
ListObjectVersionsRequest,
} from "../models/models_0";
import {
S3ClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes,
} from "../S3Client";
export { __MetadataBearer };
export { $Command };
export interface ListObjectVersionsCommandInput
extends ListObjectVersionsRequest {}
export interface ListObjectVersionsCommandOutput
extends ListObjectVersionsOutput,
__MetadataBearer {}
declare const ListObjectVersionsCommand_base: {
new (
input: ListObjectVersionsCommandInput
): import("@smithy/smithy-client").CommandImpl<
ListObjectVersionsCommandInput,
ListObjectVersionsCommandOutput,
S3ClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
new (
input: ListObjectVersionsCommandInput
): import("@smithy/smithy-client").CommandImpl<
ListObjectVersionsCommandInput,
ListObjectVersionsCommandOutput,
S3ClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class ListObjectVersionsCommand extends ListObjectVersionsCommand_base {
protected static __types: {
api: {
input: ListObjectVersionsRequest;
output: ListObjectVersionsOutput;
};
sdk: {
input: ListObjectVersionsCommandInput;
output: ListObjectVersionsCommandOutput;
};
};
}