@pipe0/client 0.0.7 → 0.0.8

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.
@@ -123,8 +123,8 @@ export interface paths {
123
123
  };
124
124
  };
125
125
  };
126
- /** @enum {string} */
127
- model?: "gemini-flash-latest" | "openai-gpt-latest" | "openai-gpt-mini-latest";
126
+ /** @enum {string|null} */
127
+ model?: "gemini-flash-latest" | "openai-gpt-latest" | "openai-gpt-mini-latest" | "" | null;
128
128
  };
129
129
  } | {
130
130
  /** @enum {string} */
@@ -1277,11 +1277,11 @@ export interface paths {
1277
1277
  } | null;
1278
1278
  config: {
1279
1279
  template: string;
1280
- /** @enum {string} */
1281
- model?: "gemini-flash-latest" | "openai-gpt-latest" | "openai-gpt-mini-latest";
1280
+ /** @enum {string|null} */
1281
+ model?: "gemini-flash-latest" | "openai-gpt-latest" | "openai-gpt-mini-latest" | "" | null;
1282
1282
  signature: string;
1283
- /** @enum {string} */
1284
- persona?: "sales" | "human_resources" | "customer_success";
1283
+ /** @enum {string|null} */
1284
+ persona?: "sales" | "human_resources" | "customer_success" | "" | null;
1285
1285
  output_fields?: {
1286
1286
  /** @default {
1287
1287
  * "alias": "",
@@ -1660,6 +1660,78 @@ export interface paths {
1660
1660
  };
1661
1661
  };
1662
1662
  };
1663
+ } | {
1664
+ /** @enum {string} */
1665
+ pipe_id: "people:posts:crustdata@1";
1666
+ trigger?: {
1667
+ /** @enum {string} */
1668
+ action: "run";
1669
+ when: {
1670
+ /** @enum {string} */
1671
+ logic: "and" | "or";
1672
+ conditions: ({
1673
+ /** @enum {string} */
1674
+ property: "value";
1675
+ field_name: string;
1676
+ /** @enum {string} */
1677
+ operator: "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "contains";
1678
+ value: number | string | boolean | null;
1679
+ } | {
1680
+ /** @enum {string} */
1681
+ property: "status";
1682
+ field_name: string;
1683
+ /** @enum {string} */
1684
+ operator: "eq" | "neq";
1685
+ /** @enum {string} */
1686
+ value: "failed" | "no_result" | "completed" | "skipped";
1687
+ })[];
1688
+ };
1689
+ } | null;
1690
+ connector?: {
1691
+ /**
1692
+ * @default first
1693
+ * @enum {string}
1694
+ */
1695
+ strategy?: "first";
1696
+ connections: {
1697
+ /** @enum {string} */
1698
+ type: "vault";
1699
+ connection: string;
1700
+ }[];
1701
+ } | null;
1702
+ config?: {
1703
+ limit: number;
1704
+ input_fields?: {
1705
+ /** @default {
1706
+ * "alias": ""
1707
+ * } */
1708
+ profile_url?: {
1709
+ alias: string;
1710
+ };
1711
+ };
1712
+ output_fields?: {
1713
+ /** @default {
1714
+ * "alias": "",
1715
+ * "enabled": true
1716
+ * } */
1717
+ post_list_string?: {
1718
+ /** @default */
1719
+ alias?: string;
1720
+ /** @default true */
1721
+ enabled?: boolean;
1722
+ };
1723
+ /** @default {
1724
+ * "alias": "",
1725
+ * "enabled": true
1726
+ * } */
1727
+ crustdata_post_list?: {
1728
+ /** @default */
1729
+ alias?: string;
1730
+ /** @default true */
1731
+ enabled?: boolean;
1732
+ };
1733
+ };
1734
+ };
1663
1735
  } | {
1664
1736
  /** @enum {string} */
1665
1737
  pipe_id: "message:send:slack@1";
@@ -1839,8 +1911,8 @@ export interface paths {
1839
1911
  } | null;
1840
1912
  config: {
1841
1913
  template: string;
1842
- /** @enum {string} */
1843
- model?: "gemini-flash-latest" | "openai-gpt-latest" | "openai-gpt-mini-latest";
1914
+ /** @enum {string|null} */
1915
+ model?: "gemini-flash-latest" | "openai-gpt-latest" | "openai-gpt-mini-latest" | "" | null;
1844
1916
  output_fields?: {
1845
1917
  /** @default {
1846
1918
  * "alias": "",
@@ -1949,7 +2021,7 @@ export interface paths {
1949
2021
  } | null;
1950
2022
  config?: {
1951
2023
  /** @default false */
1952
- scrape_main_only?: boolean;
2024
+ scrape_main_only?: boolean | null;
1953
2025
  input_fields?: {
1954
2026
  /** @default {
1955
2027
  * "alias": ""
@@ -2032,7 +2104,7 @@ export interface paths {
2032
2104
  } | null;
2033
2105
  config?: {
2034
2106
  /** @default false */
2035
- scrape_main_only?: boolean;
2107
+ scrape_main_only?: boolean | null;
2036
2108
  formats?: ("markdown" | "html" | "links")[];
2037
2109
  input_fields?: {
2038
2110
  /** @default {
@@ -2100,9 +2172,9 @@ export interface paths {
2100
2172
  };
2101
2173
  extraction_prompt: string;
2102
2174
  /** @default false */
2103
- enable_full_domain_crawl?: boolean;
2175
+ enable_full_domain_crawl?: boolean | null;
2104
2176
  /** @default false */
2105
- enable_web_search?: boolean;
2177
+ enable_web_search?: boolean | null;
2106
2178
  input_fields?: {
2107
2179
  /** @default {
2108
2180
  * "alias": ""
@@ -2164,12 +2236,13 @@ export interface paths {
2164
2236
  };
2165
2237
  } | null;
2166
2238
  config?: {
2167
- page_limit?: number;
2239
+ /** @default null */
2240
+ page_limit?: number | null;
2168
2241
  /**
2169
2242
  * @default include
2170
- * @enum {string}
2243
+ * @enum {string|null}
2171
2244
  */
2172
- sitemap?: "include" | "skip" | "only";
2245
+ sitemap?: "include" | "skip" | "only" | "";
2173
2246
  /** @default */
2174
2247
  search?: string;
2175
2248
  input_fields?: {
@@ -3452,12 +3525,12 @@ export interface paths {
3452
3525
  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;
3453
3526
  claimed_by?: {
3454
3527
  /** @enum {string|null} */
3455
- 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" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | 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;
3456
3529
  config_hash: string | null;
3457
3530
  };
3458
3531
  resolved_by?: {
3459
3532
  /** @enum {string|null} */
3460
- 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" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | 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;
3461
3534
  /** @enum {string|null} */
3462
3535
  environment: "production" | "sandbox" | null;
3463
3536
  config_hash: string | null;
@@ -3493,11 +3566,11 @@ export interface paths {
3493
3566
  waterfall?: {
3494
3567
  attempted_providers: {
3495
3568
  /** @enum {string} */
3496
- provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
3569
+ provider: "pipe0" | "findymail" | "crustdata" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
3497
3570
  }[];
3498
- available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
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")[];
3499
3572
  /** @enum {string} */
3500
- successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
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";
3501
3574
  };
3502
3575
  icon?: {
3503
3576
  /** @enum {string} */
@@ -3540,7 +3613,7 @@ export interface paths {
3540
3613
  type: "string" | "number" | "boolean" | "json" | "unknown";
3541
3614
  label: string;
3542
3615
  added_by: {
3543
- 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" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1") | "input";
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";
3544
3617
  config_hash: string | null;
3545
3618
  pipe_index: number | null;
3546
3619
  };
@@ -3571,12 +3644,12 @@ export interface paths {
3571
3644
  } | null;
3572
3645
  claimed_by: {
3573
3646
  /** @enum {string|null} */
3574
- 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" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | 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;
3575
3648
  config_hash: string | null;
3576
3649
  };
3577
3650
  resolved_by: {
3578
3651
  /** @enum {string|null} */
3579
- 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" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | 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;
3580
3653
  /** @enum {string|null} */
3581
3654
  environment: "production" | "sandbox" | null;
3582
3655
  config_hash: string | null;
@@ -3612,11 +3685,11 @@ export interface paths {
3612
3685
  waterfall?: {
3613
3686
  attempted_providers: {
3614
3687
  /** @enum {string} */
3615
- provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
3688
+ provider: "pipe0" | "findymail" | "crustdata" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
3616
3689
  }[];
3617
- available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
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")[];
3618
3691
  /** @enum {string} */
3619
- successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
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";
3620
3693
  };
3621
3694
  icon?: {
3622
3695
  /** @enum {string} */
@@ -3832,8 +3905,8 @@ export interface paths {
3832
3905
  };
3833
3906
  };
3834
3907
  };
3835
- /** @enum {string} */
3836
- model?: "gemini-flash-latest" | "openai-gpt-latest" | "openai-gpt-mini-latest";
3908
+ /** @enum {string|null} */
3909
+ model?: "gemini-flash-latest" | "openai-gpt-latest" | "openai-gpt-mini-latest" | "" | null;
3837
3910
  };
3838
3911
  } | {
3839
3912
  /** @enum {string} */
@@ -4986,11 +5059,11 @@ export interface paths {
4986
5059
  } | null;
4987
5060
  config: {
4988
5061
  template: string;
4989
- /** @enum {string} */
4990
- model?: "gemini-flash-latest" | "openai-gpt-latest" | "openai-gpt-mini-latest";
5062
+ /** @enum {string|null} */
5063
+ model?: "gemini-flash-latest" | "openai-gpt-latest" | "openai-gpt-mini-latest" | "" | null;
4991
5064
  signature: string;
4992
- /** @enum {string} */
4993
- persona?: "sales" | "human_resources" | "customer_success";
5065
+ /** @enum {string|null} */
5066
+ persona?: "sales" | "human_resources" | "customer_success" | "" | null;
4994
5067
  output_fields?: {
4995
5068
  /** @default {
4996
5069
  * "alias": "",
@@ -5369,6 +5442,78 @@ export interface paths {
5369
5442
  };
5370
5443
  };
5371
5444
  };
5445
+ } | {
5446
+ /** @enum {string} */
5447
+ pipe_id: "people:posts:crustdata@1";
5448
+ trigger?: {
5449
+ /** @enum {string} */
5450
+ action: "run";
5451
+ when: {
5452
+ /** @enum {string} */
5453
+ logic: "and" | "or";
5454
+ conditions: ({
5455
+ /** @enum {string} */
5456
+ property: "value";
5457
+ field_name: string;
5458
+ /** @enum {string} */
5459
+ operator: "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "contains";
5460
+ value: number | string | boolean | null;
5461
+ } | {
5462
+ /** @enum {string} */
5463
+ property: "status";
5464
+ field_name: string;
5465
+ /** @enum {string} */
5466
+ operator: "eq" | "neq";
5467
+ /** @enum {string} */
5468
+ value: "failed" | "no_result" | "completed" | "skipped";
5469
+ })[];
5470
+ };
5471
+ } | null;
5472
+ connector?: {
5473
+ /**
5474
+ * @default first
5475
+ * @enum {string}
5476
+ */
5477
+ strategy?: "first";
5478
+ connections: {
5479
+ /** @enum {string} */
5480
+ type: "vault";
5481
+ connection: string;
5482
+ }[];
5483
+ } | null;
5484
+ config?: {
5485
+ limit: number;
5486
+ input_fields?: {
5487
+ /** @default {
5488
+ * "alias": ""
5489
+ * } */
5490
+ profile_url?: {
5491
+ alias: string;
5492
+ };
5493
+ };
5494
+ output_fields?: {
5495
+ /** @default {
5496
+ * "alias": "",
5497
+ * "enabled": true
5498
+ * } */
5499
+ post_list_string?: {
5500
+ /** @default */
5501
+ alias?: string;
5502
+ /** @default true */
5503
+ enabled?: boolean;
5504
+ };
5505
+ /** @default {
5506
+ * "alias": "",
5507
+ * "enabled": true
5508
+ * } */
5509
+ crustdata_post_list?: {
5510
+ /** @default */
5511
+ alias?: string;
5512
+ /** @default true */
5513
+ enabled?: boolean;
5514
+ };
5515
+ };
5516
+ };
5372
5517
  } | {
5373
5518
  /** @enum {string} */
5374
5519
  pipe_id: "message:send:slack@1";
@@ -5548,8 +5693,8 @@ export interface paths {
5548
5693
  } | null;
5549
5694
  config: {
5550
5695
  template: string;
5551
- /** @enum {string} */
5552
- model?: "gemini-flash-latest" | "openai-gpt-latest" | "openai-gpt-mini-latest";
5696
+ /** @enum {string|null} */
5697
+ model?: "gemini-flash-latest" | "openai-gpt-latest" | "openai-gpt-mini-latest" | "" | null;
5553
5698
  output_fields?: {
5554
5699
  /** @default {
5555
5700
  * "alias": "",
@@ -5658,7 +5803,7 @@ export interface paths {
5658
5803
  } | null;
5659
5804
  config?: {
5660
5805
  /** @default false */
5661
- scrape_main_only?: boolean;
5806
+ scrape_main_only?: boolean | null;
5662
5807
  input_fields?: {
5663
5808
  /** @default {
5664
5809
  * "alias": ""
@@ -5741,7 +5886,7 @@ export interface paths {
5741
5886
  } | null;
5742
5887
  config?: {
5743
5888
  /** @default false */
5744
- scrape_main_only?: boolean;
5889
+ scrape_main_only?: boolean | null;
5745
5890
  formats?: ("markdown" | "html" | "links")[];
5746
5891
  input_fields?: {
5747
5892
  /** @default {
@@ -5809,9 +5954,9 @@ export interface paths {
5809
5954
  };
5810
5955
  extraction_prompt: string;
5811
5956
  /** @default false */
5812
- enable_full_domain_crawl?: boolean;
5957
+ enable_full_domain_crawl?: boolean | null;
5813
5958
  /** @default false */
5814
- enable_web_search?: boolean;
5959
+ enable_web_search?: boolean | null;
5815
5960
  input_fields?: {
5816
5961
  /** @default {
5817
5962
  * "alias": ""
@@ -5873,12 +6018,13 @@ export interface paths {
5873
6018
  };
5874
6019
  } | null;
5875
6020
  config?: {
5876
- page_limit?: number;
6021
+ /** @default null */
6022
+ page_limit?: number | null;
5877
6023
  /**
5878
6024
  * @default include
5879
- * @enum {string}
6025
+ * @enum {string|null}
5880
6026
  */
5881
- sitemap?: "include" | "skip" | "only";
6027
+ sitemap?: "include" | "skip" | "only" | "";
5882
6028
  /** @default */
5883
6029
  search?: string;
5884
6030
  input_fields?: {
@@ -7161,12 +7307,12 @@ export interface paths {
7161
7307
  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;
7162
7308
  claimed_by?: {
7163
7309
  /** @enum {string|null} */
7164
- 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" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | 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;
7165
7311
  config_hash: string | null;
7166
7312
  };
7167
7313
  resolved_by?: {
7168
7314
  /** @enum {string|null} */
7169
- 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" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | 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;
7170
7316
  /** @enum {string|null} */
7171
7317
  environment: "production" | "sandbox" | null;
7172
7318
  config_hash: string | null;
@@ -7202,11 +7348,11 @@ export interface paths {
7202
7348
  waterfall?: {
7203
7349
  attempted_providers: {
7204
7350
  /** @enum {string} */
7205
- provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
7351
+ provider: "pipe0" | "findymail" | "crustdata" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
7206
7352
  }[];
7207
- available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
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")[];
7208
7354
  /** @enum {string} */
7209
- successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
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";
7210
7356
  };
7211
7357
  icon?: {
7212
7358
  /** @enum {string} */
@@ -7249,7 +7395,7 @@ export interface paths {
7249
7395
  type: "string" | "number" | "boolean" | "json" | "unknown";
7250
7396
  label: string;
7251
7397
  added_by: {
7252
- 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" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1") | "input";
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";
7253
7399
  config_hash: string | null;
7254
7400
  pipe_index: number | null;
7255
7401
  };
@@ -7280,12 +7426,12 @@ export interface paths {
7280
7426
  } | null;
7281
7427
  claimed_by: {
7282
7428
  /** @enum {string|null} */
7283
- 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" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | 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;
7284
7430
  config_hash: string | null;
7285
7431
  };
7286
7432
  resolved_by: {
7287
7433
  /** @enum {string|null} */
7288
- 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" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | 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;
7289
7435
  /** @enum {string|null} */
7290
7436
  environment: "production" | "sandbox" | null;
7291
7437
  config_hash: string | null;
@@ -7321,11 +7467,11 @@ export interface paths {
7321
7467
  waterfall?: {
7322
7468
  attempted_providers: {
7323
7469
  /** @enum {string} */
7324
- provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
7470
+ provider: "pipe0" | "findymail" | "crustdata" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
7325
7471
  }[];
7326
- available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
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")[];
7327
7473
  /** @enum {string} */
7328
- successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
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";
7329
7475
  };
7330
7476
  icon?: {
7331
7477
  /** @enum {string} */
@@ -7456,7 +7602,7 @@ export interface paths {
7456
7602
  type: "string" | "number" | "boolean" | "json" | "unknown";
7457
7603
  label: string;
7458
7604
  added_by: {
7459
- 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" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1") | "input";
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";
7460
7606
  config_hash: string | null;
7461
7607
  pipe_index: number | null;
7462
7608
  };
@@ -7487,12 +7633,12 @@ export interface paths {
7487
7633
  } | null;
7488
7634
  claimed_by: {
7489
7635
  /** @enum {string|null} */
7490
- 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" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | 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;
7491
7637
  config_hash: string | null;
7492
7638
  };
7493
7639
  resolved_by: {
7494
7640
  /** @enum {string|null} */
7495
- 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" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | 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;
7496
7642
  /** @enum {string|null} */
7497
7643
  environment: "production" | "sandbox" | null;
7498
7644
  config_hash: string | null;
@@ -7528,11 +7674,11 @@ export interface paths {
7528
7674
  waterfall?: {
7529
7675
  attempted_providers: {
7530
7676
  /** @enum {string} */
7531
- provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
7677
+ provider: "pipe0" | "findymail" | "crustdata" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
7532
7678
  }[];
7533
- available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
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")[];
7534
7680
  /** @enum {string} */
7535
- successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
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";
7536
7682
  };
7537
7683
  icon?: {
7538
7684
  /** @enum {string} */
@@ -7671,7 +7817,7 @@ export interface paths {
7671
7817
  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;
7672
7818
  resolved_by?: {
7673
7819
  /** @enum {string|null} */
7674
- 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" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | 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;
7675
7821
  /** @enum {string|null} */
7676
7822
  environment: "production" | "sandbox" | null;
7677
7823
  config_hash: string | null;
@@ -7707,11 +7853,11 @@ export interface paths {
7707
7853
  waterfall?: {
7708
7854
  attempted_providers: {
7709
7855
  /** @enum {string} */
7710
- provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
7856
+ provider: "pipe0" | "findymail" | "crustdata" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
7711
7857
  }[];
7712
- available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
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")[];
7713
7859
  /** @enum {string} */
7714
- successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
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";
7715
7861
  };
7716
7862
  icon?: {
7717
7863
  /** @enum {string} */
@@ -7737,7 +7883,7 @@ export interface paths {
7737
7883
  search_statuses: {
7738
7884
  search: {
7739
7885
  /** @enum {string} */
7740
- ref: "people:profiles:icypeas@1" | "companies:profiles:icypeas@1" | "people:profiles:clado@1" | "people:profiles:clado@2" | "people:employees:leadmagic@1" | "companies:profiles:exa@1" | "people:profiles:exa@1";
7886
+ ref: "people:profiles:icypeas@1" | "companies:profiles:icypeas@1" | "people:profiles:clado@1" | "people:profiles:clado@2" | "people:employees:leadmagic@1" | "companies:profiles:exa@1" | "people:profiles:exa@1" | "companies:profiles:crustdata@1" | "people:profiles:crustdata@1";
7741
7887
  };
7742
7888
  /** @enum {string} */
7743
7889
  status: "pending" | "processing" | "failed" | "completed";
@@ -7754,6 +7900,11 @@ export interface paths {
7754
7900
  offset?: number;
7755
7901
  };
7756
7902
  };
7903
+ crustdata?: {
7904
+ pagination: {
7905
+ cursor: string | null;
7906
+ };
7907
+ };
7757
7908
  };
7758
7909
  };
7759
7910
  }[];
@@ -7879,7 +8030,7 @@ export interface paths {
7879
8030
  };
7880
8031
  searches: ({
7881
8032
  /** @enum {string} */
7882
- search_id: "people:profiles:icypeas@1";
8033
+ search_id: "people:profiles:crustdata@1";
7883
8034
  connector?: {
7884
8035
  /**
7885
8036
  * @default first
@@ -7895,6 +8046,7 @@ export interface paths {
7895
8046
  config: {
7896
8047
  /** @default 100 */
7897
8048
  limit?: number;
8049
+ cursor: string;
7898
8050
  output_fields?: {
7899
8051
  /** @default {
7900
8052
  * "alias": "",
@@ -7906,26 +8058,6 @@ export interface paths {
7906
8058
  /** @default true */
7907
8059
  enabled?: boolean;
7908
8060
  };
7909
- /** @default {
7910
- * "alias": "",
7911
- * "enabled": true
7912
- * } */
7913
- job_title?: {
7914
- /** @default */
7915
- alias?: string;
7916
- /** @default true */
7917
- enabled?: boolean;
7918
- };
7919
- /** @default {
7920
- * "alias": "",
7921
- * "enabled": true
7922
- * } */
7923
- profile_headline?: {
7924
- /** @default */
7925
- alias?: string;
7926
- /** @default true */
7927
- enabled?: boolean;
7928
- };
7929
8061
  /** @default {
7930
8062
  * "alias": "",
7931
8063
  * "enabled": true
@@ -7940,7 +8072,7 @@ export interface paths {
7940
8072
  * "alias": "",
7941
8073
  * "enabled": true
7942
8074
  * } */
7943
- company_profile_url?: {
8075
+ profile_url?: {
7944
8076
  /** @default */
7945
8077
  alias?: string;
7946
8078
  /** @default true */
@@ -7950,7 +8082,7 @@ export interface paths {
7950
8082
  * "alias": "",
7951
8083
  * "enabled": true
7952
8084
  * } */
7953
- profile_url?: {
8085
+ job_title?: {
7954
8086
  /** @default */
7955
8087
  alias?: string;
7956
8088
  /** @default true */
@@ -7960,7 +8092,7 @@ export interface paths {
7960
8092
  * "alias": "",
7961
8093
  * "enabled": true
7962
8094
  * } */
7963
- icypeas_person_match?: {
8095
+ crustdata_person_match?: {
7964
8096
  /** @default */
7965
8097
  alias?: string;
7966
8098
  /** @default true */
@@ -7968,77 +8100,63 @@ export interface paths {
7968
8100
  };
7969
8101
  };
7970
8102
  filters: {
7971
- firstname?: {
7972
- /** @default [] */
7973
- include?: string[];
7974
- /** @default [] */
7975
- exclude?: string[];
7976
- };
7977
- lastname?: {
8103
+ locations?: string[];
8104
+ /** @default [] */
8105
+ profile_headline_keywords?: string[];
8106
+ /** @default [] */
8107
+ profile_summary_keywords?: string[];
8108
+ profile_languages?: ("Arabic" | "English" | "Spanish" | "Portuguese" | "Chinese" | "French" | "Italian" | "Russian" | "German" | "Dutch" | "Turkish" | "Tagalog" | "Polish" | "Korean" | "Japanese" | "Malay" | "Norwegian" | "Danish" | "Romanian" | "Swedish" | "Bahasa Indonesia" | "Czech")[];
8109
+ languages?: string[];
8110
+ skills?: string[];
8111
+ years_of_experience?: ("Less than 1 year" | "1 to 2 years" | "3 to 5 years" | "6 to 10 years" | "More than 10 years")[];
8112
+ /** @default {
8113
+ * "include": [],
8114
+ * "exclude": []
8115
+ * } */
8116
+ current_seniority_levels?: {
7978
8117
  /** @default [] */
7979
8118
  include?: string[];
7980
8119
  /** @default [] */
7981
8120
  exclude?: string[];
7982
8121
  };
7983
- currentJobTitle?: {
7984
- /** @default [] */
7985
- include?: string[];
7986
- /** @default [] */
7987
- exclude?: string[];
7988
- };
7989
- pastJobTitle?: {
7990
- /** @default [] */
7991
- include?: string[];
7992
- /** @default [] */
7993
- exclude?: string[];
7994
- };
7995
- currentCompanyName?: {
7996
- /** @default [] */
7997
- include?: string[];
7998
- /** @default [] */
7999
- exclude?: string[];
8000
- };
8001
- pastCompanyName?: {
8002
- /** @default [] */
8003
- include?: string[];
8004
- /** @default [] */
8005
- exclude?: string[];
8006
- };
8007
- school?: {
8008
- /** @default [] */
8009
- include?: string[];
8010
- /** @default [] */
8011
- exclude?: string[];
8012
- };
8013
- location?: {
8014
- /** @default [] */
8015
- include?: string[];
8016
- /** @default [] */
8017
- exclude?: string[];
8018
- };
8019
- languages?: {
8020
- /** @default [] */
8021
- include?: string[];
8022
- /** @default [] */
8023
- exclude?: string[];
8024
- };
8025
- skills?: {
8026
- /** @default [] */
8027
- include?: string[];
8028
- /** @default [] */
8029
- exclude?: string[];
8030
- };
8031
- keyword?: {
8122
+ /** @default [] */
8123
+ current_employers?: string[];
8124
+ /** @default [] */
8125
+ current_job_titles?: string[];
8126
+ current_employers_linkedin_industries?: string[];
8127
+ years_at_current_company?: ("Less than 1 year" | "1 to 2 years" | "3 to 5 years" | "6 to 10 years" | "More than 10 years")[];
8128
+ /** @default {
8129
+ * "include": [],
8130
+ * "exclude": []
8131
+ * } */
8132
+ previous_seniority_levels?: {
8032
8133
  /** @default [] */
8033
8134
  include?: string[];
8034
8135
  /** @default [] */
8035
8136
  exclude?: string[];
8036
8137
  };
8138
+ /** @default [] */
8139
+ previous_employers?: string[];
8140
+ /** @default [] */
8141
+ previous_job_titles?: string[];
8142
+ previous_employers_linkedin_industries?: string[];
8143
+ /** @default [] */
8144
+ certifications?: string[];
8145
+ /** @default [] */
8146
+ honors?: string[];
8147
+ /** @default null */
8148
+ recently_changed_jobs?: boolean | null;
8149
+ fields_of_study?: string[];
8150
+ degree_names?: string[];
8151
+ school_names?: string[];
8152
+ current_school_names?: string[];
8153
+ /** @default [] */
8154
+ extracurricular_activities?: string[];
8037
8155
  };
8038
8156
  };
8039
8157
  } | {
8040
8158
  /** @enum {string} */
8041
- search_id: "companies:profiles:icypeas@1";
8159
+ search_id: "companies:profiles:crustdata@1";
8042
8160
  connector?: {
8043
8161
  /**
8044
8162
  * @default first
@@ -8054,6 +8172,7 @@ export interface paths {
8054
8172
  config: {
8055
8173
  /** @default 100 */
8056
8174
  limit?: number;
8175
+ cursor: string;
8057
8176
  output_fields?: {
8058
8177
  /** @default {
8059
8178
  * "alias": "",
@@ -8069,7 +8188,7 @@ export interface paths {
8069
8188
  * "alias": "",
8070
8189
  * "enabled": true
8071
8190
  * } */
8072
- company_industry?: {
8191
+ company_website_url?: {
8073
8192
  /** @default */
8074
8193
  alias?: string;
8075
8194
  /** @default true */
@@ -8089,7 +8208,7 @@ export interface paths {
8089
8208
  * "alias": "",
8090
8209
  * "enabled": true
8091
8210
  * } */
8092
- company_website_url?: {
8211
+ company_profile_url?: {
8093
8212
  /** @default */
8094
8213
  alias?: string;
8095
8214
  /** @default true */
@@ -8099,89 +8218,52 @@ export interface paths {
8099
8218
  * "alias": "",
8100
8219
  * "enabled": true
8101
8220
  * } */
8102
- headcount?: {
8221
+ crustdata_company_match?: {
8103
8222
  /** @default */
8104
8223
  alias?: string;
8105
8224
  /** @default true */
8106
8225
  enabled?: boolean;
8107
8226
  };
8227
+ };
8228
+ filters: {
8229
+ hq_locations?: string[];
8230
+ crunchbase_categories?: string[];
8231
+ crunchbase_investors?: string[];
8232
+ tracxn_investors?: string[];
8233
+ company_types?: ("Public Company" | "Privately Held" | "Non Profit" | "Educational Institution" | "Partnership" | "Self Employed" | "Self Owned" | "Government Agency")[];
8234
+ linkedin_industries?: string[];
8235
+ markets?: string[];
8236
+ linkedin_categories?: string[];
8237
+ headcount?: ("1-10" | "11-50" | "51-200" | "201-500" | "501-1,000" | "1,001-5,000" | "5,001-10,000" | "10,001+")[];
8238
+ headcount_growth_last_6m_in_percent?: ("0-10%" | "10-20%" | "20-50%" | "50-70%" | "70%+")[];
8239
+ /** @default {
8240
+ * "from": null,
8241
+ * "to": null
8242
+ * } */
8243
+ revenue_in_usd?: {
8244
+ from?: number | null;
8245
+ to?: number | null;
8246
+ };
8247
+ last_funding_type?: ("Series A" | "Series B" | "Series C" | "Series D")[];
8108
8248
  /** @default {
8109
- * "alias": "",
8110
- * "enabled": true
8249
+ * "from": null,
8250
+ * "to": null
8111
8251
  * } */
8112
- company_region?: {
8113
- /** @default */
8114
- alias?: string;
8115
- /** @default true */
8116
- enabled?: boolean;
8117
- };
8118
- /** @default {
8119
- * "alias": "",
8120
- * "enabled": true
8121
- * } */
8122
- company_profile_url?: {
8123
- /** @default */
8124
- alias?: string;
8125
- /** @default true */
8126
- enabled?: boolean;
8127
- };
8128
- /** @default {
8129
- * "alias": "",
8130
- * "enabled": true
8131
- * } */
8132
- icypeas_company_match?: {
8133
- /** @default */
8134
- alias?: string;
8135
- /** @default true */
8136
- enabled?: boolean;
8137
- };
8138
- };
8139
- filters: {
8140
- name?: {
8141
- /** @default [] */
8142
- include?: string[];
8143
- /** @default [] */
8144
- exclude?: string[];
8145
- };
8146
- type?: {
8147
- /** @default [] */
8148
- include?: string[];
8149
- /** @default [] */
8150
- exclude?: string[];
8151
- };
8152
- industry?: {
8153
- /** @default [] */
8154
- include?: string[];
8155
- /** @default [] */
8156
- exclude?: string[];
8157
- };
8158
- location?: {
8159
- /** @default [] */
8160
- include?: string[];
8161
- /** @default [] */
8162
- exclude?: string[];
8163
- };
8164
- headcount?: {
8252
+ last_funding_amount?: {
8165
8253
  from?: number | null;
8166
8254
  to?: number | null;
8167
8255
  };
8168
- urn?: {
8169
- /** @default [] */
8170
- include?: string[];
8171
- /** @default [] */
8172
- exclude?: string[];
8173
- };
8174
- lid?: {
8175
- /** @default [] */
8176
- include?: string[];
8177
- /** @default [] */
8178
- exclude?: string[];
8179
- };
8256
+ number_of_followers?: ("1-500" | "501-1000" | "1001-5000" | "5001-10000" | "10001-30000" | "30000+")[];
8257
+ follower_growth_last_6m_in_percent?: ("0-10%" | "10-20%" | "20-50%" | "50-70%" | "70%+")[];
8258
+ /** @default [] */
8259
+ profile_summary_keywords?: string[];
8260
+ /** @default [] */
8261
+ competitor_websites?: string[];
8180
8262
  };
8181
8263
  };
8182
8264
  } | {
8183
8265
  /** @enum {string} */
8184
- search_id: "people:profiles:clado@1";
8266
+ search_id: "companies:profiles:exa@1";
8185
8267
  connector?: {
8186
8268
  /**
8187
8269
  * @default first
@@ -8195,14 +8277,14 @@ export interface paths {
8195
8277
  }[];
8196
8278
  } | null;
8197
8279
  config: {
8198
- /** @default 20 */
8280
+ /** @default 10 */
8199
8281
  limit?: number;
8200
8282
  output_fields?: {
8201
8283
  /** @default {
8202
8284
  * "alias": "",
8203
8285
  * "enabled": true
8204
8286
  * } */
8205
- name?: {
8287
+ company_name?: {
8206
8288
  /** @default */
8207
8289
  alias?: string;
8208
8290
  /** @default true */
@@ -8212,7 +8294,7 @@ export interface paths {
8212
8294
  * "alias": "",
8213
8295
  * "enabled": true
8214
8296
  * } */
8215
- job_title?: {
8297
+ company_website_url?: {
8216
8298
  /** @default */
8217
8299
  alias?: string;
8218
8300
  /** @default true */
@@ -8222,7 +8304,7 @@ export interface paths {
8222
8304
  * "alias": "",
8223
8305
  * "enabled": true
8224
8306
  * } */
8225
- company_profile_url?: {
8307
+ company_description?: {
8226
8308
  /** @default */
8227
8309
  alias?: string;
8228
8310
  /** @default true */
@@ -8232,7 +8314,7 @@ export interface paths {
8232
8314
  * "alias": "",
8233
8315
  * "enabled": true
8234
8316
  * } */
8235
- company_name?: {
8317
+ company_industry?: {
8236
8318
  /** @default */
8237
8319
  alias?: string;
8238
8320
  /** @default true */
@@ -8242,7 +8324,7 @@ export interface paths {
8242
8324
  * "alias": "",
8243
8325
  * "enabled": true
8244
8326
  * } */
8245
- profile_url?: {
8327
+ headcount?: {
8246
8328
  /** @default */
8247
8329
  alias?: string;
8248
8330
  /** @default true */
@@ -8252,7 +8334,7 @@ export interface paths {
8252
8334
  * "alias": "",
8253
8335
  * "enabled": true
8254
8336
  * } */
8255
- clado_person_match?: {
8337
+ exa_match_evaluation?: {
8256
8338
  /** @default */
8257
8339
  alias?: string;
8258
8340
  /** @default true */
@@ -8265,7 +8347,7 @@ export interface paths {
8265
8347
  };
8266
8348
  } | {
8267
8349
  /** @enum {string} */
8268
- search_id: "people:employees:leadmagic@1";
8350
+ search_id: "people:profiles:exa@1";
8269
8351
  connector?: {
8270
8352
  /**
8271
8353
  * @default first
@@ -8279,7 +8361,7 @@ export interface paths {
8279
8361
  }[];
8280
8362
  } | null;
8281
8363
  config: {
8282
- /** @default 50 */
8364
+ /** @default 10 */
8283
8365
  limit?: number;
8284
8366
  output_fields?: {
8285
8367
  /** @default {
@@ -8292,6 +8374,26 @@ export interface paths {
8292
8374
  /** @default true */
8293
8375
  enabled?: boolean;
8294
8376
  };
8377
+ /** @default {
8378
+ * "alias": "",
8379
+ * "enabled": true
8380
+ * } */
8381
+ profile_url?: {
8382
+ /** @default */
8383
+ alias?: string;
8384
+ /** @default true */
8385
+ enabled?: boolean;
8386
+ };
8387
+ /** @default {
8388
+ * "alias": "",
8389
+ * "enabled": true
8390
+ * } */
8391
+ job_title?: {
8392
+ /** @default */
8393
+ alias?: string;
8394
+ /** @default true */
8395
+ enabled?: boolean;
8396
+ };
8295
8397
  /** @default {
8296
8398
  * "alias": "",
8297
8399
  * "enabled": true
@@ -8306,7 +8408,7 @@ export interface paths {
8306
8408
  * "alias": "",
8307
8409
  * "enabled": true
8308
8410
  * } */
8309
- company_website_url?: {
8411
+ company_region?: {
8310
8412
  /** @default */
8311
8413
  alias?: string;
8312
8414
  /** @default true */
@@ -8316,7 +8418,7 @@ export interface paths {
8316
8418
  * "alias": "",
8317
8419
  * "enabled": true
8318
8420
  * } */
8319
- job_title?: {
8421
+ exa_match_evaluation?: {
8320
8422
  /** @default */
8321
8423
  alias?: string;
8322
8424
  /** @default true */
@@ -8324,12 +8426,12 @@ export interface paths {
8324
8426
  };
8325
8427
  };
8326
8428
  filters: {
8327
- company_website_url: string;
8429
+ query: string;
8328
8430
  };
8329
8431
  };
8330
8432
  } | {
8331
8433
  /** @enum {string} */
8332
- search_id: "companies:profiles:exa@1";
8434
+ search_id: "people:profiles:icypeas@1";
8333
8435
  connector?: {
8334
8436
  /**
8335
8437
  * @default first
@@ -8343,14 +8445,14 @@ export interface paths {
8343
8445
  }[];
8344
8446
  } | null;
8345
8447
  config: {
8346
- /** @default 10 */
8448
+ /** @default 100 */
8347
8449
  limit?: number;
8348
8450
  output_fields?: {
8349
8451
  /** @default {
8350
8452
  * "alias": "",
8351
8453
  * "enabled": true
8352
8454
  * } */
8353
- company_name?: {
8455
+ name?: {
8354
8456
  /** @default */
8355
8457
  alias?: string;
8356
8458
  /** @default true */
@@ -8360,7 +8462,7 @@ export interface paths {
8360
8462
  * "alias": "",
8361
8463
  * "enabled": true
8362
8464
  * } */
8363
- company_website_url?: {
8465
+ job_title?: {
8364
8466
  /** @default */
8365
8467
  alias?: string;
8366
8468
  /** @default true */
@@ -8370,7 +8472,7 @@ export interface paths {
8370
8472
  * "alias": "",
8371
8473
  * "enabled": true
8372
8474
  * } */
8373
- company_description?: {
8475
+ profile_headline?: {
8374
8476
  /** @default */
8375
8477
  alias?: string;
8376
8478
  /** @default true */
@@ -8380,7 +8482,7 @@ export interface paths {
8380
8482
  * "alias": "",
8381
8483
  * "enabled": true
8382
8484
  * } */
8383
- company_industry?: {
8485
+ company_website_url?: {
8384
8486
  /** @default */
8385
8487
  alias?: string;
8386
8488
  /** @default true */
@@ -8390,7 +8492,7 @@ export interface paths {
8390
8492
  * "alias": "",
8391
8493
  * "enabled": true
8392
8494
  * } */
8393
- headcount?: {
8495
+ company_profile_url?: {
8394
8496
  /** @default */
8395
8497
  alias?: string;
8396
8498
  /** @default true */
@@ -8400,7 +8502,17 @@ export interface paths {
8400
8502
  * "alias": "",
8401
8503
  * "enabled": true
8402
8504
  * } */
8403
- exa_match_evaluation?: {
8505
+ profile_url?: {
8506
+ /** @default */
8507
+ alias?: string;
8508
+ /** @default true */
8509
+ enabled?: boolean;
8510
+ };
8511
+ /** @default {
8512
+ * "alias": "",
8513
+ * "enabled": true
8514
+ * } */
8515
+ icypeas_person_match?: {
8404
8516
  /** @default */
8405
8517
  alias?: string;
8406
8518
  /** @default true */
@@ -8408,12 +8520,77 @@ export interface paths {
8408
8520
  };
8409
8521
  };
8410
8522
  filters: {
8411
- query: string;
8523
+ firstname?: {
8524
+ /** @default [] */
8525
+ include?: string[];
8526
+ /** @default [] */
8527
+ exclude?: string[];
8528
+ };
8529
+ lastname?: {
8530
+ /** @default [] */
8531
+ include?: string[];
8532
+ /** @default [] */
8533
+ exclude?: string[];
8534
+ };
8535
+ currentJobTitle?: {
8536
+ /** @default [] */
8537
+ include?: string[];
8538
+ /** @default [] */
8539
+ exclude?: string[];
8540
+ };
8541
+ pastJobTitle?: {
8542
+ /** @default [] */
8543
+ include?: string[];
8544
+ /** @default [] */
8545
+ exclude?: string[];
8546
+ };
8547
+ currentCompanyName?: {
8548
+ /** @default [] */
8549
+ include?: string[];
8550
+ /** @default [] */
8551
+ exclude?: string[];
8552
+ };
8553
+ pastCompanyName?: {
8554
+ /** @default [] */
8555
+ include?: string[];
8556
+ /** @default [] */
8557
+ exclude?: string[];
8558
+ };
8559
+ school?: {
8560
+ /** @default [] */
8561
+ include?: string[];
8562
+ /** @default [] */
8563
+ exclude?: string[];
8564
+ };
8565
+ location?: {
8566
+ /** @default [] */
8567
+ include?: string[];
8568
+ /** @default [] */
8569
+ exclude?: string[];
8570
+ };
8571
+ languages?: {
8572
+ /** @default [] */
8573
+ include?: string[];
8574
+ /** @default [] */
8575
+ exclude?: string[];
8576
+ };
8577
+ skills?: {
8578
+ /** @default [] */
8579
+ include?: string[];
8580
+ /** @default [] */
8581
+ exclude?: string[];
8582
+ };
8583
+ keyword?: {
8584
+ /** @default [] */
8585
+ include?: string[];
8586
+ /** @default [] */
8587
+ exclude?: string[];
8588
+ };
8412
8589
  };
8413
8590
  };
8414
8591
  } | {
8415
8592
  /** @enum {string} */
8416
- search_id: "people:profiles:exa@1";
8593
+ search_id: "companies:profiles:icypeas@1";
8417
8594
  connector?: {
8418
8595
  /**
8419
8596
  * @default first
@@ -8427,14 +8604,14 @@ export interface paths {
8427
8604
  }[];
8428
8605
  } | null;
8429
8606
  config: {
8430
- /** @default 10 */
8607
+ /** @default 100 */
8431
8608
  limit?: number;
8432
8609
  output_fields?: {
8433
8610
  /** @default {
8434
8611
  * "alias": "",
8435
8612
  * "enabled": true
8436
8613
  * } */
8437
- name?: {
8614
+ company_name?: {
8438
8615
  /** @default */
8439
8616
  alias?: string;
8440
8617
  /** @default true */
@@ -8444,7 +8621,7 @@ export interface paths {
8444
8621
  * "alias": "",
8445
8622
  * "enabled": true
8446
8623
  * } */
8447
- profile_url?: {
8624
+ company_industry?: {
8448
8625
  /** @default */
8449
8626
  alias?: string;
8450
8627
  /** @default true */
@@ -8454,7 +8631,7 @@ export interface paths {
8454
8631
  * "alias": "",
8455
8632
  * "enabled": true
8456
8633
  * } */
8457
- job_title?: {
8634
+ company_description?: {
8458
8635
  /** @default */
8459
8636
  alias?: string;
8460
8637
  /** @default true */
@@ -8464,7 +8641,7 @@ export interface paths {
8464
8641
  * "alias": "",
8465
8642
  * "enabled": true
8466
8643
  * } */
8467
- company_name?: {
8644
+ company_website_url?: {
8468
8645
  /** @default */
8469
8646
  alias?: string;
8470
8647
  /** @default true */
@@ -8474,7 +8651,7 @@ export interface paths {
8474
8651
  * "alias": "",
8475
8652
  * "enabled": true
8476
8653
  * } */
8477
- company_region?: {
8654
+ headcount?: {
8478
8655
  /** @default */
8479
8656
  alias?: string;
8480
8657
  /** @default true */
@@ -8484,44 +8661,17 @@ export interface paths {
8484
8661
  * "alias": "",
8485
8662
  * "enabled": true
8486
8663
  * } */
8487
- exa_match_evaluation?: {
8664
+ company_region?: {
8488
8665
  /** @default */
8489
8666
  alias?: string;
8490
8667
  /** @default true */
8491
8668
  enabled?: boolean;
8492
8669
  };
8493
- };
8494
- filters: {
8495
- query: string;
8496
- };
8497
- };
8498
- } | {
8499
- /** @enum {string} */
8500
- search_id: "people:profiles:clado@2";
8501
- connector?: {
8502
- /**
8503
- * @default first
8504
- * @enum {string}
8505
- */
8506
- strategy?: "first";
8507
- connections: {
8508
- /** @enum {string} */
8509
- type: "vault";
8510
- connection: string;
8511
- }[];
8512
- } | null;
8513
- config: {
8514
- /** @default 100 */
8515
- limit?: number;
8516
- /** @default */
8517
- search_id?: string;
8518
- offset?: number;
8519
- output_fields?: {
8520
8670
  /** @default {
8521
8671
  * "alias": "",
8522
8672
  * "enabled": true
8523
8673
  * } */
8524
- name?: {
8674
+ company_profile_url?: {
8525
8675
  /** @default */
8526
8676
  alias?: string;
8527
8677
  /** @default true */
@@ -8531,18 +8681,265 @@ export interface paths {
8531
8681
  * "alias": "",
8532
8682
  * "enabled": true
8533
8683
  * } */
8534
- job_title?: {
8684
+ icypeas_company_match?: {
8535
8685
  /** @default */
8536
8686
  alias?: string;
8537
8687
  /** @default true */
8538
8688
  enabled?: boolean;
8539
8689
  };
8540
- /** @default {
8541
- * "alias": "",
8542
- * "enabled": true
8543
- * } */
8544
- company_profile_url?: {
8545
- /** @default */
8690
+ };
8691
+ filters: {
8692
+ name?: {
8693
+ /** @default [] */
8694
+ include?: string[];
8695
+ /** @default [] */
8696
+ exclude?: string[];
8697
+ };
8698
+ /** @default {
8699
+ * "include": [],
8700
+ * "exclude": []
8701
+ * } */
8702
+ type?: {
8703
+ /** @default [] */
8704
+ include?: string[];
8705
+ /** @default [] */
8706
+ exclude?: string[];
8707
+ };
8708
+ /** @default {
8709
+ * "include": [],
8710
+ * "exclude": []
8711
+ * } */
8712
+ industry?: {
8713
+ /** @default [] */
8714
+ include?: string[];
8715
+ /** @default [] */
8716
+ exclude?: string[];
8717
+ };
8718
+ location?: {
8719
+ /** @default [] */
8720
+ include?: string[];
8721
+ /** @default [] */
8722
+ exclude?: string[];
8723
+ };
8724
+ /** @default {
8725
+ * "from": null,
8726
+ * "to": null
8727
+ * } */
8728
+ headcount?: {
8729
+ from?: number | null;
8730
+ to?: number | null;
8731
+ };
8732
+ urn?: {
8733
+ /** @default [] */
8734
+ include?: string[];
8735
+ /** @default [] */
8736
+ exclude?: string[];
8737
+ };
8738
+ lid?: {
8739
+ /** @default [] */
8740
+ include?: string[];
8741
+ /** @default [] */
8742
+ exclude?: string[];
8743
+ };
8744
+ };
8745
+ };
8746
+ } | {
8747
+ /** @enum {string} */
8748
+ search_id: "people:employees:leadmagic@1";
8749
+ connector?: {
8750
+ /**
8751
+ * @default first
8752
+ * @enum {string}
8753
+ */
8754
+ strategy?: "first";
8755
+ connections: {
8756
+ /** @enum {string} */
8757
+ type: "vault";
8758
+ connection: string;
8759
+ }[];
8760
+ } | null;
8761
+ config: {
8762
+ /** @default 50 */
8763
+ limit?: number;
8764
+ output_fields?: {
8765
+ /** @default {
8766
+ * "alias": "",
8767
+ * "enabled": true
8768
+ * } */
8769
+ name?: {
8770
+ /** @default */
8771
+ alias?: string;
8772
+ /** @default true */
8773
+ enabled?: boolean;
8774
+ };
8775
+ /** @default {
8776
+ * "alias": "",
8777
+ * "enabled": true
8778
+ * } */
8779
+ company_name?: {
8780
+ /** @default */
8781
+ alias?: string;
8782
+ /** @default true */
8783
+ enabled?: boolean;
8784
+ };
8785
+ /** @default {
8786
+ * "alias": "",
8787
+ * "enabled": true
8788
+ * } */
8789
+ company_website_url?: {
8790
+ /** @default */
8791
+ alias?: string;
8792
+ /** @default true */
8793
+ enabled?: boolean;
8794
+ };
8795
+ /** @default {
8796
+ * "alias": "",
8797
+ * "enabled": true
8798
+ * } */
8799
+ job_title?: {
8800
+ /** @default */
8801
+ alias?: string;
8802
+ /** @default true */
8803
+ enabled?: boolean;
8804
+ };
8805
+ };
8806
+ filters: {
8807
+ company_website_url: string;
8808
+ };
8809
+ };
8810
+ } | {
8811
+ /** @enum {string} */
8812
+ search_id: "people:profiles:clado@1";
8813
+ connector?: {
8814
+ /**
8815
+ * @default first
8816
+ * @enum {string}
8817
+ */
8818
+ strategy?: "first";
8819
+ connections: {
8820
+ /** @enum {string} */
8821
+ type: "vault";
8822
+ connection: string;
8823
+ }[];
8824
+ } | null;
8825
+ config: {
8826
+ /** @default 20 */
8827
+ limit?: number;
8828
+ output_fields?: {
8829
+ /** @default {
8830
+ * "alias": "",
8831
+ * "enabled": true
8832
+ * } */
8833
+ name?: {
8834
+ /** @default */
8835
+ alias?: string;
8836
+ /** @default true */
8837
+ enabled?: boolean;
8838
+ };
8839
+ /** @default {
8840
+ * "alias": "",
8841
+ * "enabled": true
8842
+ * } */
8843
+ job_title?: {
8844
+ /** @default */
8845
+ alias?: string;
8846
+ /** @default true */
8847
+ enabled?: boolean;
8848
+ };
8849
+ /** @default {
8850
+ * "alias": "",
8851
+ * "enabled": true
8852
+ * } */
8853
+ company_profile_url?: {
8854
+ /** @default */
8855
+ alias?: string;
8856
+ /** @default true */
8857
+ enabled?: boolean;
8858
+ };
8859
+ /** @default {
8860
+ * "alias": "",
8861
+ * "enabled": true
8862
+ * } */
8863
+ company_name?: {
8864
+ /** @default */
8865
+ alias?: string;
8866
+ /** @default true */
8867
+ enabled?: boolean;
8868
+ };
8869
+ /** @default {
8870
+ * "alias": "",
8871
+ * "enabled": true
8872
+ * } */
8873
+ profile_url?: {
8874
+ /** @default */
8875
+ alias?: string;
8876
+ /** @default true */
8877
+ enabled?: boolean;
8878
+ };
8879
+ /** @default {
8880
+ * "alias": "",
8881
+ * "enabled": true
8882
+ * } */
8883
+ clado_person_match?: {
8884
+ /** @default */
8885
+ alias?: string;
8886
+ /** @default true */
8887
+ enabled?: boolean;
8888
+ };
8889
+ };
8890
+ filters: {
8891
+ query: string;
8892
+ };
8893
+ };
8894
+ } | {
8895
+ /** @enum {string} */
8896
+ search_id: "people:profiles:clado@2";
8897
+ connector?: {
8898
+ /**
8899
+ * @default first
8900
+ * @enum {string}
8901
+ */
8902
+ strategy?: "first";
8903
+ connections: {
8904
+ /** @enum {string} */
8905
+ type: "vault";
8906
+ connection: string;
8907
+ }[];
8908
+ } | null;
8909
+ config: {
8910
+ /** @default 100 */
8911
+ limit?: number;
8912
+ /** @default */
8913
+ search_id?: string;
8914
+ /** @default null */
8915
+ offset?: number | null;
8916
+ output_fields?: {
8917
+ /** @default {
8918
+ * "alias": "",
8919
+ * "enabled": true
8920
+ * } */
8921
+ name?: {
8922
+ /** @default */
8923
+ alias?: string;
8924
+ /** @default true */
8925
+ enabled?: boolean;
8926
+ };
8927
+ /** @default {
8928
+ * "alias": "",
8929
+ * "enabled": true
8930
+ * } */
8931
+ job_title?: {
8932
+ /** @default */
8933
+ alias?: string;
8934
+ /** @default true */
8935
+ enabled?: boolean;
8936
+ };
8937
+ /** @default {
8938
+ * "alias": "",
8939
+ * "enabled": true
8940
+ * } */
8941
+ company_profile_url?: {
8942
+ /** @default */
8546
8943
  alias?: string;
8547
8944
  /** @default true */
8548
8945
  enabled?: boolean;
@@ -8610,7 +9007,7 @@ export interface paths {
8610
9007
  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;
8611
9008
  resolved_by?: {
8612
9009
  /** @enum {string|null} */
8613
- 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" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | 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;
8614
9011
  /** @enum {string|null} */
8615
9012
  environment: "production" | "sandbox" | null;
8616
9013
  config_hash: string | null;
@@ -8646,11 +9043,11 @@ export interface paths {
8646
9043
  waterfall?: {
8647
9044
  attempted_providers: {
8648
9045
  /** @enum {string} */
8649
- provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
9046
+ provider: "pipe0" | "findymail" | "crustdata" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
8650
9047
  }[];
8651
- available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
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")[];
8652
9049
  /** @enum {string} */
8653
- successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
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";
8654
9051
  };
8655
9052
  icon?: {
8656
9053
  /** @enum {string} */
@@ -8676,7 +9073,7 @@ export interface paths {
8676
9073
  search_statuses: {
8677
9074
  search: {
8678
9075
  /** @enum {string} */
8679
- ref: "people:profiles:icypeas@1" | "companies:profiles:icypeas@1" | "people:profiles:clado@1" | "people:profiles:clado@2" | "people:employees:leadmagic@1" | "companies:profiles:exa@1" | "people:profiles:exa@1";
9076
+ ref: "people:profiles:icypeas@1" | "companies:profiles:icypeas@1" | "people:profiles:clado@1" | "people:profiles:clado@2" | "people:employees:leadmagic@1" | "companies:profiles:exa@1" | "people:profiles:exa@1" | "companies:profiles:crustdata@1" | "people:profiles:crustdata@1";
8680
9077
  };
8681
9078
  /** @enum {string} */
8682
9079
  status: "pending" | "processing" | "failed" | "completed";
@@ -8693,6 +9090,11 @@ export interface paths {
8693
9090
  offset?: number;
8694
9091
  };
8695
9092
  };
9093
+ crustdata?: {
9094
+ pagination: {
9095
+ cursor: string | null;
9096
+ };
9097
+ };
8696
9098
  };
8697
9099
  };
8698
9100
  }[];
@@ -8813,8 +9215,409 @@ export interface paths {
8813
9215
  /** @default false */
8814
9216
  enabled?: boolean;
8815
9217
  };
8816
- };
8817
- searches: ({
9218
+ };
9219
+ searches: ({
9220
+ /** @enum {string} */
9221
+ search_id: "people:profiles:crustdata@1";
9222
+ connector?: {
9223
+ /**
9224
+ * @default first
9225
+ * @enum {string}
9226
+ */
9227
+ strategy?: "first";
9228
+ connections: {
9229
+ /** @enum {string} */
9230
+ type: "vault";
9231
+ connection: string;
9232
+ }[];
9233
+ } | null;
9234
+ config: {
9235
+ /** @default 100 */
9236
+ limit?: number;
9237
+ cursor: string;
9238
+ output_fields?: {
9239
+ /** @default {
9240
+ * "alias": "",
9241
+ * "enabled": true
9242
+ * } */
9243
+ name?: {
9244
+ /** @default */
9245
+ alias?: string;
9246
+ /** @default true */
9247
+ enabled?: boolean;
9248
+ };
9249
+ /** @default {
9250
+ * "alias": "",
9251
+ * "enabled": true
9252
+ * } */
9253
+ company_website_url?: {
9254
+ /** @default */
9255
+ alias?: string;
9256
+ /** @default true */
9257
+ enabled?: boolean;
9258
+ };
9259
+ /** @default {
9260
+ * "alias": "",
9261
+ * "enabled": true
9262
+ * } */
9263
+ profile_url?: {
9264
+ /** @default */
9265
+ alias?: string;
9266
+ /** @default true */
9267
+ enabled?: boolean;
9268
+ };
9269
+ /** @default {
9270
+ * "alias": "",
9271
+ * "enabled": true
9272
+ * } */
9273
+ job_title?: {
9274
+ /** @default */
9275
+ alias?: string;
9276
+ /** @default true */
9277
+ enabled?: boolean;
9278
+ };
9279
+ /** @default {
9280
+ * "alias": "",
9281
+ * "enabled": true
9282
+ * } */
9283
+ crustdata_person_match?: {
9284
+ /** @default */
9285
+ alias?: string;
9286
+ /** @default true */
9287
+ enabled?: boolean;
9288
+ };
9289
+ };
9290
+ filters: {
9291
+ locations?: string[];
9292
+ /** @default [] */
9293
+ profile_headline_keywords?: string[];
9294
+ /** @default [] */
9295
+ profile_summary_keywords?: string[];
9296
+ profile_languages?: ("Arabic" | "English" | "Spanish" | "Portuguese" | "Chinese" | "French" | "Italian" | "Russian" | "German" | "Dutch" | "Turkish" | "Tagalog" | "Polish" | "Korean" | "Japanese" | "Malay" | "Norwegian" | "Danish" | "Romanian" | "Swedish" | "Bahasa Indonesia" | "Czech")[];
9297
+ languages?: string[];
9298
+ skills?: string[];
9299
+ years_of_experience?: ("Less than 1 year" | "1 to 2 years" | "3 to 5 years" | "6 to 10 years" | "More than 10 years")[];
9300
+ /** @default {
9301
+ * "include": [],
9302
+ * "exclude": []
9303
+ * } */
9304
+ current_seniority_levels?: {
9305
+ /** @default [] */
9306
+ include?: string[];
9307
+ /** @default [] */
9308
+ exclude?: string[];
9309
+ };
9310
+ /** @default [] */
9311
+ current_employers?: string[];
9312
+ /** @default [] */
9313
+ current_job_titles?: string[];
9314
+ current_employers_linkedin_industries?: string[];
9315
+ years_at_current_company?: ("Less than 1 year" | "1 to 2 years" | "3 to 5 years" | "6 to 10 years" | "More than 10 years")[];
9316
+ /** @default {
9317
+ * "include": [],
9318
+ * "exclude": []
9319
+ * } */
9320
+ previous_seniority_levels?: {
9321
+ /** @default [] */
9322
+ include?: string[];
9323
+ /** @default [] */
9324
+ exclude?: string[];
9325
+ };
9326
+ /** @default [] */
9327
+ previous_employers?: string[];
9328
+ /** @default [] */
9329
+ previous_job_titles?: string[];
9330
+ previous_employers_linkedin_industries?: string[];
9331
+ /** @default [] */
9332
+ certifications?: string[];
9333
+ /** @default [] */
9334
+ honors?: string[];
9335
+ /** @default null */
9336
+ recently_changed_jobs?: boolean | null;
9337
+ fields_of_study?: string[];
9338
+ degree_names?: string[];
9339
+ school_names?: string[];
9340
+ current_school_names?: string[];
9341
+ /** @default [] */
9342
+ extracurricular_activities?: string[];
9343
+ };
9344
+ };
9345
+ } | {
9346
+ /** @enum {string} */
9347
+ search_id: "companies:profiles:crustdata@1";
9348
+ connector?: {
9349
+ /**
9350
+ * @default first
9351
+ * @enum {string}
9352
+ */
9353
+ strategy?: "first";
9354
+ connections: {
9355
+ /** @enum {string} */
9356
+ type: "vault";
9357
+ connection: string;
9358
+ }[];
9359
+ } | null;
9360
+ config: {
9361
+ /** @default 100 */
9362
+ limit?: number;
9363
+ cursor: string;
9364
+ output_fields?: {
9365
+ /** @default {
9366
+ * "alias": "",
9367
+ * "enabled": true
9368
+ * } */
9369
+ company_name?: {
9370
+ /** @default */
9371
+ alias?: string;
9372
+ /** @default true */
9373
+ enabled?: boolean;
9374
+ };
9375
+ /** @default {
9376
+ * "alias": "",
9377
+ * "enabled": true
9378
+ * } */
9379
+ company_website_url?: {
9380
+ /** @default */
9381
+ alias?: string;
9382
+ /** @default true */
9383
+ enabled?: boolean;
9384
+ };
9385
+ /** @default {
9386
+ * "alias": "",
9387
+ * "enabled": true
9388
+ * } */
9389
+ company_description?: {
9390
+ /** @default */
9391
+ alias?: string;
9392
+ /** @default true */
9393
+ enabled?: boolean;
9394
+ };
9395
+ /** @default {
9396
+ * "alias": "",
9397
+ * "enabled": true
9398
+ * } */
9399
+ company_profile_url?: {
9400
+ /** @default */
9401
+ alias?: string;
9402
+ /** @default true */
9403
+ enabled?: boolean;
9404
+ };
9405
+ /** @default {
9406
+ * "alias": "",
9407
+ * "enabled": true
9408
+ * } */
9409
+ crustdata_company_match?: {
9410
+ /** @default */
9411
+ alias?: string;
9412
+ /** @default true */
9413
+ enabled?: boolean;
9414
+ };
9415
+ };
9416
+ filters: {
9417
+ hq_locations?: string[];
9418
+ crunchbase_categories?: string[];
9419
+ crunchbase_investors?: string[];
9420
+ tracxn_investors?: string[];
9421
+ company_types?: ("Public Company" | "Privately Held" | "Non Profit" | "Educational Institution" | "Partnership" | "Self Employed" | "Self Owned" | "Government Agency")[];
9422
+ linkedin_industries?: string[];
9423
+ markets?: string[];
9424
+ linkedin_categories?: string[];
9425
+ headcount?: ("1-10" | "11-50" | "51-200" | "201-500" | "501-1,000" | "1,001-5,000" | "5,001-10,000" | "10,001+")[];
9426
+ headcount_growth_last_6m_in_percent?: ("0-10%" | "10-20%" | "20-50%" | "50-70%" | "70%+")[];
9427
+ /** @default {
9428
+ * "from": null,
9429
+ * "to": null
9430
+ * } */
9431
+ revenue_in_usd?: {
9432
+ from?: number | null;
9433
+ to?: number | null;
9434
+ };
9435
+ last_funding_type?: ("Series A" | "Series B" | "Series C" | "Series D")[];
9436
+ /** @default {
9437
+ * "from": null,
9438
+ * "to": null
9439
+ * } */
9440
+ last_funding_amount?: {
9441
+ from?: number | null;
9442
+ to?: number | null;
9443
+ };
9444
+ number_of_followers?: ("1-500" | "501-1000" | "1001-5000" | "5001-10000" | "10001-30000" | "30000+")[];
9445
+ follower_growth_last_6m_in_percent?: ("0-10%" | "10-20%" | "20-50%" | "50-70%" | "70%+")[];
9446
+ /** @default [] */
9447
+ profile_summary_keywords?: string[];
9448
+ /** @default [] */
9449
+ competitor_websites?: string[];
9450
+ };
9451
+ };
9452
+ } | {
9453
+ /** @enum {string} */
9454
+ search_id: "companies:profiles:exa@1";
9455
+ connector?: {
9456
+ /**
9457
+ * @default first
9458
+ * @enum {string}
9459
+ */
9460
+ strategy?: "first";
9461
+ connections: {
9462
+ /** @enum {string} */
9463
+ type: "vault";
9464
+ connection: string;
9465
+ }[];
9466
+ } | null;
9467
+ config: {
9468
+ /** @default 10 */
9469
+ limit?: number;
9470
+ output_fields?: {
9471
+ /** @default {
9472
+ * "alias": "",
9473
+ * "enabled": true
9474
+ * } */
9475
+ company_name?: {
9476
+ /** @default */
9477
+ alias?: string;
9478
+ /** @default true */
9479
+ enabled?: boolean;
9480
+ };
9481
+ /** @default {
9482
+ * "alias": "",
9483
+ * "enabled": true
9484
+ * } */
9485
+ company_website_url?: {
9486
+ /** @default */
9487
+ alias?: string;
9488
+ /** @default true */
9489
+ enabled?: boolean;
9490
+ };
9491
+ /** @default {
9492
+ * "alias": "",
9493
+ * "enabled": true
9494
+ * } */
9495
+ company_description?: {
9496
+ /** @default */
9497
+ alias?: string;
9498
+ /** @default true */
9499
+ enabled?: boolean;
9500
+ };
9501
+ /** @default {
9502
+ * "alias": "",
9503
+ * "enabled": true
9504
+ * } */
9505
+ company_industry?: {
9506
+ /** @default */
9507
+ alias?: string;
9508
+ /** @default true */
9509
+ enabled?: boolean;
9510
+ };
9511
+ /** @default {
9512
+ * "alias": "",
9513
+ * "enabled": true
9514
+ * } */
9515
+ headcount?: {
9516
+ /** @default */
9517
+ alias?: string;
9518
+ /** @default true */
9519
+ enabled?: boolean;
9520
+ };
9521
+ /** @default {
9522
+ * "alias": "",
9523
+ * "enabled": true
9524
+ * } */
9525
+ exa_match_evaluation?: {
9526
+ /** @default */
9527
+ alias?: string;
9528
+ /** @default true */
9529
+ enabled?: boolean;
9530
+ };
9531
+ };
9532
+ filters: {
9533
+ query: string;
9534
+ };
9535
+ };
9536
+ } | {
9537
+ /** @enum {string} */
9538
+ search_id: "people:profiles:exa@1";
9539
+ connector?: {
9540
+ /**
9541
+ * @default first
9542
+ * @enum {string}
9543
+ */
9544
+ strategy?: "first";
9545
+ connections: {
9546
+ /** @enum {string} */
9547
+ type: "vault";
9548
+ connection: string;
9549
+ }[];
9550
+ } | null;
9551
+ config: {
9552
+ /** @default 10 */
9553
+ limit?: number;
9554
+ output_fields?: {
9555
+ /** @default {
9556
+ * "alias": "",
9557
+ * "enabled": true
9558
+ * } */
9559
+ name?: {
9560
+ /** @default */
9561
+ alias?: string;
9562
+ /** @default true */
9563
+ enabled?: boolean;
9564
+ };
9565
+ /** @default {
9566
+ * "alias": "",
9567
+ * "enabled": true
9568
+ * } */
9569
+ profile_url?: {
9570
+ /** @default */
9571
+ alias?: string;
9572
+ /** @default true */
9573
+ enabled?: boolean;
9574
+ };
9575
+ /** @default {
9576
+ * "alias": "",
9577
+ * "enabled": true
9578
+ * } */
9579
+ job_title?: {
9580
+ /** @default */
9581
+ alias?: string;
9582
+ /** @default true */
9583
+ enabled?: boolean;
9584
+ };
9585
+ /** @default {
9586
+ * "alias": "",
9587
+ * "enabled": true
9588
+ * } */
9589
+ company_name?: {
9590
+ /** @default */
9591
+ alias?: string;
9592
+ /** @default true */
9593
+ enabled?: boolean;
9594
+ };
9595
+ /** @default {
9596
+ * "alias": "",
9597
+ * "enabled": true
9598
+ * } */
9599
+ company_region?: {
9600
+ /** @default */
9601
+ alias?: string;
9602
+ /** @default true */
9603
+ enabled?: boolean;
9604
+ };
9605
+ /** @default {
9606
+ * "alias": "",
9607
+ * "enabled": true
9608
+ * } */
9609
+ exa_match_evaluation?: {
9610
+ /** @default */
9611
+ alias?: string;
9612
+ /** @default true */
9613
+ enabled?: boolean;
9614
+ };
9615
+ };
9616
+ filters: {
9617
+ query: string;
9618
+ };
9619
+ };
9620
+ } | {
8818
9621
  /** @enum {string} */
8819
9622
  search_id: "people:profiles:icypeas@1";
8820
9623
  connector?: {
@@ -9080,12 +9883,20 @@ export interface paths {
9080
9883
  /** @default [] */
9081
9884
  exclude?: string[];
9082
9885
  };
9886
+ /** @default {
9887
+ * "include": [],
9888
+ * "exclude": []
9889
+ * } */
9083
9890
  type?: {
9084
9891
  /** @default [] */
9085
9892
  include?: string[];
9086
9893
  /** @default [] */
9087
9894
  exclude?: string[];
9088
9895
  };
9896
+ /** @default {
9897
+ * "include": [],
9898
+ * "exclude": []
9899
+ * } */
9089
9900
  industry?: {
9090
9901
  /** @default [] */
9091
9902
  include?: string[];
@@ -9098,6 +9909,10 @@ export interface paths {
9098
9909
  /** @default [] */
9099
9910
  exclude?: string[];
9100
9911
  };
9912
+ /** @default {
9913
+ * "from": null,
9914
+ * "to": null
9915
+ * } */
9101
9916
  headcount?: {
9102
9917
  from?: number | null;
9103
9918
  to?: number | null;
@@ -9116,90 +9931,6 @@ export interface paths {
9116
9931
  };
9117
9932
  };
9118
9933
  };
9119
- } | {
9120
- /** @enum {string} */
9121
- search_id: "people:profiles:clado@1";
9122
- connector?: {
9123
- /**
9124
- * @default first
9125
- * @enum {string}
9126
- */
9127
- strategy?: "first";
9128
- connections: {
9129
- /** @enum {string} */
9130
- type: "vault";
9131
- connection: string;
9132
- }[];
9133
- } | null;
9134
- config: {
9135
- /** @default 20 */
9136
- limit?: number;
9137
- output_fields?: {
9138
- /** @default {
9139
- * "alias": "",
9140
- * "enabled": true
9141
- * } */
9142
- name?: {
9143
- /** @default */
9144
- alias?: string;
9145
- /** @default true */
9146
- enabled?: boolean;
9147
- };
9148
- /** @default {
9149
- * "alias": "",
9150
- * "enabled": true
9151
- * } */
9152
- job_title?: {
9153
- /** @default */
9154
- alias?: string;
9155
- /** @default true */
9156
- enabled?: boolean;
9157
- };
9158
- /** @default {
9159
- * "alias": "",
9160
- * "enabled": true
9161
- * } */
9162
- company_profile_url?: {
9163
- /** @default */
9164
- alias?: string;
9165
- /** @default true */
9166
- enabled?: boolean;
9167
- };
9168
- /** @default {
9169
- * "alias": "",
9170
- * "enabled": true
9171
- * } */
9172
- company_name?: {
9173
- /** @default */
9174
- alias?: string;
9175
- /** @default true */
9176
- enabled?: boolean;
9177
- };
9178
- /** @default {
9179
- * "alias": "",
9180
- * "enabled": true
9181
- * } */
9182
- profile_url?: {
9183
- /** @default */
9184
- alias?: string;
9185
- /** @default true */
9186
- enabled?: boolean;
9187
- };
9188
- /** @default {
9189
- * "alias": "",
9190
- * "enabled": true
9191
- * } */
9192
- clado_person_match?: {
9193
- /** @default */
9194
- alias?: string;
9195
- /** @default true */
9196
- enabled?: boolean;
9197
- };
9198
- };
9199
- filters: {
9200
- query: string;
9201
- };
9202
- };
9203
9934
  } | {
9204
9935
  /** @enum {string} */
9205
9936
  search_id: "people:employees:leadmagic@1";
@@ -9266,91 +9997,7 @@ export interface paths {
9266
9997
  };
9267
9998
  } | {
9268
9999
  /** @enum {string} */
9269
- search_id: "companies:profiles:exa@1";
9270
- connector?: {
9271
- /**
9272
- * @default first
9273
- * @enum {string}
9274
- */
9275
- strategy?: "first";
9276
- connections: {
9277
- /** @enum {string} */
9278
- type: "vault";
9279
- connection: string;
9280
- }[];
9281
- } | null;
9282
- config: {
9283
- /** @default 10 */
9284
- limit?: number;
9285
- output_fields?: {
9286
- /** @default {
9287
- * "alias": "",
9288
- * "enabled": true
9289
- * } */
9290
- company_name?: {
9291
- /** @default */
9292
- alias?: string;
9293
- /** @default true */
9294
- enabled?: boolean;
9295
- };
9296
- /** @default {
9297
- * "alias": "",
9298
- * "enabled": true
9299
- * } */
9300
- company_website_url?: {
9301
- /** @default */
9302
- alias?: string;
9303
- /** @default true */
9304
- enabled?: boolean;
9305
- };
9306
- /** @default {
9307
- * "alias": "",
9308
- * "enabled": true
9309
- * } */
9310
- company_description?: {
9311
- /** @default */
9312
- alias?: string;
9313
- /** @default true */
9314
- enabled?: boolean;
9315
- };
9316
- /** @default {
9317
- * "alias": "",
9318
- * "enabled": true
9319
- * } */
9320
- company_industry?: {
9321
- /** @default */
9322
- alias?: string;
9323
- /** @default true */
9324
- enabled?: boolean;
9325
- };
9326
- /** @default {
9327
- * "alias": "",
9328
- * "enabled": true
9329
- * } */
9330
- headcount?: {
9331
- /** @default */
9332
- alias?: string;
9333
- /** @default true */
9334
- enabled?: boolean;
9335
- };
9336
- /** @default {
9337
- * "alias": "",
9338
- * "enabled": true
9339
- * } */
9340
- exa_match_evaluation?: {
9341
- /** @default */
9342
- alias?: string;
9343
- /** @default true */
9344
- enabled?: boolean;
9345
- };
9346
- };
9347
- filters: {
9348
- query: string;
9349
- };
9350
- };
9351
- } | {
9352
- /** @enum {string} */
9353
- search_id: "people:profiles:exa@1";
10000
+ search_id: "people:profiles:clado@1";
9354
10001
  connector?: {
9355
10002
  /**
9356
10003
  * @default first
@@ -9364,7 +10011,7 @@ export interface paths {
9364
10011
  }[];
9365
10012
  } | null;
9366
10013
  config: {
9367
- /** @default 10 */
10014
+ /** @default 20 */
9368
10015
  limit?: number;
9369
10016
  output_fields?: {
9370
10017
  /** @default {
@@ -9381,7 +10028,7 @@ export interface paths {
9381
10028
  * "alias": "",
9382
10029
  * "enabled": true
9383
10030
  * } */
9384
- profile_url?: {
10031
+ job_title?: {
9385
10032
  /** @default */
9386
10033
  alias?: string;
9387
10034
  /** @default true */
@@ -9391,7 +10038,7 @@ export interface paths {
9391
10038
  * "alias": "",
9392
10039
  * "enabled": true
9393
10040
  * } */
9394
- job_title?: {
10041
+ company_profile_url?: {
9395
10042
  /** @default */
9396
10043
  alias?: string;
9397
10044
  /** @default true */
@@ -9411,7 +10058,7 @@ export interface paths {
9411
10058
  * "alias": "",
9412
10059
  * "enabled": true
9413
10060
  * } */
9414
- company_region?: {
10061
+ profile_url?: {
9415
10062
  /** @default */
9416
10063
  alias?: string;
9417
10064
  /** @default true */
@@ -9421,7 +10068,7 @@ export interface paths {
9421
10068
  * "alias": "",
9422
10069
  * "enabled": true
9423
10070
  * } */
9424
- exa_match_evaluation?: {
10071
+ clado_person_match?: {
9425
10072
  /** @default */
9426
10073
  alias?: string;
9427
10074
  /** @default true */
@@ -9452,7 +10099,8 @@ export interface paths {
9452
10099
  limit?: number;
9453
10100
  /** @default */
9454
10101
  search_id?: string;
9455
- offset?: number;
10102
+ /** @default null */
10103
+ offset?: number | null;
9456
10104
  output_fields?: {
9457
10105
  /** @default {
9458
10106
  * "alias": "",
@@ -9547,7 +10195,7 @@ export interface paths {
9547
10195
  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;
9548
10196
  resolved_by?: {
9549
10197
  /** @enum {string|null} */
9550
- 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" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | 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;
9551
10199
  /** @enum {string|null} */
9552
10200
  environment: "production" | "sandbox" | null;
9553
10201
  config_hash: string | null;
@@ -9583,11 +10231,11 @@ export interface paths {
9583
10231
  waterfall?: {
9584
10232
  attempted_providers: {
9585
10233
  /** @enum {string} */
9586
- provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
10234
+ provider: "pipe0" | "findymail" | "crustdata" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
9587
10235
  }[];
9588
- available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
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")[];
9589
10237
  /** @enum {string} */
9590
- successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
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";
9591
10239
  };
9592
10240
  icon?: {
9593
10241
  /** @enum {string} */
@@ -9613,7 +10261,7 @@ export interface paths {
9613
10261
  search_statuses: {
9614
10262
  search: {
9615
10263
  /** @enum {string} */
9616
- ref: "people:profiles:icypeas@1" | "companies:profiles:icypeas@1" | "people:profiles:clado@1" | "people:profiles:clado@2" | "people:employees:leadmagic@1" | "companies:profiles:exa@1" | "people:profiles:exa@1";
10264
+ ref: "people:profiles:icypeas@1" | "companies:profiles:icypeas@1" | "people:profiles:clado@1" | "people:profiles:clado@2" | "people:employees:leadmagic@1" | "companies:profiles:exa@1" | "people:profiles:exa@1" | "companies:profiles:crustdata@1" | "people:profiles:crustdata@1";
9617
10265
  };
9618
10266
  /** @enum {string} */
9619
10267
  status: "pending" | "processing" | "failed" | "completed";
@@ -9630,6 +10278,11 @@ export interface paths {
9630
10278
  offset?: number;
9631
10279
  };
9632
10280
  };
10281
+ crustdata?: {
10282
+ pagination: {
10283
+ cursor: string | null;
10284
+ };
10285
+ };
9633
10286
  };
9634
10287
  };
9635
10288
  }[];