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