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>

32 lines 1.74 kB
import * as z from "zod/v3"; import { Result as SafeParseResult } from "../types/fp.js"; import { BadRequest } from "./badrequest.js"; import { HttpApiDecodeError } from "./httpapidecodeerror.js"; import { SDKValidationError } from "./sdkvalidationerror.js"; export type GetContactInfoSchemaRequest = { domain: string; teamId?: string | undefined; }; /** * There was something wrong with the request */ export type GetContactInfoSchemaDomainsRegistrarResponseBody = BadRequest | HttpApiDecodeError; /** * Success */ export type GetContactInfoSchemaResponseBody = {}; /** @internal */ export type GetContactInfoSchemaRequest$Outbound = { domain: string; teamId?: string | undefined; }; /** @internal */ export declare const GetContactInfoSchemaRequest$outboundSchema: z.ZodType<GetContactInfoSchemaRequest$Outbound, z.ZodTypeDef, GetContactInfoSchemaRequest>; export declare function getContactInfoSchemaRequestToJSON(getContactInfoSchemaRequest: GetContactInfoSchemaRequest): string; /** @internal */ export declare const GetContactInfoSchemaDomainsRegistrarResponseBody$inboundSchema: z.ZodType<GetContactInfoSchemaDomainsRegistrarResponseBody, z.ZodTypeDef, unknown>; export declare function getContactInfoSchemaDomainsRegistrarResponseBodyFromJSON(jsonString: string): SafeParseResult<GetContactInfoSchemaDomainsRegistrarResponseBody, SDKValidationError>; /** @internal */ export declare const GetContactInfoSchemaResponseBody$inboundSchema: z.ZodType<GetContactInfoSchemaResponseBody, z.ZodTypeDef, unknown>; export declare function getContactInfoSchemaResponseBodyFromJSON(jsonString: string): SafeParseResult<GetContactInfoSchemaResponseBody, SDKValidationError>; //# sourceMappingURL=getcontactinfoschemaop.d.ts.map