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>
105 lines
3.7 KiB
Text
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>
|
|
);
|
|
}
|