import { z } from 'zod'; import { CredentialType } from '@bubblelab/shared-schemas'; /** * Enum for enrichment fields that can be requested * - contact.emails: Work emails (1 credit) * - contact.personal_emails: Personal emails (3 credits) */ export declare const EnrichFieldEnum: z.ZodEnum<["contact.emails", "contact.personal_emails"]>; /** * Status of an enrichment operation */ export declare const EnrichmentStatusEnum: z.ZodEnum<["CREATED", "IN_PROGRESS", "CANCELED", "CREDITS_INSUFFICIENT", "FINISHED", "RATE_LIMIT", "UNKNOWN"]>; /** * Email object returned from enrichment */ export declare const EmailSchema: z.ZodObject<{ email: z.ZodOptional; status: z.ZodOptional; }, "strip", z.ZodTypeAny, { status?: string | undefined; email?: string | undefined; }, { status?: string | undefined; email?: string | undefined; }>; /** * Phone object returned from enrichment */ export declare const PhoneSchema: z.ZodObject<{ phone: z.ZodOptional; region: z.ZodOptional; }, "strip", z.ZodTypeAny, { phone?: string | undefined; region?: string | undefined; }, { phone?: string | undefined; region?: string | undefined; }>; /** * Social media link */ export declare const SocialMediaSchema: z.ZodObject<{ url: z.ZodOptional; type: z.ZodOptional; }, "strip", z.ZodTypeAny, { type?: string | undefined; url?: string | undefined; }, { type?: string | undefined; url?: string | undefined; }>; /** * Company information from LinkedIn profile */ export declare const CompanyInfoSchema: z.ZodObject<{ name: z.ZodOptional; domain: z.ZodOptional; linkedin_url: z.ZodOptional; linkedin_id: z.ZodEffects>, string | undefined, string | number | undefined>; industry: z.ZodOptional; headquarters: z.ZodOptional; country: z.ZodOptional; }, "strip", z.ZodTypeAny, { city?: string | undefined; country?: string | undefined; }, { city?: string | undefined; country?: string | undefined; }>>; }, "strip", z.ZodTypeAny, { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; }, { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; }>; /** * Professional profile information from LinkedIn */ export declare const ProfileSchema: z.ZodObject<{ linkedin_url: z.ZodOptional; linkedin_id: z.ZodEffects>, string | undefined, string | number | undefined>; linkedin_handle: z.ZodOptional; headline: z.ZodOptional; location: z.ZodOptional; current_position: z.ZodOptional; company: z.ZodOptional; domain: z.ZodOptional; linkedin_url: z.ZodOptional; linkedin_id: z.ZodEffects>, string | undefined, string | number | undefined>; industry: z.ZodOptional; headquarters: z.ZodOptional; country: z.ZodOptional; }, "strip", z.ZodTypeAny, { city?: string | undefined; country?: string | undefined; }, { city?: string | undefined; country?: string | undefined; }>>; }, "strip", z.ZodTypeAny, { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; }, { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; }>>; start_date: z.ZodOptional; end_date: z.ZodOptional; }, "strip", z.ZodTypeAny, { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; }, { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; }>>; }, "strip", z.ZodTypeAny, { linkedin_handle?: string | undefined; location?: string | undefined; headline?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; current_position?: { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; } | undefined; }, { linkedin_handle?: string | undefined; location?: string | undefined; headline?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; current_position?: { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; } | undefined; }>; /** * Enriched contact information */ export declare const EnrichedContactSchema: z.ZodObject<{ firstname: z.ZodOptional; lastname: z.ZodOptional; domain: z.ZodOptional; most_probable_email: z.ZodOptional; most_probable_personal_email: z.ZodOptional; emails: z.ZodOptional; status: z.ZodOptional; }, "strip", z.ZodTypeAny, { status?: string | undefined; email?: string | undefined; }, { status?: string | undefined; email?: string | undefined; }>, "many">>; personal_emails: z.ZodOptional; status: z.ZodOptional; }, "strip", z.ZodTypeAny, { status?: string | undefined; email?: string | undefined; }, { status?: string | undefined; email?: string | undefined; }>, "many">>; most_probable_phone: z.ZodOptional; phones: z.ZodOptional; region: z.ZodOptional; }, "strip", z.ZodTypeAny, { phone?: string | undefined; region?: string | undefined; }, { phone?: string | undefined; region?: string | undefined; }>, "many">>; social_medias: z.ZodOptional; type: z.ZodOptional; }, "strip", z.ZodTypeAny, { type?: string | undefined; url?: string | undefined; }, { type?: string | undefined; url?: string | undefined; }>, "many">>; profile: z.ZodOptional; linkedin_id: z.ZodEffects>, string | undefined, string | number | undefined>; linkedin_handle: z.ZodOptional; headline: z.ZodOptional; location: z.ZodOptional; current_position: z.ZodOptional; company: z.ZodOptional; domain: z.ZodOptional; linkedin_url: z.ZodOptional; linkedin_id: z.ZodEffects>, string | undefined, string | number | undefined>; industry: z.ZodOptional; headquarters: z.ZodOptional; country: z.ZodOptional; }, "strip", z.ZodTypeAny, { city?: string | undefined; country?: string | undefined; }, { city?: string | undefined; country?: string | undefined; }>>; }, "strip", z.ZodTypeAny, { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; }, { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; }>>; start_date: z.ZodOptional; end_date: z.ZodOptional; }, "strip", z.ZodTypeAny, { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; }, { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; }>>; }, "strip", z.ZodTypeAny, { linkedin_handle?: string | undefined; location?: string | undefined; headline?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; current_position?: { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; } | undefined; }, { linkedin_handle?: string | undefined; location?: string | undefined; headline?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; current_position?: { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; } | undefined; }>>; }, "strip", z.ZodTypeAny, { profile?: { linkedin_handle?: string | undefined; location?: string | undefined; headline?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; current_position?: { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; } | undefined; } | undefined; emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; domain?: string | undefined; phones?: { phone?: string | undefined; region?: string | undefined; }[] | undefined; firstname?: string | undefined; lastname?: string | undefined; most_probable_email?: string | undefined; most_probable_personal_email?: string | undefined; personal_emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; most_probable_phone?: string | undefined; social_medias?: { type?: string | undefined; url?: string | undefined; }[] | undefined; }, { profile?: { linkedin_handle?: string | undefined; location?: string | undefined; headline?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; current_position?: { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; } | undefined; } | undefined; emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; domain?: string | undefined; phones?: { phone?: string | undefined; region?: string | undefined; }[] | undefined; firstname?: string | undefined; lastname?: string | undefined; most_probable_email?: string | undefined; most_probable_personal_email?: string | undefined; personal_emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; most_probable_phone?: string | undefined; social_medias?: { type?: string | undefined; url?: string | undefined; }[] | undefined; }>; /** * Single enrichment record */ export declare const EnrichmentRecordSchema: z.ZodObject<{ custom: z.ZodOptional>; contact: z.ZodOptional; lastname: z.ZodOptional; domain: z.ZodOptional; most_probable_email: z.ZodOptional; most_probable_personal_email: z.ZodOptional; emails: z.ZodOptional; status: z.ZodOptional; }, "strip", z.ZodTypeAny, { status?: string | undefined; email?: string | undefined; }, { status?: string | undefined; email?: string | undefined; }>, "many">>; personal_emails: z.ZodOptional; status: z.ZodOptional; }, "strip", z.ZodTypeAny, { status?: string | undefined; email?: string | undefined; }, { status?: string | undefined; email?: string | undefined; }>, "many">>; most_probable_phone: z.ZodOptional; phones: z.ZodOptional; region: z.ZodOptional; }, "strip", z.ZodTypeAny, { phone?: string | undefined; region?: string | undefined; }, { phone?: string | undefined; region?: string | undefined; }>, "many">>; social_medias: z.ZodOptional; type: z.ZodOptional; }, "strip", z.ZodTypeAny, { type?: string | undefined; url?: string | undefined; }, { type?: string | undefined; url?: string | undefined; }>, "many">>; profile: z.ZodOptional; linkedin_id: z.ZodEffects>, string | undefined, string | number | undefined>; linkedin_handle: z.ZodOptional; headline: z.ZodOptional; location: z.ZodOptional; current_position: z.ZodOptional; company: z.ZodOptional; domain: z.ZodOptional; linkedin_url: z.ZodOptional; linkedin_id: z.ZodEffects>, string | undefined, string | number | undefined>; industry: z.ZodOptional; headquarters: z.ZodOptional; country: z.ZodOptional; }, "strip", z.ZodTypeAny, { city?: string | undefined; country?: string | undefined; }, { city?: string | undefined; country?: string | undefined; }>>; }, "strip", z.ZodTypeAny, { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; }, { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; }>>; start_date: z.ZodOptional; end_date: z.ZodOptional; }, "strip", z.ZodTypeAny, { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; }, { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; }>>; }, "strip", z.ZodTypeAny, { linkedin_handle?: string | undefined; location?: string | undefined; headline?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; current_position?: { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; } | undefined; }, { linkedin_handle?: string | undefined; location?: string | undefined; headline?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; current_position?: { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; } | undefined; }>>; }, "strip", z.ZodTypeAny, { profile?: { linkedin_handle?: string | undefined; location?: string | undefined; headline?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; current_position?: { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; } | undefined; } | undefined; emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; domain?: string | undefined; phones?: { phone?: string | undefined; region?: string | undefined; }[] | undefined; firstname?: string | undefined; lastname?: string | undefined; most_probable_email?: string | undefined; most_probable_personal_email?: string | undefined; personal_emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; most_probable_phone?: string | undefined; social_medias?: { type?: string | undefined; url?: string | undefined; }[] | undefined; }, { profile?: { linkedin_handle?: string | undefined; location?: string | undefined; headline?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; current_position?: { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; } | undefined; } | undefined; emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; domain?: string | undefined; phones?: { phone?: string | undefined; region?: string | undefined; }[] | undefined; firstname?: string | undefined; lastname?: string | undefined; most_probable_email?: string | undefined; most_probable_personal_email?: string | undefined; personal_emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; most_probable_phone?: string | undefined; social_medias?: { type?: string | undefined; url?: string | undefined; }[] | undefined; }>>; }, "strip", z.ZodTypeAny, { custom?: Record | undefined; contact?: { profile?: { linkedin_handle?: string | undefined; location?: string | undefined; headline?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; current_position?: { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; } | undefined; } | undefined; emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; domain?: string | undefined; phones?: { phone?: string | undefined; region?: string | undefined; }[] | undefined; firstname?: string | undefined; lastname?: string | undefined; most_probable_email?: string | undefined; most_probable_personal_email?: string | undefined; personal_emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; most_probable_phone?: string | undefined; social_medias?: { type?: string | undefined; url?: string | undefined; }[] | undefined; } | undefined; }, { custom?: Record | undefined; contact?: { profile?: { linkedin_handle?: string | undefined; location?: string | undefined; headline?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; current_position?: { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; } | undefined; } | undefined; emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; domain?: string | undefined; phones?: { phone?: string | undefined; region?: string | undefined; }[] | undefined; firstname?: string | undefined; lastname?: string | undefined; most_probable_email?: string | undefined; most_probable_personal_email?: string | undefined; personal_emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; most_probable_phone?: string | undefined; social_medias?: { type?: string | undefined; url?: string | undefined; }[] | undefined; } | undefined; }>; /** * Cost information for an enrichment */ export declare const CostSchema: z.ZodObject<{ credits: z.ZodOptional; }, "strip", z.ZodTypeAny, { credits?: number | undefined; }, { credits?: number | undefined; }>; /** * Contact to be enriched */ export declare const ContactToEnrichSchema: z.ZodObject<{ firstname: z.ZodOptional; lastname: z.ZodOptional; domain: z.ZodOptional; company_name: z.ZodOptional; linkedin_url: z.ZodOptional; enrich_fields: z.ZodDefault, "many">>>; custom: z.ZodOptional>; }, "strip", z.ZodTypeAny, { enrich_fields: ("contact.emails" | "contact.personal_emails")[]; custom?: Record | undefined; domain?: string | undefined; linkedin_url?: string | undefined; firstname?: string | undefined; lastname?: string | undefined; company_name?: string | undefined; }, { custom?: Record | undefined; domain?: string | undefined; linkedin_url?: string | undefined; firstname?: string | undefined; lastname?: string | undefined; company_name?: string | undefined; enrich_fields?: ("contact.emails" | "contact.personal_emails")[] | undefined; }>; export declare const FullEnrichParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject<{ operation: z.ZodLiteral<"start_bulk_enrichment">; name: z.ZodString; webhook_url: z.ZodOptional; contacts: z.ZodArray; lastname: z.ZodOptional; domain: z.ZodOptional; company_name: z.ZodOptional; linkedin_url: z.ZodOptional; enrich_fields: z.ZodDefault, "many">>>; custom: z.ZodOptional>; }, "strip", z.ZodTypeAny, { enrich_fields: ("contact.emails" | "contact.personal_emails")[]; custom?: Record | undefined; domain?: string | undefined; linkedin_url?: string | undefined; firstname?: string | undefined; lastname?: string | undefined; company_name?: string | undefined; }, { custom?: Record | undefined; domain?: string | undefined; linkedin_url?: string | undefined; firstname?: string | undefined; lastname?: string | undefined; company_name?: string | undefined; enrich_fields?: ("contact.emails" | "contact.personal_emails")[] | undefined; }>, "many">; credentials: z.ZodOptional, z.ZodString>>; }, "strip", z.ZodTypeAny, { name: string; operation: "start_bulk_enrichment"; contacts: { enrich_fields: ("contact.emails" | "contact.personal_emails")[]; custom?: Record | undefined; domain?: string | undefined; linkedin_url?: string | undefined; firstname?: string | undefined; lastname?: string | undefined; company_name?: string | undefined; }[]; credentials?: Partial> | undefined; webhook_url?: string | undefined; }, { name: string; operation: "start_bulk_enrichment"; contacts: { custom?: Record | undefined; domain?: string | undefined; linkedin_url?: string | undefined; firstname?: string | undefined; lastname?: string | undefined; company_name?: string | undefined; enrich_fields?: ("contact.emails" | "contact.personal_emails")[] | undefined; }[]; credentials?: Partial> | undefined; webhook_url?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get_enrichment_result">; enrichment_id: z.ZodString; force_results: z.ZodDefault>; credentials: z.ZodOptional, z.ZodString>>; }, "strip", z.ZodTypeAny, { operation: "get_enrichment_result"; enrichment_id: string; force_results: boolean; credentials?: Partial> | undefined; }, { operation: "get_enrichment_result"; enrichment_id: string; credentials?: Partial> | undefined; force_results?: boolean | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"start_reverse_email_lookup">; name: z.ZodString; webhook_url: z.ZodOptional; emails: z.ZodArray; credentials: z.ZodOptional, z.ZodString>>; }, "strip", z.ZodTypeAny, { name: string; operation: "start_reverse_email_lookup"; emails: string[]; credentials?: Partial> | undefined; webhook_url?: string | undefined; }, { name: string; operation: "start_reverse_email_lookup"; emails: string[]; credentials?: Partial> | undefined; webhook_url?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get_reverse_email_result">; reverse_email_id: z.ZodString; credentials: z.ZodOptional, z.ZodString>>; }, "strip", z.ZodTypeAny, { operation: "get_reverse_email_result"; reverse_email_id: string; credentials?: Partial> | undefined; }, { operation: "get_reverse_email_result"; reverse_email_id: string; credentials?: Partial> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get_credit_balance">; credentials: z.ZodOptional, z.ZodString>>; }, "strip", z.ZodTypeAny, { operation: "get_credit_balance"; credentials?: Partial> | undefined; }, { operation: "get_credit_balance"; credentials?: Partial> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"check_api_key">; credentials: z.ZodOptional, z.ZodString>>; }, "strip", z.ZodTypeAny, { operation: "check_api_key"; credentials?: Partial> | undefined; }, { operation: "check_api_key"; credentials?: Partial> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"people_search">; person_names: z.ZodOptional; exact_match: z.ZodOptional; }, "strip", z.ZodTypeAny, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }>, "many">>; person_locations: z.ZodOptional; exact_match: z.ZodOptional; }, "strip", z.ZodTypeAny, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }>, "many">>; person_skills: z.ZodOptional; exact_match: z.ZodOptional; }, "strip", z.ZodTypeAny, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }>, "many">>; person_languages: z.ZodOptional; exact_match: z.ZodOptional; }, "strip", z.ZodTypeAny, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }>, "many">>; person_universities: z.ZodOptional; exact_match: z.ZodOptional; }, "strip", z.ZodTypeAny, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }>, "many">>; person_linkedin_urls: z.ZodOptional; exact_match: z.ZodOptional; }, "strip", z.ZodTypeAny, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }>, "many">>; current_position_titles: z.ZodOptional; exact_match: z.ZodOptional; }, "strip", z.ZodTypeAny, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }>, "many">>; current_position_seniority_level: z.ZodOptional; exact_match: z.ZodOptional; }, "strip", z.ZodTypeAny, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }>, "many">>; current_position_job_functions: z.ZodOptional; exact_match: z.ZodOptional; }, "strip", z.ZodTypeAny, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }>, "many">>; current_position_sub_functions: z.ZodOptional; exact_match: z.ZodOptional; }, "strip", z.ZodTypeAny, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }>, "many">>; current_position_years_in: z.ZodOptional; max: z.ZodOptional; exclude: z.ZodOptional; }, "strip", z.ZodTypeAny, { min?: number | undefined; max?: number | undefined; exclude?: boolean | undefined; }, { min?: number | undefined; max?: number | undefined; exclude?: boolean | undefined; }>, "many">>; past_position_titles: z.ZodOptional; exact_match: z.ZodOptional; }, "strip", z.ZodTypeAny, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }>, "many">>; current_company_names: z.ZodOptional; exact_match: z.ZodOptional; }, "strip", z.ZodTypeAny, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }>, "many">>; current_company_domains: z.ZodOptional; exact_match: z.ZodOptional; }, "strip", z.ZodTypeAny, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }>, "many">>; current_company_industries: z.ZodOptional; exact_match: z.ZodOptional; }, "strip", z.ZodTypeAny, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }>, "many">>; current_company_headcounts: z.ZodOptional; max: z.ZodOptional; exclude: z.ZodOptional; }, "strip", z.ZodTypeAny, { min?: number | undefined; max?: number | undefined; exclude?: boolean | undefined; }, { min?: number | undefined; max?: number | undefined; exclude?: boolean | undefined; }>, "many">>; current_company_headquarters: z.ZodOptional; exact_match: z.ZodOptional; }, "strip", z.ZodTypeAny, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }>, "many">>; current_company_types: z.ZodOptional; exact_match: z.ZodOptional; }, "strip", z.ZodTypeAny, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }>, "many">>; current_company_founded_years: z.ZodOptional; max: z.ZodOptional; exclude: z.ZodOptional; }, "strip", z.ZodTypeAny, { min?: number | undefined; max?: number | undefined; exclude?: boolean | undefined; }, { min?: number | undefined; max?: number | undefined; exclude?: boolean | undefined; }>, "many">>; current_company_specialties: z.ZodOptional; exact_match: z.ZodOptional; }, "strip", z.ZodTypeAny, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }>, "many">>; current_company_years_at: z.ZodOptional; max: z.ZodOptional; exclude: z.ZodOptional; }, "strip", z.ZodTypeAny, { min?: number | undefined; max?: number | undefined; exclude?: boolean | undefined; }, { min?: number | undefined; max?: number | undefined; exclude?: boolean | undefined; }>, "many">>; current_company_days_since_last_job_change: z.ZodOptional; max: z.ZodOptional; exclude: z.ZodOptional; }, "strip", z.ZodTypeAny, { min?: number | undefined; max?: number | undefined; exclude?: boolean | undefined; }, { min?: number | undefined; max?: number | undefined; exclude?: boolean | undefined; }>, "many">>; past_company_names: z.ZodOptional; exact_match: z.ZodOptional; }, "strip", z.ZodTypeAny, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }>, "many">>; past_company_domains: z.ZodOptional; exact_match: z.ZodOptional; }, "strip", z.ZodTypeAny, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }>, "many">>; offset: z.ZodOptional; limit: z.ZodDefault; search_after: z.ZodOptional; credentials: z.ZodOptional, z.ZodString>>; }, "strip", z.ZodTypeAny, { operation: "people_search"; limit: number; credentials?: Partial> | undefined; offset?: number | undefined; search_after?: string | undefined; person_names?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; person_locations?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; person_skills?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; person_languages?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; person_universities?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; person_linkedin_urls?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; current_position_titles?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; current_position_seniority_level?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; current_position_job_functions?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; current_position_sub_functions?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; current_position_years_in?: { min?: number | undefined; max?: number | undefined; exclude?: boolean | undefined; }[] | undefined; past_position_titles?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; current_company_names?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; current_company_domains?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; current_company_industries?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; current_company_headcounts?: { min?: number | undefined; max?: number | undefined; exclude?: boolean | undefined; }[] | undefined; current_company_headquarters?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; current_company_types?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; current_company_founded_years?: { min?: number | undefined; max?: number | undefined; exclude?: boolean | undefined; }[] | undefined; current_company_specialties?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; current_company_years_at?: { min?: number | undefined; max?: number | undefined; exclude?: boolean | undefined; }[] | undefined; current_company_days_since_last_job_change?: { min?: number | undefined; max?: number | undefined; exclude?: boolean | undefined; }[] | undefined; past_company_names?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; past_company_domains?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; }, { operation: "people_search"; credentials?: Partial> | undefined; limit?: number | undefined; offset?: number | undefined; search_after?: string | undefined; person_names?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; person_locations?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; person_skills?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; person_languages?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; person_universities?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; person_linkedin_urls?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; current_position_titles?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; current_position_seniority_level?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; current_position_job_functions?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; current_position_sub_functions?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; current_position_years_in?: { min?: number | undefined; max?: number | undefined; exclude?: boolean | undefined; }[] | undefined; past_position_titles?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; current_company_names?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; current_company_domains?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; current_company_industries?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; current_company_headcounts?: { min?: number | undefined; max?: number | undefined; exclude?: boolean | undefined; }[] | undefined; current_company_headquarters?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; current_company_types?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; current_company_founded_years?: { min?: number | undefined; max?: number | undefined; exclude?: boolean | undefined; }[] | undefined; current_company_specialties?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; current_company_years_at?: { min?: number | undefined; max?: number | undefined; exclude?: boolean | undefined; }[] | undefined; current_company_days_since_last_job_change?: { min?: number | undefined; max?: number | undefined; exclude?: boolean | undefined; }[] | undefined; past_company_names?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; past_company_domains?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"company_search">; names: z.ZodOptional; exact_match: z.ZodOptional; }, "strip", z.ZodTypeAny, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }>, "many">>; domains: z.ZodOptional; exact_match: z.ZodOptional; }, "strip", z.ZodTypeAny, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }>, "many">>; keywords: z.ZodOptional; exact_match: z.ZodOptional; }, "strip", z.ZodTypeAny, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }>, "many">>; industries: z.ZodOptional; exact_match: z.ZodOptional; }, "strip", z.ZodTypeAny, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }>, "many">>; types: z.ZodOptional; exact_match: z.ZodOptional; }, "strip", z.ZodTypeAny, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }>, "many">>; headcounts: z.ZodOptional; max: z.ZodOptional; exclude: z.ZodOptional; }, "strip", z.ZodTypeAny, { min?: number | undefined; max?: number | undefined; exclude?: boolean | undefined; }, { min?: number | undefined; max?: number | undefined; exclude?: boolean | undefined; }>, "many">>; founded_years: z.ZodOptional; max: z.ZodOptional; exclude: z.ZodOptional; }, "strip", z.ZodTypeAny, { min?: number | undefined; max?: number | undefined; exclude?: boolean | undefined; }, { min?: number | undefined; max?: number | undefined; exclude?: boolean | undefined; }>, "many">>; headquarters_locations: z.ZodOptional; exact_match: z.ZodOptional; }, "strip", z.ZodTypeAny, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }, { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }>, "many">>; offset: z.ZodOptional; limit: z.ZodDefault; search_after: z.ZodOptional; credentials: z.ZodOptional, z.ZodString>>; }, "strip", z.ZodTypeAny, { operation: "company_search"; limit: number; types?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; credentials?: Partial> | undefined; offset?: number | undefined; industries?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; search_after?: string | undefined; names?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; domains?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; keywords?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; headcounts?: { min?: number | undefined; max?: number | undefined; exclude?: boolean | undefined; }[] | undefined; founded_years?: { min?: number | undefined; max?: number | undefined; exclude?: boolean | undefined; }[] | undefined; headquarters_locations?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; }, { operation: "company_search"; types?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; credentials?: Partial> | undefined; limit?: number | undefined; offset?: number | undefined; industries?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; search_after?: string | undefined; names?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; domains?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; keywords?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; headcounts?: { min?: number | undefined; max?: number | undefined; exclude?: boolean | undefined; }[] | undefined; founded_years?: { min?: number | undefined; max?: number | undefined; exclude?: boolean | undefined; }[] | undefined; headquarters_locations?: { value: string; exclude?: boolean | undefined; exact_match?: boolean | undefined; }[] | undefined; }>]>; export declare const FullEnrichResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject<{ operation: z.ZodLiteral<"start_bulk_enrichment">; success: z.ZodBoolean; enrichment_id: z.ZodOptional; error: z.ZodString; }, "strip", z.ZodTypeAny, { error: string; success: boolean; operation: "start_bulk_enrichment"; enrichment_id?: string | undefined; }, { error: string; success: boolean; operation: "start_bulk_enrichment"; enrichment_id?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get_enrichment_result">; success: z.ZodBoolean; id: z.ZodOptional; name: z.ZodOptional; status: z.ZodOptional>; results: z.ZodOptional>; contact: z.ZodOptional; lastname: z.ZodOptional; domain: z.ZodOptional; most_probable_email: z.ZodOptional; most_probable_personal_email: z.ZodOptional; emails: z.ZodOptional; status: z.ZodOptional; }, "strip", z.ZodTypeAny, { status?: string | undefined; email?: string | undefined; }, { status?: string | undefined; email?: string | undefined; }>, "many">>; personal_emails: z.ZodOptional; status: z.ZodOptional; }, "strip", z.ZodTypeAny, { status?: string | undefined; email?: string | undefined; }, { status?: string | undefined; email?: string | undefined; }>, "many">>; most_probable_phone: z.ZodOptional; phones: z.ZodOptional; region: z.ZodOptional; }, "strip", z.ZodTypeAny, { phone?: string | undefined; region?: string | undefined; }, { phone?: string | undefined; region?: string | undefined; }>, "many">>; social_medias: z.ZodOptional; type: z.ZodOptional; }, "strip", z.ZodTypeAny, { type?: string | undefined; url?: string | undefined; }, { type?: string | undefined; url?: string | undefined; }>, "many">>; profile: z.ZodOptional; linkedin_id: z.ZodEffects>, string | undefined, string | number | undefined>; linkedin_handle: z.ZodOptional; headline: z.ZodOptional; location: z.ZodOptional; current_position: z.ZodOptional; company: z.ZodOptional; domain: z.ZodOptional; linkedin_url: z.ZodOptional; linkedin_id: z.ZodEffects>, string | undefined, string | number | undefined>; industry: z.ZodOptional; headquarters: z.ZodOptional; country: z.ZodOptional; }, "strip", z.ZodTypeAny, { city?: string | undefined; country?: string | undefined; }, { city?: string | undefined; country?: string | undefined; }>>; }, "strip", z.ZodTypeAny, { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; }, { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; }>>; start_date: z.ZodOptional; end_date: z.ZodOptional; }, "strip", z.ZodTypeAny, { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; }, { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; }>>; }, "strip", z.ZodTypeAny, { linkedin_handle?: string | undefined; location?: string | undefined; headline?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; current_position?: { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; } | undefined; }, { linkedin_handle?: string | undefined; location?: string | undefined; headline?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; current_position?: { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; } | undefined; }>>; }, "strip", z.ZodTypeAny, { profile?: { linkedin_handle?: string | undefined; location?: string | undefined; headline?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; current_position?: { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; } | undefined; } | undefined; emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; domain?: string | undefined; phones?: { phone?: string | undefined; region?: string | undefined; }[] | undefined; firstname?: string | undefined; lastname?: string | undefined; most_probable_email?: string | undefined; most_probable_personal_email?: string | undefined; personal_emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; most_probable_phone?: string | undefined; social_medias?: { type?: string | undefined; url?: string | undefined; }[] | undefined; }, { profile?: { linkedin_handle?: string | undefined; location?: string | undefined; headline?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; current_position?: { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; } | undefined; } | undefined; emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; domain?: string | undefined; phones?: { phone?: string | undefined; region?: string | undefined; }[] | undefined; firstname?: string | undefined; lastname?: string | undefined; most_probable_email?: string | undefined; most_probable_personal_email?: string | undefined; personal_emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; most_probable_phone?: string | undefined; social_medias?: { type?: string | undefined; url?: string | undefined; }[] | undefined; }>>; }, "strip", z.ZodTypeAny, { custom?: Record | undefined; contact?: { profile?: { linkedin_handle?: string | undefined; location?: string | undefined; headline?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; current_position?: { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; } | undefined; } | undefined; emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; domain?: string | undefined; phones?: { phone?: string | undefined; region?: string | undefined; }[] | undefined; firstname?: string | undefined; lastname?: string | undefined; most_probable_email?: string | undefined; most_probable_personal_email?: string | undefined; personal_emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; most_probable_phone?: string | undefined; social_medias?: { type?: string | undefined; url?: string | undefined; }[] | undefined; } | undefined; }, { custom?: Record | undefined; contact?: { profile?: { linkedin_handle?: string | undefined; location?: string | undefined; headline?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; current_position?: { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; } | undefined; } | undefined; emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; domain?: string | undefined; phones?: { phone?: string | undefined; region?: string | undefined; }[] | undefined; firstname?: string | undefined; lastname?: string | undefined; most_probable_email?: string | undefined; most_probable_personal_email?: string | undefined; personal_emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; most_probable_phone?: string | undefined; social_medias?: { type?: string | undefined; url?: string | undefined; }[] | undefined; } | undefined; }>, "many">>; cost: z.ZodOptional; }, "strip", z.ZodTypeAny, { credits?: number | undefined; }, { credits?: number | undefined; }>>; error: z.ZodString; }, "strip", z.ZodTypeAny, { error: string; success: boolean; operation: "get_enrichment_result"; status?: "UNKNOWN" | "CREATED" | "IN_PROGRESS" | "CANCELED" | "CREDITS_INSUFFICIENT" | "FINISHED" | "RATE_LIMIT" | undefined; name?: string | undefined; id?: string | undefined; cost?: { credits?: number | undefined; } | undefined; results?: { custom?: Record | undefined; contact?: { profile?: { linkedin_handle?: string | undefined; location?: string | undefined; headline?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; current_position?: { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; } | undefined; } | undefined; emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; domain?: string | undefined; phones?: { phone?: string | undefined; region?: string | undefined; }[] | undefined; firstname?: string | undefined; lastname?: string | undefined; most_probable_email?: string | undefined; most_probable_personal_email?: string | undefined; personal_emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; most_probable_phone?: string | undefined; social_medias?: { type?: string | undefined; url?: string | undefined; }[] | undefined; } | undefined; }[] | undefined; }, { error: string; success: boolean; operation: "get_enrichment_result"; status?: "UNKNOWN" | "CREATED" | "IN_PROGRESS" | "CANCELED" | "CREDITS_INSUFFICIENT" | "FINISHED" | "RATE_LIMIT" | undefined; name?: string | undefined; id?: string | undefined; cost?: { credits?: number | undefined; } | undefined; results?: { custom?: Record | undefined; contact?: { profile?: { linkedin_handle?: string | undefined; location?: string | undefined; headline?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; current_position?: { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; } | undefined; } | undefined; emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; domain?: string | undefined; phones?: { phone?: string | undefined; region?: string | undefined; }[] | undefined; firstname?: string | undefined; lastname?: string | undefined; most_probable_email?: string | undefined; most_probable_personal_email?: string | undefined; personal_emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; most_probable_phone?: string | undefined; social_medias?: { type?: string | undefined; url?: string | undefined; }[] | undefined; } | undefined; }[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"start_reverse_email_lookup">; success: z.ZodBoolean; enrichment_id: z.ZodOptional; error: z.ZodString; }, "strip", z.ZodTypeAny, { error: string; success: boolean; operation: "start_reverse_email_lookup"; enrichment_id?: string | undefined; }, { error: string; success: boolean; operation: "start_reverse_email_lookup"; enrichment_id?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get_reverse_email_result">; success: z.ZodBoolean; id: z.ZodOptional; name: z.ZodOptional; status: z.ZodOptional>; results: z.ZodOptional; contact: z.ZodOptional; lastname: z.ZodOptional; domain: z.ZodOptional; most_probable_email: z.ZodOptional; most_probable_personal_email: z.ZodOptional; emails: z.ZodOptional; status: z.ZodOptional; }, "strip", z.ZodTypeAny, { status?: string | undefined; email?: string | undefined; }, { status?: string | undefined; email?: string | undefined; }>, "many">>; personal_emails: z.ZodOptional; status: z.ZodOptional; }, "strip", z.ZodTypeAny, { status?: string | undefined; email?: string | undefined; }, { status?: string | undefined; email?: string | undefined; }>, "many">>; most_probable_phone: z.ZodOptional; phones: z.ZodOptional; region: z.ZodOptional; }, "strip", z.ZodTypeAny, { phone?: string | undefined; region?: string | undefined; }, { phone?: string | undefined; region?: string | undefined; }>, "many">>; social_medias: z.ZodOptional; type: z.ZodOptional; }, "strip", z.ZodTypeAny, { type?: string | undefined; url?: string | undefined; }, { type?: string | undefined; url?: string | undefined; }>, "many">>; profile: z.ZodOptional; linkedin_id: z.ZodEffects>, string | undefined, string | number | undefined>; linkedin_handle: z.ZodOptional; headline: z.ZodOptional; location: z.ZodOptional; current_position: z.ZodOptional; company: z.ZodOptional; domain: z.ZodOptional; linkedin_url: z.ZodOptional; linkedin_id: z.ZodEffects>, string | undefined, string | number | undefined>; industry: z.ZodOptional; headquarters: z.ZodOptional; country: z.ZodOptional; }, "strip", z.ZodTypeAny, { city?: string | undefined; country?: string | undefined; }, { city?: string | undefined; country?: string | undefined; }>>; }, "strip", z.ZodTypeAny, { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; }, { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; }>>; start_date: z.ZodOptional; end_date: z.ZodOptional; }, "strip", z.ZodTypeAny, { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; }, { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; }>>; }, "strip", z.ZodTypeAny, { linkedin_handle?: string | undefined; location?: string | undefined; headline?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; current_position?: { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; } | undefined; }, { linkedin_handle?: string | undefined; location?: string | undefined; headline?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; current_position?: { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; } | undefined; }>>; }, "strip", z.ZodTypeAny, { profile?: { linkedin_handle?: string | undefined; location?: string | undefined; headline?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; current_position?: { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; } | undefined; } | undefined; emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; domain?: string | undefined; phones?: { phone?: string | undefined; region?: string | undefined; }[] | undefined; firstname?: string | undefined; lastname?: string | undefined; most_probable_email?: string | undefined; most_probable_personal_email?: string | undefined; personal_emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; most_probable_phone?: string | undefined; social_medias?: { type?: string | undefined; url?: string | undefined; }[] | undefined; }, { profile?: { linkedin_handle?: string | undefined; location?: string | undefined; headline?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; current_position?: { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; } | undefined; } | undefined; emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; domain?: string | undefined; phones?: { phone?: string | undefined; region?: string | undefined; }[] | undefined; firstname?: string | undefined; lastname?: string | undefined; most_probable_email?: string | undefined; most_probable_personal_email?: string | undefined; personal_emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; most_probable_phone?: string | undefined; social_medias?: { type?: string | undefined; url?: string | undefined; }[] | undefined; }>>; }, "strip", z.ZodTypeAny, { input?: string | undefined; contact?: { profile?: { linkedin_handle?: string | undefined; location?: string | undefined; headline?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; current_position?: { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; } | undefined; } | undefined; emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; domain?: string | undefined; phones?: { phone?: string | undefined; region?: string | undefined; }[] | undefined; firstname?: string | undefined; lastname?: string | undefined; most_probable_email?: string | undefined; most_probable_personal_email?: string | undefined; personal_emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; most_probable_phone?: string | undefined; social_medias?: { type?: string | undefined; url?: string | undefined; }[] | undefined; } | undefined; }, { input?: string | undefined; contact?: { profile?: { linkedin_handle?: string | undefined; location?: string | undefined; headline?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; current_position?: { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; } | undefined; } | undefined; emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; domain?: string | undefined; phones?: { phone?: string | undefined; region?: string | undefined; }[] | undefined; firstname?: string | undefined; lastname?: string | undefined; most_probable_email?: string | undefined; most_probable_personal_email?: string | undefined; personal_emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; most_probable_phone?: string | undefined; social_medias?: { type?: string | undefined; url?: string | undefined; }[] | undefined; } | undefined; }>, "many">>; cost: z.ZodOptional; }, "strip", z.ZodTypeAny, { credits?: number | undefined; }, { credits?: number | undefined; }>>; error: z.ZodString; }, "strip", z.ZodTypeAny, { error: string; success: boolean; operation: "get_reverse_email_result"; status?: "UNKNOWN" | "CREATED" | "IN_PROGRESS" | "CANCELED" | "CREDITS_INSUFFICIENT" | "FINISHED" | "RATE_LIMIT" | undefined; name?: string | undefined; id?: string | undefined; cost?: { credits?: number | undefined; } | undefined; results?: { input?: string | undefined; contact?: { profile?: { linkedin_handle?: string | undefined; location?: string | undefined; headline?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; current_position?: { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; } | undefined; } | undefined; emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; domain?: string | undefined; phones?: { phone?: string | undefined; region?: string | undefined; }[] | undefined; firstname?: string | undefined; lastname?: string | undefined; most_probable_email?: string | undefined; most_probable_personal_email?: string | undefined; personal_emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; most_probable_phone?: string | undefined; social_medias?: { type?: string | undefined; url?: string | undefined; }[] | undefined; } | undefined; }[] | undefined; }, { error: string; success: boolean; operation: "get_reverse_email_result"; status?: "UNKNOWN" | "CREATED" | "IN_PROGRESS" | "CANCELED" | "CREDITS_INSUFFICIENT" | "FINISHED" | "RATE_LIMIT" | undefined; name?: string | undefined; id?: string | undefined; cost?: { credits?: number | undefined; } | undefined; results?: { input?: string | undefined; contact?: { profile?: { linkedin_handle?: string | undefined; location?: string | undefined; headline?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; current_position?: { title?: string | undefined; company?: { name?: string | undefined; domain?: string | undefined; linkedin_url?: string | undefined; linkedin_id?: string | number | undefined; industry?: string | undefined; headquarters?: { city?: string | undefined; country?: string | undefined; } | undefined; } | undefined; start_date?: string | undefined; end_date?: string | undefined; } | undefined; } | undefined; emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; domain?: string | undefined; phones?: { phone?: string | undefined; region?: string | undefined; }[] | undefined; firstname?: string | undefined; lastname?: string | undefined; most_probable_email?: string | undefined; most_probable_personal_email?: string | undefined; personal_emails?: { status?: string | undefined; email?: string | undefined; }[] | undefined; most_probable_phone?: string | undefined; social_medias?: { type?: string | undefined; url?: string | undefined; }[] | undefined; } | undefined; }[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get_credit_balance">; success: z.ZodBoolean; balance: z.ZodOptional; error: z.ZodString; }, "strip", z.ZodTypeAny, { error: string; success: boolean; operation: "get_credit_balance"; balance?: number | undefined; }, { error: string; success: boolean; operation: "get_credit_balance"; balance?: number | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"check_api_key">; success: z.ZodBoolean; workspace_id: z.ZodOptional; error: z.ZodString; }, "strip", z.ZodTypeAny, { error: string; success: boolean; operation: "check_api_key"; workspace_id?: string | undefined; }, { error: string; success: boolean; operation: "check_api_key"; workspace_id?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"people_search">; success: z.ZodBoolean; people: z.ZodOptional; full_name: z.ZodOptional; first_name: z.ZodOptional; last_name: z.ZodOptional; location: z.ZodOptional; region: z.ZodOptional; country: z.ZodOptional; country_code: z.ZodOptional; }, "strip", z.ZodTypeAny, { city?: string | undefined; region?: string | undefined; country?: string | undefined; country_code?: string | undefined; }, { city?: string | undefined; region?: string | undefined; country?: string | undefined; country_code?: string | undefined; }>>; social_profiles: z.ZodOptional; handle: z.ZodOptional; connection_count: z.ZodOptional; }, "strip", z.ZodTypeAny, { url?: string | undefined; handle?: string | undefined; connection_count?: number | undefined; }, { url?: string | undefined; handle?: string | undefined; connection_count?: number | undefined; }>>; }, "strip", z.ZodTypeAny, { linkedin?: { url?: string | undefined; handle?: string | undefined; connection_count?: number | undefined; } | undefined; }, { linkedin?: { url?: string | undefined; handle?: string | undefined; connection_count?: number | undefined; } | undefined; }>>; educations: z.ZodOptional; degree: z.ZodOptional; start_at: z.ZodOptional; end_at: z.ZodOptional; }, "strip", z.ZodTypeAny, { start_at?: string | undefined; end_at?: string | undefined; degree?: string | undefined; school_name?: string | undefined; }, { start_at?: string | undefined; end_at?: string | undefined; degree?: string | undefined; school_name?: string | undefined; }>, "many">>; languages: z.ZodOptional; proficiency: z.ZodOptional; }, "strip", z.ZodTypeAny, { proficiency?: string | undefined; language?: string | undefined; }, { proficiency?: string | undefined; language?: string | undefined; }>, "many">>; skills: z.ZodOptional>; employment: z.ZodOptional; seniority: z.ZodOptional; description: z.ZodOptional; company: z.ZodOptional; name: z.ZodOptional; domain: z.ZodOptional; description: z.ZodOptional; year_founded: z.ZodOptional; headcount: z.ZodOptional; headcount_range: z.ZodOptional; company_type: z.ZodOptional; industry: z.ZodOptional; }, "strip", z.ZodTypeAny, { main_industry?: string | undefined; }, { main_industry?: string | undefined; }>>; }, "strip", z.ZodTypeAny, { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; }, { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; }>>; is_current: z.ZodOptional; start_at: z.ZodOptional; end_at: z.ZodOptional; }, "strip", z.ZodTypeAny, { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; }, { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; }>>; all: z.ZodOptional; seniority: z.ZodOptional; description: z.ZodOptional; company: z.ZodOptional; name: z.ZodOptional; domain: z.ZodOptional; description: z.ZodOptional; year_founded: z.ZodOptional; headcount: z.ZodOptional; headcount_range: z.ZodOptional; company_type: z.ZodOptional; industry: z.ZodOptional; }, "strip", z.ZodTypeAny, { main_industry?: string | undefined; }, { main_industry?: string | undefined; }>>; }, "strip", z.ZodTypeAny, { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; }, { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; }>>; is_current: z.ZodOptional; start_at: z.ZodOptional; end_at: z.ZodOptional; }, "strip", z.ZodTypeAny, { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; }, { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; }>, "many">>; }, "strip", z.ZodTypeAny, { all?: { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; }[] | undefined; current?: { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; } | undefined; }, { all?: { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; }[] | undefined; current?: { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; } | undefined; }>>; }, "passthrough", z.ZodTypeAny, z.objectOutputType<{ id: z.ZodOptional; full_name: z.ZodOptional; first_name: z.ZodOptional; last_name: z.ZodOptional; location: z.ZodOptional; region: z.ZodOptional; country: z.ZodOptional; country_code: z.ZodOptional; }, "strip", z.ZodTypeAny, { city?: string | undefined; region?: string | undefined; country?: string | undefined; country_code?: string | undefined; }, { city?: string | undefined; region?: string | undefined; country?: string | undefined; country_code?: string | undefined; }>>; social_profiles: z.ZodOptional; handle: z.ZodOptional; connection_count: z.ZodOptional; }, "strip", z.ZodTypeAny, { url?: string | undefined; handle?: string | undefined; connection_count?: number | undefined; }, { url?: string | undefined; handle?: string | undefined; connection_count?: number | undefined; }>>; }, "strip", z.ZodTypeAny, { linkedin?: { url?: string | undefined; handle?: string | undefined; connection_count?: number | undefined; } | undefined; }, { linkedin?: { url?: string | undefined; handle?: string | undefined; connection_count?: number | undefined; } | undefined; }>>; educations: z.ZodOptional; degree: z.ZodOptional; start_at: z.ZodOptional; end_at: z.ZodOptional; }, "strip", z.ZodTypeAny, { start_at?: string | undefined; end_at?: string | undefined; degree?: string | undefined; school_name?: string | undefined; }, { start_at?: string | undefined; end_at?: string | undefined; degree?: string | undefined; school_name?: string | undefined; }>, "many">>; languages: z.ZodOptional; proficiency: z.ZodOptional; }, "strip", z.ZodTypeAny, { proficiency?: string | undefined; language?: string | undefined; }, { proficiency?: string | undefined; language?: string | undefined; }>, "many">>; skills: z.ZodOptional>; employment: z.ZodOptional; seniority: z.ZodOptional; description: z.ZodOptional; company: z.ZodOptional; name: z.ZodOptional; domain: z.ZodOptional; description: z.ZodOptional; year_founded: z.ZodOptional; headcount: z.ZodOptional; headcount_range: z.ZodOptional; company_type: z.ZodOptional; industry: z.ZodOptional; }, "strip", z.ZodTypeAny, { main_industry?: string | undefined; }, { main_industry?: string | undefined; }>>; }, "strip", z.ZodTypeAny, { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; }, { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; }>>; is_current: z.ZodOptional; start_at: z.ZodOptional; end_at: z.ZodOptional; }, "strip", z.ZodTypeAny, { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; }, { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; }>>; all: z.ZodOptional; seniority: z.ZodOptional; description: z.ZodOptional; company: z.ZodOptional; name: z.ZodOptional; domain: z.ZodOptional; description: z.ZodOptional; year_founded: z.ZodOptional; headcount: z.ZodOptional; headcount_range: z.ZodOptional; company_type: z.ZodOptional; industry: z.ZodOptional; }, "strip", z.ZodTypeAny, { main_industry?: string | undefined; }, { main_industry?: string | undefined; }>>; }, "strip", z.ZodTypeAny, { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; }, { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; }>>; is_current: z.ZodOptional; start_at: z.ZodOptional; end_at: z.ZodOptional; }, "strip", z.ZodTypeAny, { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; }, { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; }>, "many">>; }, "strip", z.ZodTypeAny, { all?: { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; }[] | undefined; current?: { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; } | undefined; }, { all?: { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; }[] | undefined; current?: { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; } | undefined; }>>; }, z.ZodTypeAny, "passthrough">, z.objectInputType<{ id: z.ZodOptional; full_name: z.ZodOptional; first_name: z.ZodOptional; last_name: z.ZodOptional; location: z.ZodOptional; region: z.ZodOptional; country: z.ZodOptional; country_code: z.ZodOptional; }, "strip", z.ZodTypeAny, { city?: string | undefined; region?: string | undefined; country?: string | undefined; country_code?: string | undefined; }, { city?: string | undefined; region?: string | undefined; country?: string | undefined; country_code?: string | undefined; }>>; social_profiles: z.ZodOptional; handle: z.ZodOptional; connection_count: z.ZodOptional; }, "strip", z.ZodTypeAny, { url?: string | undefined; handle?: string | undefined; connection_count?: number | undefined; }, { url?: string | undefined; handle?: string | undefined; connection_count?: number | undefined; }>>; }, "strip", z.ZodTypeAny, { linkedin?: { url?: string | undefined; handle?: string | undefined; connection_count?: number | undefined; } | undefined; }, { linkedin?: { url?: string | undefined; handle?: string | undefined; connection_count?: number | undefined; } | undefined; }>>; educations: z.ZodOptional; degree: z.ZodOptional; start_at: z.ZodOptional; end_at: z.ZodOptional; }, "strip", z.ZodTypeAny, { start_at?: string | undefined; end_at?: string | undefined; degree?: string | undefined; school_name?: string | undefined; }, { start_at?: string | undefined; end_at?: string | undefined; degree?: string | undefined; school_name?: string | undefined; }>, "many">>; languages: z.ZodOptional; proficiency: z.ZodOptional; }, "strip", z.ZodTypeAny, { proficiency?: string | undefined; language?: string | undefined; }, { proficiency?: string | undefined; language?: string | undefined; }>, "many">>; skills: z.ZodOptional>; employment: z.ZodOptional; seniority: z.ZodOptional; description: z.ZodOptional; company: z.ZodOptional; name: z.ZodOptional; domain: z.ZodOptional; description: z.ZodOptional; year_founded: z.ZodOptional; headcount: z.ZodOptional; headcount_range: z.ZodOptional; company_type: z.ZodOptional; industry: z.ZodOptional; }, "strip", z.ZodTypeAny, { main_industry?: string | undefined; }, { main_industry?: string | undefined; }>>; }, "strip", z.ZodTypeAny, { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; }, { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; }>>; is_current: z.ZodOptional; start_at: z.ZodOptional; end_at: z.ZodOptional; }, "strip", z.ZodTypeAny, { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; }, { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; }>>; all: z.ZodOptional; seniority: z.ZodOptional; description: z.ZodOptional; company: z.ZodOptional; name: z.ZodOptional; domain: z.ZodOptional; description: z.ZodOptional; year_founded: z.ZodOptional; headcount: z.ZodOptional; headcount_range: z.ZodOptional; company_type: z.ZodOptional; industry: z.ZodOptional; }, "strip", z.ZodTypeAny, { main_industry?: string | undefined; }, { main_industry?: string | undefined; }>>; }, "strip", z.ZodTypeAny, { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; }, { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; }>>; is_current: z.ZodOptional; start_at: z.ZodOptional; end_at: z.ZodOptional; }, "strip", z.ZodTypeAny, { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; }, { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; }>, "many">>; }, "strip", z.ZodTypeAny, { all?: { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; }[] | undefined; current?: { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; } | undefined; }, { all?: { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; }[] | undefined; current?: { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; } | undefined; }>>; }, z.ZodTypeAny, "passthrough">>, "many">>; metadata: z.ZodOptional; offset: z.ZodOptional; search_after: z.ZodOptional; }, "strip", z.ZodTypeAny, { total: number; offset?: number | undefined; credits?: number | undefined; search_after?: string | undefined; }, { total: number; offset?: number | undefined; credits?: number | undefined; search_after?: string | undefined; }>>; error: z.ZodString; }, "strip", z.ZodTypeAny, { error: string; success: boolean; operation: "people_search"; metadata?: { total: number; offset?: number | undefined; credits?: number | undefined; search_after?: string | undefined; } | undefined; people?: z.objectOutputType<{ id: z.ZodOptional; full_name: z.ZodOptional; first_name: z.ZodOptional; last_name: z.ZodOptional; location: z.ZodOptional; region: z.ZodOptional; country: z.ZodOptional; country_code: z.ZodOptional; }, "strip", z.ZodTypeAny, { city?: string | undefined; region?: string | undefined; country?: string | undefined; country_code?: string | undefined; }, { city?: string | undefined; region?: string | undefined; country?: string | undefined; country_code?: string | undefined; }>>; social_profiles: z.ZodOptional; handle: z.ZodOptional; connection_count: z.ZodOptional; }, "strip", z.ZodTypeAny, { url?: string | undefined; handle?: string | undefined; connection_count?: number | undefined; }, { url?: string | undefined; handle?: string | undefined; connection_count?: number | undefined; }>>; }, "strip", z.ZodTypeAny, { linkedin?: { url?: string | undefined; handle?: string | undefined; connection_count?: number | undefined; } | undefined; }, { linkedin?: { url?: string | undefined; handle?: string | undefined; connection_count?: number | undefined; } | undefined; }>>; educations: z.ZodOptional; degree: z.ZodOptional; start_at: z.ZodOptional; end_at: z.ZodOptional; }, "strip", z.ZodTypeAny, { start_at?: string | undefined; end_at?: string | undefined; degree?: string | undefined; school_name?: string | undefined; }, { start_at?: string | undefined; end_at?: string | undefined; degree?: string | undefined; school_name?: string | undefined; }>, "many">>; languages: z.ZodOptional; proficiency: z.ZodOptional; }, "strip", z.ZodTypeAny, { proficiency?: string | undefined; language?: string | undefined; }, { proficiency?: string | undefined; language?: string | undefined; }>, "many">>; skills: z.ZodOptional>; employment: z.ZodOptional; seniority: z.ZodOptional; description: z.ZodOptional; company: z.ZodOptional; name: z.ZodOptional; domain: z.ZodOptional; description: z.ZodOptional; year_founded: z.ZodOptional; headcount: z.ZodOptional; headcount_range: z.ZodOptional; company_type: z.ZodOptional; industry: z.ZodOptional; }, "strip", z.ZodTypeAny, { main_industry?: string | undefined; }, { main_industry?: string | undefined; }>>; }, "strip", z.ZodTypeAny, { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; }, { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; }>>; is_current: z.ZodOptional; start_at: z.ZodOptional; end_at: z.ZodOptional; }, "strip", z.ZodTypeAny, { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; }, { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; }>>; all: z.ZodOptional; seniority: z.ZodOptional; description: z.ZodOptional; company: z.ZodOptional; name: z.ZodOptional; domain: z.ZodOptional; description: z.ZodOptional; year_founded: z.ZodOptional; headcount: z.ZodOptional; headcount_range: z.ZodOptional; company_type: z.ZodOptional; industry: z.ZodOptional; }, "strip", z.ZodTypeAny, { main_industry?: string | undefined; }, { main_industry?: string | undefined; }>>; }, "strip", z.ZodTypeAny, { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; }, { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; }>>; is_current: z.ZodOptional; start_at: z.ZodOptional; end_at: z.ZodOptional; }, "strip", z.ZodTypeAny, { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; }, { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; }>, "many">>; }, "strip", z.ZodTypeAny, { all?: { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; }[] | undefined; current?: { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; } | undefined; }, { all?: { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; }[] | undefined; current?: { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; } | undefined; }>>; }, z.ZodTypeAny, "passthrough">[] | undefined; }, { error: string; success: boolean; operation: "people_search"; metadata?: { total: number; offset?: number | undefined; credits?: number | undefined; search_after?: string | undefined; } | undefined; people?: z.objectInputType<{ id: z.ZodOptional; full_name: z.ZodOptional; first_name: z.ZodOptional; last_name: z.ZodOptional; location: z.ZodOptional; region: z.ZodOptional; country: z.ZodOptional; country_code: z.ZodOptional; }, "strip", z.ZodTypeAny, { city?: string | undefined; region?: string | undefined; country?: string | undefined; country_code?: string | undefined; }, { city?: string | undefined; region?: string | undefined; country?: string | undefined; country_code?: string | undefined; }>>; social_profiles: z.ZodOptional; handle: z.ZodOptional; connection_count: z.ZodOptional; }, "strip", z.ZodTypeAny, { url?: string | undefined; handle?: string | undefined; connection_count?: number | undefined; }, { url?: string | undefined; handle?: string | undefined; connection_count?: number | undefined; }>>; }, "strip", z.ZodTypeAny, { linkedin?: { url?: string | undefined; handle?: string | undefined; connection_count?: number | undefined; } | undefined; }, { linkedin?: { url?: string | undefined; handle?: string | undefined; connection_count?: number | undefined; } | undefined; }>>; educations: z.ZodOptional; degree: z.ZodOptional; start_at: z.ZodOptional; end_at: z.ZodOptional; }, "strip", z.ZodTypeAny, { start_at?: string | undefined; end_at?: string | undefined; degree?: string | undefined; school_name?: string | undefined; }, { start_at?: string | undefined; end_at?: string | undefined; degree?: string | undefined; school_name?: string | undefined; }>, "many">>; languages: z.ZodOptional; proficiency: z.ZodOptional; }, "strip", z.ZodTypeAny, { proficiency?: string | undefined; language?: string | undefined; }, { proficiency?: string | undefined; language?: string | undefined; }>, "many">>; skills: z.ZodOptional>; employment: z.ZodOptional; seniority: z.ZodOptional; description: z.ZodOptional; company: z.ZodOptional; name: z.ZodOptional; domain: z.ZodOptional; description: z.ZodOptional; year_founded: z.ZodOptional; headcount: z.ZodOptional; headcount_range: z.ZodOptional; company_type: z.ZodOptional; industry: z.ZodOptional; }, "strip", z.ZodTypeAny, { main_industry?: string | undefined; }, { main_industry?: string | undefined; }>>; }, "strip", z.ZodTypeAny, { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; }, { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; }>>; is_current: z.ZodOptional; start_at: z.ZodOptional; end_at: z.ZodOptional; }, "strip", z.ZodTypeAny, { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; }, { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; }>>; all: z.ZodOptional; seniority: z.ZodOptional; description: z.ZodOptional; company: z.ZodOptional; name: z.ZodOptional; domain: z.ZodOptional; description: z.ZodOptional; year_founded: z.ZodOptional; headcount: z.ZodOptional; headcount_range: z.ZodOptional; company_type: z.ZodOptional; industry: z.ZodOptional; }, "strip", z.ZodTypeAny, { main_industry?: string | undefined; }, { main_industry?: string | undefined; }>>; }, "strip", z.ZodTypeAny, { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; }, { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; }>>; is_current: z.ZodOptional; start_at: z.ZodOptional; end_at: z.ZodOptional; }, "strip", z.ZodTypeAny, { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; }, { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; }>, "many">>; }, "strip", z.ZodTypeAny, { all?: { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; }[] | undefined; current?: { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; } | undefined; }, { all?: { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; }[] | undefined; current?: { description?: string | undefined; title?: string | undefined; start_at?: string | undefined; end_at?: string | undefined; company?: { description?: string | undefined; name?: string | undefined; id?: string | undefined; domain?: string | undefined; industry?: { main_industry?: string | undefined; } | undefined; year_founded?: number | undefined; headcount?: number | undefined; headcount_range?: string | undefined; company_type?: string | undefined; } | undefined; seniority?: string | undefined; is_current?: boolean | undefined; } | undefined; }>>; }, z.ZodTypeAny, "passthrough">[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"company_search">; success: z.ZodBoolean; companies: z.ZodOptional; name: z.ZodOptional; domain: z.ZodOptional; description: z.ZodOptional; year_founded: z.ZodOptional; headcount: z.ZodOptional; headcount_range: z.ZodOptional; company_type: z.ZodOptional; locations: z.ZodOptional; social_profiles: z.ZodOptional; specialties: z.ZodOptional>; industry: z.ZodOptional; }, "passthrough", z.ZodTypeAny, z.objectOutputType<{ id: z.ZodOptional; name: z.ZodOptional; domain: z.ZodOptional; description: z.ZodOptional; year_founded: z.ZodOptional; headcount: z.ZodOptional; headcount_range: z.ZodOptional; company_type: z.ZodOptional; locations: z.ZodOptional; social_profiles: z.ZodOptional; specialties: z.ZodOptional>; industry: z.ZodOptional; }, z.ZodTypeAny, "passthrough">, z.objectInputType<{ id: z.ZodOptional; name: z.ZodOptional; domain: z.ZodOptional; description: z.ZodOptional; year_founded: z.ZodOptional; headcount: z.ZodOptional; headcount_range: z.ZodOptional; company_type: z.ZodOptional; locations: z.ZodOptional; social_profiles: z.ZodOptional; specialties: z.ZodOptional>; industry: z.ZodOptional; }, z.ZodTypeAny, "passthrough">>, "many">>; metadata: z.ZodOptional; offset: z.ZodOptional; search_after: z.ZodOptional; }, "strip", z.ZodTypeAny, { total: number; offset?: number | undefined; credits?: number | undefined; search_after?: string | undefined; }, { total: number; offset?: number | undefined; credits?: number | undefined; search_after?: string | undefined; }>>; error: z.ZodString; }, "strip", z.ZodTypeAny, { error: string; success: boolean; operation: "company_search"; metadata?: { total: number; offset?: number | undefined; credits?: number | undefined; search_after?: string | undefined; } | undefined; companies?: z.objectOutputType<{ id: z.ZodOptional; name: z.ZodOptional; domain: z.ZodOptional; description: z.ZodOptional; year_founded: z.ZodOptional; headcount: z.ZodOptional; headcount_range: z.ZodOptional; company_type: z.ZodOptional; locations: z.ZodOptional; social_profiles: z.ZodOptional; specialties: z.ZodOptional>; industry: z.ZodOptional; }, z.ZodTypeAny, "passthrough">[] | undefined; }, { error: string; success: boolean; operation: "company_search"; metadata?: { total: number; offset?: number | undefined; credits?: number | undefined; search_after?: string | undefined; } | undefined; companies?: z.objectInputType<{ id: z.ZodOptional; name: z.ZodOptional; domain: z.ZodOptional; description: z.ZodOptional; year_founded: z.ZodOptional; headcount: z.ZodOptional; headcount_range: z.ZodOptional; company_type: z.ZodOptional; locations: z.ZodOptional; social_profiles: z.ZodOptional; specialties: z.ZodOptional>; industry: z.ZodOptional; }, z.ZodTypeAny, "passthrough">[] | undefined; }>]>; export type FullEnrichParamsInput = z.input; export type FullEnrichParams = z.output; export type FullEnrichResult = z.output; export type StartBulkEnrichmentParams = Extract; export type GetEnrichmentResultParams = Extract; export type StartReverseEmailLookupParams = Extract; export type GetReverseEmailResultParams = Extract; export type GetCreditBalanceParams = Extract; export type CheckApiKeyParams = Extract; export type PeopleSearchParams = Extract; export type CompanySearchParams = Extract; //# sourceMappingURL=fullenrich.schema.d.ts.map