UNPKG

@vercel/sdk

Version:

<p align="center"> <a href="https://vercel.com"> <img src="https://assets.vercel.com/image/upload/v1588805858/repositories/vercel/logo.png" height="96"> <h3 align="center">Vercel</h3> </a> <p align="center">Develop. Preview. Ship.</p> </p>

34 lines 1.23 kB
import * as z from "zod/v3"; import { ClosedEnum } from "../types/enums.js"; import { VercelError } from "./vercelerror.js"; export declare const BoughtTooRecentlyCode: { readonly BoughtTooRecently: "bought_too_recently"; }; export type BoughtTooRecentlyCode = ClosedEnum<typeof BoughtTooRecentlyCode>; /** * The domain was bought too recently to determine verification status. */ export type BoughtTooRecentlyData = { status: number; code: BoughtTooRecentlyCode; message: string; }; /** * The domain was bought too recently to determine verification status. */ export declare class BoughtTooRecently extends VercelError { status: number; code: BoughtTooRecentlyCode; /** The original data that was passed to this error instance. */ data$: BoughtTooRecentlyData; constructor(err: BoughtTooRecentlyData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const BoughtTooRecentlyCode$inboundSchema: z.ZodNativeEnum<typeof BoughtTooRecentlyCode>; /** @internal */ export declare const BoughtTooRecently$inboundSchema: z.ZodType<BoughtTooRecently, z.ZodTypeDef, unknown>; //# sourceMappingURL=boughttoorecently.d.ts.map