@pipe0/client 0.0.4 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @pipe0/client
2
2
 
3
+ ## 0.0.6
4
+
5
+ ### Patch Changes
6
+
7
+ - 12c1b32: Change primitive names
8
+
9
+ ## 0.0.5
10
+
11
+ ### Patch Changes
12
+
13
+ - ba9fb85: Add new pipes and fix search pipes
14
+
3
15
  ## 0.0.4
4
16
 
5
17
  ### Patch Changes
@@ -66,7 +66,7 @@ export interface paths {
66
66
  [key: string]: {
67
67
  /** @enum {string} */
68
68
  type: "string" | "number" | "boolean" | "json" | "unknown";
69
- label?: string;
69
+ label?: string | null;
70
70
  /** @enum {string|null} */
71
71
  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;
72
72
  json_metadata?: {
@@ -1507,6 +1507,159 @@ export interface paths {
1507
1507
  };
1508
1508
  };
1509
1509
  };
1510
+ } | {
1511
+ /** @enum {string} */
1512
+ pipe_id: "company:lookalikes:companyenrich@1";
1513
+ trigger?: {
1514
+ /** @enum {string} */
1515
+ action: "run";
1516
+ when: {
1517
+ /** @enum {string} */
1518
+ logic: "and" | "or";
1519
+ conditions: ({
1520
+ /** @enum {string} */
1521
+ property: "value";
1522
+ field_name: string;
1523
+ /** @enum {string} */
1524
+ operator: "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "contains";
1525
+ value: number | string | boolean | null;
1526
+ } | {
1527
+ /** @enum {string} */
1528
+ property: "status";
1529
+ field_name: string;
1530
+ /** @enum {string} */
1531
+ operator: "eq" | "neq";
1532
+ /** @enum {string} */
1533
+ value: "failed" | "no_result" | "completed" | "skipped";
1534
+ })[];
1535
+ };
1536
+ } | null;
1537
+ connector?: {
1538
+ /**
1539
+ * @default first
1540
+ * @enum {string}
1541
+ */
1542
+ strategy?: "first";
1543
+ connections: {
1544
+ /** @enum {string} */
1545
+ type: "vault";
1546
+ connection: string;
1547
+ }[];
1548
+ } | null;
1549
+ config?: {
1550
+ limit: number;
1551
+ input_fields?: {
1552
+ /** @default {
1553
+ * "alias": ""
1554
+ * } */
1555
+ company_website_url?: {
1556
+ alias: string;
1557
+ };
1558
+ };
1559
+ output_fields?: {
1560
+ /** @default {
1561
+ * "alias": "",
1562
+ * "enabled": true
1563
+ * } */
1564
+ companyenrich_matches?: {
1565
+ /** @default */
1566
+ alias?: string;
1567
+ /** @default true */
1568
+ enabled?: boolean;
1569
+ };
1570
+ };
1571
+ };
1572
+ } | {
1573
+ /** @enum {string} */
1574
+ pipe_id: "company:match:logodev@1";
1575
+ trigger?: {
1576
+ /** @enum {string} */
1577
+ action: "run";
1578
+ when: {
1579
+ /** @enum {string} */
1580
+ logic: "and" | "or";
1581
+ conditions: ({
1582
+ /** @enum {string} */
1583
+ property: "value";
1584
+ field_name: string;
1585
+ /** @enum {string} */
1586
+ operator: "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "contains";
1587
+ value: number | string | boolean | null;
1588
+ } | {
1589
+ /** @enum {string} */
1590
+ property: "status";
1591
+ field_name: string;
1592
+ /** @enum {string} */
1593
+ operator: "eq" | "neq";
1594
+ /** @enum {string} */
1595
+ value: "failed" | "no_result" | "completed" | "skipped";
1596
+ })[];
1597
+ };
1598
+ } | null;
1599
+ connector?: {
1600
+ /**
1601
+ * @default first
1602
+ * @enum {string}
1603
+ */
1604
+ strategy?: "first";
1605
+ connections: {
1606
+ /** @enum {string} */
1607
+ type: "vault";
1608
+ connection: string;
1609
+ }[];
1610
+ } | null;
1611
+ config?: {
1612
+ input_fields?: {
1613
+ /** @default {
1614
+ * "alias": ""
1615
+ * } */
1616
+ company_website_url?: {
1617
+ alias: string;
1618
+ };
1619
+ };
1620
+ output_fields?: {
1621
+ /** @default {
1622
+ * "alias": "",
1623
+ * "enabled": true
1624
+ * } */
1625
+ company_profile_url?: {
1626
+ /** @default */
1627
+ alias?: string;
1628
+ /** @default true */
1629
+ enabled?: boolean;
1630
+ };
1631
+ /** @default {
1632
+ * "alias": "",
1633
+ * "enabled": true
1634
+ * } */
1635
+ logo_url?: {
1636
+ /** @default */
1637
+ alias?: string;
1638
+ /** @default true */
1639
+ enabled?: boolean;
1640
+ };
1641
+ /** @default {
1642
+ * "alias": "",
1643
+ * "enabled": true
1644
+ * } */
1645
+ company_name?: {
1646
+ /** @default */
1647
+ alias?: string;
1648
+ /** @default true */
1649
+ enabled?: boolean;
1650
+ };
1651
+ /** @default {
1652
+ * "alias": "",
1653
+ * "enabled": true
1654
+ * } */
1655
+ logodev_describe_match?: {
1656
+ /** @default */
1657
+ alias?: string;
1658
+ /** @default true */
1659
+ enabled?: boolean;
1660
+ };
1661
+ };
1662
+ };
1510
1663
  } | {
1511
1664
  /** @enum {string} */
1512
1665
  pipe_id: "message:send:slack@1";
@@ -2165,6 +2318,77 @@ export interface paths {
2165
2318
  };
2166
2319
  };
2167
2320
  };
2321
+ } | {
2322
+ /** @enum {string} */
2323
+ pipe_id: "people:match:role:waterfall@1";
2324
+ trigger?: {
2325
+ /** @enum {string} */
2326
+ action: "run";
2327
+ when: {
2328
+ /** @enum {string} */
2329
+ logic: "and" | "or";
2330
+ conditions: ({
2331
+ /** @enum {string} */
2332
+ property: "value";
2333
+ field_name: string;
2334
+ /** @enum {string} */
2335
+ operator: "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "contains";
2336
+ value: number | string | boolean | null;
2337
+ } | {
2338
+ /** @enum {string} */
2339
+ property: "status";
2340
+ field_name: string;
2341
+ /** @enum {string} */
2342
+ operator: "eq" | "neq";
2343
+ /** @enum {string} */
2344
+ value: "failed" | "no_result" | "completed" | "skipped";
2345
+ })[];
2346
+ };
2347
+ } | null;
2348
+ connector?: {
2349
+ /**
2350
+ * @default first
2351
+ * @enum {string}
2352
+ */
2353
+ strategy?: "first";
2354
+ connections: {
2355
+ /** @enum {string} */
2356
+ type: "vault";
2357
+ connection: string;
2358
+ }[];
2359
+ } | null;
2360
+ config: {
2361
+ /** @default [
2362
+ * {
2363
+ * "provider": "leadmagic"
2364
+ * }
2365
+ * ] */
2366
+ providers?: {
2367
+ /** @enum {string} */
2368
+ provider: "leadmagic";
2369
+ }[];
2370
+ roles: string[];
2371
+ input_fields?: {
2372
+ /** @default {
2373
+ * "alias": ""
2374
+ * } */
2375
+ company_website_url?: {
2376
+ alias: string;
2377
+ };
2378
+ };
2379
+ output_fields?: {
2380
+ /** @default {
2381
+ * "alias": "",
2382
+ * "enabled": true
2383
+ * } */
2384
+ role_finder_match?: {
2385
+ /** @default */
2386
+ alias?: string;
2387
+ /** @default true */
2388
+ enabled?: boolean;
2389
+ };
2390
+ };
2391
+ };
2168
2392
  } | {
2169
2393
  /** @enum {string} */
2170
2394
  pipe_id: "company:identity@2";
@@ -3228,12 +3452,12 @@ export interface paths {
3228
3452
  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;
3229
3453
  claimed_by?: {
3230
3454
  /** @enum {string|null} */
3231
- 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" | "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:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | 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;
3232
3456
  config_hash: string | null;
3233
3457
  };
3234
3458
  resolved_by?: {
3235
3459
  /** @enum {string|null} */
3236
- 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" | "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:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | 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;
3237
3461
  /** @enum {string|null} */
3238
3462
  environment: "production" | "sandbox" | null;
3239
3463
  config_hash: string | null;
@@ -3269,11 +3493,11 @@ export interface paths {
3269
3493
  waterfall?: {
3270
3494
  attempted_providers: {
3271
3495
  /** @enum {string} */
3272
- provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai";
3496
+ provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
3273
3497
  }[];
3274
- available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai")[];
3498
+ available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
3275
3499
  /** @enum {string} */
3276
- successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai";
3500
+ successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
3277
3501
  };
3278
3502
  icon?: {
3279
3503
  /** @enum {string} */
@@ -3315,12 +3539,8 @@ export interface paths {
3315
3539
  /** @enum {string} */
3316
3540
  type: "string" | "number" | "boolean" | "json" | "unknown";
3317
3541
  label: string;
3318
- json_metadata: {
3319
- example_value?: unknown;
3320
- schema?: unknown;
3321
- } | null;
3322
3542
  added_by: {
3323
- 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" | "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:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1") | "input";
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";
3324
3544
  config_hash: string | null;
3325
3545
  pipe_index: number | null;
3326
3546
  };
@@ -3351,12 +3571,12 @@ export interface paths {
3351
3571
  } | null;
3352
3572
  claimed_by: {
3353
3573
  /** @enum {string|null} */
3354
- 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" | "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:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | 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;
3355
3575
  config_hash: string | null;
3356
3576
  };
3357
3577
  resolved_by: {
3358
3578
  /** @enum {string|null} */
3359
- 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" | "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:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | 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;
3360
3580
  /** @enum {string|null} */
3361
3581
  environment: "production" | "sandbox" | null;
3362
3582
  config_hash: string | null;
@@ -3392,11 +3612,11 @@ export interface paths {
3392
3612
  waterfall?: {
3393
3613
  attempted_providers: {
3394
3614
  /** @enum {string} */
3395
- provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai";
3615
+ provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
3396
3616
  }[];
3397
- available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai")[];
3617
+ available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
3398
3618
  /** @enum {string} */
3399
- successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai";
3619
+ successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
3400
3620
  };
3401
3621
  icon?: {
3402
3622
  /** @enum {string} */
@@ -3555,7 +3775,7 @@ export interface paths {
3555
3775
  [key: string]: {
3556
3776
  /** @enum {string} */
3557
3777
  type: "string" | "number" | "boolean" | "json" | "unknown";
3558
- label?: string;
3778
+ label?: string | null;
3559
3779
  /** @enum {string|null} */
3560
3780
  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;
3561
3781
  json_metadata?: {
@@ -4996,6 +5216,159 @@ export interface paths {
4996
5216
  };
4997
5217
  };
4998
5218
  };
5219
+ } | {
5220
+ /** @enum {string} */
5221
+ pipe_id: "company:lookalikes:companyenrich@1";
5222
+ trigger?: {
5223
+ /** @enum {string} */
5224
+ action: "run";
5225
+ when: {
5226
+ /** @enum {string} */
5227
+ logic: "and" | "or";
5228
+ conditions: ({
5229
+ /** @enum {string} */
5230
+ property: "value";
5231
+ field_name: string;
5232
+ /** @enum {string} */
5233
+ operator: "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "contains";
5234
+ value: number | string | boolean | null;
5235
+ } | {
5236
+ /** @enum {string} */
5237
+ property: "status";
5238
+ field_name: string;
5239
+ /** @enum {string} */
5240
+ operator: "eq" | "neq";
5241
+ /** @enum {string} */
5242
+ value: "failed" | "no_result" | "completed" | "skipped";
5243
+ })[];
5244
+ };
5245
+ } | null;
5246
+ connector?: {
5247
+ /**
5248
+ * @default first
5249
+ * @enum {string}
5250
+ */
5251
+ strategy?: "first";
5252
+ connections: {
5253
+ /** @enum {string} */
5254
+ type: "vault";
5255
+ connection: string;
5256
+ }[];
5257
+ } | null;
5258
+ config?: {
5259
+ limit: number;
5260
+ input_fields?: {
5261
+ /** @default {
5262
+ * "alias": ""
5263
+ * } */
5264
+ company_website_url?: {
5265
+ alias: string;
5266
+ };
5267
+ };
5268
+ output_fields?: {
5269
+ /** @default {
5270
+ * "alias": "",
5271
+ * "enabled": true
5272
+ * } */
5273
+ companyenrich_matches?: {
5274
+ /** @default */
5275
+ alias?: string;
5276
+ /** @default true */
5277
+ enabled?: boolean;
5278
+ };
5279
+ };
5280
+ };
5281
+ } | {
5282
+ /** @enum {string} */
5283
+ pipe_id: "company:match:logodev@1";
5284
+ trigger?: {
5285
+ /** @enum {string} */
5286
+ action: "run";
5287
+ when: {
5288
+ /** @enum {string} */
5289
+ logic: "and" | "or";
5290
+ conditions: ({
5291
+ /** @enum {string} */
5292
+ property: "value";
5293
+ field_name: string;
5294
+ /** @enum {string} */
5295
+ operator: "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "contains";
5296
+ value: number | string | boolean | null;
5297
+ } | {
5298
+ /** @enum {string} */
5299
+ property: "status";
5300
+ field_name: string;
5301
+ /** @enum {string} */
5302
+ operator: "eq" | "neq";
5303
+ /** @enum {string} */
5304
+ value: "failed" | "no_result" | "completed" | "skipped";
5305
+ })[];
5306
+ };
5307
+ } | null;
5308
+ connector?: {
5309
+ /**
5310
+ * @default first
5311
+ * @enum {string}
5312
+ */
5313
+ strategy?: "first";
5314
+ connections: {
5315
+ /** @enum {string} */
5316
+ type: "vault";
5317
+ connection: string;
5318
+ }[];
5319
+ } | null;
5320
+ config?: {
5321
+ input_fields?: {
5322
+ /** @default {
5323
+ * "alias": ""
5324
+ * } */
5325
+ company_website_url?: {
5326
+ alias: string;
5327
+ };
5328
+ };
5329
+ output_fields?: {
5330
+ /** @default {
5331
+ * "alias": "",
5332
+ * "enabled": true
5333
+ * } */
5334
+ company_profile_url?: {
5335
+ /** @default */
5336
+ alias?: string;
5337
+ /** @default true */
5338
+ enabled?: boolean;
5339
+ };
5340
+ /** @default {
5341
+ * "alias": "",
5342
+ * "enabled": true
5343
+ * } */
5344
+ logo_url?: {
5345
+ /** @default */
5346
+ alias?: string;
5347
+ /** @default true */
5348
+ enabled?: boolean;
5349
+ };
5350
+ /** @default {
5351
+ * "alias": "",
5352
+ * "enabled": true
5353
+ * } */
5354
+ company_name?: {
5355
+ /** @default */
5356
+ alias?: string;
5357
+ /** @default true */
5358
+ enabled?: boolean;
5359
+ };
5360
+ /** @default {
5361
+ * "alias": "",
5362
+ * "enabled": true
5363
+ * } */
5364
+ logodev_describe_match?: {
5365
+ /** @default */
5366
+ alias?: string;
5367
+ /** @default true */
5368
+ enabled?: boolean;
5369
+ };
5370
+ };
5371
+ };
4999
5372
  } | {
5000
5373
  /** @enum {string} */
5001
5374
  pipe_id: "message:send:slack@1";
@@ -5654,6 +6027,77 @@ export interface paths {
5654
6027
  };
5655
6028
  };
5656
6029
  };
6030
+ } | {
6031
+ /** @enum {string} */
6032
+ pipe_id: "people:match:role:waterfall@1";
6033
+ trigger?: {
6034
+ /** @enum {string} */
6035
+ action: "run";
6036
+ when: {
6037
+ /** @enum {string} */
6038
+ logic: "and" | "or";
6039
+ conditions: ({
6040
+ /** @enum {string} */
6041
+ property: "value";
6042
+ field_name: string;
6043
+ /** @enum {string} */
6044
+ operator: "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "contains";
6045
+ value: number | string | boolean | null;
6046
+ } | {
6047
+ /** @enum {string} */
6048
+ property: "status";
6049
+ field_name: string;
6050
+ /** @enum {string} */
6051
+ operator: "eq" | "neq";
6052
+ /** @enum {string} */
6053
+ value: "failed" | "no_result" | "completed" | "skipped";
6054
+ })[];
6055
+ };
6056
+ } | null;
6057
+ connector?: {
6058
+ /**
6059
+ * @default first
6060
+ * @enum {string}
6061
+ */
6062
+ strategy?: "first";
6063
+ connections: {
6064
+ /** @enum {string} */
6065
+ type: "vault";
6066
+ connection: string;
6067
+ }[];
6068
+ } | null;
6069
+ config: {
6070
+ /** @default [
6071
+ * {
6072
+ * "provider": "leadmagic"
6073
+ * }
6074
+ * ] */
6075
+ providers?: {
6076
+ /** @enum {string} */
6077
+ provider: "leadmagic";
6078
+ }[];
6079
+ roles: string[];
6080
+ input_fields?: {
6081
+ /** @default {
6082
+ * "alias": ""
6083
+ * } */
6084
+ company_website_url?: {
6085
+ alias: string;
6086
+ };
6087
+ };
6088
+ output_fields?: {
6089
+ /** @default {
6090
+ * "alias": "",
6091
+ * "enabled": true
6092
+ * } */
6093
+ role_finder_match?: {
6094
+ /** @default */
6095
+ alias?: string;
6096
+ /** @default true */
6097
+ enabled?: boolean;
6098
+ };
6099
+ };
6100
+ };
5657
6101
  } | {
5658
6102
  /** @enum {string} */
5659
6103
  pipe_id: "company:identity@2";
@@ -6717,12 +7161,12 @@ export interface paths {
6717
7161
  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;
6718
7162
  claimed_by?: {
6719
7163
  /** @enum {string|null} */
6720
- 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" | "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:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | 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;
6721
7165
  config_hash: string | null;
6722
7166
  };
6723
7167
  resolved_by?: {
6724
7168
  /** @enum {string|null} */
6725
- 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" | "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:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | 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;
6726
7170
  /** @enum {string|null} */
6727
7171
  environment: "production" | "sandbox" | null;
6728
7172
  config_hash: string | null;
@@ -6758,11 +7202,11 @@ export interface paths {
6758
7202
  waterfall?: {
6759
7203
  attempted_providers: {
6760
7204
  /** @enum {string} */
6761
- provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai";
7205
+ provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
6762
7206
  }[];
6763
- available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai")[];
7207
+ available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
6764
7208
  /** @enum {string} */
6765
- successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai";
7209
+ successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
6766
7210
  };
6767
7211
  icon?: {
6768
7212
  /** @enum {string} */
@@ -6804,12 +7248,8 @@ export interface paths {
6804
7248
  /** @enum {string} */
6805
7249
  type: "string" | "number" | "boolean" | "json" | "unknown";
6806
7250
  label: string;
6807
- json_metadata: {
6808
- example_value?: unknown;
6809
- schema?: unknown;
6810
- } | null;
6811
7251
  added_by: {
6812
- 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" | "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:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1") | "input";
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";
6813
7253
  config_hash: string | null;
6814
7254
  pipe_index: number | null;
6815
7255
  };
@@ -6840,12 +7280,12 @@ export interface paths {
6840
7280
  } | null;
6841
7281
  claimed_by: {
6842
7282
  /** @enum {string|null} */
6843
- 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" | "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:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | 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;
6844
7284
  config_hash: string | null;
6845
7285
  };
6846
7286
  resolved_by: {
6847
7287
  /** @enum {string|null} */
6848
- 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" | "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:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | 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;
6849
7289
  /** @enum {string|null} */
6850
7290
  environment: "production" | "sandbox" | null;
6851
7291
  config_hash: string | null;
@@ -6881,11 +7321,11 @@ export interface paths {
6881
7321
  waterfall?: {
6882
7322
  attempted_providers: {
6883
7323
  /** @enum {string} */
6884
- provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai";
7324
+ provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
6885
7325
  }[];
6886
- available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai")[];
7326
+ available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
6887
7327
  /** @enum {string} */
6888
- successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai";
7328
+ successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
6889
7329
  };
6890
7330
  icon?: {
6891
7331
  /** @enum {string} */
@@ -7015,12 +7455,8 @@ export interface paths {
7015
7455
  /** @enum {string} */
7016
7456
  type: "string" | "number" | "boolean" | "json" | "unknown";
7017
7457
  label: string;
7018
- json_metadata: {
7019
- example_value?: unknown;
7020
- schema?: unknown;
7021
- } | null;
7022
7458
  added_by: {
7023
- 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" | "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:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1") | "input";
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";
7024
7460
  config_hash: string | null;
7025
7461
  pipe_index: number | null;
7026
7462
  };
@@ -7051,12 +7487,12 @@ export interface paths {
7051
7487
  } | null;
7052
7488
  claimed_by: {
7053
7489
  /** @enum {string|null} */
7054
- 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" | "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:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | 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;
7055
7491
  config_hash: string | null;
7056
7492
  };
7057
7493
  resolved_by: {
7058
7494
  /** @enum {string|null} */
7059
- 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" | "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:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | 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;
7060
7496
  /** @enum {string|null} */
7061
7497
  environment: "production" | "sandbox" | null;
7062
7498
  config_hash: string | null;
@@ -7092,11 +7528,11 @@ export interface paths {
7092
7528
  waterfall?: {
7093
7529
  attempted_providers: {
7094
7530
  /** @enum {string} */
7095
- provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai";
7531
+ provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
7096
7532
  }[];
7097
- available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai")[];
7533
+ available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
7098
7534
  /** @enum {string} */
7099
- successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai";
7535
+ successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
7100
7536
  };
7101
7537
  icon?: {
7102
7538
  /** @enum {string} */
@@ -7233,6 +7669,14 @@ export interface paths {
7233
7669
  type?: "string" | "number" | "boolean" | "json" | "unknown";
7234
7670
  /** @enum {string|null} */
7235
7671
  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
+ resolved_by?: {
7673
+ /** @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;
7675
+ /** @enum {string|null} */
7676
+ environment: "production" | "sandbox" | null;
7677
+ config_hash: string | null;
7678
+ input_hash: string | null;
7679
+ } | null;
7236
7680
  /** @description A map of widgets associated with this field for UI display, keyed by widget type. */
7237
7681
  widgets?: {
7238
7682
  display_value?: {
@@ -7263,11 +7707,11 @@ export interface paths {
7263
7707
  waterfall?: {
7264
7708
  attempted_providers: {
7265
7709
  /** @enum {string} */
7266
- provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai";
7710
+ provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
7267
7711
  }[];
7268
- available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai")[];
7712
+ available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
7269
7713
  /** @enum {string} */
7270
- successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai";
7714
+ successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
7271
7715
  };
7272
7716
  icon?: {
7273
7717
  /** @enum {string} */
@@ -7718,10 +8162,8 @@ export interface paths {
7718
8162
  exclude?: string[];
7719
8163
  };
7720
8164
  headcount?: {
7721
- gt?: number | null;
7722
- lt?: number | null;
7723
- gte?: number | null;
7724
- lte?: number | null;
8165
+ from?: number | null;
8166
+ to?: number | null;
7725
8167
  };
7726
8168
  urn?: {
7727
8169
  /** @default [] */
@@ -8166,6 +8608,14 @@ export interface paths {
8166
8608
  type?: "string" | "number" | "boolean" | "json" | "unknown";
8167
8609
  /** @enum {string|null} */
8168
8610
  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
+ resolved_by?: {
8612
+ /** @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;
8614
+ /** @enum {string|null} */
8615
+ environment: "production" | "sandbox" | null;
8616
+ config_hash: string | null;
8617
+ input_hash: string | null;
8618
+ } | null;
8169
8619
  /** @description A map of widgets associated with this field for UI display, keyed by widget type. */
8170
8620
  widgets?: {
8171
8621
  display_value?: {
@@ -8196,11 +8646,11 @@ export interface paths {
8196
8646
  waterfall?: {
8197
8647
  attempted_providers: {
8198
8648
  /** @enum {string} */
8199
- provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai";
8649
+ provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
8200
8650
  }[];
8201
- available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai")[];
8651
+ available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
8202
8652
  /** @enum {string} */
8203
- successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai";
8653
+ successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
8204
8654
  };
8205
8655
  icon?: {
8206
8656
  /** @enum {string} */
@@ -8649,10 +9099,8 @@ export interface paths {
8649
9099
  exclude?: string[];
8650
9100
  };
8651
9101
  headcount?: {
8652
- gt?: number | null;
8653
- lt?: number | null;
8654
- gte?: number | null;
8655
- lte?: number | null;
9102
+ from?: number | null;
9103
+ to?: number | null;
8656
9104
  };
8657
9105
  urn?: {
8658
9106
  /** @default [] */
@@ -9097,6 +9545,14 @@ export interface paths {
9097
9545
  type?: "string" | "number" | "boolean" | "json" | "unknown";
9098
9546
  /** @enum {string|null} */
9099
9547
  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
+ resolved_by?: {
9549
+ /** @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;
9551
+ /** @enum {string|null} */
9552
+ environment: "production" | "sandbox" | null;
9553
+ config_hash: string | null;
9554
+ input_hash: string | null;
9555
+ } | null;
9100
9556
  /** @description A map of widgets associated with this field for UI display, keyed by widget type. */
9101
9557
  widgets?: {
9102
9558
  display_value?: {
@@ -9127,11 +9583,11 @@ export interface paths {
9127
9583
  waterfall?: {
9128
9584
  attempted_providers: {
9129
9585
  /** @enum {string} */
9130
- provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai";
9586
+ provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
9131
9587
  }[];
9132
- available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai")[];
9588
+ available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
9133
9589
  /** @enum {string} */
9134
- successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai";
9590
+ successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
9135
9591
  };
9136
9592
  icon?: {
9137
9593
  /** @enum {string} */
package/dist/index.d.ts CHANGED
@@ -1 +1 @@
1
- export { Pipe0 } from "./pipe0.js";
1
+ export * from "./pipe0.js";
package/dist/index.js CHANGED
@@ -1 +1 @@
1
- export { Pipe0 } from "./pipe0.js";
1
+ export * from "./pipe0.js";
package/dist/pipe0.d.ts CHANGED
@@ -1,10 +1,10 @@
1
1
  import { type Client } from "openapi-fetch";
2
2
  import type { paths } from "./generated/openapi.types.js";
3
- export type PipesRequestPayload = paths["/v1/pipes/run"]["post"]["requestBody"]["content"]["application/json"];
3
+ export type PipesRequest = paths["/v1/pipes/run"]["post"]["requestBody"]["content"]["application/json"];
4
4
  export type PipesResponse = paths["/v1/pipes/check/{run_id}"]["get"]["responses"]["200"]["content"]["application/json"];
5
- export type PiperSearchRequestPayload = paths["/v1/searches/run"]["post"]["requestBody"]["content"]["application/json"];
6
- export type PiperSearchResponse = paths["/v1/searches/check/{run_id}"]["get"]["responses"]["200"]["content"]["application/json"];
7
- export declare class PiperTimeoutError extends Error {
5
+ export type SearchesRequest = paths["/v1/searches/run"]["post"]["requestBody"]["content"]["application/json"];
6
+ export type SearchesResponse = paths["/v1/searches/check/{run_id}"]["get"]["responses"]["200"]["content"]["application/json"];
7
+ export declare class Pipe0TimeoutError extends Error {
8
8
  readonly runId?: string | undefined;
9
9
  constructor(message: string, runId?: string | undefined);
10
10
  }
@@ -49,7 +49,7 @@ export interface BatchOptions {
49
49
  */
50
50
  signal?: AbortSignal;
51
51
  }
52
- export interface PiperOptions {
52
+ export interface Pipe0Options {
53
53
  apiKey?: string;
54
54
  baseUrl?: string;
55
55
  /**
@@ -86,7 +86,7 @@ export declare class Pipe0 {
86
86
  private maxPollingIntervalMs;
87
87
  private defaultBatchSize;
88
88
  private maxConcurrentBatches;
89
- constructor(options?: PiperOptions);
89
+ constructor(options?: Pipe0Options);
90
90
  /**
91
91
  * Centralized logic to poll until a task completes, fails, or times out.
92
92
  */
@@ -95,14 +95,14 @@ export declare class Pipe0 {
95
95
  /**
96
96
  * Create and immediately wait for completion (convenience method)
97
97
  */
98
- pipe: (payload: PipesRequestPayload, options?: {
98
+ pipe: (payload: PipesRequest, options?: {
99
99
  onPoll?: (_response: PipesResponse) => unknown;
100
100
  signal?: AbortSignal;
101
101
  }) => Promise<PipesResponse>;
102
102
  /**
103
103
  * Create a pipes task but don't want for it. Use this method if you want to fire and forget.
104
104
  */
105
- create: (payload: PipesRequestPayload) => Promise<string>;
105
+ create: (payload: PipesRequest) => Promise<string>;
106
106
  /**
107
107
  * Check the status of a pipes task manually.
108
108
  */
@@ -114,12 +114,8 @@ export declare class Pipe0 {
114
114
  [key: string]: {
115
115
  type: "string" | "number" | "boolean" | "json" | "unknown";
116
116
  label: string;
117
- json_metadata: {
118
- example_value?: unknown;
119
- schema?: unknown;
120
- } | null;
121
117
  added_by: {
122
- 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" | "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:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1") | "input";
118
+ 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";
123
119
  config_hash: string | null;
124
120
  pipe_index: number | null;
125
121
  };
@@ -147,11 +143,11 @@ export declare class Pipe0 {
147
143
  message: string;
148
144
  } | null;
149
145
  claimed_by: {
150
- 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" | "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:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | null;
146
+ 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;
151
147
  config_hash: string | null;
152
148
  };
153
149
  resolved_by: {
154
- 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" | "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:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
150
+ 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;
155
151
  environment: "production" | "sandbox" | null;
156
152
  config_hash: string | null;
157
153
  input_hash: string | null;
@@ -173,10 +169,10 @@ export declare class Pipe0 {
173
169
  };
174
170
  waterfall?: {
175
171
  attempted_providers: {
176
- provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai";
172
+ provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
177
173
  }[];
178
- available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai")[];
179
- successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai";
174
+ available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
175
+ successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
180
176
  };
181
177
  icon?: {
182
178
  key: "linkedin" | "job";
@@ -218,21 +214,21 @@ export declare class Pipe0 {
218
214
  * @param options - Batching options
219
215
  * @returns Array of completed batch responses
220
216
  */
221
- pipeInBatches: (payload: PipesRequestPayload, { stopOnError, ...options }?: BatchOptions) => Promise<PipesResponse[]>;
217
+ pipeInBatches: (payload: PipesRequest, { stopOnError, ...options }?: BatchOptions) => Promise<PipesResponse[]>;
222
218
  };
223
219
  searches: {
224
220
  /**
225
221
  * Create and immediately wait for completion (convenience method)
226
222
  */
227
- search: (payload: PiperSearchRequestPayload, options?: {
228
- onPoll?: (_response: PiperSearchResponse) => unknown;
223
+ search: (payload: SearchesRequest, options?: {
224
+ onPoll?: (_response: SearchesResponse) => unknown;
229
225
  signal?: AbortSignal;
230
- }) => Promise<PiperSearchResponse>;
226
+ }) => Promise<SearchesResponse>;
231
227
  /**
232
228
  * Create a searches task but don't wait for it.
233
229
  * Use this if you want fire and forget.
234
230
  */
235
- create: (payload: PiperSearchRequestPayload) => Promise<string>;
231
+ create: (payload: SearchesRequest) => Promise<string>;
236
232
  /**
237
233
  * Check the status of a search task manually.
238
234
  */
@@ -247,6 +243,12 @@ export declare class Pipe0 {
247
243
  status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
248
244
  type?: "string" | "number" | "boolean" | "json" | "unknown";
249
245
  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;
246
+ resolved_by?: {
247
+ 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;
248
+ environment: "production" | "sandbox" | null;
249
+ config_hash: string | null;
250
+ input_hash: string | null;
251
+ } | null;
250
252
  widgets?: {
251
253
  display_value?: {
252
254
  label?: string;
@@ -264,10 +266,10 @@ export declare class Pipe0 {
264
266
  };
265
267
  waterfall?: {
266
268
  attempted_providers: {
267
- provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai";
269
+ provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
268
270
  }[];
269
- available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai")[];
270
- successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai";
271
+ available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
272
+ successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
271
273
  };
272
274
  icon?: {
273
275
  key: "linkedin" | "job";
@@ -315,9 +317,9 @@ export declare class Pipe0 {
315
317
  * Poll until the search completes or fails.
316
318
  */
317
319
  waitUntilComplete: (runId: string | Promise<string>, options?: {
318
- onPoll?: (_response: PiperSearchResponse) => unknown;
320
+ onPoll?: (_response: SearchesResponse) => unknown;
319
321
  signal?: AbortSignal;
320
- }) => Promise<PiperSearchResponse>;
322
+ }) => Promise<SearchesResponse>;
321
323
  };
322
324
  private sleep;
323
325
  }
package/dist/pipe0.js CHANGED
@@ -1,10 +1,10 @@
1
1
  import createFetchClient, {} from "openapi-fetch";
2
- export class PiperTimeoutError extends Error {
2
+ export class Pipe0TimeoutError extends Error {
3
3
  runId;
4
4
  constructor(message, runId) {
5
5
  super(message);
6
6
  this.runId = runId;
7
- this.name = "PiperTimeoutError";
7
+ this.name = "Pipe0TimeoutError";
8
8
  this.runId = runId;
9
9
  }
10
10
  }
@@ -13,7 +13,7 @@ export class Pipe0AbortError extends Error {
13
13
  constructor(message, runId) {
14
14
  super(message);
15
15
  this.runId = runId;
16
- this.name = "PiperAbortError";
16
+ this.name = "Pipe0AbortError";
17
17
  this.runId = runId;
18
18
  }
19
19
  }
@@ -24,7 +24,7 @@ export class Pipe0BatchError extends Error {
24
24
  super(message);
25
25
  this.errors = errors;
26
26
  this.successfulBatches = successfulBatches;
27
- this.name = "PiperBatchError";
27
+ this.name = "Pipe0BatchError";
28
28
  this.errors = errors;
29
29
  this.successfulBatches = successfulBatches;
30
30
  }
@@ -34,14 +34,14 @@ export class Pipe0TaskError extends Error {
34
34
  constructor(message, responseBody) {
35
35
  super(message);
36
36
  this.responseBody = responseBody;
37
- this.name = "PiperTaskError";
37
+ this.name = "Pipe0TaskError";
38
38
  this.responseBody = responseBody;
39
39
  }
40
40
  }
41
41
  export class Pipe0ServerError extends Error {
42
42
  constructor(message) {
43
43
  super(message);
44
- this.name = "PiperServerError";
44
+ this.name = "Pipe0ServerError";
45
45
  }
46
46
  }
47
47
  export class Pipe0 {
@@ -85,7 +85,7 @@ export class Pipe0 {
85
85
  let currentInterval = initialInterval;
86
86
  while (true) {
87
87
  if (Date.now() - startTime >= timeout) {
88
- throw new PiperTimeoutError(`${taskType} polling timed out after ${timeout}ms`, resolvedRunId);
88
+ throw new Pipe0TimeoutError(`${taskType} polling timed out after ${timeout}ms`, resolvedRunId);
89
89
  }
90
90
  if (options.signal?.aborted) {
91
91
  throw new Pipe0AbortError(`${taskType} polling was aborted`, resolvedRunId);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipe0/client",
3
- "version": "0.0.4",
3
+ "version": "0.0.6",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "type": "module",