import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type PostAllowedDomainsInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class PostAllowedDomainsInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostAllowedDomainsInternalServerErrorData; constructor(err: PostAllowedDomainsInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Forbidden, token is valid but account does not have access to feature */ export type PostAllowedDomainsForbiddenErrorData = { error?: string | undefined; }; /** * Forbidden, token is valid but account does not have access to feature */ export declare class PostAllowedDomainsForbiddenError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostAllowedDomainsForbiddenErrorData; constructor(err: PostAllowedDomainsForbiddenErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type PostAllowedDomainsUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class PostAllowedDomainsUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostAllowedDomainsUnauthorizedErrorData; constructor(err: PostAllowedDomainsUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Bad request - missing or invalid domain */ export type PostAllowedDomainsBadRequestErrorData = { error?: string | undefined; }; /** * Bad request - missing or invalid domain */ export declare class PostAllowedDomainsBadRequestError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostAllowedDomainsBadRequestErrorData; constructor(err: PostAllowedDomainsBadRequestErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const PostAllowedDomainsInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const PostAllowedDomainsForbiddenError$inboundSchema: z.ZodType; /** @internal */ export declare const PostAllowedDomainsUnauthorizedError$inboundSchema: z.ZodType; /** @internal */ export declare const PostAllowedDomainsBadRequestError$inboundSchema: z.ZodType; //# sourceMappingURL=postalloweddomains.d.ts.map