import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Not implemented - expiring tokens cannot be created from other expiring tokens */ export type NotImplementedErrorData = { error?: string | undefined; }; /** * Not implemented - expiring tokens cannot be created from other expiring tokens */ export declare class NotImplementedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: NotImplementedErrorData; constructor(err: NotImplementedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Internal server error */ export type PostExpiringTokenInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class PostExpiringTokenInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostExpiringTokenInternalServerErrorData; constructor(err: PostExpiringTokenInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unprocessable entity, the request parameters were invalid. */ export type PostExpiringTokenUnprocessableEntityErrorData = { /** * Array of error messages describing what went wrong. */ errors?: Array | undefined; }; /** * Unprocessable entity, the request parameters were invalid. */ export declare class PostExpiringTokenUnprocessableEntityError extends WistiaError { /** * Array of error messages describing what went wrong. */ errors?: Array | undefined; /** The original data that was passed to this error instance. */ data$: PostExpiringTokenUnprocessableEntityErrorData; constructor(err: PostExpiringTokenUnprocessableEntityErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type PostExpiringTokenUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class PostExpiringTokenUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostExpiringTokenUnauthorizedErrorData; constructor(err: PostExpiringTokenUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const NotImplementedError$inboundSchema: z.ZodType; /** @internal */ export declare const PostExpiringTokenInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const PostExpiringTokenUnprocessableEntityError$inboundSchema: z.ZodType; /** @internal */ export declare const PostExpiringTokenUnauthorizedError$inboundSchema: z.ZodType; //# sourceMappingURL=postexpiringtoken.d.ts.map