import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type PostMediasImportUrlInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class PostMediasImportUrlInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostMediasImportUrlInternalServerErrorData; constructor(err: PostMediasImportUrlInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unprocessable entity, the URL domain is not permitted for import. */ export type PostMediasImportUrlUnprocessableEntityErrorData = { /** * Error message detailing why the request failed. */ error?: string | undefined; }; /** * Unprocessable entity, the URL domain is not permitted for import. */ export declare class PostMediasImportUrlUnprocessableEntityError extends WistiaError { /** * Error message detailing why the request failed. */ error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostMediasImportUrlUnprocessableEntityErrorData; constructor(err: PostMediasImportUrlUnprocessableEntityErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Resource not found */ export type PostMediasImportUrlNotFoundErrorData = { error?: string | undefined; }; /** * Resource not found */ export declare class PostMediasImportUrlNotFoundError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostMediasImportUrlNotFoundErrorData; constructor(err: PostMediasImportUrlNotFoundErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Forbidden, token is valid but account does not have access to feature */ export type PostMediasImportUrlForbiddenErrorData = { error?: string | undefined; }; /** * Forbidden, token is valid but account does not have access to feature */ export declare class PostMediasImportUrlForbiddenError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostMediasImportUrlForbiddenErrorData; constructor(err: PostMediasImportUrlForbiddenErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type PostMediasImportUrlUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class PostMediasImportUrlUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostMediasImportUrlUnauthorizedErrorData; constructor(err: PostMediasImportUrlUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Bad request */ export type PostMediasImportUrlBadRequestErrorData = { /** * Error message detailing the reason for the bad request. */ error?: string | undefined; }; /** * Bad request */ export declare class PostMediasImportUrlBadRequestError 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$: PostMediasImportUrlBadRequestErrorData; constructor(err: PostMediasImportUrlBadRequestErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const PostMediasImportUrlInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const PostMediasImportUrlUnprocessableEntityError$inboundSchema: z.ZodType; /** @internal */ export declare const PostMediasImportUrlNotFoundError$inboundSchema: z.ZodType; /** @internal */ export declare const PostMediasImportUrlForbiddenError$inboundSchema: z.ZodType; /** @internal */ export declare const PostMediasImportUrlUnauthorizedError$inboundSchema: z.ZodType; /** @internal */ export declare const PostMediasImportUrlBadRequestError$inboundSchema: z.ZodType; //# sourceMappingURL=postmediasimporturl.d.ts.map