import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type PostChannelsChannelHashedIdChannelEpisodesInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class PostChannelsChannelHashedIdChannelEpisodesInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostChannelsChannelHashedIdChannelEpisodesInternalServerErrorData; constructor(err: PostChannelsChannelHashedIdChannelEpisodesInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Forbidden, token is valid but account does not have access to feature */ export type PostChannelsChannelHashedIdChannelEpisodesForbiddenErrorData = { error?: string | undefined; }; /** * Forbidden, token is valid but account does not have access to feature */ export declare class PostChannelsChannelHashedIdChannelEpisodesForbiddenError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostChannelsChannelHashedIdChannelEpisodesForbiddenErrorData; constructor(err: PostChannelsChannelHashedIdChannelEpisodesForbiddenErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type PostChannelsChannelHashedIdChannelEpisodesUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class PostChannelsChannelHashedIdChannelEpisodesUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostChannelsChannelHashedIdChannelEpisodesUnauthorizedErrorData; constructor(err: PostChannelsChannelHashedIdChannelEpisodesUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Bad request */ export type PostChannelsChannelHashedIdChannelEpisodesBadRequestErrorData = { /** * Error message detailing the reason for the bad request. */ error?: string | undefined; }; /** * Bad request */ export declare class PostChannelsChannelHashedIdChannelEpisodesBadRequestError extends WistiaError { /** * Error message detailing the reason for the bad request. */ error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostChannelsChannelHashedIdChannelEpisodesBadRequestErrorData; constructor(err: PostChannelsChannelHashedIdChannelEpisodesBadRequestErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const PostChannelsChannelHashedIdChannelEpisodesInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const PostChannelsChannelHashedIdChannelEpisodesForbiddenError$inboundSchema: z.ZodType; /** @internal */ export declare const PostChannelsChannelHashedIdChannelEpisodesUnauthorizedError$inboundSchema: z.ZodType; /** @internal */ export declare const PostChannelsChannelHashedIdChannelEpisodesBadRequestError$inboundSchema: z.ZodType; //# sourceMappingURL=postchannelschannelhashedidchannelepisodes.d.ts.map