import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ContactsFilter = { /** * Name of the contact to filter on */ name?: string | undefined; /** * First name of the contact to filter on */ firstName?: string | undefined; /** * Last name of the contact to filter on */ lastName?: string | undefined; /** * Email of the contact to filter on */ email?: string | undefined; /** * Phone number of the contact to filter on */ phoneNumber?: string | undefined; /** * Unique identifier for the associated company of the contact to filter on */ companyId?: string | undefined; /** * Unique identifier for the owner of the contact to filter on */ ownerId?: string | undefined; }; /** @internal */ export declare const ContactsFilter$inboundSchema: z.ZodType; /** @internal */ export type ContactsFilter$Outbound = { name?: string | undefined; first_name?: string | undefined; last_name?: string | undefined; email?: string | undefined; phone_number?: string | undefined; company_id?: string | undefined; owner_id?: string | undefined; }; /** @internal */ export declare const ContactsFilter$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ContactsFilter$ { /** @deprecated use `ContactsFilter$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ContactsFilter$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ContactsFilter$Outbound` instead. */ type Outbound = ContactsFilter$Outbound; } export declare function contactsFilterToJSON(contactsFilter: ContactsFilter): string; export declare function contactsFilterFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=contactsfilter.d.ts.map