Rocky_Mountain_Vending/.pnpm-store/v10/files/e3/cff78fad4b83108bb82c476b08c29d357fb808bfd163ae371eaf734696c3573d72e8e3bd24786f76c2a8b802de216d38a0137761c8504b15533b0fdd1a1a58
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

105 lines
3.7 KiB
Text

import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
import {
AccessDeniedExceptionReason,
InvalidRequestExceptionReason,
} from "./enums";
import { SSOOIDCServiceException as __BaseException } from "./SSOOIDCServiceException";
export declare class AccessDeniedException extends __BaseException {
readonly name: "AccessDeniedException";
readonly $fault: "client";
error?: string | undefined;
reason?: AccessDeniedExceptionReason | undefined;
error_description?: string | undefined;
constructor(
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
);
}
export declare class AuthorizationPendingException extends __BaseException {
readonly name: "AuthorizationPendingException";
readonly $fault: "client";
error?: string | undefined;
error_description?: string | undefined;
constructor(
opts: __ExceptionOptionType<AuthorizationPendingException, __BaseException>
);
}
export declare class ExpiredTokenException extends __BaseException {
readonly name: "ExpiredTokenException";
readonly $fault: "client";
error?: string | undefined;
error_description?: string | undefined;
constructor(
opts: __ExceptionOptionType<ExpiredTokenException, __BaseException>
);
}
export declare class InternalServerException extends __BaseException {
readonly name: "InternalServerException";
readonly $fault: "server";
error?: string | undefined;
error_description?: string | undefined;
constructor(
opts: __ExceptionOptionType<InternalServerException, __BaseException>
);
}
export declare class InvalidClientException extends __BaseException {
readonly name: "InvalidClientException";
readonly $fault: "client";
error?: string | undefined;
error_description?: string | undefined;
constructor(
opts: __ExceptionOptionType<InvalidClientException, __BaseException>
);
}
export declare class InvalidGrantException extends __BaseException {
readonly name: "InvalidGrantException";
readonly $fault: "client";
error?: string | undefined;
error_description?: string | undefined;
constructor(
opts: __ExceptionOptionType<InvalidGrantException, __BaseException>
);
}
export declare class InvalidRequestException extends __BaseException {
readonly name: "InvalidRequestException";
readonly $fault: "client";
error?: string | undefined;
reason?: InvalidRequestExceptionReason | undefined;
error_description?: string | undefined;
constructor(
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
);
}
export declare class InvalidScopeException extends __BaseException {
readonly name: "InvalidScopeException";
readonly $fault: "client";
error?: string | undefined;
error_description?: string | undefined;
constructor(
opts: __ExceptionOptionType<InvalidScopeException, __BaseException>
);
}
export declare class SlowDownException extends __BaseException {
readonly name: "SlowDownException";
readonly $fault: "client";
error?: string | undefined;
error_description?: string | undefined;
constructor(opts: __ExceptionOptionType<SlowDownException, __BaseException>);
}
export declare class UnauthorizedClientException extends __BaseException {
readonly name: "UnauthorizedClientException";
readonly $fault: "client";
error?: string | undefined;
error_description?: string | undefined;
constructor(
opts: __ExceptionOptionType<UnauthorizedClientException, __BaseException>
);
}
export declare class UnsupportedGrantTypeException extends __BaseException {
readonly name: "UnsupportedGrantTypeException";
readonly $fault: "client";
error?: string | undefined;
error_description?: string | undefined;
constructor(
opts: __ExceptionOptionType<UnsupportedGrantTypeException, __BaseException>
);
}