import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type DeleteAllowedDomainsDomainInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class DeleteAllowedDomainsDomainInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: DeleteAllowedDomainsDomainInternalServerErrorData; constructor(err: DeleteAllowedDomainsDomainInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Domain not found */ export type DeleteAllowedDomainsDomainNotFoundErrorData = { error?: string | undefined; }; /** * Domain not found */ export declare class DeleteAllowedDomainsDomainNotFoundError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: DeleteAllowedDomainsDomainNotFoundErrorData; constructor(err: DeleteAllowedDomainsDomainNotFoundErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Forbidden, token is valid but account does not have access to feature */ export type DeleteAllowedDomainsDomainForbiddenErrorData = { error?: string | undefined; }; /** * Forbidden, token is valid but account does not have access to feature */ export declare class DeleteAllowedDomainsDomainForbiddenError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: DeleteAllowedDomainsDomainForbiddenErrorData; constructor(err: DeleteAllowedDomainsDomainForbiddenErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type DeleteAllowedDomainsDomainUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class DeleteAllowedDomainsDomainUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: DeleteAllowedDomainsDomainUnauthorizedErrorData; constructor(err: DeleteAllowedDomainsDomainUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const DeleteAllowedDomainsDomainInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const DeleteAllowedDomainsDomainNotFoundError$inboundSchema: z.ZodType; /** @internal */ export declare const DeleteAllowedDomainsDomainForbiddenError$inboundSchema: z.ZodType; /** @internal */ export declare const DeleteAllowedDomainsDomainUnauthorizedError$inboundSchema: z.ZodType; //# sourceMappingURL=deletealloweddomainsdomain.d.ts.map