@pipe0/ops 0.0.8 → 0.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist/fields/field-catalog.d.ts +1496 -0
- package/dist/fields/json-meta/fields/amplemarket-person-match.d.ts +412 -0
- package/dist/fields/json-meta/fields/crustdata-companyenrich-match.d.ts +139 -0
- package/dist/form-generation/fields.d.ts +5 -5
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2542 -876
- package/dist/pipes/catalog/entries/company-identity-2.d.ts +3 -3
- package/dist/pipes/catalog/entries/company-lookalikes-companyenrich-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/company-match-crustdata-1.d.ts +208 -0
- package/dist/pipes/catalog/entries/company-match-logodev-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/company-newssummary-website-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/company-overview-2.d.ts +6 -6
- package/dist/pipes/catalog/entries/company-techstack-builtwith-1.d.ts +6 -6
- package/dist/pipes/catalog/entries/company-websiteurl-email-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/deprecated/company-identity-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/deprecated/company-overview-1.d.ts +6 -6
- package/dist/pipes/catalog/entries/deprecated/people-mobile-number-professional-profile-waterfall-1.d.ts +6 -6
- package/dist/pipes/catalog/entries/deprecated/people-mobile-number-work-email-waterfall-1.d.ts +6 -6
- package/dist/pipes/catalog/entries/deprecated/people-professionalprofile-waterfall-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/deprecated/people-professionalprofileurl-email-waterfall-1.d.ts +6 -6
- package/dist/pipes/catalog/entries/field-domainify-1.d.ts +207 -0
- package/dist/pipes/catalog/entries/field-slugify-1.d.ts +207 -0
- package/dist/pipes/catalog/entries/people-email-iswork-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/people-identity-amplemarket-1.d.ts +208 -0
- package/dist/pipes/catalog/entries/people-match-role-waterfall-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/people-name-join-1.d.ts +6 -6
- package/dist/pipes/catalog/entries/people-name-split-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/people-personalemail-profile-waterfall-1.d.ts +6 -6
- package/dist/pipes/catalog/entries/people-phone-profile-waterfall-1.d.ts +6 -6
- package/dist/pipes/catalog/entries/people-phone-workemail-waterfall-1.d.ts +6 -6
- package/dist/pipes/catalog/entries/people-posts-crustdata-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/people-profile-waterfall-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/people-profile-workemail-curstdata-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/people-profileurl-email-waterfall-1.d.ts +6 -6
- package/dist/pipes/catalog/entries/{sheet-append-1.d.ts → sheet-row-append-1.d.ts} +6 -6
- package/dist/pipes/catalog/entries/sheet-row-append-sheet-1.d.ts +217 -0
- package/dist/pipes/catalog/entries/{sheet-expandappend-1.d.ts → sheet-row-expandappend-1.d.ts} +5 -5
- package/dist/pipes/catalog/pipe.d.ts +688 -3
- package/dist/pipes/catalog/pipes-catalog.d.ts +1925 -301
- package/dist/pipes/catalog/utils/get-pipe-instances.d.ts +2 -2
- package/dist/pipes/catalog/utils/index.d.ts +33 -33
- package/dist/pipes/pipes-validator/transform-into-response.d.ts +5 -0
- package/dist/pipes/providers/provider-catalog.d.ts +12 -0
- package/dist/pipes/providers/provider-utils.d.ts +35 -23
- package/dist/pipes/utils/pipes-utils.d.ts +30 -30
- package/dist/pipes/utils/schemas-primitives.d.ts +107 -27
- package/dist/pipes/utils/sheet-schemas-primitives.d.ts +1042 -62
- package/dist/searches/catalog/searches-catalog.d.ts +30 -6
- package/dist/test/setup.d.ts +1 -0
- package/dist/utils/connection-id.d.ts +1 -1
- package/dist/utils/extend-zod.d.ts +1 -0
- package/dist/utils/schemas.d.ts +11 -2
- package/package.json +5 -5
- package/dist/api/core-client.types.d.ts +0 -9259
|
@@ -2001,6 +2001,41 @@ export declare const fieldCatalog: {
|
|
|
2001
2001
|
readonly description: "Id of a single resend contact";
|
|
2002
2002
|
readonly jsonMeta: null;
|
|
2003
2003
|
};
|
|
2004
|
+
readonly sheet: {
|
|
2005
|
+
readonly label: "Sheet name";
|
|
2006
|
+
readonly type: "string";
|
|
2007
|
+
readonly format: "text";
|
|
2008
|
+
readonly description: "Name of a pipe0 sheet";
|
|
2009
|
+
readonly jsonMeta: null;
|
|
2010
|
+
};
|
|
2011
|
+
readonly string_input: {
|
|
2012
|
+
readonly label: "String input";
|
|
2013
|
+
readonly type: "string";
|
|
2014
|
+
readonly format: "text";
|
|
2015
|
+
readonly description: "Input field of type string";
|
|
2016
|
+
readonly jsonMeta: null;
|
|
2017
|
+
};
|
|
2018
|
+
readonly domain: {
|
|
2019
|
+
readonly label: "Domain";
|
|
2020
|
+
readonly type: "string";
|
|
2021
|
+
readonly format: "text";
|
|
2022
|
+
readonly description: "A domain field.";
|
|
2023
|
+
readonly jsonMeta: null;
|
|
2024
|
+
};
|
|
2025
|
+
readonly url_input: {
|
|
2026
|
+
readonly label: "URL input";
|
|
2027
|
+
readonly type: "string";
|
|
2028
|
+
readonly format: "url";
|
|
2029
|
+
readonly description: "Input field of type string and URL format";
|
|
2030
|
+
readonly jsonMeta: null;
|
|
2031
|
+
};
|
|
2032
|
+
readonly slugified: {
|
|
2033
|
+
readonly label: "Slugified value";
|
|
2034
|
+
readonly type: "string";
|
|
2035
|
+
readonly format: "text";
|
|
2036
|
+
readonly description: "A value that has been stripped of characters not found in slugs.";
|
|
2037
|
+
readonly jsonMeta: null;
|
|
2038
|
+
};
|
|
2004
2039
|
readonly sheet_record_id: {
|
|
2005
2040
|
readonly label: "Record ID";
|
|
2006
2041
|
readonly type: "string";
|
|
@@ -2175,6 +2210,13 @@ export declare const fieldCatalog: {
|
|
|
2175
2210
|
readonly description: "List of unstructured input objects";
|
|
2176
2211
|
readonly jsonMeta: null;
|
|
2177
2212
|
};
|
|
2213
|
+
readonly sheet_created: {
|
|
2214
|
+
readonly label: "Created";
|
|
2215
|
+
readonly type: "boolean";
|
|
2216
|
+
readonly format: null;
|
|
2217
|
+
readonly description: "A boolean indicating if a new sheet was created";
|
|
2218
|
+
readonly jsonMeta: null;
|
|
2219
|
+
};
|
|
2178
2220
|
readonly merge_result: {
|
|
2179
2221
|
readonly label: "Merge Result";
|
|
2180
2222
|
readonly type: "unknown";
|
|
@@ -2746,6 +2788,286 @@ export declare const fieldCatalog: {
|
|
|
2746
2788
|
};
|
|
2747
2789
|
};
|
|
2748
2790
|
};
|
|
2791
|
+
readonly crustdata_companyenrich_match: {
|
|
2792
|
+
readonly label: "Company enrichment match";
|
|
2793
|
+
readonly type: "json";
|
|
2794
|
+
readonly format: "json_object";
|
|
2795
|
+
readonly description: "Crustdata company enrichment match.";
|
|
2796
|
+
readonly jsonMeta: {
|
|
2797
|
+
readonly zodSchema: z.ZodObject<{
|
|
2798
|
+
company_id: z.ZodNumber;
|
|
2799
|
+
company_name: z.ZodString;
|
|
2800
|
+
linkedin_profile_name: z.ZodString;
|
|
2801
|
+
linkedin_profile_url: z.ZodString;
|
|
2802
|
+
crunchbase_profile_url: z.ZodString;
|
|
2803
|
+
crunchbase_profile_uuid: z.ZodString;
|
|
2804
|
+
linkedin_id: z.ZodString;
|
|
2805
|
+
linkedin_logo_url: z.ZodString;
|
|
2806
|
+
linkedin_logo_permalink: z.ZodString;
|
|
2807
|
+
company_twitter_url: z.ZodString;
|
|
2808
|
+
company_website_domain: z.ZodString;
|
|
2809
|
+
domains: z.ZodArray<z.ZodString>;
|
|
2810
|
+
hq_country: z.ZodString;
|
|
2811
|
+
hq_state: z.ZodString;
|
|
2812
|
+
headquarters: z.ZodString;
|
|
2813
|
+
largest_headcount_country: z.ZodString;
|
|
2814
|
+
hq_street_address: z.ZodString;
|
|
2815
|
+
company_website: z.ZodString;
|
|
2816
|
+
year_founded: z.ZodString;
|
|
2817
|
+
fiscal_year_end: z.ZodString;
|
|
2818
|
+
employee_count_range: z.ZodString;
|
|
2819
|
+
company_type: z.ZodString;
|
|
2820
|
+
linkedin_company_description: z.ZodString;
|
|
2821
|
+
acquisition_status: z.ZodString;
|
|
2822
|
+
ipo_date: z.ZodNullable<z.ZodString>;
|
|
2823
|
+
markets: z.ZodArray<z.ZodString>;
|
|
2824
|
+
stock_symbols: z.ZodArray<z.ZodString>;
|
|
2825
|
+
all_office_addresses: z.ZodArray<z.ZodString>;
|
|
2826
|
+
estimated_revenue_lower_bound_usd: z.ZodNumber;
|
|
2827
|
+
estimated_revenue_higher_bound_usd: z.ZodNumber;
|
|
2828
|
+
taxonomy: z.ZodObject<{
|
|
2829
|
+
linkedin_specialities: z.ZodArray<z.ZodString>;
|
|
2830
|
+
linkedin_industry: z.ZodString;
|
|
2831
|
+
linkedin_industries: z.ZodArray<z.ZodString>;
|
|
2832
|
+
crunchbase_categories: z.ZodArray<z.ZodString>;
|
|
2833
|
+
primary_naics_detail: z.ZodObject<{
|
|
2834
|
+
naics_code: z.ZodString;
|
|
2835
|
+
year: z.ZodNumber;
|
|
2836
|
+
sector: z.ZodString;
|
|
2837
|
+
sub_sector: z.ZodString;
|
|
2838
|
+
industry_group: z.ZodString;
|
|
2839
|
+
industry: z.ZodString;
|
|
2840
|
+
}, z.core.$strip>;
|
|
2841
|
+
sic_detail_list: z.ZodArray<z.ZodObject<{
|
|
2842
|
+
sic_code: z.ZodString;
|
|
2843
|
+
year: z.ZodNumber;
|
|
2844
|
+
industry: z.ZodString;
|
|
2845
|
+
}, z.core.$strip>>;
|
|
2846
|
+
}, z.core.$strip>;
|
|
2847
|
+
headcount: z.ZodObject<{
|
|
2848
|
+
linkedin_headcount: z.ZodNumber;
|
|
2849
|
+
linkedin_headcount_total_growth_percent: z.ZodObject<{
|
|
2850
|
+
mom: z.ZodNumber;
|
|
2851
|
+
qoq: z.ZodNumber;
|
|
2852
|
+
six_months: z.ZodNumber;
|
|
2853
|
+
yoy: z.ZodNumber;
|
|
2854
|
+
two_years: z.ZodNumber;
|
|
2855
|
+
}, z.core.$strip>;
|
|
2856
|
+
linkedin_headcount_total_growth_absolute: z.ZodObject<{
|
|
2857
|
+
mom: z.ZodNumber;
|
|
2858
|
+
qoq: z.ZodNumber;
|
|
2859
|
+
six_months: z.ZodNumber;
|
|
2860
|
+
yoy: z.ZodNumber;
|
|
2861
|
+
two_years: z.ZodNumber;
|
|
2862
|
+
}, z.core.$strip>;
|
|
2863
|
+
linkedin_headcount_by_role_absolute: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
2864
|
+
linkedin_headcount_by_role_percent: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
2865
|
+
linkedin_headcount_by_role_six_months_growth_percent: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
2866
|
+
linkedin_headcount_by_role_yoy_growth_percent: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
2867
|
+
linkedin_headcount_by_region_absolute: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
2868
|
+
linkedin_headcount_by_region_percent: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
2869
|
+
linkedin_headcount_by_skill_absolute: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
2870
|
+
linkedin_headcount_by_skill_percent: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
2871
|
+
}, z.core.$strip>;
|
|
2872
|
+
web_traffic: z.ZodObject<{
|
|
2873
|
+
monthly_visitors: z.ZodNumber;
|
|
2874
|
+
monthly_visitor_mom_pct: z.ZodNumber;
|
|
2875
|
+
monthly_visitor_qoq_pct: z.ZodNumber;
|
|
2876
|
+
traffic_source_social_pct: z.ZodNumber;
|
|
2877
|
+
traffic_source_search_pct: z.ZodNumber;
|
|
2878
|
+
traffic_source_direct_pct: z.ZodNumber;
|
|
2879
|
+
traffic_source_paid_referral_pct: z.ZodNumber;
|
|
2880
|
+
traffic_source_referral_pct: z.ZodNumber;
|
|
2881
|
+
}, z.core.$strip>;
|
|
2882
|
+
glassdoor: z.ZodObject<{
|
|
2883
|
+
glassdoor_overall_rating: z.ZodNullable<z.ZodNumber>;
|
|
2884
|
+
glassdoor_ceo_approval_pct: z.ZodNullable<z.ZodNumber>;
|
|
2885
|
+
glassdoor_business_outlook_pct: z.ZodNullable<z.ZodNumber>;
|
|
2886
|
+
glassdoor_review_count: z.ZodNullable<z.ZodNumber>;
|
|
2887
|
+
glassdoor_senior_management_rating: z.ZodNullable<z.ZodNumber>;
|
|
2888
|
+
glassdoor_compensation_rating: z.ZodNullable<z.ZodNumber>;
|
|
2889
|
+
glassdoor_career_opportunities_rating: z.ZodNullable<z.ZodNumber>;
|
|
2890
|
+
glassdoor_culture_rating: z.ZodNullable<z.ZodNumber>;
|
|
2891
|
+
glassdoor_diversity_rating: z.ZodNullable<z.ZodNumber>;
|
|
2892
|
+
glassdoor_work_life_balance_rating: z.ZodNullable<z.ZodNumber>;
|
|
2893
|
+
glassdoor_recommend_to_friend_pct: z.ZodNullable<z.ZodNumber>;
|
|
2894
|
+
glassdoor_ceo_approval_growth_percent: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
2895
|
+
glassdoor_review_count_growth_percent: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
2896
|
+
}, z.core.$strip>;
|
|
2897
|
+
g2: z.ZodObject<{
|
|
2898
|
+
g2_review_count: z.ZodNumber;
|
|
2899
|
+
g2_average_rating: z.ZodNumber;
|
|
2900
|
+
g2_review_count_mom_pct: z.ZodNullable<z.ZodNumber>;
|
|
2901
|
+
g2_review_count_qoq_pct: z.ZodNullable<z.ZodNumber>;
|
|
2902
|
+
g2_review_count_yoy_pct: z.ZodNullable<z.ZodNumber>;
|
|
2903
|
+
}, z.core.$strip>;
|
|
2904
|
+
linkedin_followers: z.ZodObject<{
|
|
2905
|
+
linkedin_followers: z.ZodNumber;
|
|
2906
|
+
linkedin_followers_mom_percent: z.ZodNumber;
|
|
2907
|
+
linkedin_followers_qoq_percent: z.ZodNumber;
|
|
2908
|
+
linkedin_followers_six_months_growth_percent: z.ZodNumber;
|
|
2909
|
+
linkedin_followers_yoy_percent: z.ZodNumber;
|
|
2910
|
+
}, z.core.$strip>;
|
|
2911
|
+
funding_and_investment: z.ZodObject<{
|
|
2912
|
+
crunchbase_total_investment_usd: z.ZodNumber;
|
|
2913
|
+
days_since_last_fundraise: z.ZodNumber;
|
|
2914
|
+
last_funding_round_type: z.ZodString;
|
|
2915
|
+
crunchbase_investors: z.ZodArray<z.ZodString>;
|
|
2916
|
+
last_funding_round_investment_usd: z.ZodNumber;
|
|
2917
|
+
acquired_by: z.ZodArray<z.ZodString>;
|
|
2918
|
+
}, z.core.$strip>;
|
|
2919
|
+
job_openings: z.ZodObject<{
|
|
2920
|
+
recent_job_openings_title: z.ZodString;
|
|
2921
|
+
job_openings_count: z.ZodNumber;
|
|
2922
|
+
job_openings_count_growth_percent: z.ZodObject<{
|
|
2923
|
+
mom: z.ZodNumber;
|
|
2924
|
+
qoq: z.ZodNumber;
|
|
2925
|
+
yoy: z.ZodNumber;
|
|
2926
|
+
}, z.core.$strip>;
|
|
2927
|
+
job_openings_by_function_qoq_pct: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodNumber>>;
|
|
2928
|
+
job_openings_by_function_six_months_growth_pct: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodNumber>>;
|
|
2929
|
+
}, z.core.$strip>;
|
|
2930
|
+
is_full_domain_match: z.ZodBoolean;
|
|
2931
|
+
query_identifier: z.ZodString;
|
|
2932
|
+
}, z.core.$strip>;
|
|
2933
|
+
readonly exampleValue: {
|
|
2934
|
+
company_id: number;
|
|
2935
|
+
company_name: string;
|
|
2936
|
+
linkedin_profile_name: string;
|
|
2937
|
+
linkedin_profile_url: string;
|
|
2938
|
+
crunchbase_profile_url: string;
|
|
2939
|
+
crunchbase_profile_uuid: string;
|
|
2940
|
+
linkedin_id: string;
|
|
2941
|
+
linkedin_logo_url: string;
|
|
2942
|
+
linkedin_logo_permalink: string;
|
|
2943
|
+
company_twitter_url: string;
|
|
2944
|
+
company_website_domain: string;
|
|
2945
|
+
domains: string[];
|
|
2946
|
+
hq_country: string;
|
|
2947
|
+
hq_state: string;
|
|
2948
|
+
headquarters: string;
|
|
2949
|
+
largest_headcount_country: string;
|
|
2950
|
+
hq_street_address: string;
|
|
2951
|
+
company_website: string;
|
|
2952
|
+
year_founded: string;
|
|
2953
|
+
fiscal_year_end: string;
|
|
2954
|
+
employee_count_range: string;
|
|
2955
|
+
company_type: string;
|
|
2956
|
+
linkedin_company_description: string;
|
|
2957
|
+
acquisition_status: string;
|
|
2958
|
+
ipo_date: string | null;
|
|
2959
|
+
markets: string[];
|
|
2960
|
+
stock_symbols: string[];
|
|
2961
|
+
all_office_addresses: string[];
|
|
2962
|
+
estimated_revenue_lower_bound_usd: number;
|
|
2963
|
+
estimated_revenue_higher_bound_usd: number;
|
|
2964
|
+
taxonomy: {
|
|
2965
|
+
linkedin_specialities: string[];
|
|
2966
|
+
linkedin_industry: string;
|
|
2967
|
+
linkedin_industries: string[];
|
|
2968
|
+
crunchbase_categories: string[];
|
|
2969
|
+
primary_naics_detail: {
|
|
2970
|
+
naics_code: string;
|
|
2971
|
+
year: number;
|
|
2972
|
+
sector: string;
|
|
2973
|
+
sub_sector: string;
|
|
2974
|
+
industry_group: string;
|
|
2975
|
+
industry: string;
|
|
2976
|
+
};
|
|
2977
|
+
sic_detail_list: {
|
|
2978
|
+
sic_code: string;
|
|
2979
|
+
year: number;
|
|
2980
|
+
industry: string;
|
|
2981
|
+
}[];
|
|
2982
|
+
};
|
|
2983
|
+
headcount: {
|
|
2984
|
+
linkedin_headcount: number;
|
|
2985
|
+
linkedin_headcount_total_growth_percent: {
|
|
2986
|
+
mom: number;
|
|
2987
|
+
qoq: number;
|
|
2988
|
+
six_months: number;
|
|
2989
|
+
yoy: number;
|
|
2990
|
+
two_years: number;
|
|
2991
|
+
};
|
|
2992
|
+
linkedin_headcount_total_growth_absolute: {
|
|
2993
|
+
mom: number;
|
|
2994
|
+
qoq: number;
|
|
2995
|
+
six_months: number;
|
|
2996
|
+
yoy: number;
|
|
2997
|
+
two_years: number;
|
|
2998
|
+
};
|
|
2999
|
+
linkedin_headcount_by_role_absolute: Record<string, number>;
|
|
3000
|
+
linkedin_headcount_by_role_percent: Record<string, number>;
|
|
3001
|
+
linkedin_headcount_by_role_six_months_growth_percent: Record<string, number>;
|
|
3002
|
+
linkedin_headcount_by_role_yoy_growth_percent: Record<string, number>;
|
|
3003
|
+
linkedin_headcount_by_region_absolute: Record<string, number>;
|
|
3004
|
+
linkedin_headcount_by_region_percent: Record<string, number>;
|
|
3005
|
+
linkedin_headcount_by_skill_absolute: Record<string, number>;
|
|
3006
|
+
linkedin_headcount_by_skill_percent: Record<string, number>;
|
|
3007
|
+
};
|
|
3008
|
+
web_traffic: {
|
|
3009
|
+
monthly_visitors: number;
|
|
3010
|
+
monthly_visitor_mom_pct: number;
|
|
3011
|
+
monthly_visitor_qoq_pct: number;
|
|
3012
|
+
traffic_source_social_pct: number;
|
|
3013
|
+
traffic_source_search_pct: number;
|
|
3014
|
+
traffic_source_direct_pct: number;
|
|
3015
|
+
traffic_source_paid_referral_pct: number;
|
|
3016
|
+
traffic_source_referral_pct: number;
|
|
3017
|
+
};
|
|
3018
|
+
glassdoor: {
|
|
3019
|
+
glassdoor_overall_rating: number | null;
|
|
3020
|
+
glassdoor_ceo_approval_pct: number | null;
|
|
3021
|
+
glassdoor_business_outlook_pct: number | null;
|
|
3022
|
+
glassdoor_review_count: number | null;
|
|
3023
|
+
glassdoor_senior_management_rating: number | null;
|
|
3024
|
+
glassdoor_compensation_rating: number | null;
|
|
3025
|
+
glassdoor_career_opportunities_rating: number | null;
|
|
3026
|
+
glassdoor_culture_rating: number | null;
|
|
3027
|
+
glassdoor_diversity_rating: number | null;
|
|
3028
|
+
glassdoor_work_life_balance_rating: number | null;
|
|
3029
|
+
glassdoor_recommend_to_friend_pct: number | null;
|
|
3030
|
+
glassdoor_ceo_approval_growth_percent: Record<string, number>;
|
|
3031
|
+
glassdoor_review_count_growth_percent: Record<string, number>;
|
|
3032
|
+
};
|
|
3033
|
+
g2: {
|
|
3034
|
+
g2_review_count: number;
|
|
3035
|
+
g2_average_rating: number;
|
|
3036
|
+
g2_review_count_mom_pct: number | null;
|
|
3037
|
+
g2_review_count_qoq_pct: number | null;
|
|
3038
|
+
g2_review_count_yoy_pct: number | null;
|
|
3039
|
+
};
|
|
3040
|
+
linkedin_followers: {
|
|
3041
|
+
linkedin_followers: number;
|
|
3042
|
+
linkedin_followers_mom_percent: number;
|
|
3043
|
+
linkedin_followers_qoq_percent: number;
|
|
3044
|
+
linkedin_followers_six_months_growth_percent: number;
|
|
3045
|
+
linkedin_followers_yoy_percent: number;
|
|
3046
|
+
};
|
|
3047
|
+
funding_and_investment: {
|
|
3048
|
+
crunchbase_total_investment_usd: number;
|
|
3049
|
+
days_since_last_fundraise: number;
|
|
3050
|
+
last_funding_round_type: string;
|
|
3051
|
+
crunchbase_investors: string[];
|
|
3052
|
+
last_funding_round_investment_usd: number;
|
|
3053
|
+
acquired_by: string[];
|
|
3054
|
+
};
|
|
3055
|
+
job_openings: {
|
|
3056
|
+
recent_job_openings_title: string;
|
|
3057
|
+
job_openings_count: number;
|
|
3058
|
+
job_openings_count_growth_percent: {
|
|
3059
|
+
mom: number;
|
|
3060
|
+
qoq: number;
|
|
3061
|
+
yoy: number;
|
|
3062
|
+
};
|
|
3063
|
+
job_openings_by_function_qoq_pct: Record<string, number | null>;
|
|
3064
|
+
job_openings_by_function_six_months_growth_pct: Record<string, number | null>;
|
|
3065
|
+
};
|
|
3066
|
+
is_full_domain_match: boolean;
|
|
3067
|
+
query_identifier: string;
|
|
3068
|
+
};
|
|
3069
|
+
};
|
|
3070
|
+
};
|
|
2749
3071
|
readonly post_list_string: {
|
|
2750
3072
|
readonly label: "Post list";
|
|
2751
3073
|
readonly type: "json";
|
|
@@ -2836,6 +3158,425 @@ export declare const fieldCatalog: {
|
|
|
2836
3158
|
};
|
|
2837
3159
|
};
|
|
2838
3160
|
};
|
|
3161
|
+
readonly amplemarket_person_match: {
|
|
3162
|
+
readonly label: "Person match";
|
|
3163
|
+
readonly type: "json";
|
|
3164
|
+
readonly format: "json_object";
|
|
3165
|
+
readonly description: "Person match object as returned by Amplemarket";
|
|
3166
|
+
readonly jsonMeta: {
|
|
3167
|
+
readonly zodSchema: z.ZodObject<{
|
|
3168
|
+
id: z.ZodString;
|
|
3169
|
+
object: z.ZodLiteral<"person">;
|
|
3170
|
+
name: z.ZodString;
|
|
3171
|
+
first_name: z.ZodString;
|
|
3172
|
+
last_name: z.ZodString;
|
|
3173
|
+
linkedin_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3174
|
+
title: z.ZodNullable<z.ZodString>;
|
|
3175
|
+
headline: z.ZodNullable<z.ZodString>;
|
|
3176
|
+
about: z.ZodNullable<z.ZodString>;
|
|
3177
|
+
current_position_start_date: z.ZodNullable<z.ZodString>;
|
|
3178
|
+
current_position_description: z.ZodNullable<z.ZodString>;
|
|
3179
|
+
image_url: z.ZodNullable<z.ZodString>;
|
|
3180
|
+
location: z.ZodNullable<z.ZodString>;
|
|
3181
|
+
location_details: z.ZodNullable<z.ZodObject<{
|
|
3182
|
+
city: z.ZodNullable<z.ZodString>;
|
|
3183
|
+
state: z.ZodNullable<z.ZodString>;
|
|
3184
|
+
country: z.ZodNullable<z.ZodString>;
|
|
3185
|
+
lat: z.ZodNullable<z.ZodNumber>;
|
|
3186
|
+
long: z.ZodNullable<z.ZodNumber>;
|
|
3187
|
+
}, z.core.$strip>>;
|
|
3188
|
+
experiences: z.ZodArray<z.ZodObject<{
|
|
3189
|
+
object: z.ZodLiteral<"experience">;
|
|
3190
|
+
title: z.ZodNullable<z.ZodString>;
|
|
3191
|
+
company_name: z.ZodNullable<z.ZodString>;
|
|
3192
|
+
company_linkedin_url: z.ZodNullable<z.ZodString>;
|
|
3193
|
+
start_date: z.ZodNullable<z.ZodString>;
|
|
3194
|
+
end_date: z.ZodNullable<z.ZodString>;
|
|
3195
|
+
}, z.core.$strip>>;
|
|
3196
|
+
educations: z.ZodArray<z.ZodObject<{
|
|
3197
|
+
object: z.ZodLiteral<"education">;
|
|
3198
|
+
degree: z.ZodNullable<z.ZodString>;
|
|
3199
|
+
field_of_study: z.ZodNullable<z.ZodString>;
|
|
3200
|
+
school_name: z.ZodNullable<z.ZodString>;
|
|
3201
|
+
school_linkedin_url: z.ZodNullable<z.ZodString>;
|
|
3202
|
+
start_date: z.ZodNullable<z.ZodString>;
|
|
3203
|
+
end_date: z.ZodNullable<z.ZodString>;
|
|
3204
|
+
}, z.core.$strip>>;
|
|
3205
|
+
languages: z.ZodArray<z.ZodObject<{
|
|
3206
|
+
object: z.ZodLiteral<"language">;
|
|
3207
|
+
language: z.ZodString;
|
|
3208
|
+
iso_code: z.ZodString;
|
|
3209
|
+
proficiency: z.ZodNullable<z.ZodString>;
|
|
3210
|
+
}, z.core.$strip>>;
|
|
3211
|
+
company: z.ZodNullable<z.ZodObject<{
|
|
3212
|
+
id: z.ZodString;
|
|
3213
|
+
object: z.ZodLiteral<"company">;
|
|
3214
|
+
name: z.ZodString;
|
|
3215
|
+
website: z.ZodNullable<z.ZodString>;
|
|
3216
|
+
linkedin_url: z.ZodNullable<z.ZodString>;
|
|
3217
|
+
keywords: z.ZodArray<z.ZodString>;
|
|
3218
|
+
estimated_number_of_employees: z.ZodNullable<z.ZodNumber>;
|
|
3219
|
+
size: z.ZodNullable<z.ZodString>;
|
|
3220
|
+
industry: z.ZodNullable<z.ZodString>;
|
|
3221
|
+
logo_url: z.ZodNullable<z.ZodString>;
|
|
3222
|
+
location: z.ZodNullable<z.ZodString>;
|
|
3223
|
+
location_details: z.ZodNullable<z.ZodObject<{
|
|
3224
|
+
city: z.ZodNullable<z.ZodString>;
|
|
3225
|
+
state: z.ZodNullable<z.ZodString>;
|
|
3226
|
+
country: z.ZodNullable<z.ZodString>;
|
|
3227
|
+
postal_code: z.ZodNullable<z.ZodString>;
|
|
3228
|
+
lat: z.ZodNullable<z.ZodNumber>;
|
|
3229
|
+
long: z.ZodNullable<z.ZodNumber>;
|
|
3230
|
+
}, z.core.$strip>>;
|
|
3231
|
+
locations: z.ZodArray<z.ZodUnknown>;
|
|
3232
|
+
overview: z.ZodNullable<z.ZodString>;
|
|
3233
|
+
followers: z.ZodNullable<z.ZodNumber>;
|
|
3234
|
+
founded_year: z.ZodNullable<z.ZodNumber>;
|
|
3235
|
+
traffic_rank: z.ZodNullable<z.ZodNumber>;
|
|
3236
|
+
sic_codes: z.ZodArray<z.ZodNumber>;
|
|
3237
|
+
naics_codes: z.ZodArray<z.ZodNumber>;
|
|
3238
|
+
type: z.ZodNullable<z.ZodString>;
|
|
3239
|
+
total_funding: z.ZodNullable<z.ZodNumber>;
|
|
3240
|
+
latest_funding_stage: z.ZodNullable<z.ZodString>;
|
|
3241
|
+
latest_funding_date: z.ZodNullable<z.ZodString>;
|
|
3242
|
+
is_b2b: z.ZodNullable<z.ZodBoolean>;
|
|
3243
|
+
is_b2c: z.ZodNullable<z.ZodBoolean>;
|
|
3244
|
+
technologies: z.ZodArray<z.ZodUnknown>;
|
|
3245
|
+
department_headcount: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
3246
|
+
job_function_headcount: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
3247
|
+
estimated_revenue: z.ZodNullable<z.ZodString>;
|
|
3248
|
+
}, z.core.$strip>>;
|
|
3249
|
+
gender: z.ZodNullable<z.ZodString>;
|
|
3250
|
+
}, z.core.$strip>;
|
|
3251
|
+
readonly exampleValue: {
|
|
3252
|
+
id: string;
|
|
3253
|
+
object: string;
|
|
3254
|
+
name: string;
|
|
3255
|
+
first_name: string;
|
|
3256
|
+
last_name: string;
|
|
3257
|
+
linkedin_url: string;
|
|
3258
|
+
title: string;
|
|
3259
|
+
headline: string;
|
|
3260
|
+
about: null;
|
|
3261
|
+
current_position_start_date: string;
|
|
3262
|
+
current_position_description: null;
|
|
3263
|
+
image_url: string;
|
|
3264
|
+
location: string;
|
|
3265
|
+
location_details: {
|
|
3266
|
+
city: string;
|
|
3267
|
+
state: string;
|
|
3268
|
+
country: string;
|
|
3269
|
+
lat: number;
|
|
3270
|
+
long: number;
|
|
3271
|
+
};
|
|
3272
|
+
experiences: {
|
|
3273
|
+
object: string;
|
|
3274
|
+
title: string;
|
|
3275
|
+
company_name: string;
|
|
3276
|
+
company_linkedin_url: string;
|
|
3277
|
+
start_date: string;
|
|
3278
|
+
end_date: null;
|
|
3279
|
+
}[];
|
|
3280
|
+
educations: {
|
|
3281
|
+
object: string;
|
|
3282
|
+
degree: string;
|
|
3283
|
+
field_of_study: string;
|
|
3284
|
+
school_name: string;
|
|
3285
|
+
school_linkedin_url: string;
|
|
3286
|
+
start_date: string;
|
|
3287
|
+
end_date: string;
|
|
3288
|
+
}[];
|
|
3289
|
+
languages: ({
|
|
3290
|
+
object: string;
|
|
3291
|
+
language: string;
|
|
3292
|
+
iso_code: string;
|
|
3293
|
+
proficiency: string;
|
|
3294
|
+
} | {
|
|
3295
|
+
object: string;
|
|
3296
|
+
language: string;
|
|
3297
|
+
iso_code: string;
|
|
3298
|
+
proficiency: null;
|
|
3299
|
+
})[];
|
|
3300
|
+
company: {
|
|
3301
|
+
id: string;
|
|
3302
|
+
object: string;
|
|
3303
|
+
name: string;
|
|
3304
|
+
website: string;
|
|
3305
|
+
linkedin_url: string;
|
|
3306
|
+
keywords: string[];
|
|
3307
|
+
estimated_number_of_employees: number;
|
|
3308
|
+
size: string;
|
|
3309
|
+
industry: string;
|
|
3310
|
+
logo_url: string;
|
|
3311
|
+
location: string;
|
|
3312
|
+
location_details: {
|
|
3313
|
+
city: string;
|
|
3314
|
+
state: string;
|
|
3315
|
+
country: string;
|
|
3316
|
+
postal_code: string;
|
|
3317
|
+
lat: number;
|
|
3318
|
+
long: number;
|
|
3319
|
+
};
|
|
3320
|
+
locations: never[];
|
|
3321
|
+
overview: string;
|
|
3322
|
+
followers: number;
|
|
3323
|
+
founded_year: number;
|
|
3324
|
+
traffic_rank: number;
|
|
3325
|
+
sic_codes: number[];
|
|
3326
|
+
naics_codes: number[];
|
|
3327
|
+
type: string;
|
|
3328
|
+
total_funding: number;
|
|
3329
|
+
latest_funding_stage: string;
|
|
3330
|
+
latest_funding_date: string;
|
|
3331
|
+
is_b2b: boolean;
|
|
3332
|
+
is_b2c: boolean;
|
|
3333
|
+
technologies: never[];
|
|
3334
|
+
department_headcount: {
|
|
3335
|
+
consulting: number;
|
|
3336
|
+
design: number;
|
|
3337
|
+
education: number;
|
|
3338
|
+
engineering_technical: number;
|
|
3339
|
+
finance: number;
|
|
3340
|
+
human_resources: number;
|
|
3341
|
+
information_technology: number;
|
|
3342
|
+
legal: number;
|
|
3343
|
+
marketing: number;
|
|
3344
|
+
medical_health: number;
|
|
3345
|
+
operations: number;
|
|
3346
|
+
product: number;
|
|
3347
|
+
revenue: number;
|
|
3348
|
+
senior_leadership: number;
|
|
3349
|
+
};
|
|
3350
|
+
job_function_headcount: {
|
|
3351
|
+
finance: {
|
|
3352
|
+
accounting: number;
|
|
3353
|
+
finance: number;
|
|
3354
|
+
financial_planning_analysis: number;
|
|
3355
|
+
financial_reporting: number;
|
|
3356
|
+
financial_risk: number;
|
|
3357
|
+
financial_strategy: number;
|
|
3358
|
+
financial_systems: number;
|
|
3359
|
+
internal_audit_control: number;
|
|
3360
|
+
investor_relations: number;
|
|
3361
|
+
mergers_acquisitions: number;
|
|
3362
|
+
real_estate_finance: number;
|
|
3363
|
+
shared_services: number;
|
|
3364
|
+
sourcing_procurement: number;
|
|
3365
|
+
tax: number;
|
|
3366
|
+
treasury: number;
|
|
3367
|
+
};
|
|
3368
|
+
legal: {
|
|
3369
|
+
acquisitions: number;
|
|
3370
|
+
compliance: number;
|
|
3371
|
+
contracts: number;
|
|
3372
|
+
corporate_secretary: number;
|
|
3373
|
+
ediscovery: number;
|
|
3374
|
+
ethics: number;
|
|
3375
|
+
governance: number;
|
|
3376
|
+
governmental_affairs_regulatory_law: number;
|
|
3377
|
+
intellectual_property_patent: number;
|
|
3378
|
+
labor_employment: number;
|
|
3379
|
+
lawyer_attorney: number;
|
|
3380
|
+
legal: number;
|
|
3381
|
+
legal_counsel: number;
|
|
3382
|
+
legal_operations: number;
|
|
3383
|
+
litigation: number;
|
|
3384
|
+
privacy: number;
|
|
3385
|
+
};
|
|
3386
|
+
revenue: {
|
|
3387
|
+
account_management: number;
|
|
3388
|
+
business_development: number;
|
|
3389
|
+
channel_sales: number;
|
|
3390
|
+
customer_retention_development: number;
|
|
3391
|
+
customer_success: number;
|
|
3392
|
+
field_outside_sales: number;
|
|
3393
|
+
inside_sales: number;
|
|
3394
|
+
partnerships: number;
|
|
3395
|
+
revenue_operations: number;
|
|
3396
|
+
sales: number;
|
|
3397
|
+
sales_enablement: number;
|
|
3398
|
+
sales_engineering: number;
|
|
3399
|
+
sales_operations: number;
|
|
3400
|
+
sales_training: number;
|
|
3401
|
+
};
|
|
3402
|
+
engineering_technical: {
|
|
3403
|
+
artificial_intelligence_machine_learning: number;
|
|
3404
|
+
bioengineering_biometrics: number;
|
|
3405
|
+
business_intelligence: number;
|
|
3406
|
+
chemical_engineering: number;
|
|
3407
|
+
cloud_mobility: number;
|
|
3408
|
+
data_science: number;
|
|
3409
|
+
devops: number;
|
|
3410
|
+
digital_transformation: number;
|
|
3411
|
+
emerging_technology_innovation: number;
|
|
3412
|
+
engineering_technical: number;
|
|
3413
|
+
industrial_engineering: number;
|
|
3414
|
+
mechanic: number;
|
|
3415
|
+
mobile_development: number;
|
|
3416
|
+
project_management: number;
|
|
3417
|
+
research_development: number;
|
|
3418
|
+
scrum_master_agile_coach: number;
|
|
3419
|
+
software_development: number;
|
|
3420
|
+
support_technical_services: number;
|
|
3421
|
+
technician: number;
|
|
3422
|
+
technology_operations: number;
|
|
3423
|
+
test_quality_assurance: number;
|
|
3424
|
+
ui_ux: number;
|
|
3425
|
+
web_development: number;
|
|
3426
|
+
};
|
|
3427
|
+
operations: {
|
|
3428
|
+
call_center: number;
|
|
3429
|
+
construction: number;
|
|
3430
|
+
corporate_strategy: number;
|
|
3431
|
+
customer_service_support: number;
|
|
3432
|
+
enterprise_resource_planning: number;
|
|
3433
|
+
facilities_management: number;
|
|
3434
|
+
leasing: number;
|
|
3435
|
+
logistics: number;
|
|
3436
|
+
office_operations: number;
|
|
3437
|
+
operations: number;
|
|
3438
|
+
physical_security: number;
|
|
3439
|
+
project_development: number;
|
|
3440
|
+
quality_management: number;
|
|
3441
|
+
real_estate: number;
|
|
3442
|
+
safety: number;
|
|
3443
|
+
store_operations: number;
|
|
3444
|
+
supply_chain: number;
|
|
3445
|
+
};
|
|
3446
|
+
senior_leadership: {
|
|
3447
|
+
executive: number;
|
|
3448
|
+
finance_executive: number;
|
|
3449
|
+
founder: number;
|
|
3450
|
+
human_resources_executive: number;
|
|
3451
|
+
information_technology_executive: number;
|
|
3452
|
+
legal_executive: number;
|
|
3453
|
+
marketing_executive: number;
|
|
3454
|
+
medical_health_executive: number;
|
|
3455
|
+
operations_executive: number;
|
|
3456
|
+
sales_executive: number;
|
|
3457
|
+
};
|
|
3458
|
+
medical_health: {
|
|
3459
|
+
anesthesiology: number;
|
|
3460
|
+
chiropractics: number;
|
|
3461
|
+
clinical_systems: number;
|
|
3462
|
+
dentistry: number;
|
|
3463
|
+
dermatology: number;
|
|
3464
|
+
doctors_physicians: number;
|
|
3465
|
+
epidemiology: number;
|
|
3466
|
+
first_responder: number;
|
|
3467
|
+
medical_administration: number;
|
|
3468
|
+
medical_education_training: number;
|
|
3469
|
+
medical_research: number;
|
|
3470
|
+
medicine: number;
|
|
3471
|
+
neurology: number;
|
|
3472
|
+
nursing: number;
|
|
3473
|
+
nutrition_dietetics: number;
|
|
3474
|
+
obstetrics_gynecology: number;
|
|
3475
|
+
oncology: number;
|
|
3476
|
+
ophthalmology: number;
|
|
3477
|
+
optometry: number;
|
|
3478
|
+
orthopedics: number;
|
|
3479
|
+
pathology: number;
|
|
3480
|
+
pediatrics: number;
|
|
3481
|
+
pharmacy: number;
|
|
3482
|
+
physical_therapy: number;
|
|
3483
|
+
psychiatry: number;
|
|
3484
|
+
psychology: number;
|
|
3485
|
+
public_health: number;
|
|
3486
|
+
radiology: number;
|
|
3487
|
+
social_work: number;
|
|
3488
|
+
};
|
|
3489
|
+
information_technology: {
|
|
3490
|
+
application_development: number;
|
|
3491
|
+
business_service_management_itsm: number;
|
|
3492
|
+
collaboration_web_app: number;
|
|
3493
|
+
data_center: number;
|
|
3494
|
+
data_warehouse: number;
|
|
3495
|
+
database_administration: number;
|
|
3496
|
+
ecommerce_development: number;
|
|
3497
|
+
enterprise_architecture: number;
|
|
3498
|
+
help_desk_desktop_services: number;
|
|
3499
|
+
hr_financial_erp_systems: number;
|
|
3500
|
+
information_security: number;
|
|
3501
|
+
information_technology: number;
|
|
3502
|
+
infrastructure: number;
|
|
3503
|
+
it_asset_management: number;
|
|
3504
|
+
it_audit_it_compliance: number;
|
|
3505
|
+
it_operations: number;
|
|
3506
|
+
it_procurement: number;
|
|
3507
|
+
it_strategy: number;
|
|
3508
|
+
it_training: number;
|
|
3509
|
+
networking: number;
|
|
3510
|
+
project_program_management: number;
|
|
3511
|
+
quality_assurance: number;
|
|
3512
|
+
retail_store_systems: number;
|
|
3513
|
+
servers: number;
|
|
3514
|
+
storage_disaster_recovery: number;
|
|
3515
|
+
telecommunications: number;
|
|
3516
|
+
virtualization: number;
|
|
3517
|
+
};
|
|
3518
|
+
education: {
|
|
3519
|
+
principal: number;
|
|
3520
|
+
professor: number;
|
|
3521
|
+
superintendent: number;
|
|
3522
|
+
teacher: number;
|
|
3523
|
+
};
|
|
3524
|
+
marketing: {
|
|
3525
|
+
advertising: number;
|
|
3526
|
+
brand_management: number;
|
|
3527
|
+
content_marketing: number;
|
|
3528
|
+
customer_experience: number;
|
|
3529
|
+
customer_marketing: number;
|
|
3530
|
+
demand_generation: number;
|
|
3531
|
+
digital_marketing: number;
|
|
3532
|
+
ecommerce_marketing: number;
|
|
3533
|
+
event_marketing: number;
|
|
3534
|
+
field_marketing: number;
|
|
3535
|
+
lead_generation: number;
|
|
3536
|
+
marketing: number;
|
|
3537
|
+
marketing_analytics_insights: number;
|
|
3538
|
+
marketing_communications: number;
|
|
3539
|
+
marketing_operations: number;
|
|
3540
|
+
product_marketing: number;
|
|
3541
|
+
public_relations: number;
|
|
3542
|
+
search_engine_optimization_pay_per_click: number;
|
|
3543
|
+
social_media_marketing: number;
|
|
3544
|
+
strategic_communications: number;
|
|
3545
|
+
technical_marketing: number;
|
|
3546
|
+
};
|
|
3547
|
+
consulting: {
|
|
3548
|
+
consultant: number;
|
|
3549
|
+
};
|
|
3550
|
+
human_resources: {
|
|
3551
|
+
compensation_benefits: number;
|
|
3552
|
+
culture_diversity_inclusion: number;
|
|
3553
|
+
employee_labor_relations: number;
|
|
3554
|
+
health_safety: number;
|
|
3555
|
+
hr_business_partner: number;
|
|
3556
|
+
human_resource_information_system: number;
|
|
3557
|
+
human_resources: number;
|
|
3558
|
+
learning_development: number;
|
|
3559
|
+
organizational_development: number;
|
|
3560
|
+
people_operations: number;
|
|
3561
|
+
recruiting_talent_acquisition: number;
|
|
3562
|
+
talent_management: number;
|
|
3563
|
+
workforce_management: number;
|
|
3564
|
+
};
|
|
3565
|
+
design: {
|
|
3566
|
+
graphic_visual_brand_design: number;
|
|
3567
|
+
product_or_ui_ux_design: number;
|
|
3568
|
+
};
|
|
3569
|
+
product: {
|
|
3570
|
+
product_development: number;
|
|
3571
|
+
product_management: number;
|
|
3572
|
+
};
|
|
3573
|
+
};
|
|
3574
|
+
estimated_revenue: string;
|
|
3575
|
+
};
|
|
3576
|
+
gender: string;
|
|
3577
|
+
};
|
|
3578
|
+
};
|
|
3579
|
+
};
|
|
2839
3580
|
readonly companyenrich_matches: {
|
|
2840
3581
|
readonly label: "CompanyEnrich matches";
|
|
2841
3582
|
readonly type: "json";
|
|
@@ -3314,6 +4055,10 @@ export declare const fieldBehaviorCatalog: {
|
|
|
3314
4055
|
ip_address: {};
|
|
3315
4056
|
skills: {};
|
|
3316
4057
|
avatar_url: {};
|
|
4058
|
+
string_input: {};
|
|
4059
|
+
domain: {};
|
|
4060
|
+
url_input: {};
|
|
4061
|
+
slugified: {};
|
|
3317
4062
|
estimated_salary: {};
|
|
3318
4063
|
scrape_list_response: {};
|
|
3319
4064
|
clado_person_match: {
|
|
@@ -3343,6 +4088,13 @@ export declare const fieldBehaviorCatalog: {
|
|
|
3343
4088
|
};
|
|
3344
4089
|
crustdata_profile_match_score: {};
|
|
3345
4090
|
is_email_valid: {};
|
|
4091
|
+
amplemarket_person_match: {
|
|
4092
|
+
getStaticWidgets(): {
|
|
4093
|
+
display_value: {
|
|
4094
|
+
label: string;
|
|
4095
|
+
};
|
|
4096
|
+
};
|
|
4097
|
+
};
|
|
3346
4098
|
profile_url: {
|
|
3347
4099
|
getStaticWidgets(v: string | number | boolean | Record<string, unknown> | unknown[] | null): {
|
|
3348
4100
|
display_value: {
|
|
@@ -3499,6 +4251,7 @@ export declare const fieldBehaviorCatalog: {
|
|
|
3499
4251
|
companyenrich_matches: {};
|
|
3500
4252
|
input_objects: {};
|
|
3501
4253
|
role_finder_match: {};
|
|
4254
|
+
sheet: {};
|
|
3502
4255
|
logodev_describe_match: {
|
|
3503
4256
|
getStaticWidgets(): {
|
|
3504
4257
|
display_value: {
|
|
@@ -3514,8 +4267,10 @@ export declare const fieldBehaviorCatalog: {
|
|
|
3514
4267
|
};
|
|
3515
4268
|
};
|
|
3516
4269
|
mobile_number: {};
|
|
4270
|
+
sheet_created: {};
|
|
3517
4271
|
professional_profile: {};
|
|
3518
4272
|
professional_profile_url: {};
|
|
4273
|
+
crustdata_companyenrich_match: {};
|
|
3519
4274
|
template_output: {};
|
|
3520
4275
|
zerobounce_validation_match: {};
|
|
3521
4276
|
zerobounce_validation_status: {
|
|
@@ -5523,6 +6278,41 @@ export declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
5523
6278
|
readonly description: "Id of a single resend contact";
|
|
5524
6279
|
readonly jsonMeta: null;
|
|
5525
6280
|
};
|
|
6281
|
+
readonly sheet: {
|
|
6282
|
+
readonly label: "Sheet name";
|
|
6283
|
+
readonly type: "string";
|
|
6284
|
+
readonly format: "text";
|
|
6285
|
+
readonly description: "Name of a pipe0 sheet";
|
|
6286
|
+
readonly jsonMeta: null;
|
|
6287
|
+
};
|
|
6288
|
+
readonly string_input: {
|
|
6289
|
+
readonly label: "String input";
|
|
6290
|
+
readonly type: "string";
|
|
6291
|
+
readonly format: "text";
|
|
6292
|
+
readonly description: "Input field of type string";
|
|
6293
|
+
readonly jsonMeta: null;
|
|
6294
|
+
};
|
|
6295
|
+
readonly domain: {
|
|
6296
|
+
readonly label: "Domain";
|
|
6297
|
+
readonly type: "string";
|
|
6298
|
+
readonly format: "text";
|
|
6299
|
+
readonly description: "A domain field.";
|
|
6300
|
+
readonly jsonMeta: null;
|
|
6301
|
+
};
|
|
6302
|
+
readonly url_input: {
|
|
6303
|
+
readonly label: "URL input";
|
|
6304
|
+
readonly type: "string";
|
|
6305
|
+
readonly format: "url";
|
|
6306
|
+
readonly description: "Input field of type string and URL format";
|
|
6307
|
+
readonly jsonMeta: null;
|
|
6308
|
+
};
|
|
6309
|
+
readonly slugified: {
|
|
6310
|
+
readonly label: "Slugified value";
|
|
6311
|
+
readonly type: "string";
|
|
6312
|
+
readonly format: "text";
|
|
6313
|
+
readonly description: "A value that has been stripped of characters not found in slugs.";
|
|
6314
|
+
readonly jsonMeta: null;
|
|
6315
|
+
};
|
|
5526
6316
|
readonly sheet_record_id: {
|
|
5527
6317
|
readonly label: "Record ID";
|
|
5528
6318
|
readonly type: "string";
|
|
@@ -5697,6 +6487,13 @@ export declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
5697
6487
|
readonly description: "List of unstructured input objects";
|
|
5698
6488
|
readonly jsonMeta: null;
|
|
5699
6489
|
};
|
|
6490
|
+
readonly sheet_created: {
|
|
6491
|
+
readonly label: "Created";
|
|
6492
|
+
readonly type: "boolean";
|
|
6493
|
+
readonly format: null;
|
|
6494
|
+
readonly description: "A boolean indicating if a new sheet was created";
|
|
6495
|
+
readonly jsonMeta: null;
|
|
6496
|
+
};
|
|
5700
6497
|
readonly merge_result: {
|
|
5701
6498
|
readonly label: "Merge Result";
|
|
5702
6499
|
readonly type: "unknown";
|
|
@@ -6268,6 +7065,286 @@ export declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
6268
7065
|
};
|
|
6269
7066
|
};
|
|
6270
7067
|
};
|
|
7068
|
+
readonly crustdata_companyenrich_match: {
|
|
7069
|
+
readonly label: "Company enrichment match";
|
|
7070
|
+
readonly type: "json";
|
|
7071
|
+
readonly format: "json_object";
|
|
7072
|
+
readonly description: "Crustdata company enrichment match.";
|
|
7073
|
+
readonly jsonMeta: {
|
|
7074
|
+
readonly zodSchema: z.ZodObject<{
|
|
7075
|
+
company_id: z.ZodNumber;
|
|
7076
|
+
company_name: z.ZodString;
|
|
7077
|
+
linkedin_profile_name: z.ZodString;
|
|
7078
|
+
linkedin_profile_url: z.ZodString;
|
|
7079
|
+
crunchbase_profile_url: z.ZodString;
|
|
7080
|
+
crunchbase_profile_uuid: z.ZodString;
|
|
7081
|
+
linkedin_id: z.ZodString;
|
|
7082
|
+
linkedin_logo_url: z.ZodString;
|
|
7083
|
+
linkedin_logo_permalink: z.ZodString;
|
|
7084
|
+
company_twitter_url: z.ZodString;
|
|
7085
|
+
company_website_domain: z.ZodString;
|
|
7086
|
+
domains: z.ZodArray<z.ZodString>;
|
|
7087
|
+
hq_country: z.ZodString;
|
|
7088
|
+
hq_state: z.ZodString;
|
|
7089
|
+
headquarters: z.ZodString;
|
|
7090
|
+
largest_headcount_country: z.ZodString;
|
|
7091
|
+
hq_street_address: z.ZodString;
|
|
7092
|
+
company_website: z.ZodString;
|
|
7093
|
+
year_founded: z.ZodString;
|
|
7094
|
+
fiscal_year_end: z.ZodString;
|
|
7095
|
+
employee_count_range: z.ZodString;
|
|
7096
|
+
company_type: z.ZodString;
|
|
7097
|
+
linkedin_company_description: z.ZodString;
|
|
7098
|
+
acquisition_status: z.ZodString;
|
|
7099
|
+
ipo_date: z.ZodNullable<z.ZodString>;
|
|
7100
|
+
markets: z.ZodArray<z.ZodString>;
|
|
7101
|
+
stock_symbols: z.ZodArray<z.ZodString>;
|
|
7102
|
+
all_office_addresses: z.ZodArray<z.ZodString>;
|
|
7103
|
+
estimated_revenue_lower_bound_usd: z.ZodNumber;
|
|
7104
|
+
estimated_revenue_higher_bound_usd: z.ZodNumber;
|
|
7105
|
+
taxonomy: z.ZodObject<{
|
|
7106
|
+
linkedin_specialities: z.ZodArray<z.ZodString>;
|
|
7107
|
+
linkedin_industry: z.ZodString;
|
|
7108
|
+
linkedin_industries: z.ZodArray<z.ZodString>;
|
|
7109
|
+
crunchbase_categories: z.ZodArray<z.ZodString>;
|
|
7110
|
+
primary_naics_detail: z.ZodObject<{
|
|
7111
|
+
naics_code: z.ZodString;
|
|
7112
|
+
year: z.ZodNumber;
|
|
7113
|
+
sector: z.ZodString;
|
|
7114
|
+
sub_sector: z.ZodString;
|
|
7115
|
+
industry_group: z.ZodString;
|
|
7116
|
+
industry: z.ZodString;
|
|
7117
|
+
}, z.core.$strip>;
|
|
7118
|
+
sic_detail_list: z.ZodArray<z.ZodObject<{
|
|
7119
|
+
sic_code: z.ZodString;
|
|
7120
|
+
year: z.ZodNumber;
|
|
7121
|
+
industry: z.ZodString;
|
|
7122
|
+
}, z.core.$strip>>;
|
|
7123
|
+
}, z.core.$strip>;
|
|
7124
|
+
headcount: z.ZodObject<{
|
|
7125
|
+
linkedin_headcount: z.ZodNumber;
|
|
7126
|
+
linkedin_headcount_total_growth_percent: z.ZodObject<{
|
|
7127
|
+
mom: z.ZodNumber;
|
|
7128
|
+
qoq: z.ZodNumber;
|
|
7129
|
+
six_months: z.ZodNumber;
|
|
7130
|
+
yoy: z.ZodNumber;
|
|
7131
|
+
two_years: z.ZodNumber;
|
|
7132
|
+
}, z.core.$strip>;
|
|
7133
|
+
linkedin_headcount_total_growth_absolute: z.ZodObject<{
|
|
7134
|
+
mom: z.ZodNumber;
|
|
7135
|
+
qoq: z.ZodNumber;
|
|
7136
|
+
six_months: z.ZodNumber;
|
|
7137
|
+
yoy: z.ZodNumber;
|
|
7138
|
+
two_years: z.ZodNumber;
|
|
7139
|
+
}, z.core.$strip>;
|
|
7140
|
+
linkedin_headcount_by_role_absolute: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
7141
|
+
linkedin_headcount_by_role_percent: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
7142
|
+
linkedin_headcount_by_role_six_months_growth_percent: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
7143
|
+
linkedin_headcount_by_role_yoy_growth_percent: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
7144
|
+
linkedin_headcount_by_region_absolute: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
7145
|
+
linkedin_headcount_by_region_percent: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
7146
|
+
linkedin_headcount_by_skill_absolute: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
7147
|
+
linkedin_headcount_by_skill_percent: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
7148
|
+
}, z.core.$strip>;
|
|
7149
|
+
web_traffic: z.ZodObject<{
|
|
7150
|
+
monthly_visitors: z.ZodNumber;
|
|
7151
|
+
monthly_visitor_mom_pct: z.ZodNumber;
|
|
7152
|
+
monthly_visitor_qoq_pct: z.ZodNumber;
|
|
7153
|
+
traffic_source_social_pct: z.ZodNumber;
|
|
7154
|
+
traffic_source_search_pct: z.ZodNumber;
|
|
7155
|
+
traffic_source_direct_pct: z.ZodNumber;
|
|
7156
|
+
traffic_source_paid_referral_pct: z.ZodNumber;
|
|
7157
|
+
traffic_source_referral_pct: z.ZodNumber;
|
|
7158
|
+
}, z.core.$strip>;
|
|
7159
|
+
glassdoor: z.ZodObject<{
|
|
7160
|
+
glassdoor_overall_rating: z.ZodNullable<z.ZodNumber>;
|
|
7161
|
+
glassdoor_ceo_approval_pct: z.ZodNullable<z.ZodNumber>;
|
|
7162
|
+
glassdoor_business_outlook_pct: z.ZodNullable<z.ZodNumber>;
|
|
7163
|
+
glassdoor_review_count: z.ZodNullable<z.ZodNumber>;
|
|
7164
|
+
glassdoor_senior_management_rating: z.ZodNullable<z.ZodNumber>;
|
|
7165
|
+
glassdoor_compensation_rating: z.ZodNullable<z.ZodNumber>;
|
|
7166
|
+
glassdoor_career_opportunities_rating: z.ZodNullable<z.ZodNumber>;
|
|
7167
|
+
glassdoor_culture_rating: z.ZodNullable<z.ZodNumber>;
|
|
7168
|
+
glassdoor_diversity_rating: z.ZodNullable<z.ZodNumber>;
|
|
7169
|
+
glassdoor_work_life_balance_rating: z.ZodNullable<z.ZodNumber>;
|
|
7170
|
+
glassdoor_recommend_to_friend_pct: z.ZodNullable<z.ZodNumber>;
|
|
7171
|
+
glassdoor_ceo_approval_growth_percent: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
7172
|
+
glassdoor_review_count_growth_percent: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
7173
|
+
}, z.core.$strip>;
|
|
7174
|
+
g2: z.ZodObject<{
|
|
7175
|
+
g2_review_count: z.ZodNumber;
|
|
7176
|
+
g2_average_rating: z.ZodNumber;
|
|
7177
|
+
g2_review_count_mom_pct: z.ZodNullable<z.ZodNumber>;
|
|
7178
|
+
g2_review_count_qoq_pct: z.ZodNullable<z.ZodNumber>;
|
|
7179
|
+
g2_review_count_yoy_pct: z.ZodNullable<z.ZodNumber>;
|
|
7180
|
+
}, z.core.$strip>;
|
|
7181
|
+
linkedin_followers: z.ZodObject<{
|
|
7182
|
+
linkedin_followers: z.ZodNumber;
|
|
7183
|
+
linkedin_followers_mom_percent: z.ZodNumber;
|
|
7184
|
+
linkedin_followers_qoq_percent: z.ZodNumber;
|
|
7185
|
+
linkedin_followers_six_months_growth_percent: z.ZodNumber;
|
|
7186
|
+
linkedin_followers_yoy_percent: z.ZodNumber;
|
|
7187
|
+
}, z.core.$strip>;
|
|
7188
|
+
funding_and_investment: z.ZodObject<{
|
|
7189
|
+
crunchbase_total_investment_usd: z.ZodNumber;
|
|
7190
|
+
days_since_last_fundraise: z.ZodNumber;
|
|
7191
|
+
last_funding_round_type: z.ZodString;
|
|
7192
|
+
crunchbase_investors: z.ZodArray<z.ZodString>;
|
|
7193
|
+
last_funding_round_investment_usd: z.ZodNumber;
|
|
7194
|
+
acquired_by: z.ZodArray<z.ZodString>;
|
|
7195
|
+
}, z.core.$strip>;
|
|
7196
|
+
job_openings: z.ZodObject<{
|
|
7197
|
+
recent_job_openings_title: z.ZodString;
|
|
7198
|
+
job_openings_count: z.ZodNumber;
|
|
7199
|
+
job_openings_count_growth_percent: z.ZodObject<{
|
|
7200
|
+
mom: z.ZodNumber;
|
|
7201
|
+
qoq: z.ZodNumber;
|
|
7202
|
+
yoy: z.ZodNumber;
|
|
7203
|
+
}, z.core.$strip>;
|
|
7204
|
+
job_openings_by_function_qoq_pct: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodNumber>>;
|
|
7205
|
+
job_openings_by_function_six_months_growth_pct: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodNumber>>;
|
|
7206
|
+
}, z.core.$strip>;
|
|
7207
|
+
is_full_domain_match: z.ZodBoolean;
|
|
7208
|
+
query_identifier: z.ZodString;
|
|
7209
|
+
}, z.core.$strip>;
|
|
7210
|
+
readonly exampleValue: {
|
|
7211
|
+
company_id: number;
|
|
7212
|
+
company_name: string;
|
|
7213
|
+
linkedin_profile_name: string;
|
|
7214
|
+
linkedin_profile_url: string;
|
|
7215
|
+
crunchbase_profile_url: string;
|
|
7216
|
+
crunchbase_profile_uuid: string;
|
|
7217
|
+
linkedin_id: string;
|
|
7218
|
+
linkedin_logo_url: string;
|
|
7219
|
+
linkedin_logo_permalink: string;
|
|
7220
|
+
company_twitter_url: string;
|
|
7221
|
+
company_website_domain: string;
|
|
7222
|
+
domains: string[];
|
|
7223
|
+
hq_country: string;
|
|
7224
|
+
hq_state: string;
|
|
7225
|
+
headquarters: string;
|
|
7226
|
+
largest_headcount_country: string;
|
|
7227
|
+
hq_street_address: string;
|
|
7228
|
+
company_website: string;
|
|
7229
|
+
year_founded: string;
|
|
7230
|
+
fiscal_year_end: string;
|
|
7231
|
+
employee_count_range: string;
|
|
7232
|
+
company_type: string;
|
|
7233
|
+
linkedin_company_description: string;
|
|
7234
|
+
acquisition_status: string;
|
|
7235
|
+
ipo_date: string | null;
|
|
7236
|
+
markets: string[];
|
|
7237
|
+
stock_symbols: string[];
|
|
7238
|
+
all_office_addresses: string[];
|
|
7239
|
+
estimated_revenue_lower_bound_usd: number;
|
|
7240
|
+
estimated_revenue_higher_bound_usd: number;
|
|
7241
|
+
taxonomy: {
|
|
7242
|
+
linkedin_specialities: string[];
|
|
7243
|
+
linkedin_industry: string;
|
|
7244
|
+
linkedin_industries: string[];
|
|
7245
|
+
crunchbase_categories: string[];
|
|
7246
|
+
primary_naics_detail: {
|
|
7247
|
+
naics_code: string;
|
|
7248
|
+
year: number;
|
|
7249
|
+
sector: string;
|
|
7250
|
+
sub_sector: string;
|
|
7251
|
+
industry_group: string;
|
|
7252
|
+
industry: string;
|
|
7253
|
+
};
|
|
7254
|
+
sic_detail_list: {
|
|
7255
|
+
sic_code: string;
|
|
7256
|
+
year: number;
|
|
7257
|
+
industry: string;
|
|
7258
|
+
}[];
|
|
7259
|
+
};
|
|
7260
|
+
headcount: {
|
|
7261
|
+
linkedin_headcount: number;
|
|
7262
|
+
linkedin_headcount_total_growth_percent: {
|
|
7263
|
+
mom: number;
|
|
7264
|
+
qoq: number;
|
|
7265
|
+
six_months: number;
|
|
7266
|
+
yoy: number;
|
|
7267
|
+
two_years: number;
|
|
7268
|
+
};
|
|
7269
|
+
linkedin_headcount_total_growth_absolute: {
|
|
7270
|
+
mom: number;
|
|
7271
|
+
qoq: number;
|
|
7272
|
+
six_months: number;
|
|
7273
|
+
yoy: number;
|
|
7274
|
+
two_years: number;
|
|
7275
|
+
};
|
|
7276
|
+
linkedin_headcount_by_role_absolute: Record<string, number>;
|
|
7277
|
+
linkedin_headcount_by_role_percent: Record<string, number>;
|
|
7278
|
+
linkedin_headcount_by_role_six_months_growth_percent: Record<string, number>;
|
|
7279
|
+
linkedin_headcount_by_role_yoy_growth_percent: Record<string, number>;
|
|
7280
|
+
linkedin_headcount_by_region_absolute: Record<string, number>;
|
|
7281
|
+
linkedin_headcount_by_region_percent: Record<string, number>;
|
|
7282
|
+
linkedin_headcount_by_skill_absolute: Record<string, number>;
|
|
7283
|
+
linkedin_headcount_by_skill_percent: Record<string, number>;
|
|
7284
|
+
};
|
|
7285
|
+
web_traffic: {
|
|
7286
|
+
monthly_visitors: number;
|
|
7287
|
+
monthly_visitor_mom_pct: number;
|
|
7288
|
+
monthly_visitor_qoq_pct: number;
|
|
7289
|
+
traffic_source_social_pct: number;
|
|
7290
|
+
traffic_source_search_pct: number;
|
|
7291
|
+
traffic_source_direct_pct: number;
|
|
7292
|
+
traffic_source_paid_referral_pct: number;
|
|
7293
|
+
traffic_source_referral_pct: number;
|
|
7294
|
+
};
|
|
7295
|
+
glassdoor: {
|
|
7296
|
+
glassdoor_overall_rating: number | null;
|
|
7297
|
+
glassdoor_ceo_approval_pct: number | null;
|
|
7298
|
+
glassdoor_business_outlook_pct: number | null;
|
|
7299
|
+
glassdoor_review_count: number | null;
|
|
7300
|
+
glassdoor_senior_management_rating: number | null;
|
|
7301
|
+
glassdoor_compensation_rating: number | null;
|
|
7302
|
+
glassdoor_career_opportunities_rating: number | null;
|
|
7303
|
+
glassdoor_culture_rating: number | null;
|
|
7304
|
+
glassdoor_diversity_rating: number | null;
|
|
7305
|
+
glassdoor_work_life_balance_rating: number | null;
|
|
7306
|
+
glassdoor_recommend_to_friend_pct: number | null;
|
|
7307
|
+
glassdoor_ceo_approval_growth_percent: Record<string, number>;
|
|
7308
|
+
glassdoor_review_count_growth_percent: Record<string, number>;
|
|
7309
|
+
};
|
|
7310
|
+
g2: {
|
|
7311
|
+
g2_review_count: number;
|
|
7312
|
+
g2_average_rating: number;
|
|
7313
|
+
g2_review_count_mom_pct: number | null;
|
|
7314
|
+
g2_review_count_qoq_pct: number | null;
|
|
7315
|
+
g2_review_count_yoy_pct: number | null;
|
|
7316
|
+
};
|
|
7317
|
+
linkedin_followers: {
|
|
7318
|
+
linkedin_followers: number;
|
|
7319
|
+
linkedin_followers_mom_percent: number;
|
|
7320
|
+
linkedin_followers_qoq_percent: number;
|
|
7321
|
+
linkedin_followers_six_months_growth_percent: number;
|
|
7322
|
+
linkedin_followers_yoy_percent: number;
|
|
7323
|
+
};
|
|
7324
|
+
funding_and_investment: {
|
|
7325
|
+
crunchbase_total_investment_usd: number;
|
|
7326
|
+
days_since_last_fundraise: number;
|
|
7327
|
+
last_funding_round_type: string;
|
|
7328
|
+
crunchbase_investors: string[];
|
|
7329
|
+
last_funding_round_investment_usd: number;
|
|
7330
|
+
acquired_by: string[];
|
|
7331
|
+
};
|
|
7332
|
+
job_openings: {
|
|
7333
|
+
recent_job_openings_title: string;
|
|
7334
|
+
job_openings_count: number;
|
|
7335
|
+
job_openings_count_growth_percent: {
|
|
7336
|
+
mom: number;
|
|
7337
|
+
qoq: number;
|
|
7338
|
+
yoy: number;
|
|
7339
|
+
};
|
|
7340
|
+
job_openings_by_function_qoq_pct: Record<string, number | null>;
|
|
7341
|
+
job_openings_by_function_six_months_growth_pct: Record<string, number | null>;
|
|
7342
|
+
};
|
|
7343
|
+
is_full_domain_match: boolean;
|
|
7344
|
+
query_identifier: string;
|
|
7345
|
+
};
|
|
7346
|
+
};
|
|
7347
|
+
};
|
|
6271
7348
|
readonly post_list_string: {
|
|
6272
7349
|
readonly label: "Post list";
|
|
6273
7350
|
readonly type: "json";
|
|
@@ -6358,6 +7435,425 @@ export declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
6358
7435
|
};
|
|
6359
7436
|
};
|
|
6360
7437
|
};
|
|
7438
|
+
readonly amplemarket_person_match: {
|
|
7439
|
+
readonly label: "Person match";
|
|
7440
|
+
readonly type: "json";
|
|
7441
|
+
readonly format: "json_object";
|
|
7442
|
+
readonly description: "Person match object as returned by Amplemarket";
|
|
7443
|
+
readonly jsonMeta: {
|
|
7444
|
+
readonly zodSchema: z.ZodObject<{
|
|
7445
|
+
id: z.ZodString;
|
|
7446
|
+
object: z.ZodLiteral<"person">;
|
|
7447
|
+
name: z.ZodString;
|
|
7448
|
+
first_name: z.ZodString;
|
|
7449
|
+
last_name: z.ZodString;
|
|
7450
|
+
linkedin_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7451
|
+
title: z.ZodNullable<z.ZodString>;
|
|
7452
|
+
headline: z.ZodNullable<z.ZodString>;
|
|
7453
|
+
about: z.ZodNullable<z.ZodString>;
|
|
7454
|
+
current_position_start_date: z.ZodNullable<z.ZodString>;
|
|
7455
|
+
current_position_description: z.ZodNullable<z.ZodString>;
|
|
7456
|
+
image_url: z.ZodNullable<z.ZodString>;
|
|
7457
|
+
location: z.ZodNullable<z.ZodString>;
|
|
7458
|
+
location_details: z.ZodNullable<z.ZodObject<{
|
|
7459
|
+
city: z.ZodNullable<z.ZodString>;
|
|
7460
|
+
state: z.ZodNullable<z.ZodString>;
|
|
7461
|
+
country: z.ZodNullable<z.ZodString>;
|
|
7462
|
+
lat: z.ZodNullable<z.ZodNumber>;
|
|
7463
|
+
long: z.ZodNullable<z.ZodNumber>;
|
|
7464
|
+
}, z.core.$strip>>;
|
|
7465
|
+
experiences: z.ZodArray<z.ZodObject<{
|
|
7466
|
+
object: z.ZodLiteral<"experience">;
|
|
7467
|
+
title: z.ZodNullable<z.ZodString>;
|
|
7468
|
+
company_name: z.ZodNullable<z.ZodString>;
|
|
7469
|
+
company_linkedin_url: z.ZodNullable<z.ZodString>;
|
|
7470
|
+
start_date: z.ZodNullable<z.ZodString>;
|
|
7471
|
+
end_date: z.ZodNullable<z.ZodString>;
|
|
7472
|
+
}, z.core.$strip>>;
|
|
7473
|
+
educations: z.ZodArray<z.ZodObject<{
|
|
7474
|
+
object: z.ZodLiteral<"education">;
|
|
7475
|
+
degree: z.ZodNullable<z.ZodString>;
|
|
7476
|
+
field_of_study: z.ZodNullable<z.ZodString>;
|
|
7477
|
+
school_name: z.ZodNullable<z.ZodString>;
|
|
7478
|
+
school_linkedin_url: z.ZodNullable<z.ZodString>;
|
|
7479
|
+
start_date: z.ZodNullable<z.ZodString>;
|
|
7480
|
+
end_date: z.ZodNullable<z.ZodString>;
|
|
7481
|
+
}, z.core.$strip>>;
|
|
7482
|
+
languages: z.ZodArray<z.ZodObject<{
|
|
7483
|
+
object: z.ZodLiteral<"language">;
|
|
7484
|
+
language: z.ZodString;
|
|
7485
|
+
iso_code: z.ZodString;
|
|
7486
|
+
proficiency: z.ZodNullable<z.ZodString>;
|
|
7487
|
+
}, z.core.$strip>>;
|
|
7488
|
+
company: z.ZodNullable<z.ZodObject<{
|
|
7489
|
+
id: z.ZodString;
|
|
7490
|
+
object: z.ZodLiteral<"company">;
|
|
7491
|
+
name: z.ZodString;
|
|
7492
|
+
website: z.ZodNullable<z.ZodString>;
|
|
7493
|
+
linkedin_url: z.ZodNullable<z.ZodString>;
|
|
7494
|
+
keywords: z.ZodArray<z.ZodString>;
|
|
7495
|
+
estimated_number_of_employees: z.ZodNullable<z.ZodNumber>;
|
|
7496
|
+
size: z.ZodNullable<z.ZodString>;
|
|
7497
|
+
industry: z.ZodNullable<z.ZodString>;
|
|
7498
|
+
logo_url: z.ZodNullable<z.ZodString>;
|
|
7499
|
+
location: z.ZodNullable<z.ZodString>;
|
|
7500
|
+
location_details: z.ZodNullable<z.ZodObject<{
|
|
7501
|
+
city: z.ZodNullable<z.ZodString>;
|
|
7502
|
+
state: z.ZodNullable<z.ZodString>;
|
|
7503
|
+
country: z.ZodNullable<z.ZodString>;
|
|
7504
|
+
postal_code: z.ZodNullable<z.ZodString>;
|
|
7505
|
+
lat: z.ZodNullable<z.ZodNumber>;
|
|
7506
|
+
long: z.ZodNullable<z.ZodNumber>;
|
|
7507
|
+
}, z.core.$strip>>;
|
|
7508
|
+
locations: z.ZodArray<z.ZodUnknown>;
|
|
7509
|
+
overview: z.ZodNullable<z.ZodString>;
|
|
7510
|
+
followers: z.ZodNullable<z.ZodNumber>;
|
|
7511
|
+
founded_year: z.ZodNullable<z.ZodNumber>;
|
|
7512
|
+
traffic_rank: z.ZodNullable<z.ZodNumber>;
|
|
7513
|
+
sic_codes: z.ZodArray<z.ZodNumber>;
|
|
7514
|
+
naics_codes: z.ZodArray<z.ZodNumber>;
|
|
7515
|
+
type: z.ZodNullable<z.ZodString>;
|
|
7516
|
+
total_funding: z.ZodNullable<z.ZodNumber>;
|
|
7517
|
+
latest_funding_stage: z.ZodNullable<z.ZodString>;
|
|
7518
|
+
latest_funding_date: z.ZodNullable<z.ZodString>;
|
|
7519
|
+
is_b2b: z.ZodNullable<z.ZodBoolean>;
|
|
7520
|
+
is_b2c: z.ZodNullable<z.ZodBoolean>;
|
|
7521
|
+
technologies: z.ZodArray<z.ZodUnknown>;
|
|
7522
|
+
department_headcount: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
7523
|
+
job_function_headcount: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
7524
|
+
estimated_revenue: z.ZodNullable<z.ZodString>;
|
|
7525
|
+
}, z.core.$strip>>;
|
|
7526
|
+
gender: z.ZodNullable<z.ZodString>;
|
|
7527
|
+
}, z.core.$strip>;
|
|
7528
|
+
readonly exampleValue: {
|
|
7529
|
+
id: string;
|
|
7530
|
+
object: string;
|
|
7531
|
+
name: string;
|
|
7532
|
+
first_name: string;
|
|
7533
|
+
last_name: string;
|
|
7534
|
+
linkedin_url: string;
|
|
7535
|
+
title: string;
|
|
7536
|
+
headline: string;
|
|
7537
|
+
about: null;
|
|
7538
|
+
current_position_start_date: string;
|
|
7539
|
+
current_position_description: null;
|
|
7540
|
+
image_url: string;
|
|
7541
|
+
location: string;
|
|
7542
|
+
location_details: {
|
|
7543
|
+
city: string;
|
|
7544
|
+
state: string;
|
|
7545
|
+
country: string;
|
|
7546
|
+
lat: number;
|
|
7547
|
+
long: number;
|
|
7548
|
+
};
|
|
7549
|
+
experiences: {
|
|
7550
|
+
object: string;
|
|
7551
|
+
title: string;
|
|
7552
|
+
company_name: string;
|
|
7553
|
+
company_linkedin_url: string;
|
|
7554
|
+
start_date: string;
|
|
7555
|
+
end_date: null;
|
|
7556
|
+
}[];
|
|
7557
|
+
educations: {
|
|
7558
|
+
object: string;
|
|
7559
|
+
degree: string;
|
|
7560
|
+
field_of_study: string;
|
|
7561
|
+
school_name: string;
|
|
7562
|
+
school_linkedin_url: string;
|
|
7563
|
+
start_date: string;
|
|
7564
|
+
end_date: string;
|
|
7565
|
+
}[];
|
|
7566
|
+
languages: ({
|
|
7567
|
+
object: string;
|
|
7568
|
+
language: string;
|
|
7569
|
+
iso_code: string;
|
|
7570
|
+
proficiency: string;
|
|
7571
|
+
} | {
|
|
7572
|
+
object: string;
|
|
7573
|
+
language: string;
|
|
7574
|
+
iso_code: string;
|
|
7575
|
+
proficiency: null;
|
|
7576
|
+
})[];
|
|
7577
|
+
company: {
|
|
7578
|
+
id: string;
|
|
7579
|
+
object: string;
|
|
7580
|
+
name: string;
|
|
7581
|
+
website: string;
|
|
7582
|
+
linkedin_url: string;
|
|
7583
|
+
keywords: string[];
|
|
7584
|
+
estimated_number_of_employees: number;
|
|
7585
|
+
size: string;
|
|
7586
|
+
industry: string;
|
|
7587
|
+
logo_url: string;
|
|
7588
|
+
location: string;
|
|
7589
|
+
location_details: {
|
|
7590
|
+
city: string;
|
|
7591
|
+
state: string;
|
|
7592
|
+
country: string;
|
|
7593
|
+
postal_code: string;
|
|
7594
|
+
lat: number;
|
|
7595
|
+
long: number;
|
|
7596
|
+
};
|
|
7597
|
+
locations: never[];
|
|
7598
|
+
overview: string;
|
|
7599
|
+
followers: number;
|
|
7600
|
+
founded_year: number;
|
|
7601
|
+
traffic_rank: number;
|
|
7602
|
+
sic_codes: number[];
|
|
7603
|
+
naics_codes: number[];
|
|
7604
|
+
type: string;
|
|
7605
|
+
total_funding: number;
|
|
7606
|
+
latest_funding_stage: string;
|
|
7607
|
+
latest_funding_date: string;
|
|
7608
|
+
is_b2b: boolean;
|
|
7609
|
+
is_b2c: boolean;
|
|
7610
|
+
technologies: never[];
|
|
7611
|
+
department_headcount: {
|
|
7612
|
+
consulting: number;
|
|
7613
|
+
design: number;
|
|
7614
|
+
education: number;
|
|
7615
|
+
engineering_technical: number;
|
|
7616
|
+
finance: number;
|
|
7617
|
+
human_resources: number;
|
|
7618
|
+
information_technology: number;
|
|
7619
|
+
legal: number;
|
|
7620
|
+
marketing: number;
|
|
7621
|
+
medical_health: number;
|
|
7622
|
+
operations: number;
|
|
7623
|
+
product: number;
|
|
7624
|
+
revenue: number;
|
|
7625
|
+
senior_leadership: number;
|
|
7626
|
+
};
|
|
7627
|
+
job_function_headcount: {
|
|
7628
|
+
finance: {
|
|
7629
|
+
accounting: number;
|
|
7630
|
+
finance: number;
|
|
7631
|
+
financial_planning_analysis: number;
|
|
7632
|
+
financial_reporting: number;
|
|
7633
|
+
financial_risk: number;
|
|
7634
|
+
financial_strategy: number;
|
|
7635
|
+
financial_systems: number;
|
|
7636
|
+
internal_audit_control: number;
|
|
7637
|
+
investor_relations: number;
|
|
7638
|
+
mergers_acquisitions: number;
|
|
7639
|
+
real_estate_finance: number;
|
|
7640
|
+
shared_services: number;
|
|
7641
|
+
sourcing_procurement: number;
|
|
7642
|
+
tax: number;
|
|
7643
|
+
treasury: number;
|
|
7644
|
+
};
|
|
7645
|
+
legal: {
|
|
7646
|
+
acquisitions: number;
|
|
7647
|
+
compliance: number;
|
|
7648
|
+
contracts: number;
|
|
7649
|
+
corporate_secretary: number;
|
|
7650
|
+
ediscovery: number;
|
|
7651
|
+
ethics: number;
|
|
7652
|
+
governance: number;
|
|
7653
|
+
governmental_affairs_regulatory_law: number;
|
|
7654
|
+
intellectual_property_patent: number;
|
|
7655
|
+
labor_employment: number;
|
|
7656
|
+
lawyer_attorney: number;
|
|
7657
|
+
legal: number;
|
|
7658
|
+
legal_counsel: number;
|
|
7659
|
+
legal_operations: number;
|
|
7660
|
+
litigation: number;
|
|
7661
|
+
privacy: number;
|
|
7662
|
+
};
|
|
7663
|
+
revenue: {
|
|
7664
|
+
account_management: number;
|
|
7665
|
+
business_development: number;
|
|
7666
|
+
channel_sales: number;
|
|
7667
|
+
customer_retention_development: number;
|
|
7668
|
+
customer_success: number;
|
|
7669
|
+
field_outside_sales: number;
|
|
7670
|
+
inside_sales: number;
|
|
7671
|
+
partnerships: number;
|
|
7672
|
+
revenue_operations: number;
|
|
7673
|
+
sales: number;
|
|
7674
|
+
sales_enablement: number;
|
|
7675
|
+
sales_engineering: number;
|
|
7676
|
+
sales_operations: number;
|
|
7677
|
+
sales_training: number;
|
|
7678
|
+
};
|
|
7679
|
+
engineering_technical: {
|
|
7680
|
+
artificial_intelligence_machine_learning: number;
|
|
7681
|
+
bioengineering_biometrics: number;
|
|
7682
|
+
business_intelligence: number;
|
|
7683
|
+
chemical_engineering: number;
|
|
7684
|
+
cloud_mobility: number;
|
|
7685
|
+
data_science: number;
|
|
7686
|
+
devops: number;
|
|
7687
|
+
digital_transformation: number;
|
|
7688
|
+
emerging_technology_innovation: number;
|
|
7689
|
+
engineering_technical: number;
|
|
7690
|
+
industrial_engineering: number;
|
|
7691
|
+
mechanic: number;
|
|
7692
|
+
mobile_development: number;
|
|
7693
|
+
project_management: number;
|
|
7694
|
+
research_development: number;
|
|
7695
|
+
scrum_master_agile_coach: number;
|
|
7696
|
+
software_development: number;
|
|
7697
|
+
support_technical_services: number;
|
|
7698
|
+
technician: number;
|
|
7699
|
+
technology_operations: number;
|
|
7700
|
+
test_quality_assurance: number;
|
|
7701
|
+
ui_ux: number;
|
|
7702
|
+
web_development: number;
|
|
7703
|
+
};
|
|
7704
|
+
operations: {
|
|
7705
|
+
call_center: number;
|
|
7706
|
+
construction: number;
|
|
7707
|
+
corporate_strategy: number;
|
|
7708
|
+
customer_service_support: number;
|
|
7709
|
+
enterprise_resource_planning: number;
|
|
7710
|
+
facilities_management: number;
|
|
7711
|
+
leasing: number;
|
|
7712
|
+
logistics: number;
|
|
7713
|
+
office_operations: number;
|
|
7714
|
+
operations: number;
|
|
7715
|
+
physical_security: number;
|
|
7716
|
+
project_development: number;
|
|
7717
|
+
quality_management: number;
|
|
7718
|
+
real_estate: number;
|
|
7719
|
+
safety: number;
|
|
7720
|
+
store_operations: number;
|
|
7721
|
+
supply_chain: number;
|
|
7722
|
+
};
|
|
7723
|
+
senior_leadership: {
|
|
7724
|
+
executive: number;
|
|
7725
|
+
finance_executive: number;
|
|
7726
|
+
founder: number;
|
|
7727
|
+
human_resources_executive: number;
|
|
7728
|
+
information_technology_executive: number;
|
|
7729
|
+
legal_executive: number;
|
|
7730
|
+
marketing_executive: number;
|
|
7731
|
+
medical_health_executive: number;
|
|
7732
|
+
operations_executive: number;
|
|
7733
|
+
sales_executive: number;
|
|
7734
|
+
};
|
|
7735
|
+
medical_health: {
|
|
7736
|
+
anesthesiology: number;
|
|
7737
|
+
chiropractics: number;
|
|
7738
|
+
clinical_systems: number;
|
|
7739
|
+
dentistry: number;
|
|
7740
|
+
dermatology: number;
|
|
7741
|
+
doctors_physicians: number;
|
|
7742
|
+
epidemiology: number;
|
|
7743
|
+
first_responder: number;
|
|
7744
|
+
medical_administration: number;
|
|
7745
|
+
medical_education_training: number;
|
|
7746
|
+
medical_research: number;
|
|
7747
|
+
medicine: number;
|
|
7748
|
+
neurology: number;
|
|
7749
|
+
nursing: number;
|
|
7750
|
+
nutrition_dietetics: number;
|
|
7751
|
+
obstetrics_gynecology: number;
|
|
7752
|
+
oncology: number;
|
|
7753
|
+
ophthalmology: number;
|
|
7754
|
+
optometry: number;
|
|
7755
|
+
orthopedics: number;
|
|
7756
|
+
pathology: number;
|
|
7757
|
+
pediatrics: number;
|
|
7758
|
+
pharmacy: number;
|
|
7759
|
+
physical_therapy: number;
|
|
7760
|
+
psychiatry: number;
|
|
7761
|
+
psychology: number;
|
|
7762
|
+
public_health: number;
|
|
7763
|
+
radiology: number;
|
|
7764
|
+
social_work: number;
|
|
7765
|
+
};
|
|
7766
|
+
information_technology: {
|
|
7767
|
+
application_development: number;
|
|
7768
|
+
business_service_management_itsm: number;
|
|
7769
|
+
collaboration_web_app: number;
|
|
7770
|
+
data_center: number;
|
|
7771
|
+
data_warehouse: number;
|
|
7772
|
+
database_administration: number;
|
|
7773
|
+
ecommerce_development: number;
|
|
7774
|
+
enterprise_architecture: number;
|
|
7775
|
+
help_desk_desktop_services: number;
|
|
7776
|
+
hr_financial_erp_systems: number;
|
|
7777
|
+
information_security: number;
|
|
7778
|
+
information_technology: number;
|
|
7779
|
+
infrastructure: number;
|
|
7780
|
+
it_asset_management: number;
|
|
7781
|
+
it_audit_it_compliance: number;
|
|
7782
|
+
it_operations: number;
|
|
7783
|
+
it_procurement: number;
|
|
7784
|
+
it_strategy: number;
|
|
7785
|
+
it_training: number;
|
|
7786
|
+
networking: number;
|
|
7787
|
+
project_program_management: number;
|
|
7788
|
+
quality_assurance: number;
|
|
7789
|
+
retail_store_systems: number;
|
|
7790
|
+
servers: number;
|
|
7791
|
+
storage_disaster_recovery: number;
|
|
7792
|
+
telecommunications: number;
|
|
7793
|
+
virtualization: number;
|
|
7794
|
+
};
|
|
7795
|
+
education: {
|
|
7796
|
+
principal: number;
|
|
7797
|
+
professor: number;
|
|
7798
|
+
superintendent: number;
|
|
7799
|
+
teacher: number;
|
|
7800
|
+
};
|
|
7801
|
+
marketing: {
|
|
7802
|
+
advertising: number;
|
|
7803
|
+
brand_management: number;
|
|
7804
|
+
content_marketing: number;
|
|
7805
|
+
customer_experience: number;
|
|
7806
|
+
customer_marketing: number;
|
|
7807
|
+
demand_generation: number;
|
|
7808
|
+
digital_marketing: number;
|
|
7809
|
+
ecommerce_marketing: number;
|
|
7810
|
+
event_marketing: number;
|
|
7811
|
+
field_marketing: number;
|
|
7812
|
+
lead_generation: number;
|
|
7813
|
+
marketing: number;
|
|
7814
|
+
marketing_analytics_insights: number;
|
|
7815
|
+
marketing_communications: number;
|
|
7816
|
+
marketing_operations: number;
|
|
7817
|
+
product_marketing: number;
|
|
7818
|
+
public_relations: number;
|
|
7819
|
+
search_engine_optimization_pay_per_click: number;
|
|
7820
|
+
social_media_marketing: number;
|
|
7821
|
+
strategic_communications: number;
|
|
7822
|
+
technical_marketing: number;
|
|
7823
|
+
};
|
|
7824
|
+
consulting: {
|
|
7825
|
+
consultant: number;
|
|
7826
|
+
};
|
|
7827
|
+
human_resources: {
|
|
7828
|
+
compensation_benefits: number;
|
|
7829
|
+
culture_diversity_inclusion: number;
|
|
7830
|
+
employee_labor_relations: number;
|
|
7831
|
+
health_safety: number;
|
|
7832
|
+
hr_business_partner: number;
|
|
7833
|
+
human_resource_information_system: number;
|
|
7834
|
+
human_resources: number;
|
|
7835
|
+
learning_development: number;
|
|
7836
|
+
organizational_development: number;
|
|
7837
|
+
people_operations: number;
|
|
7838
|
+
recruiting_talent_acquisition: number;
|
|
7839
|
+
talent_management: number;
|
|
7840
|
+
workforce_management: number;
|
|
7841
|
+
};
|
|
7842
|
+
design: {
|
|
7843
|
+
graphic_visual_brand_design: number;
|
|
7844
|
+
product_or_ui_ux_design: number;
|
|
7845
|
+
};
|
|
7846
|
+
product: {
|
|
7847
|
+
product_development: number;
|
|
7848
|
+
product_management: number;
|
|
7849
|
+
};
|
|
7850
|
+
};
|
|
7851
|
+
estimated_revenue: string;
|
|
7852
|
+
};
|
|
7853
|
+
gender: string;
|
|
7854
|
+
};
|
|
7855
|
+
};
|
|
7856
|
+
};
|
|
6361
7857
|
readonly companyenrich_matches: {
|
|
6362
7858
|
readonly label: "CompanyEnrich matches";
|
|
6363
7859
|
readonly type: "json";
|