@pipe0/client 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.
@@ -484,6 +484,9 @@ export interface paths {
484
484
  * "provider": "prospeo"
485
485
  * },
486
486
  * {
487
+ * "provider": "hunter"
488
+ * },
489
+ * {
487
490
  * "provider": "icypeas"
488
491
  * },
489
492
  * {
@@ -492,8 +495,12 @@ export interface paths {
492
495
  * ] */
493
496
  providers?: {
494
497
  /** @enum {string} */
495
- provider: "leadmagic" | "prospeo" | "icypeas" | "findymail";
498
+ provider: "leadmagic" | "prospeo" | "hunter" | "icypeas" | "findymail";
496
499
  }[];
500
+ /** @default true */
501
+ allow_catch_all_emails?: boolean;
502
+ /** @default true */
503
+ allow_risky_emails?: boolean;
497
504
  input_fields?: {
498
505
  /** @default {
499
506
  * "alias": ""
@@ -525,6 +532,16 @@ export interface paths {
525
532
  /** @default true */
526
533
  enabled?: boolean;
527
534
  };
535
+ /** @default {
536
+ * "alias": "",
537
+ * "enabled": true
538
+ * } */
539
+ email_validation_status?: {
540
+ /** @default */
541
+ alias?: string;
542
+ /** @default true */
543
+ enabled?: boolean;
544
+ };
528
545
  };
529
546
  };
530
547
  } | {
@@ -1732,6 +1749,203 @@ export interface paths {
1732
1749
  };
1733
1750
  };
1734
1751
  };
1752
+ } | {
1753
+ /** @enum {string} */
1754
+ pipe_id: "people:profile:workemail:crustdata@1";
1755
+ trigger?: {
1756
+ /** @enum {string} */
1757
+ action: "run";
1758
+ when: {
1759
+ /** @enum {string} */
1760
+ logic: "and" | "or";
1761
+ conditions: ({
1762
+ /** @enum {string} */
1763
+ property: "value";
1764
+ field_name: string;
1765
+ /** @enum {string} */
1766
+ operator: "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "contains";
1767
+ value: number | string | boolean | null;
1768
+ } | {
1769
+ /** @enum {string} */
1770
+ property: "status";
1771
+ field_name: string;
1772
+ /** @enum {string} */
1773
+ operator: "eq" | "neq";
1774
+ /** @enum {string} */
1775
+ value: "failed" | "no_result" | "completed" | "skipped";
1776
+ })[];
1777
+ };
1778
+ } | null;
1779
+ connector?: {
1780
+ /**
1781
+ * @default first
1782
+ * @enum {string}
1783
+ */
1784
+ strategy?: "first";
1785
+ connections: {
1786
+ /** @enum {string} */
1787
+ type: "vault";
1788
+ connection: string;
1789
+ }[];
1790
+ } | null;
1791
+ config?: {
1792
+ input_fields?: {
1793
+ /** @default {
1794
+ * "alias": ""
1795
+ * } */
1796
+ work_email?: {
1797
+ alias: string;
1798
+ };
1799
+ };
1800
+ output_fields?: {
1801
+ /** @default {
1802
+ * "alias": "",
1803
+ * "enabled": true
1804
+ * } */
1805
+ crustdata_person_match?: {
1806
+ /** @default */
1807
+ alias?: string;
1808
+ /** @default true */
1809
+ enabled?: boolean;
1810
+ };
1811
+ /** @default {
1812
+ * "alias": "",
1813
+ * "enabled": true
1814
+ * } */
1815
+ crustdata_profile_match_score?: {
1816
+ /** @default */
1817
+ alias?: string;
1818
+ /** @default true */
1819
+ enabled?: boolean;
1820
+ };
1821
+ };
1822
+ };
1823
+ } | {
1824
+ /** @enum {string} */
1825
+ pipe_id: "people:identity:email:waterfall@1";
1826
+ connector?: {
1827
+ /**
1828
+ * @default first
1829
+ * @enum {string}
1830
+ */
1831
+ strategy?: "first";
1832
+ connections: {
1833
+ /** @enum {string} */
1834
+ type: "vault";
1835
+ connection: string;
1836
+ }[];
1837
+ } | null;
1838
+ trigger?: {
1839
+ /** @enum {string} */
1840
+ action: "run";
1841
+ when: {
1842
+ /** @enum {string} */
1843
+ logic: "and" | "or";
1844
+ conditions: ({
1845
+ /** @enum {string} */
1846
+ property: "value";
1847
+ field_name: string;
1848
+ /** @enum {string} */
1849
+ operator: "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "contains";
1850
+ value: number | string | boolean | null;
1851
+ } | {
1852
+ /** @enum {string} */
1853
+ property: "status";
1854
+ field_name: string;
1855
+ /** @enum {string} */
1856
+ operator: "eq" | "neq";
1857
+ /** @enum {string} */
1858
+ value: "failed" | "no_result" | "completed" | "skipped";
1859
+ })[];
1860
+ };
1861
+ } | null;
1862
+ config?: {
1863
+ /** @default [
1864
+ * {
1865
+ * "provider": "findymail"
1866
+ * },
1867
+ * {
1868
+ * "provider": "hunter"
1869
+ * },
1870
+ * {
1871
+ * "provider": "crustdata"
1872
+ * }
1873
+ * ] */
1874
+ providers?: {
1875
+ /** @enum {string} */
1876
+ provider: "findymail" | "hunter" | "crustdata";
1877
+ }[];
1878
+ input_fields?: {
1879
+ /** @default {
1880
+ * "alias": ""
1881
+ * } */
1882
+ email?: {
1883
+ alias: string;
1884
+ };
1885
+ };
1886
+ output_fields?: {
1887
+ /** @default {
1888
+ * "alias": "",
1889
+ * "enabled": true
1890
+ * } */
1891
+ name?: {
1892
+ /** @default */
1893
+ alias?: string;
1894
+ /** @default true */
1895
+ enabled?: boolean;
1896
+ };
1897
+ /** @default {
1898
+ * "alias": "",
1899
+ * "enabled": true
1900
+ * } */
1901
+ profile_url?: {
1902
+ /** @default */
1903
+ alias?: string;
1904
+ /** @default true */
1905
+ enabled?: boolean;
1906
+ };
1907
+ /** @default {
1908
+ * "alias": "",
1909
+ * "enabled": true
1910
+ * } */
1911
+ job_title?: {
1912
+ /** @default */
1913
+ alias?: string;
1914
+ /** @default true */
1915
+ enabled?: boolean;
1916
+ };
1917
+ /** @default {
1918
+ * "alias": "",
1919
+ * "enabled": true
1920
+ * } */
1921
+ company_website_url?: {
1922
+ /** @default */
1923
+ alias?: string;
1924
+ /** @default true */
1925
+ enabled?: boolean;
1926
+ };
1927
+ /** @default {
1928
+ * "alias": "",
1929
+ * "enabled": true
1930
+ * } */
1931
+ company_name?: {
1932
+ /** @default */
1933
+ alias?: string;
1934
+ /** @default true */
1935
+ enabled?: boolean;
1936
+ };
1937
+ /** @default {
1938
+ * "alias": "",
1939
+ * "enabled": true
1940
+ * } */
1941
+ company_profile_url?: {
1942
+ /** @default */
1943
+ alias?: string;
1944
+ /** @default true */
1945
+ enabled?: boolean;
1946
+ };
1947
+ };
1948
+ };
1735
1949
  } | {
1736
1950
  /** @enum {string} */
1737
1951
  pipe_id: "message:send:slack@1";
@@ -2236,7 +2450,6 @@ export interface paths {
2236
2450
  };
2237
2451
  } | null;
2238
2452
  config?: {
2239
- /** @default null */
2240
2453
  page_limit?: number | null;
2241
2454
  /**
2242
2455
  * @default include
@@ -2592,11 +2805,14 @@ export interface paths {
2592
2805
  * },
2593
2806
  * {
2594
2807
  * "provider": "findymail"
2808
+ * },
2809
+ * {
2810
+ * "provider": "clado"
2595
2811
  * }
2596
2812
  * ] */
2597
2813
  providers?: {
2598
2814
  /** @enum {string} */
2599
- provider: "leadmagic" | "prospeo" | "findymail";
2815
+ provider: "leadmagic" | "prospeo" | "findymail" | "clado";
2600
2816
  }[];
2601
2817
  input_fields?: {
2602
2818
  /** @default {
@@ -3131,7 +3347,19 @@ export interface paths {
3131
3347
  };
3132
3348
  } | {
3133
3349
  /** @enum {string} */
3134
- pipe_id: "company:identity@1";
3350
+ pipe_id: "people:workemail:profileurl:waterfall@1";
3351
+ connector?: {
3352
+ /**
3353
+ * @default first
3354
+ * @enum {string}
3355
+ */
3356
+ strategy?: "first";
3357
+ connections: {
3358
+ /** @enum {string} */
3359
+ type: "vault";
3360
+ connection: string;
3361
+ }[];
3362
+ } | null;
3135
3363
  trigger?: {
3136
3364
  /** @enum {string} */
3137
3365
  action: "run";
@@ -3156,24 +3384,37 @@ export interface paths {
3156
3384
  })[];
3157
3385
  };
3158
3386
  } | null;
3159
- connector?: {
3160
- /**
3161
- * @default first
3162
- * @enum {string}
3163
- */
3164
- strategy?: "first";
3165
- connections: {
3387
+ config?: {
3388
+ /** @default [
3389
+ * {
3390
+ * "provider": "hunter"
3391
+ * },
3392
+ * {
3393
+ * "provider": "findymail"
3394
+ * },
3395
+ * {
3396
+ * "provider": "leadmagic"
3397
+ * },
3398
+ * {
3399
+ * "provider": "crustdata"
3400
+ * },
3401
+ * {
3402
+ * "provider": "clado"
3403
+ * }
3404
+ * ] */
3405
+ providers?: {
3166
3406
  /** @enum {string} */
3167
- type: "vault";
3168
- connection: string;
3407
+ provider: "hunter" | "findymail" | "leadmagic" | "crustdata" | "clado";
3169
3408
  }[];
3170
- } | null;
3171
- config?: {
3409
+ /** @default true */
3410
+ allow_catch_all_emails?: boolean;
3411
+ /** @default true */
3412
+ allow_risky_emails?: boolean;
3172
3413
  input_fields?: {
3173
3414
  /** @default {
3174
3415
  * "alias": ""
3175
3416
  * } */
3176
- company_name?: {
3417
+ profile_url?: {
3177
3418
  alias: string;
3178
3419
  };
3179
3420
  };
@@ -3182,7 +3423,7 @@ export interface paths {
3182
3423
  * "alias": "",
3183
3424
  * "enabled": true
3184
3425
  * } */
3185
- company_social_url?: {
3426
+ work_email?: {
3186
3427
  /** @default */
3187
3428
  alias?: string;
3188
3429
  /** @default true */
@@ -3192,7 +3433,78 @@ export interface paths {
3192
3433
  * "alias": "",
3193
3434
  * "enabled": true
3194
3435
  * } */
3195
- cleaned_company_name?: {
3436
+ email_validation_status?: {
3437
+ /** @default */
3438
+ alias?: string;
3439
+ /** @default true */
3440
+ enabled?: boolean;
3441
+ };
3442
+ };
3443
+ };
3444
+ } | {
3445
+ /** @enum {string} */
3446
+ pipe_id: "company:identity@1";
3447
+ trigger?: {
3448
+ /** @enum {string} */
3449
+ action: "run";
3450
+ when: {
3451
+ /** @enum {string} */
3452
+ logic: "and" | "or";
3453
+ conditions: ({
3454
+ /** @enum {string} */
3455
+ property: "value";
3456
+ field_name: string;
3457
+ /** @enum {string} */
3458
+ operator: "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "contains";
3459
+ value: number | string | boolean | null;
3460
+ } | {
3461
+ /** @enum {string} */
3462
+ property: "status";
3463
+ field_name: string;
3464
+ /** @enum {string} */
3465
+ operator: "eq" | "neq";
3466
+ /** @enum {string} */
3467
+ value: "failed" | "no_result" | "completed" | "skipped";
3468
+ })[];
3469
+ };
3470
+ } | null;
3471
+ connector?: {
3472
+ /**
3473
+ * @default first
3474
+ * @enum {string}
3475
+ */
3476
+ strategy?: "first";
3477
+ connections: {
3478
+ /** @enum {string} */
3479
+ type: "vault";
3480
+ connection: string;
3481
+ }[];
3482
+ } | null;
3483
+ config?: {
3484
+ input_fields?: {
3485
+ /** @default {
3486
+ * "alias": ""
3487
+ * } */
3488
+ company_name?: {
3489
+ alias: string;
3490
+ };
3491
+ };
3492
+ output_fields?: {
3493
+ /** @default {
3494
+ * "alias": "",
3495
+ * "enabled": true
3496
+ * } */
3497
+ company_social_url?: {
3498
+ /** @default */
3499
+ alias?: string;
3500
+ /** @default true */
3501
+ enabled?: boolean;
3502
+ };
3503
+ /** @default {
3504
+ * "alias": "",
3505
+ * "enabled": true
3506
+ * } */
3507
+ cleaned_company_name?: {
3196
3508
  /** @default */
3197
3509
  alias?: string;
3198
3510
  /** @default true */
@@ -3525,12 +3837,12 @@ export interface paths {
3525
3837
  format?: "json_object" | "json_list" | "json_list_string" | "url" | "website_url" | "profile_url" | "email" | "datetime" | "currency" | "date" | "phone" | "markdown" | "text" | "int" | "decimal" | "address_line_1" | "zip_code" | "percent" | null;
3526
3838
  claimed_by?: {
3527
3839
  /** @enum {string|null} */
3528
- ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | null;
3840
+ ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | null;
3529
3841
  config_hash: string | null;
3530
3842
  };
3531
3843
  resolved_by?: {
3532
3844
  /** @enum {string|null} */
3533
- ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
3845
+ ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
3534
3846
  /** @enum {string|null} */
3535
3847
  environment: "production" | "sandbox" | null;
3536
3848
  config_hash: string | null;
@@ -3566,11 +3878,11 @@ export interface paths {
3566
3878
  waterfall?: {
3567
3879
  attempted_providers: {
3568
3880
  /** @enum {string} */
3569
- provider: "pipe0" | "findymail" | "crustdata" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
3881
+ provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
3570
3882
  }[];
3571
- available_providers: ("pipe0" | "findymail" | "crustdata" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
3883
+ available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
3572
3884
  /** @enum {string} */
3573
- successful_provider?: "pipe0" | "findymail" | "crustdata" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
3885
+ successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
3574
3886
  };
3575
3887
  icon?: {
3576
3888
  /** @enum {string} */
@@ -3613,7 +3925,7 @@ export interface paths {
3613
3925
  type: "string" | "number" | "boolean" | "json" | "unknown";
3614
3926
  label: string;
3615
3927
  added_by: {
3616
- ref: ("prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1") | "input";
3928
+ ref: ("prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1") | "input";
3617
3929
  config_hash: string | null;
3618
3930
  pipe_index: number | null;
3619
3931
  };
@@ -3644,12 +3956,12 @@ export interface paths {
3644
3956
  } | null;
3645
3957
  claimed_by: {
3646
3958
  /** @enum {string|null} */
3647
- ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | null;
3959
+ ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | null;
3648
3960
  config_hash: string | null;
3649
3961
  };
3650
3962
  resolved_by: {
3651
3963
  /** @enum {string|null} */
3652
- ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
3964
+ ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
3653
3965
  /** @enum {string|null} */
3654
3966
  environment: "production" | "sandbox" | null;
3655
3967
  config_hash: string | null;
@@ -3685,11 +3997,11 @@ export interface paths {
3685
3997
  waterfall?: {
3686
3998
  attempted_providers: {
3687
3999
  /** @enum {string} */
3688
- provider: "pipe0" | "findymail" | "crustdata" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
4000
+ provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
3689
4001
  }[];
3690
- available_providers: ("pipe0" | "findymail" | "crustdata" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
4002
+ available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
3691
4003
  /** @enum {string} */
3692
- successful_provider?: "pipe0" | "findymail" | "crustdata" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
4004
+ successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
3693
4005
  };
3694
4006
  icon?: {
3695
4007
  /** @enum {string} */
@@ -4266,6 +4578,9 @@ export interface paths {
4266
4578
  * "provider": "prospeo"
4267
4579
  * },
4268
4580
  * {
4581
+ * "provider": "hunter"
4582
+ * },
4583
+ * {
4269
4584
  * "provider": "icypeas"
4270
4585
  * },
4271
4586
  * {
@@ -4274,8 +4589,12 @@ export interface paths {
4274
4589
  * ] */
4275
4590
  providers?: {
4276
4591
  /** @enum {string} */
4277
- provider: "leadmagic" | "prospeo" | "icypeas" | "findymail";
4592
+ provider: "leadmagic" | "prospeo" | "hunter" | "icypeas" | "findymail";
4278
4593
  }[];
4594
+ /** @default true */
4595
+ allow_catch_all_emails?: boolean;
4596
+ /** @default true */
4597
+ allow_risky_emails?: boolean;
4279
4598
  input_fields?: {
4280
4599
  /** @default {
4281
4600
  * "alias": ""
@@ -4307,6 +4626,16 @@ export interface paths {
4307
4626
  /** @default true */
4308
4627
  enabled?: boolean;
4309
4628
  };
4629
+ /** @default {
4630
+ * "alias": "",
4631
+ * "enabled": true
4632
+ * } */
4633
+ email_validation_status?: {
4634
+ /** @default */
4635
+ alias?: string;
4636
+ /** @default true */
4637
+ enabled?: boolean;
4638
+ };
4310
4639
  };
4311
4640
  };
4312
4641
  } | {
@@ -5514,6 +5843,203 @@ export interface paths {
5514
5843
  };
5515
5844
  };
5516
5845
  };
5846
+ } | {
5847
+ /** @enum {string} */
5848
+ pipe_id: "people:profile:workemail:crustdata@1";
5849
+ trigger?: {
5850
+ /** @enum {string} */
5851
+ action: "run";
5852
+ when: {
5853
+ /** @enum {string} */
5854
+ logic: "and" | "or";
5855
+ conditions: ({
5856
+ /** @enum {string} */
5857
+ property: "value";
5858
+ field_name: string;
5859
+ /** @enum {string} */
5860
+ operator: "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "contains";
5861
+ value: number | string | boolean | null;
5862
+ } | {
5863
+ /** @enum {string} */
5864
+ property: "status";
5865
+ field_name: string;
5866
+ /** @enum {string} */
5867
+ operator: "eq" | "neq";
5868
+ /** @enum {string} */
5869
+ value: "failed" | "no_result" | "completed" | "skipped";
5870
+ })[];
5871
+ };
5872
+ } | null;
5873
+ connector?: {
5874
+ /**
5875
+ * @default first
5876
+ * @enum {string}
5877
+ */
5878
+ strategy?: "first";
5879
+ connections: {
5880
+ /** @enum {string} */
5881
+ type: "vault";
5882
+ connection: string;
5883
+ }[];
5884
+ } | null;
5885
+ config?: {
5886
+ input_fields?: {
5887
+ /** @default {
5888
+ * "alias": ""
5889
+ * } */
5890
+ work_email?: {
5891
+ alias: string;
5892
+ };
5893
+ };
5894
+ output_fields?: {
5895
+ /** @default {
5896
+ * "alias": "",
5897
+ * "enabled": true
5898
+ * } */
5899
+ crustdata_person_match?: {
5900
+ /** @default */
5901
+ alias?: string;
5902
+ /** @default true */
5903
+ enabled?: boolean;
5904
+ };
5905
+ /** @default {
5906
+ * "alias": "",
5907
+ * "enabled": true
5908
+ * } */
5909
+ crustdata_profile_match_score?: {
5910
+ /** @default */
5911
+ alias?: string;
5912
+ /** @default true */
5913
+ enabled?: boolean;
5914
+ };
5915
+ };
5916
+ };
5917
+ } | {
5918
+ /** @enum {string} */
5919
+ pipe_id: "people:identity:email:waterfall@1";
5920
+ connector?: {
5921
+ /**
5922
+ * @default first
5923
+ * @enum {string}
5924
+ */
5925
+ strategy?: "first";
5926
+ connections: {
5927
+ /** @enum {string} */
5928
+ type: "vault";
5929
+ connection: string;
5930
+ }[];
5931
+ } | null;
5932
+ trigger?: {
5933
+ /** @enum {string} */
5934
+ action: "run";
5935
+ when: {
5936
+ /** @enum {string} */
5937
+ logic: "and" | "or";
5938
+ conditions: ({
5939
+ /** @enum {string} */
5940
+ property: "value";
5941
+ field_name: string;
5942
+ /** @enum {string} */
5943
+ operator: "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "contains";
5944
+ value: number | string | boolean | null;
5945
+ } | {
5946
+ /** @enum {string} */
5947
+ property: "status";
5948
+ field_name: string;
5949
+ /** @enum {string} */
5950
+ operator: "eq" | "neq";
5951
+ /** @enum {string} */
5952
+ value: "failed" | "no_result" | "completed" | "skipped";
5953
+ })[];
5954
+ };
5955
+ } | null;
5956
+ config?: {
5957
+ /** @default [
5958
+ * {
5959
+ * "provider": "findymail"
5960
+ * },
5961
+ * {
5962
+ * "provider": "hunter"
5963
+ * },
5964
+ * {
5965
+ * "provider": "crustdata"
5966
+ * }
5967
+ * ] */
5968
+ providers?: {
5969
+ /** @enum {string} */
5970
+ provider: "findymail" | "hunter" | "crustdata";
5971
+ }[];
5972
+ input_fields?: {
5973
+ /** @default {
5974
+ * "alias": ""
5975
+ * } */
5976
+ email?: {
5977
+ alias: string;
5978
+ };
5979
+ };
5980
+ output_fields?: {
5981
+ /** @default {
5982
+ * "alias": "",
5983
+ * "enabled": true
5984
+ * } */
5985
+ name?: {
5986
+ /** @default */
5987
+ alias?: string;
5988
+ /** @default true */
5989
+ enabled?: boolean;
5990
+ };
5991
+ /** @default {
5992
+ * "alias": "",
5993
+ * "enabled": true
5994
+ * } */
5995
+ profile_url?: {
5996
+ /** @default */
5997
+ alias?: string;
5998
+ /** @default true */
5999
+ enabled?: boolean;
6000
+ };
6001
+ /** @default {
6002
+ * "alias": "",
6003
+ * "enabled": true
6004
+ * } */
6005
+ job_title?: {
6006
+ /** @default */
6007
+ alias?: string;
6008
+ /** @default true */
6009
+ enabled?: boolean;
6010
+ };
6011
+ /** @default {
6012
+ * "alias": "",
6013
+ * "enabled": true
6014
+ * } */
6015
+ company_website_url?: {
6016
+ /** @default */
6017
+ alias?: string;
6018
+ /** @default true */
6019
+ enabled?: boolean;
6020
+ };
6021
+ /** @default {
6022
+ * "alias": "",
6023
+ * "enabled": true
6024
+ * } */
6025
+ company_name?: {
6026
+ /** @default */
6027
+ alias?: string;
6028
+ /** @default true */
6029
+ enabled?: boolean;
6030
+ };
6031
+ /** @default {
6032
+ * "alias": "",
6033
+ * "enabled": true
6034
+ * } */
6035
+ company_profile_url?: {
6036
+ /** @default */
6037
+ alias?: string;
6038
+ /** @default true */
6039
+ enabled?: boolean;
6040
+ };
6041
+ };
6042
+ };
5517
6043
  } | {
5518
6044
  /** @enum {string} */
5519
6045
  pipe_id: "message:send:slack@1";
@@ -6018,7 +6544,6 @@ export interface paths {
6018
6544
  };
6019
6545
  } | null;
6020
6546
  config?: {
6021
- /** @default null */
6022
6547
  page_limit?: number | null;
6023
6548
  /**
6024
6549
  * @default include
@@ -6374,11 +6899,14 @@ export interface paths {
6374
6899
  * },
6375
6900
  * {
6376
6901
  * "provider": "findymail"
6902
+ * },
6903
+ * {
6904
+ * "provider": "clado"
6377
6905
  * }
6378
6906
  * ] */
6379
6907
  providers?: {
6380
6908
  /** @enum {string} */
6381
- provider: "leadmagic" | "prospeo" | "findymail";
6909
+ provider: "leadmagic" | "prospeo" | "findymail" | "clado";
6382
6910
  }[];
6383
6911
  input_fields?: {
6384
6912
  /** @default {
@@ -6911,6 +7439,102 @@ export interface paths {
6911
7439
  };
6912
7440
  };
6913
7441
  };
7442
+ } | {
7443
+ /** @enum {string} */
7444
+ pipe_id: "people:workemail:profileurl:waterfall@1";
7445
+ connector?: {
7446
+ /**
7447
+ * @default first
7448
+ * @enum {string}
7449
+ */
7450
+ strategy?: "first";
7451
+ connections: {
7452
+ /** @enum {string} */
7453
+ type: "vault";
7454
+ connection: string;
7455
+ }[];
7456
+ } | null;
7457
+ trigger?: {
7458
+ /** @enum {string} */
7459
+ action: "run";
7460
+ when: {
7461
+ /** @enum {string} */
7462
+ logic: "and" | "or";
7463
+ conditions: ({
7464
+ /** @enum {string} */
7465
+ property: "value";
7466
+ field_name: string;
7467
+ /** @enum {string} */
7468
+ operator: "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "contains";
7469
+ value: number | string | boolean | null;
7470
+ } | {
7471
+ /** @enum {string} */
7472
+ property: "status";
7473
+ field_name: string;
7474
+ /** @enum {string} */
7475
+ operator: "eq" | "neq";
7476
+ /** @enum {string} */
7477
+ value: "failed" | "no_result" | "completed" | "skipped";
7478
+ })[];
7479
+ };
7480
+ } | null;
7481
+ config?: {
7482
+ /** @default [
7483
+ * {
7484
+ * "provider": "hunter"
7485
+ * },
7486
+ * {
7487
+ * "provider": "findymail"
7488
+ * },
7489
+ * {
7490
+ * "provider": "leadmagic"
7491
+ * },
7492
+ * {
7493
+ * "provider": "crustdata"
7494
+ * },
7495
+ * {
7496
+ * "provider": "clado"
7497
+ * }
7498
+ * ] */
7499
+ providers?: {
7500
+ /** @enum {string} */
7501
+ provider: "hunter" | "findymail" | "leadmagic" | "crustdata" | "clado";
7502
+ }[];
7503
+ /** @default true */
7504
+ allow_catch_all_emails?: boolean;
7505
+ /** @default true */
7506
+ allow_risky_emails?: boolean;
7507
+ input_fields?: {
7508
+ /** @default {
7509
+ * "alias": ""
7510
+ * } */
7511
+ profile_url?: {
7512
+ alias: string;
7513
+ };
7514
+ };
7515
+ output_fields?: {
7516
+ /** @default {
7517
+ * "alias": "",
7518
+ * "enabled": true
7519
+ * } */
7520
+ work_email?: {
7521
+ /** @default */
7522
+ alias?: string;
7523
+ /** @default true */
7524
+ enabled?: boolean;
7525
+ };
7526
+ /** @default {
7527
+ * "alias": "",
7528
+ * "enabled": true
7529
+ * } */
7530
+ email_validation_status?: {
7531
+ /** @default */
7532
+ alias?: string;
7533
+ /** @default true */
7534
+ enabled?: boolean;
7535
+ };
7536
+ };
7537
+ };
6914
7538
  } | {
6915
7539
  /** @enum {string} */
6916
7540
  pipe_id: "company:identity@1";
@@ -7307,12 +7931,12 @@ export interface paths {
7307
7931
  format?: "json_object" | "json_list" | "json_list_string" | "url" | "website_url" | "profile_url" | "email" | "datetime" | "currency" | "date" | "phone" | "markdown" | "text" | "int" | "decimal" | "address_line_1" | "zip_code" | "percent" | null;
7308
7932
  claimed_by?: {
7309
7933
  /** @enum {string|null} */
7310
- ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | null;
7934
+ ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | null;
7311
7935
  config_hash: string | null;
7312
7936
  };
7313
7937
  resolved_by?: {
7314
7938
  /** @enum {string|null} */
7315
- ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
7939
+ ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
7316
7940
  /** @enum {string|null} */
7317
7941
  environment: "production" | "sandbox" | null;
7318
7942
  config_hash: string | null;
@@ -7348,11 +7972,11 @@ export interface paths {
7348
7972
  waterfall?: {
7349
7973
  attempted_providers: {
7350
7974
  /** @enum {string} */
7351
- provider: "pipe0" | "findymail" | "crustdata" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
7975
+ provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
7352
7976
  }[];
7353
- available_providers: ("pipe0" | "findymail" | "crustdata" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
7977
+ available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
7354
7978
  /** @enum {string} */
7355
- successful_provider?: "pipe0" | "findymail" | "crustdata" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
7979
+ successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
7356
7980
  };
7357
7981
  icon?: {
7358
7982
  /** @enum {string} */
@@ -7395,7 +8019,7 @@ export interface paths {
7395
8019
  type: "string" | "number" | "boolean" | "json" | "unknown";
7396
8020
  label: string;
7397
8021
  added_by: {
7398
- ref: ("prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1") | "input";
8022
+ ref: ("prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1") | "input";
7399
8023
  config_hash: string | null;
7400
8024
  pipe_index: number | null;
7401
8025
  };
@@ -7426,12 +8050,12 @@ export interface paths {
7426
8050
  } | null;
7427
8051
  claimed_by: {
7428
8052
  /** @enum {string|null} */
7429
- ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | null;
8053
+ ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | null;
7430
8054
  config_hash: string | null;
7431
8055
  };
7432
8056
  resolved_by: {
7433
8057
  /** @enum {string|null} */
7434
- ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
8058
+ ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
7435
8059
  /** @enum {string|null} */
7436
8060
  environment: "production" | "sandbox" | null;
7437
8061
  config_hash: string | null;
@@ -7467,11 +8091,11 @@ export interface paths {
7467
8091
  waterfall?: {
7468
8092
  attempted_providers: {
7469
8093
  /** @enum {string} */
7470
- provider: "pipe0" | "findymail" | "crustdata" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
8094
+ provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
7471
8095
  }[];
7472
- available_providers: ("pipe0" | "findymail" | "crustdata" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
8096
+ available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
7473
8097
  /** @enum {string} */
7474
- successful_provider?: "pipe0" | "findymail" | "crustdata" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
8098
+ successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
7475
8099
  };
7476
8100
  icon?: {
7477
8101
  /** @enum {string} */
@@ -7602,7 +8226,7 @@ export interface paths {
7602
8226
  type: "string" | "number" | "boolean" | "json" | "unknown";
7603
8227
  label: string;
7604
8228
  added_by: {
7605
- ref: ("prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1") | "input";
8229
+ ref: ("prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1") | "input";
7606
8230
  config_hash: string | null;
7607
8231
  pipe_index: number | null;
7608
8232
  };
@@ -7633,12 +8257,12 @@ export interface paths {
7633
8257
  } | null;
7634
8258
  claimed_by: {
7635
8259
  /** @enum {string|null} */
7636
- ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | null;
8260
+ ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | null;
7637
8261
  config_hash: string | null;
7638
8262
  };
7639
8263
  resolved_by: {
7640
8264
  /** @enum {string|null} */
7641
- ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
8265
+ ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
7642
8266
  /** @enum {string|null} */
7643
8267
  environment: "production" | "sandbox" | null;
7644
8268
  config_hash: string | null;
@@ -7674,11 +8298,11 @@ export interface paths {
7674
8298
  waterfall?: {
7675
8299
  attempted_providers: {
7676
8300
  /** @enum {string} */
7677
- provider: "pipe0" | "findymail" | "crustdata" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
8301
+ provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
7678
8302
  }[];
7679
- available_providers: ("pipe0" | "findymail" | "crustdata" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
8303
+ available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
7680
8304
  /** @enum {string} */
7681
- successful_provider?: "pipe0" | "findymail" | "crustdata" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
8305
+ successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
7682
8306
  };
7683
8307
  icon?: {
7684
8308
  /** @enum {string} */
@@ -7817,7 +8441,7 @@ export interface paths {
7817
8441
  format?: "json_object" | "json_list" | "json_list_string" | "url" | "website_url" | "profile_url" | "email" | "datetime" | "currency" | "date" | "phone" | "markdown" | "text" | "int" | "decimal" | "address_line_1" | "zip_code" | "percent" | null;
7818
8442
  resolved_by?: {
7819
8443
  /** @enum {string|null} */
7820
- ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
8444
+ ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
7821
8445
  /** @enum {string|null} */
7822
8446
  environment: "production" | "sandbox" | null;
7823
8447
  config_hash: string | null;
@@ -7853,11 +8477,11 @@ export interface paths {
7853
8477
  waterfall?: {
7854
8478
  attempted_providers: {
7855
8479
  /** @enum {string} */
7856
- provider: "pipe0" | "findymail" | "crustdata" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
8480
+ provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
7857
8481
  }[];
7858
- available_providers: ("pipe0" | "findymail" | "crustdata" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
8482
+ available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
7859
8483
  /** @enum {string} */
7860
- successful_provider?: "pipe0" | "findymail" | "crustdata" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
8484
+ successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
7861
8485
  };
7862
8486
  icon?: {
7863
8487
  /** @enum {string} */
@@ -8911,7 +9535,6 @@ export interface paths {
8911
9535
  limit?: number;
8912
9536
  /** @default */
8913
9537
  search_id?: string;
8914
- /** @default null */
8915
9538
  offset?: number | null;
8916
9539
  output_fields?: {
8917
9540
  /** @default {
@@ -9007,7 +9630,7 @@ export interface paths {
9007
9630
  format?: "json_object" | "json_list" | "json_list_string" | "url" | "website_url" | "profile_url" | "email" | "datetime" | "currency" | "date" | "phone" | "markdown" | "text" | "int" | "decimal" | "address_line_1" | "zip_code" | "percent" | null;
9008
9631
  resolved_by?: {
9009
9632
  /** @enum {string|null} */
9010
- ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
9633
+ ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
9011
9634
  /** @enum {string|null} */
9012
9635
  environment: "production" | "sandbox" | null;
9013
9636
  config_hash: string | null;
@@ -9043,11 +9666,11 @@ export interface paths {
9043
9666
  waterfall?: {
9044
9667
  attempted_providers: {
9045
9668
  /** @enum {string} */
9046
- provider: "pipe0" | "findymail" | "crustdata" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
9669
+ provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
9047
9670
  }[];
9048
- available_providers: ("pipe0" | "findymail" | "crustdata" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
9671
+ available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
9049
9672
  /** @enum {string} */
9050
- successful_provider?: "pipe0" | "findymail" | "crustdata" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
9673
+ successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
9051
9674
  };
9052
9675
  icon?: {
9053
9676
  /** @enum {string} */
@@ -10099,7 +10722,6 @@ export interface paths {
10099
10722
  limit?: number;
10100
10723
  /** @default */
10101
10724
  search_id?: string;
10102
- /** @default null */
10103
10725
  offset?: number | null;
10104
10726
  output_fields?: {
10105
10727
  /** @default {
@@ -10195,7 +10817,7 @@ export interface paths {
10195
10817
  format?: "json_object" | "json_list" | "json_list_string" | "url" | "website_url" | "profile_url" | "email" | "datetime" | "currency" | "date" | "phone" | "markdown" | "text" | "int" | "decimal" | "address_line_1" | "zip_code" | "percent" | null;
10196
10818
  resolved_by?: {
10197
10819
  /** @enum {string|null} */
10198
- ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
10820
+ ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
10199
10821
  /** @enum {string|null} */
10200
10822
  environment: "production" | "sandbox" | null;
10201
10823
  config_hash: string | null;
@@ -10231,11 +10853,11 @@ export interface paths {
10231
10853
  waterfall?: {
10232
10854
  attempted_providers: {
10233
10855
  /** @enum {string} */
10234
- provider: "pipe0" | "findymail" | "crustdata" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
10856
+ provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
10235
10857
  }[];
10236
- available_providers: ("pipe0" | "findymail" | "crustdata" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
10858
+ available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
10237
10859
  /** @enum {string} */
10238
- successful_provider?: "pipe0" | "findymail" | "crustdata" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
10860
+ successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
10239
10861
  };
10240
10862
  icon?: {
10241
10863
  /** @enum {string} */