Rocky_Mountain_Vending/.pnpm-store/v10/files/0f/00e673ef4b781fea95dfd6453d54858b620a2dff70c59d532472c0383b5280962f3d5a05d2abc74fe862392001801f364c3918b03c1089b72cf960a46fb49e
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

87 lines
3.3 KiB
Text

import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
import { IntelligentTieringAccessTier, StorageClass } from "./enums";
import { S3ServiceException as __BaseException } from "./S3ServiceException";
export declare class NoSuchUpload extends __BaseException {
readonly name: "NoSuchUpload";
readonly $fault: "client";
constructor(opts: __ExceptionOptionType<NoSuchUpload, __BaseException>);
}
export declare class ObjectNotInActiveTierError extends __BaseException {
readonly name: "ObjectNotInActiveTierError";
readonly $fault: "client";
constructor(
opts: __ExceptionOptionType<ObjectNotInActiveTierError, __BaseException>
);
}
export declare class BucketAlreadyExists extends __BaseException {
readonly name: "BucketAlreadyExists";
readonly $fault: "client";
constructor(
opts: __ExceptionOptionType<BucketAlreadyExists, __BaseException>
);
}
export declare class BucketAlreadyOwnedByYou extends __BaseException {
readonly name: "BucketAlreadyOwnedByYou";
readonly $fault: "client";
constructor(
opts: __ExceptionOptionType<BucketAlreadyOwnedByYou, __BaseException>
);
}
export declare class NoSuchBucket extends __BaseException {
readonly name: "NoSuchBucket";
readonly $fault: "client";
constructor(opts: __ExceptionOptionType<NoSuchBucket, __BaseException>);
}
export declare class InvalidObjectState extends __BaseException {
readonly name: "InvalidObjectState";
readonly $fault: "client";
StorageClass?: StorageClass | undefined;
AccessTier?: IntelligentTieringAccessTier | undefined;
constructor(opts: __ExceptionOptionType<InvalidObjectState, __BaseException>);
}
export declare class NoSuchKey extends __BaseException {
readonly name: "NoSuchKey";
readonly $fault: "client";
constructor(opts: __ExceptionOptionType<NoSuchKey, __BaseException>);
}
export declare class NotFound extends __BaseException {
readonly name: "NotFound";
readonly $fault: "client";
constructor(opts: __ExceptionOptionType<NotFound, __BaseException>);
}
export declare class EncryptionTypeMismatch extends __BaseException {
readonly name: "EncryptionTypeMismatch";
readonly $fault: "client";
constructor(
opts: __ExceptionOptionType<EncryptionTypeMismatch, __BaseException>
);
}
export declare class InvalidRequest extends __BaseException {
readonly name: "InvalidRequest";
readonly $fault: "client";
constructor(opts: __ExceptionOptionType<InvalidRequest, __BaseException>);
}
export declare class InvalidWriteOffset extends __BaseException {
readonly name: "InvalidWriteOffset";
readonly $fault: "client";
constructor(opts: __ExceptionOptionType<InvalidWriteOffset, __BaseException>);
}
export declare class TooManyParts extends __BaseException {
readonly name: "TooManyParts";
readonly $fault: "client";
constructor(opts: __ExceptionOptionType<TooManyParts, __BaseException>);
}
export declare class IdempotencyParameterMismatch extends __BaseException {
readonly name: "IdempotencyParameterMismatch";
readonly $fault: "client";
constructor(
opts: __ExceptionOptionType<IdempotencyParameterMismatch, __BaseException>
);
}
export declare class ObjectAlreadyInActiveTierError extends __BaseException {
readonly name: "ObjectAlreadyInActiveTierError";
readonly $fault: "client";
constructor(
opts: __ExceptionOptionType<ObjectAlreadyInActiveTierError, __BaseException>
);
}