Rocky_Mountain_Vending/.pnpm-store/v10/files/ea/7e85ba1ef5f35a5ac76ef8dd88bf099ad16bf77bfa6455fe1e5195ad120b7975798f9c2adf4fc81d3d90ee20422486b7fdc2aa582a59aafab3f6ced320b109
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

58 lines
1.6 KiB
Text

import { Command as $Command } from "@smithy/smithy-client";
import {
MetadataBearer as __MetadataBearer,
StreamingBlobPayloadOutputTypes,
} from "@smithy/types";
import {
GetObjectTorrentRequest,
GetObjectTorrentOutput,
} from "../models/models_0";
import {
S3ClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes,
} from "../S3Client";
export { __MetadataBearer };
export { $Command };
export interface GetObjectTorrentCommandInput extends GetObjectTorrentRequest {}
export interface GetObjectTorrentCommandOutput
extends Pick<
GetObjectTorrentOutput,
Exclude<keyof GetObjectTorrentOutput, "Body">
>,
__MetadataBearer {
Body?: StreamingBlobPayloadOutputTypes;
}
declare const GetObjectTorrentCommand_base: {
new (
input: GetObjectTorrentCommandInput
): import("@smithy/smithy-client").CommandImpl<
GetObjectTorrentCommandInput,
GetObjectTorrentCommandOutput,
S3ClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
new (
input: GetObjectTorrentCommandInput
): import("@smithy/smithy-client").CommandImpl<
GetObjectTorrentCommandInput,
GetObjectTorrentCommandOutput,
S3ClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class GetObjectTorrentCommand extends GetObjectTorrentCommand_base {
protected static __types: {
api: {
input: GetObjectTorrentRequest;
output: GetObjectTorrentOutput;
};
sdk: {
input: GetObjectTorrentCommandInput;
output: GetObjectTorrentCommandOutput;
};
};
}