UNPKG

fathom-typescript

Version:

Fathom's official TypeScript SDK.

12 lines 545 B
import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CRMContactMatch = { name: string; email: string; recordUrl: string; }; /** @internal */ export declare const CRMContactMatch$inboundSchema: z.ZodType<CRMContactMatch, z.ZodTypeDef, unknown>; export declare function crmContactMatchFromJSON(jsonString: string): SafeParseResult<CRMContactMatch, SDKValidationError>; //# sourceMappingURL=crmcontactmatch.d.ts.map