@pipe0/base 0.4.3 → 0.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist/index.d.mts +358 -78
- package/dist/index.mjs +10 -10
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -354,6 +354,7 @@ declare const StoreOptionWidgetSchema: z.ZodObject<{
|
|
|
354
354
|
millionverifier: "millionverifier";
|
|
355
355
|
googlemaps: "googlemaps";
|
|
356
356
|
gemini: "gemini";
|
|
357
|
+
anthropic: "anthropic";
|
|
357
358
|
leadmagic: "leadmagic";
|
|
358
359
|
mixrank: "mixrank";
|
|
359
360
|
builtwith: "builtwith";
|
|
@@ -374,6 +375,7 @@ declare const StoreOptionWidgetSchema: z.ZodObject<{
|
|
|
374
375
|
parallel: "parallel";
|
|
375
376
|
luma: "luma";
|
|
376
377
|
postgres: "postgres";
|
|
378
|
+
databricks: "databricks";
|
|
377
379
|
}>;
|
|
378
380
|
}, z.core.$strip>>;
|
|
379
381
|
emoji: z.ZodOptional<z.ZodObject<{
|
|
@@ -456,6 +458,50 @@ declare function autocomplete(sourceKey: AutocompleteSourceKey, options?: {
|
|
|
456
458
|
limit?: number;
|
|
457
459
|
}): StoreOptionsDef;
|
|
458
460
|
//#endregion
|
|
461
|
+
//#region src/fields/column-names.d.ts
|
|
462
|
+
/**
|
|
463
|
+
* Canonical column-name → field-id normalization for data ingested from external
|
|
464
|
+
* sources with arbitrary column headers (DB-query results, CSV imports, …).
|
|
465
|
+
*
|
|
466
|
+
* pipe0 field names are used as Liquid variables (`{{ name }}`) and as sheet
|
|
467
|
+
* column ids, so they must be identifier-safe. This is the single source of
|
|
468
|
+
* truth — both the DB-query search runner and the CSV importer use it, so a
|
|
469
|
+
* header like `"Saudi Arabia"` or `"'Asir"` normalizes identically everywhere.
|
|
470
|
+
* (It is deliberately NOT applied inside the general pipe/sheet transform:
|
|
471
|
+
* existing sheet field names may legitimately be non-slug; normalization belongs
|
|
472
|
+
* only at the ingestion boundary.)
|
|
473
|
+
*
|
|
474
|
+
* Case is PRESERVED so camelCase (`firstName`) and snake_case (`first_name`)
|
|
475
|
+
* column names survive intact — we only strip what isn't identifier-safe.
|
|
476
|
+
*/
|
|
477
|
+
/**
|
|
478
|
+
* Normalize an arbitrary column name into a Liquid-referenceable identifier:
|
|
479
|
+
* strip diacritics, collapse every run of non-alphanumerics to a single `_`
|
|
480
|
+
* (spaces, apostrophes, hyphens, … — hyphens break Liquid `{{ }}`), and trim
|
|
481
|
+
* leading/trailing `_`. Case is preserved. A digit-leading result is prefixed
|
|
482
|
+
* with `_` (Liquid variable names can't start with a digit — `{{ 2024 }}` parses
|
|
483
|
+
* as the number literal, not the field). An empty result becomes `column`.
|
|
484
|
+
* Output always satisfies `^_?[A-Za-z0-9]+(?:_[A-Za-z0-9]+)*$`.
|
|
485
|
+
*/
|
|
486
|
+
declare function normalizeColumnName(name: string): string;
|
|
487
|
+
/**
|
|
488
|
+
* Make a list of names unique by suffixing collisions with `_2`, `_3`, … in
|
|
489
|
+
* order. Preserves the first occurrence as-is.
|
|
490
|
+
*/
|
|
491
|
+
declare function dedupeColumnNames(names: string[]): string[];
|
|
492
|
+
interface ResultColumn {
|
|
493
|
+
/** Normalized, identifier-safe, de-duplicated name (the field id / row key). */
|
|
494
|
+
name: string;
|
|
495
|
+
/** Original column name, kept for display. */
|
|
496
|
+
label: string;
|
|
497
|
+
}
|
|
498
|
+
/**
|
|
499
|
+
* Map original column names (in order) to normalized + de-duped `{ name, label }`
|
|
500
|
+
* pairs. `name` is the field id callers should key rows by; `label` is the
|
|
501
|
+
* original name for display.
|
|
502
|
+
*/
|
|
503
|
+
declare function buildResultColumns(originalNames: string[]): ResultColumn[];
|
|
504
|
+
//#endregion
|
|
459
505
|
//#region src/pipes/utils/schemas-primitives.d.ts
|
|
460
506
|
declare const PipesEnvironmentSchema: z.ZodEnum<{
|
|
461
507
|
production: "production";
|
|
@@ -603,6 +649,7 @@ declare const WidgetsSchema: z.ZodObject<{
|
|
|
603
649
|
millionverifier: "millionverifier";
|
|
604
650
|
googlemaps: "googlemaps";
|
|
605
651
|
gemini: "gemini";
|
|
652
|
+
anthropic: "anthropic";
|
|
606
653
|
leadmagic: "leadmagic";
|
|
607
654
|
mixrank: "mixrank";
|
|
608
655
|
builtwith: "builtwith";
|
|
@@ -623,6 +670,7 @@ declare const WidgetsSchema: z.ZodObject<{
|
|
|
623
670
|
parallel: "parallel";
|
|
624
671
|
luma: "luma";
|
|
625
672
|
postgres: "postgres";
|
|
673
|
+
databricks: "databricks";
|
|
626
674
|
}>;
|
|
627
675
|
}, z.core.$strip>>;
|
|
628
676
|
available_providers: z.ZodArray<z.ZodEnum<{
|
|
@@ -634,6 +682,7 @@ declare const WidgetsSchema: z.ZodObject<{
|
|
|
634
682
|
millionverifier: "millionverifier";
|
|
635
683
|
googlemaps: "googlemaps";
|
|
636
684
|
gemini: "gemini";
|
|
685
|
+
anthropic: "anthropic";
|
|
637
686
|
leadmagic: "leadmagic";
|
|
638
687
|
mixrank: "mixrank";
|
|
639
688
|
builtwith: "builtwith";
|
|
@@ -654,6 +703,7 @@ declare const WidgetsSchema: z.ZodObject<{
|
|
|
654
703
|
parallel: "parallel";
|
|
655
704
|
luma: "luma";
|
|
656
705
|
postgres: "postgres";
|
|
706
|
+
databricks: "databricks";
|
|
657
707
|
}>>;
|
|
658
708
|
successful_provider: z.ZodOptional<z.ZodEnum<{
|
|
659
709
|
pipe0: "pipe0";
|
|
@@ -664,6 +714,7 @@ declare const WidgetsSchema: z.ZodObject<{
|
|
|
664
714
|
millionverifier: "millionverifier";
|
|
665
715
|
googlemaps: "googlemaps";
|
|
666
716
|
gemini: "gemini";
|
|
717
|
+
anthropic: "anthropic";
|
|
667
718
|
leadmagic: "leadmagic";
|
|
668
719
|
mixrank: "mixrank";
|
|
669
720
|
builtwith: "builtwith";
|
|
@@ -684,6 +735,7 @@ declare const WidgetsSchema: z.ZodObject<{
|
|
|
684
735
|
parallel: "parallel";
|
|
685
736
|
luma: "luma";
|
|
686
737
|
postgres: "postgres";
|
|
738
|
+
databricks: "databricks";
|
|
687
739
|
}>>;
|
|
688
740
|
}, z.core.$strip>>>;
|
|
689
741
|
icon: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -1237,6 +1289,7 @@ declare const RecordFieldSchema: z.ZodObject<{
|
|
|
1237
1289
|
millionverifier: "millionverifier";
|
|
1238
1290
|
googlemaps: "googlemaps";
|
|
1239
1291
|
gemini: "gemini";
|
|
1292
|
+
anthropic: "anthropic";
|
|
1240
1293
|
leadmagic: "leadmagic";
|
|
1241
1294
|
mixrank: "mixrank";
|
|
1242
1295
|
builtwith: "builtwith";
|
|
@@ -1257,6 +1310,7 @@ declare const RecordFieldSchema: z.ZodObject<{
|
|
|
1257
1310
|
parallel: "parallel";
|
|
1258
1311
|
luma: "luma";
|
|
1259
1312
|
postgres: "postgres";
|
|
1313
|
+
databricks: "databricks";
|
|
1260
1314
|
}>;
|
|
1261
1315
|
}, z.core.$strip>>;
|
|
1262
1316
|
available_providers: z.ZodArray<z.ZodEnum<{
|
|
@@ -1268,6 +1322,7 @@ declare const RecordFieldSchema: z.ZodObject<{
|
|
|
1268
1322
|
millionverifier: "millionverifier";
|
|
1269
1323
|
googlemaps: "googlemaps";
|
|
1270
1324
|
gemini: "gemini";
|
|
1325
|
+
anthropic: "anthropic";
|
|
1271
1326
|
leadmagic: "leadmagic";
|
|
1272
1327
|
mixrank: "mixrank";
|
|
1273
1328
|
builtwith: "builtwith";
|
|
@@ -1288,6 +1343,7 @@ declare const RecordFieldSchema: z.ZodObject<{
|
|
|
1288
1343
|
parallel: "parallel";
|
|
1289
1344
|
luma: "luma";
|
|
1290
1345
|
postgres: "postgres";
|
|
1346
|
+
databricks: "databricks";
|
|
1291
1347
|
}>>;
|
|
1292
1348
|
successful_provider: z.ZodOptional<z.ZodEnum<{
|
|
1293
1349
|
pipe0: "pipe0";
|
|
@@ -1298,6 +1354,7 @@ declare const RecordFieldSchema: z.ZodObject<{
|
|
|
1298
1354
|
millionverifier: "millionverifier";
|
|
1299
1355
|
googlemaps: "googlemaps";
|
|
1300
1356
|
gemini: "gemini";
|
|
1357
|
+
anthropic: "anthropic";
|
|
1301
1358
|
leadmagic: "leadmagic";
|
|
1302
1359
|
mixrank: "mixrank";
|
|
1303
1360
|
builtwith: "builtwith";
|
|
@@ -1318,6 +1375,7 @@ declare const RecordFieldSchema: z.ZodObject<{
|
|
|
1318
1375
|
parallel: "parallel";
|
|
1319
1376
|
luma: "luma";
|
|
1320
1377
|
postgres: "postgres";
|
|
1378
|
+
databricks: "databricks";
|
|
1321
1379
|
}>>;
|
|
1322
1380
|
}, z.core.$strip>>>;
|
|
1323
1381
|
icon: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -1606,6 +1664,7 @@ declare const ExpandedFieldValueSchema: z.ZodObject<{
|
|
|
1606
1664
|
millionverifier: "millionverifier";
|
|
1607
1665
|
googlemaps: "googlemaps";
|
|
1608
1666
|
gemini: "gemini";
|
|
1667
|
+
anthropic: "anthropic";
|
|
1609
1668
|
leadmagic: "leadmagic";
|
|
1610
1669
|
mixrank: "mixrank";
|
|
1611
1670
|
builtwith: "builtwith";
|
|
@@ -1626,6 +1685,7 @@ declare const ExpandedFieldValueSchema: z.ZodObject<{
|
|
|
1626
1685
|
parallel: "parallel";
|
|
1627
1686
|
luma: "luma";
|
|
1628
1687
|
postgres: "postgres";
|
|
1688
|
+
databricks: "databricks";
|
|
1629
1689
|
}>;
|
|
1630
1690
|
}, z.core.$strip>>;
|
|
1631
1691
|
available_providers: z.ZodArray<z.ZodEnum<{
|
|
@@ -1637,6 +1697,7 @@ declare const ExpandedFieldValueSchema: z.ZodObject<{
|
|
|
1637
1697
|
millionverifier: "millionverifier";
|
|
1638
1698
|
googlemaps: "googlemaps";
|
|
1639
1699
|
gemini: "gemini";
|
|
1700
|
+
anthropic: "anthropic";
|
|
1640
1701
|
leadmagic: "leadmagic";
|
|
1641
1702
|
mixrank: "mixrank";
|
|
1642
1703
|
builtwith: "builtwith";
|
|
@@ -1657,6 +1718,7 @@ declare const ExpandedFieldValueSchema: z.ZodObject<{
|
|
|
1657
1718
|
parallel: "parallel";
|
|
1658
1719
|
luma: "luma";
|
|
1659
1720
|
postgres: "postgres";
|
|
1721
|
+
databricks: "databricks";
|
|
1660
1722
|
}>>;
|
|
1661
1723
|
successful_provider: z.ZodOptional<z.ZodEnum<{
|
|
1662
1724
|
pipe0: "pipe0";
|
|
@@ -1667,6 +1729,7 @@ declare const ExpandedFieldValueSchema: z.ZodObject<{
|
|
|
1667
1729
|
millionverifier: "millionverifier";
|
|
1668
1730
|
googlemaps: "googlemaps";
|
|
1669
1731
|
gemini: "gemini";
|
|
1732
|
+
anthropic: "anthropic";
|
|
1670
1733
|
leadmagic: "leadmagic";
|
|
1671
1734
|
mixrank: "mixrank";
|
|
1672
1735
|
builtwith: "builtwith";
|
|
@@ -1687,6 +1750,7 @@ declare const ExpandedFieldValueSchema: z.ZodObject<{
|
|
|
1687
1750
|
parallel: "parallel";
|
|
1688
1751
|
luma: "luma";
|
|
1689
1752
|
postgres: "postgres";
|
|
1753
|
+
databricks: "databricks";
|
|
1690
1754
|
}>>;
|
|
1691
1755
|
}, z.core.$strip>>>;
|
|
1692
1756
|
icon: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -1955,6 +2019,7 @@ declare const PipesInputSchema: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.
|
|
|
1955
2019
|
millionverifier: "millionverifier";
|
|
1956
2020
|
googlemaps: "googlemaps";
|
|
1957
2021
|
gemini: "gemini";
|
|
2022
|
+
anthropic: "anthropic";
|
|
1958
2023
|
leadmagic: "leadmagic";
|
|
1959
2024
|
mixrank: "mixrank";
|
|
1960
2025
|
builtwith: "builtwith";
|
|
@@ -1975,6 +2040,7 @@ declare const PipesInputSchema: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.
|
|
|
1975
2040
|
parallel: "parallel";
|
|
1976
2041
|
luma: "luma";
|
|
1977
2042
|
postgres: "postgres";
|
|
2043
|
+
databricks: "databricks";
|
|
1978
2044
|
}>;
|
|
1979
2045
|
}, z.core.$strip>>;
|
|
1980
2046
|
available_providers: z.ZodArray<z.ZodEnum<{
|
|
@@ -1986,6 +2052,7 @@ declare const PipesInputSchema: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.
|
|
|
1986
2052
|
millionverifier: "millionverifier";
|
|
1987
2053
|
googlemaps: "googlemaps";
|
|
1988
2054
|
gemini: "gemini";
|
|
2055
|
+
anthropic: "anthropic";
|
|
1989
2056
|
leadmagic: "leadmagic";
|
|
1990
2057
|
mixrank: "mixrank";
|
|
1991
2058
|
builtwith: "builtwith";
|
|
@@ -2006,6 +2073,7 @@ declare const PipesInputSchema: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.
|
|
|
2006
2073
|
parallel: "parallel";
|
|
2007
2074
|
luma: "luma";
|
|
2008
2075
|
postgres: "postgres";
|
|
2076
|
+
databricks: "databricks";
|
|
2009
2077
|
}>>;
|
|
2010
2078
|
successful_provider: z.ZodOptional<z.ZodEnum<{
|
|
2011
2079
|
pipe0: "pipe0";
|
|
@@ -2016,6 +2084,7 @@ declare const PipesInputSchema: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.
|
|
|
2016
2084
|
millionverifier: "millionverifier";
|
|
2017
2085
|
googlemaps: "googlemaps";
|
|
2018
2086
|
gemini: "gemini";
|
|
2087
|
+
anthropic: "anthropic";
|
|
2019
2088
|
leadmagic: "leadmagic";
|
|
2020
2089
|
mixrank: "mixrank";
|
|
2021
2090
|
builtwith: "builtwith";
|
|
@@ -2036,6 +2105,7 @@ declare const PipesInputSchema: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.
|
|
|
2036
2105
|
parallel: "parallel";
|
|
2037
2106
|
luma: "luma";
|
|
2038
2107
|
postgres: "postgres";
|
|
2108
|
+
databricks: "databricks";
|
|
2039
2109
|
}>>;
|
|
2040
2110
|
}, z.core.$strip>>>;
|
|
2041
2111
|
icon: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -2286,6 +2356,7 @@ declare const RecordSchema: z.ZodObject<{
|
|
|
2286
2356
|
millionverifier: "millionverifier";
|
|
2287
2357
|
googlemaps: "googlemaps";
|
|
2288
2358
|
gemini: "gemini";
|
|
2359
|
+
anthropic: "anthropic";
|
|
2289
2360
|
leadmagic: "leadmagic";
|
|
2290
2361
|
mixrank: "mixrank";
|
|
2291
2362
|
builtwith: "builtwith";
|
|
@@ -2306,6 +2377,7 @@ declare const RecordSchema: z.ZodObject<{
|
|
|
2306
2377
|
parallel: "parallel";
|
|
2307
2378
|
luma: "luma";
|
|
2308
2379
|
postgres: "postgres";
|
|
2380
|
+
databricks: "databricks";
|
|
2309
2381
|
}>;
|
|
2310
2382
|
}, z.core.$strip>>;
|
|
2311
2383
|
available_providers: z.ZodArray<z.ZodEnum<{
|
|
@@ -2317,6 +2389,7 @@ declare const RecordSchema: z.ZodObject<{
|
|
|
2317
2389
|
millionverifier: "millionverifier";
|
|
2318
2390
|
googlemaps: "googlemaps";
|
|
2319
2391
|
gemini: "gemini";
|
|
2392
|
+
anthropic: "anthropic";
|
|
2320
2393
|
leadmagic: "leadmagic";
|
|
2321
2394
|
mixrank: "mixrank";
|
|
2322
2395
|
builtwith: "builtwith";
|
|
@@ -2337,6 +2410,7 @@ declare const RecordSchema: z.ZodObject<{
|
|
|
2337
2410
|
parallel: "parallel";
|
|
2338
2411
|
luma: "luma";
|
|
2339
2412
|
postgres: "postgres";
|
|
2413
|
+
databricks: "databricks";
|
|
2340
2414
|
}>>;
|
|
2341
2415
|
successful_provider: z.ZodOptional<z.ZodEnum<{
|
|
2342
2416
|
pipe0: "pipe0";
|
|
@@ -2347,6 +2421,7 @@ declare const RecordSchema: z.ZodObject<{
|
|
|
2347
2421
|
millionverifier: "millionverifier";
|
|
2348
2422
|
googlemaps: "googlemaps";
|
|
2349
2423
|
gemini: "gemini";
|
|
2424
|
+
anthropic: "anthropic";
|
|
2350
2425
|
leadmagic: "leadmagic";
|
|
2351
2426
|
mixrank: "mixrank";
|
|
2352
2427
|
builtwith: "builtwith";
|
|
@@ -2367,6 +2442,7 @@ declare const RecordSchema: z.ZodObject<{
|
|
|
2367
2442
|
parallel: "parallel";
|
|
2368
2443
|
luma: "luma";
|
|
2369
2444
|
postgres: "postgres";
|
|
2445
|
+
databricks: "databricks";
|
|
2370
2446
|
}>>;
|
|
2371
2447
|
}, z.core.$strip>>>;
|
|
2372
2448
|
icon: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -2943,6 +3019,7 @@ declare const ProviderNameSchema: z.ZodEnum<{
|
|
|
2943
3019
|
millionverifier: "millionverifier";
|
|
2944
3020
|
googlemaps: "googlemaps";
|
|
2945
3021
|
gemini: "gemini";
|
|
3022
|
+
anthropic: "anthropic";
|
|
2946
3023
|
leadmagic: "leadmagic";
|
|
2947
3024
|
mixrank: "mixrank";
|
|
2948
3025
|
builtwith: "builtwith";
|
|
@@ -2963,11 +3040,12 @@ declare const ProviderNameSchema: z.ZodEnum<{
|
|
|
2963
3040
|
parallel: "parallel";
|
|
2964
3041
|
luma: "luma";
|
|
2965
3042
|
postgres: "postgres";
|
|
3043
|
+
databricks: "databricks";
|
|
2966
3044
|
}>;
|
|
2967
|
-
type ProviderRateLimitOperation = "pipe0_logic" | "pipe0_generic" | "pipe0-sheet-operation" | "pipe0_scraper" | "findymail_generic" | "findymail_email_lookup" | "findymail_email_b2b_lookup" | "findymail_phone_lookup" | "dropcontact_generic" | "hunter_generic" | "hunter_email_finder" | "hunter_email_enrichment" | "zerobounce_generic" | "millionverifier_generic" | "googlemaps_generic" | "gemini_35_flash" | "gemini_20_flash" | "leadmagic_company_search" | "leadmagic_email_lookup" | "leadmagic_email_b2b_lookup" | "leadmagic_email_to_b2b_profile" | "leadmagic_personal_email_finder" | "leadmagic_mobile_number_lookup" | "leadmagic_company_funding" | "leadmagic_role_finder" | "contactout_generic" | "builtwith_generic" | "perplexity_generic" | "serper_search" | "clado_search_people" | "clado_contact_information" | "icypeas_scrape_profile" | "icypeas_lead_database" | "icypeas_company_database" | "icypeas_email_lookup" | "prospeo_phone_number_lookup" | "prospeo_social_profile_lookup" | "clado_social_profile_lookup" | "prospeo_email_lookup" | "resend_generic" | "slack_post_message" | "gmail_send_email" | "leadmagic_employee_finder" | "firecrawl_generic" | "firecrawl_map_requests" | "firecrawl_extract" | "exa_websets" | "parallel_search_base" | "parallel_entity_search" | "parallel_extract" | "openai_gpt-5" | "openai_gpt-5-mini" | "company_enrich_generic" | "logodev_describe" | "crustdata_company_db_search" | "crustdata_company_enrich" | "crustdata_company_identify" | "crustdata_people_db_search" | "crustdata_realtime_post_fetch" | "crustdata_realtime_person_enrich" | "amplemarket_generic" | "amplemarket-person-reveal" | "amplemarket_people_search" | "amplemarket_company_search" | "mixrank-person-match" | "luma_get_guests" | "postgres_query";
|
|
3045
|
+
type ProviderRateLimitOperation = "pipe0_logic" | "pipe0_generic" | "pipe0-sheet-operation" | "pipe0_scraper" | "findymail_generic" | "findymail_email_lookup" | "findymail_email_b2b_lookup" | "findymail_phone_lookup" | "dropcontact_generic" | "hunter_generic" | "hunter_email_finder" | "hunter_email_enrichment" | "zerobounce_generic" | "millionverifier_generic" | "googlemaps_generic" | "gemini_35_flash" | "gemini_20_flash" | "anthropic_opus" | "leadmagic_company_search" | "leadmagic_email_lookup" | "leadmagic_email_b2b_lookup" | "leadmagic_email_to_b2b_profile" | "leadmagic_personal_email_finder" | "leadmagic_mobile_number_lookup" | "leadmagic_company_funding" | "leadmagic_role_finder" | "contactout_generic" | "builtwith_generic" | "perplexity_generic" | "serper_search" | "clado_search_people" | "clado_contact_information" | "icypeas_scrape_profile" | "icypeas_lead_database" | "icypeas_company_database" | "icypeas_email_lookup" | "prospeo_phone_number_lookup" | "prospeo_social_profile_lookup" | "clado_social_profile_lookup" | "prospeo_email_lookup" | "resend_generic" | "slack_post_message" | "gmail_send_email" | "leadmagic_employee_finder" | "firecrawl_generic" | "firecrawl_map_requests" | "firecrawl_extract" | "exa_websets" | "parallel_search_base" | "parallel_entity_search" | "parallel_extract" | "openai_gpt-5" | "openai_gpt-5-mini" | "company_enrich_generic" | "logodev_describe" | "crustdata_company_db_search" | "crustdata_company_enrich" | "crustdata_company_identify" | "crustdata_people_db_search" | "crustdata_realtime_post_fetch" | "crustdata_realtime_person_enrich" | "amplemarket_generic" | "amplemarket-person-reveal" | "amplemarket_people_search" | "amplemarket_company_search" | "mixrank-person-match" | "luma_get_guests" | "postgres_query" | "databricks_query";
|
|
2968
3046
|
type ProviderName = z.infer<typeof ProviderNameSchema>;
|
|
2969
3047
|
type ExternalProviderName = Exclude<ProviderName, "pipe0">;
|
|
2970
|
-
type BillableOperation = "companies-profiles-amplemarket-v1" | "companies-profiles-amplemarket-v2" | "companies-profiles-crustdata-v1" | "companies-profiles-crustdata-v2" | "companies-entitysearch-parallel-v1" | "people-entitysearch-parallel-v1" | "people-eventguests-luma-v1" | "data-query-postgres-v1" | "company-domain-workemail-v1-pipe0" | "company-funding-leadmagic-v1-leadmagic" | "company-funding-leadmagic-v2-leadmagic" | "company-identity-v1-pipe0" | "company-identity-v2-pipe0" | "company-identity-v3-pipe0" | "company-lookalikes-companyenrich-v1-companyenrich" | "company-lookalikes-companyenrich-v2-companyenrich" | "company-identity-crustdata-v1-crustdata" | "company-match-crustdata-v1-crustdata" | "company-match-crustdata-v2-crustdata" | "company-match-logodev-v1-logodev" | "company-match-logodev-v2-logodev" | "company-newssummary-domain-v1-pipe0" | "company-newssummary-website-v1-pipe0" | "company-overview-v1-pipe0" | "company-overview-v2-pipe0" | "company-overview-v3-pipe0" | "company-techstack-builtwith-v1-builtwith" | "company-techstack-builtwith-v2-builtwith" | "company-websiteurl-email-v1-pipe0" | "contact-create-resend-v1-resend" | "email-iswork-v1-pipe0" | "email-send-gmail-v1-gmail" | "email-send-resend-v1-resend" | "email-validate-zerobounce-v1-zerobounce" | "email-write-v1-gemini-flash-latest" | "email-write-v1-openai-gpt-latest" | "email-write-v1-openai-gpt-mini-latest" | "field-domainify-v1-pipe0" | "field-slugify-v1-pipe0" | "fields-merge-v1-pipe0" | "http-request-v1-pipe0" | "json-extract-multi-v1-pipe0" | "message-send-slack-v1-slack" | "message-write-v1-gemini-flash-latest" | "message-write-v1-openai-gpt-latest" | "message-write-v1-openai-gpt-mini-latest" | "people-email-iswork-v1-pipe0" | "people-email-validate-zerobounce-v1-zerobounce" | "people-email-validate-zerobounce-v2-zerobounce" | "people-identity-email-waterfall-v1-crustdata" | "people-identity-email-waterfall-v1-findymail" | "people-identity-email-waterfall-v1-hunter" | "people-match-role-waterfall-v1-leadmagic" | "people-mobilenumber-professionalprofile-waterfall-v1-leadmagic" | "people-mobilenumber-professionalprofile-waterfall-v1-prospeo" | "people-mobilenumber-workemail-waterfall-v1-leadmagic" | "people-name-split-v1-pipe0" | "people-personalemail-profile-waterfall-v1-clado" | "people-personalemail-profile-waterfall-v1-leadmagic" | "people-personalemail-profile-waterfall-v1-mixrank" | "people-phone-profile-waterfall-v1-amplemarket" | "people-phone-profile-waterfall-v1-clado" | "people-phone-profile-waterfall-v1-findymail" | "people-phone-profile-waterfall-v1-leadmagic" | "people-phone-profile-waterfall-v1-prospeo" | "people-phone-workemail-waterfall-v1-amplemarket" | "people-phone-workemail-waterfall-v1-leadmagic" | "people-professionalprofile-waterfall-v1-icypeas" | "people-professionalprofile-waterfall-v1-prospeo" | "people-professionalprofileurl-email-waterfall-v1-leadmagic" | "people-professionalprofileurl-name-v1-pipe0" | "people-profile-waterfall-v1-amplemarket" | "people-profile-waterfall-v1-clado" | "people-profile-waterfall-v1-icypeas" | "people-profile-waterfall-v1-prospeo" | "people-profile-workemail-crustdata-v1-crustdata" | "people-profiles-amplemarket-v1" | "people-profiles-amplemarket-v2" | "people-profiles-crustdata-v1" | "people-profiles-crustdata-v2" | "people-profileurl-email-waterfall-v1-leadmagic" | "people-validate-email-zerobounce-v1-zerobounce" | "people-workemail-profileurl-waterfall-v1-amplemarket" | "people-workemail-profileurl-waterfall-v1-clado" | "people-workemail-profileurl-waterfall-v1-crustdata" | "people-workemail-profileurl-waterfall-v1-findymail" | "people-workemail-profileurl-waterfall-v1-hunter" | "people-workemail-profileurl-waterfall-v1-leadmagic" | "people-workemail-waterfall-v1-amplemarket" | "people-workemail-waterfall-v1-findymail" | "people-workemail-waterfall-v1-hunter" | "people-workemail-waterfall-v1-icypeas" | "people-workemail-waterfall-v1-leadmagic" | "people-workemail-waterfall-v1-prospeo" | "person-email-validate-millionverifier-v1-millionverifier" | "person-identity-amplemarket-v1-amplemarket" | "person-identity-email-waterfall-v1-crustdata" | "person-identity-email-waterfall-v1-findymail" | "person-identity-email-waterfall-v1-hunter" | "person-match-amplemarket-v1-amplemarket" | "person-match-role-waterfall-v1-leadmagic" | "person-mobile-profileurl-waterfall-v1-amplemarket" | "person-mobile-profileurl-waterfall-v1-findymail" | "person-mobile-profileurl-waterfall-v1-leadmagic" | "person-mobile-profileurl-waterfall-v1-prospeo" | "person-mobile-workemail-waterfall-v1-amplemarket" | "person-mobile-workemail-waterfall-v1-leadmagic" | "person-devprofileurl-profileurl-waterfall-v1-crustdata" | "person-name-join-v1-pipe0" | "person-name-split-v1-pipe0" | "person-personalemail-profileurl-waterfall-v1-leadmagic" | "person-personalemail-profileurl-waterfall-v1-mixrank" | "person-posts-crustdata-v1-crustdata" | "person-profile-waterfall-v1-amplemarket" | "person-profile-waterfall-v1-icypeas" | "person-profile-waterfall-v1-prospeo" | "person-profile-workemail-crustdata-v1-crustdata" | "person-profileurl-email-waterfall-v1-leadmagic" | "person-profileurl-name-v1-pipe0" | "person-workemail-profileurl-waterfall-v1-amplemarket" | "person-workemail-profileurl-waterfall-v1-crustdata" | "person-workemail-profileurl-waterfall-v1-findymail" | "person-workemail-profileurl-waterfall-v1-hunter" | "person-workemail-profileurl-waterfall-v1-leadmagic" | "person-workemail-waterfall-v1-amplemarket" | "person-workemail-waterfall-v1-findymail" | "person-workemail-waterfall-v1-hunter" | "person-workemail-waterfall-v1-icypeas" | "person-workemail-waterfall-v1-leadmagic" | "person-workemail-waterfall-v1-prospeo" | "prompt-run-v1-gemini-flash-latest" | "prompt-run-v1-openai-gpt-latest" | "prompt-run-v1-openai-gpt-mini-latest" | "sheet-row-append-v1-pipe0" | "sheet-items-v1-pipe0" | "sheet-row-expandappend-v1-pipe0" | "template-fill-v1-pipe0" | "website-extract-firecrawl-v1-firecrawl" | "website-extract-parallel-v1-parallel" | "website-maplinks-firecrawl-v1-firecrawl" | "website-scrape-firecrawl-v1-firecrawl" | "website-scrapelist-firecrawl-v1-firecrawl";
|
|
3048
|
+
type BillableOperation = "companies-profiles-amplemarket-v1" | "companies-profiles-amplemarket-v2" | "companies-profiles-crustdata-v1" | "companies-profiles-crustdata-v2" | "companies-entitysearch-parallel-v1" | "people-entitysearch-parallel-v1" | "people-eventguests-luma-v1" | "data-query-postgres-v1" | "data-query-databricks-v1" | "company-domain-workemail-v1-pipe0" | "company-funding-leadmagic-v1-leadmagic" | "company-funding-leadmagic-v2-leadmagic" | "company-identity-v1-pipe0" | "company-identity-v2-pipe0" | "company-identity-v3-pipe0" | "company-lookalikes-companyenrich-v1-companyenrich" | "company-lookalikes-companyenrich-v2-companyenrich" | "company-identity-crustdata-v1-crustdata" | "company-match-crustdata-v1-crustdata" | "company-match-crustdata-v2-crustdata" | "company-match-logodev-v1-logodev" | "company-match-logodev-v2-logodev" | "company-newssummary-domain-v1-pipe0" | "company-newssummary-website-v1-pipe0" | "company-overview-v1-pipe0" | "company-overview-v2-pipe0" | "company-overview-v3-pipe0" | "company-techstack-builtwith-v1-builtwith" | "company-techstack-builtwith-v2-builtwith" | "company-websiteurl-email-v1-pipe0" | "contact-create-resend-v1-resend" | "email-iswork-v1-pipe0" | "email-send-gmail-v1-gmail" | "email-send-resend-v1-resend" | "email-validate-zerobounce-v1-zerobounce" | "email-write-v1-gemini-flash-latest" | "email-write-v1-openai-gpt-latest" | "email-write-v1-openai-gpt-mini-latest" | "email-write-v1-anthropic-opus-latest" | "field-domainify-v1-pipe0" | "field-slugify-v1-pipe0" | "fields-merge-v1-pipe0" | "http-request-v1-pipe0" | "json-extract-multi-v1-pipe0" | "message-send-slack-v1-slack" | "message-write-v1-gemini-flash-latest" | "message-write-v1-openai-gpt-latest" | "message-write-v1-openai-gpt-mini-latest" | "message-write-v1-anthropic-opus-latest" | "people-email-iswork-v1-pipe0" | "people-email-validate-zerobounce-v1-zerobounce" | "people-email-validate-zerobounce-v2-zerobounce" | "people-identity-email-waterfall-v1-crustdata" | "people-identity-email-waterfall-v1-findymail" | "people-identity-email-waterfall-v1-hunter" | "people-match-role-waterfall-v1-leadmagic" | "people-mobilenumber-professionalprofile-waterfall-v1-leadmagic" | "people-mobilenumber-professionalprofile-waterfall-v1-prospeo" | "people-mobilenumber-workemail-waterfall-v1-leadmagic" | "people-name-split-v1-pipe0" | "people-personalemail-profile-waterfall-v1-clado" | "people-personalemail-profile-waterfall-v1-leadmagic" | "people-personalemail-profile-waterfall-v1-mixrank" | "people-phone-profile-waterfall-v1-amplemarket" | "people-phone-profile-waterfall-v1-clado" | "people-phone-profile-waterfall-v1-findymail" | "people-phone-profile-waterfall-v1-leadmagic" | "people-phone-profile-waterfall-v1-prospeo" | "people-phone-workemail-waterfall-v1-amplemarket" | "people-phone-workemail-waterfall-v1-leadmagic" | "people-professionalprofile-waterfall-v1-icypeas" | "people-professionalprofile-waterfall-v1-prospeo" | "people-professionalprofileurl-email-waterfall-v1-leadmagic" | "people-professionalprofileurl-name-v1-pipe0" | "people-profile-waterfall-v1-amplemarket" | "people-profile-waterfall-v1-clado" | "people-profile-waterfall-v1-icypeas" | "people-profile-waterfall-v1-prospeo" | "people-profile-workemail-crustdata-v1-crustdata" | "people-profiles-amplemarket-v1" | "people-profiles-amplemarket-v2" | "people-profiles-crustdata-v1" | "people-profiles-crustdata-v2" | "people-profileurl-email-waterfall-v1-leadmagic" | "people-validate-email-zerobounce-v1-zerobounce" | "people-workemail-profileurl-waterfall-v1-amplemarket" | "people-workemail-profileurl-waterfall-v1-clado" | "people-workemail-profileurl-waterfall-v1-crustdata" | "people-workemail-profileurl-waterfall-v1-findymail" | "people-workemail-profileurl-waterfall-v1-hunter" | "people-workemail-profileurl-waterfall-v1-leadmagic" | "people-workemail-waterfall-v1-amplemarket" | "people-workemail-waterfall-v1-findymail" | "people-workemail-waterfall-v1-hunter" | "people-workemail-waterfall-v1-icypeas" | "people-workemail-waterfall-v1-leadmagic" | "people-workemail-waterfall-v1-prospeo" | "person-email-validate-millionverifier-v1-millionverifier" | "person-identity-amplemarket-v1-amplemarket" | "person-identity-email-waterfall-v1-crustdata" | "person-identity-email-waterfall-v1-findymail" | "person-identity-email-waterfall-v1-hunter" | "person-match-amplemarket-v1-amplemarket" | "person-match-role-waterfall-v1-leadmagic" | "person-mobile-profileurl-waterfall-v1-amplemarket" | "person-mobile-profileurl-waterfall-v1-findymail" | "person-mobile-profileurl-waterfall-v1-leadmagic" | "person-mobile-profileurl-waterfall-v1-prospeo" | "person-mobile-workemail-waterfall-v1-amplemarket" | "person-mobile-workemail-waterfall-v1-leadmagic" | "person-devprofileurl-profileurl-waterfall-v1-crustdata" | "person-name-join-v1-pipe0" | "person-name-split-v1-pipe0" | "person-personalemail-profileurl-waterfall-v1-leadmagic" | "person-personalemail-profileurl-waterfall-v1-mixrank" | "person-posts-crustdata-v1-crustdata" | "person-profile-waterfall-v1-amplemarket" | "person-profile-waterfall-v1-icypeas" | "person-profile-waterfall-v1-prospeo" | "person-profile-workemail-crustdata-v1-crustdata" | "person-profileurl-email-waterfall-v1-leadmagic" | "person-profileurl-name-v1-pipe0" | "person-workemail-profileurl-waterfall-v1-amplemarket" | "person-workemail-profileurl-waterfall-v1-crustdata" | "person-workemail-profileurl-waterfall-v1-findymail" | "person-workemail-profileurl-waterfall-v1-hunter" | "person-workemail-profileurl-waterfall-v1-leadmagic" | "person-workemail-waterfall-v1-amplemarket" | "person-workemail-waterfall-v1-findymail" | "person-workemail-waterfall-v1-hunter" | "person-workemail-waterfall-v1-icypeas" | "person-workemail-waterfall-v1-leadmagic" | "person-workemail-waterfall-v1-prospeo" | "prompt-run-v1-gemini-flash-latest" | "prompt-run-v1-openai-gpt-latest" | "prompt-run-v1-openai-gpt-mini-latest" | "prompt-run-v1-anthropic-opus-latest" | "sheet-row-append-v1-pipe0" | "sheet-items-v1-pipe0" | "sheet-row-expandappend-v1-pipe0" | "template-fill-v1-pipe0" | "website-extract-firecrawl-v1-firecrawl" | "website-extract-parallel-v1-parallel" | "website-maplinks-firecrawl-v1-firecrawl" | "website-scrape-firecrawl-v1-firecrawl" | "website-scrapelist-firecrawl-v1-firecrawl";
|
|
2971
3049
|
//#endregion
|
|
2972
3050
|
//#region src/fields/field-catalog.d.ts
|
|
2973
3051
|
type FieldEntry = {
|
|
@@ -12856,6 +12934,7 @@ declare const StoreOptionSchema: z.ZodObject<{
|
|
|
12856
12934
|
millionverifier: "millionverifier";
|
|
12857
12935
|
googlemaps: "googlemaps";
|
|
12858
12936
|
gemini: "gemini";
|
|
12937
|
+
anthropic: "anthropic";
|
|
12859
12938
|
leadmagic: "leadmagic";
|
|
12860
12939
|
mixrank: "mixrank";
|
|
12861
12940
|
builtwith: "builtwith";
|
|
@@ -12876,6 +12955,7 @@ declare const StoreOptionSchema: z.ZodObject<{
|
|
|
12876
12955
|
parallel: "parallel";
|
|
12877
12956
|
luma: "luma";
|
|
12878
12957
|
postgres: "postgres";
|
|
12958
|
+
databricks: "databricks";
|
|
12879
12959
|
}>;
|
|
12880
12960
|
}, z.core.$strip>>;
|
|
12881
12961
|
emoji: z.ZodOptional<z.ZodObject<{
|
|
@@ -12958,6 +13038,7 @@ declare const FormStoreSchema: z.ZodObject<{
|
|
|
12958
13038
|
millionverifier: "millionverifier";
|
|
12959
13039
|
googlemaps: "googlemaps";
|
|
12960
13040
|
gemini: "gemini";
|
|
13041
|
+
anthropic: "anthropic";
|
|
12961
13042
|
leadmagic: "leadmagic";
|
|
12962
13043
|
mixrank: "mixrank";
|
|
12963
13044
|
builtwith: "builtwith";
|
|
@@ -12978,6 +13059,7 @@ declare const FormStoreSchema: z.ZodObject<{
|
|
|
12978
13059
|
parallel: "parallel";
|
|
12979
13060
|
luma: "luma";
|
|
12980
13061
|
postgres: "postgres";
|
|
13062
|
+
databricks: "databricks";
|
|
12981
13063
|
}>;
|
|
12982
13064
|
}, z.core.$strip>>;
|
|
12983
13065
|
emoji: z.ZodOptional<z.ZodObject<{
|
|
@@ -13235,7 +13317,7 @@ interface FormResolvers {
|
|
|
13235
13317
|
}
|
|
13236
13318
|
//#endregion
|
|
13237
13319
|
//#region src/search/schemas.d.ts
|
|
13238
|
-
declare const SEARCH_IDS: readonly ["companies:profiles:crustdata@1", "companies:profiles:crustdata@2", "companies:profiles:amplemarket@1", "companies:profiles:amplemarket@2", "people:profiles:crustdata@1", "people:profiles:crustdata@2", "people:profiles:amplemarket@1", "people:profiles:amplemarket@2", "companies:entitysearch:parallel@1", "people:entitysearch:parallel@1", "people:eventguests:luma@1", "sheet:rows@1", "query:postgres@1"];
|
|
13320
|
+
declare const SEARCH_IDS: readonly ["companies:profiles:crustdata@1", "companies:profiles:crustdata@2", "companies:profiles:amplemarket@1", "companies:profiles:amplemarket@2", "people:profiles:crustdata@1", "people:profiles:crustdata@2", "people:profiles:amplemarket@1", "people:profiles:amplemarket@2", "companies:entitysearch:parallel@1", "people:entitysearch:parallel@1", "people:eventguests:luma@1", "sheet:rows@1", "query:postgres@1", "query:databricks@1"];
|
|
13239
13321
|
declare const SearchIdSchema: z.ZodEnum<{
|
|
13240
13322
|
"companies:profiles:crustdata@1": "companies:profiles:crustdata@1";
|
|
13241
13323
|
"companies:profiles:crustdata@2": "companies:profiles:crustdata@2";
|
|
@@ -13250,6 +13332,7 @@ declare const SearchIdSchema: z.ZodEnum<{
|
|
|
13250
13332
|
"people:eventguests:luma@1": "people:eventguests:luma@1";
|
|
13251
13333
|
"sheet:rows@1": "sheet:rows@1";
|
|
13252
13334
|
"query:postgres@1": "query:postgres@1";
|
|
13335
|
+
"query:databricks@1": "query:databricks@1";
|
|
13253
13336
|
}>;
|
|
13254
13337
|
type SearchId = z.infer<typeof SearchIdSchema>;
|
|
13255
13338
|
//#endregion
|
|
@@ -13306,9 +13389,15 @@ type SearchLifeCycle = {
|
|
|
13306
13389
|
replacedBy: SearchId;
|
|
13307
13390
|
};
|
|
13308
13391
|
type SearchCost = {
|
|
13392
|
+
allowManagedConnection: true;
|
|
13309
13393
|
mode: "per_result" | "per_search" | "per_page";
|
|
13310
13394
|
credits: ManagedCredits;
|
|
13311
13395
|
info?: string;
|
|
13396
|
+
} | {
|
|
13397
|
+
allowManagedConnection: false;
|
|
13398
|
+
mode: null;
|
|
13399
|
+
credits: null;
|
|
13400
|
+
info?: string;
|
|
13312
13401
|
};
|
|
13313
13402
|
type SearchDef<PayloadSchema extends z.ZodType> = {
|
|
13314
13403
|
searchId: SearchId;
|
|
@@ -14665,6 +14754,23 @@ declare const searchPayloadSchemaCatalog: {
|
|
|
14665
14754
|
page_number: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
14666
14755
|
}, z$1.core.$strip>;
|
|
14667
14756
|
}, z$1.core.$strip>;
|
|
14757
|
+
"query:databricks@1": z$1.ZodObject<{
|
|
14758
|
+
search_id: z$1.ZodLiteral<"query:databricks@1">;
|
|
14759
|
+
connector: z$1.ZodObject<{
|
|
14760
|
+
strategy: z$1.ZodDefault<z$1.ZodEnum<{
|
|
14761
|
+
first: "first";
|
|
14762
|
+
}>>;
|
|
14763
|
+
connections: z$1.ZodArray<z$1.ZodObject<{
|
|
14764
|
+
type: z$1.ZodLiteral<"vault">;
|
|
14765
|
+
connection: z$1.ZodString;
|
|
14766
|
+
}, z$1.core.$strip>>;
|
|
14767
|
+
}, z$1.core.$strip>;
|
|
14768
|
+
config: z$1.ZodObject<{
|
|
14769
|
+
query: z$1.ZodString;
|
|
14770
|
+
limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
14771
|
+
page_number: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
14772
|
+
}, z$1.core.$strip>;
|
|
14773
|
+
}, z$1.core.$strip>;
|
|
14668
14774
|
};
|
|
14669
14775
|
declare const searchCatalog: Record<SearchId, SearchDef<any>>;
|
|
14670
14776
|
type SearchCatalog = typeof searchCatalog;
|
|
@@ -16001,6 +16107,22 @@ declare const SearchRequestSchema: z$1.ZodObject<{
|
|
|
16001
16107
|
limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
16002
16108
|
page_number: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
16003
16109
|
}, z$1.core.$strip>;
|
|
16110
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
16111
|
+
search_id: z$1.ZodLiteral<"query:databricks@1">;
|
|
16112
|
+
connector: z$1.ZodObject<{
|
|
16113
|
+
strategy: z$1.ZodDefault<z$1.ZodEnum<{
|
|
16114
|
+
first: "first";
|
|
16115
|
+
}>>;
|
|
16116
|
+
connections: z$1.ZodArray<z$1.ZodObject<{
|
|
16117
|
+
type: z$1.ZodLiteral<"vault">;
|
|
16118
|
+
connection: z$1.ZodString;
|
|
16119
|
+
}, z$1.core.$strip>>;
|
|
16120
|
+
}, z$1.core.$strip>;
|
|
16121
|
+
config: z$1.ZodObject<{
|
|
16122
|
+
query: z$1.ZodString;
|
|
16123
|
+
limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
16124
|
+
page_number: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
16125
|
+
}, z$1.core.$strip>;
|
|
16004
16126
|
}, z$1.core.$strip>], string>;
|
|
16005
16127
|
}, z$1.core.$strip>;
|
|
16006
16128
|
declare const SearchErrorSchema: z$1.ZodObject<{
|
|
@@ -16159,6 +16281,7 @@ declare const SearchResultFieldSchema: z$1.ZodObject<{
|
|
|
16159
16281
|
millionverifier: "millionverifier";
|
|
16160
16282
|
googlemaps: "googlemaps";
|
|
16161
16283
|
gemini: "gemini";
|
|
16284
|
+
anthropic: "anthropic";
|
|
16162
16285
|
leadmagic: "leadmagic";
|
|
16163
16286
|
mixrank: "mixrank";
|
|
16164
16287
|
builtwith: "builtwith";
|
|
@@ -16179,6 +16302,7 @@ declare const SearchResultFieldSchema: z$1.ZodObject<{
|
|
|
16179
16302
|
parallel: "parallel";
|
|
16180
16303
|
luma: "luma";
|
|
16181
16304
|
postgres: "postgres";
|
|
16305
|
+
databricks: "databricks";
|
|
16182
16306
|
}>;
|
|
16183
16307
|
}, z$1.core.$strip>>;
|
|
16184
16308
|
available_providers: z$1.ZodArray<z$1.ZodEnum<{
|
|
@@ -16190,6 +16314,7 @@ declare const SearchResultFieldSchema: z$1.ZodObject<{
|
|
|
16190
16314
|
millionverifier: "millionverifier";
|
|
16191
16315
|
googlemaps: "googlemaps";
|
|
16192
16316
|
gemini: "gemini";
|
|
16317
|
+
anthropic: "anthropic";
|
|
16193
16318
|
leadmagic: "leadmagic";
|
|
16194
16319
|
mixrank: "mixrank";
|
|
16195
16320
|
builtwith: "builtwith";
|
|
@@ -16210,6 +16335,7 @@ declare const SearchResultFieldSchema: z$1.ZodObject<{
|
|
|
16210
16335
|
parallel: "parallel";
|
|
16211
16336
|
luma: "luma";
|
|
16212
16337
|
postgres: "postgres";
|
|
16338
|
+
databricks: "databricks";
|
|
16213
16339
|
}>>;
|
|
16214
16340
|
successful_provider: z$1.ZodOptional<z$1.ZodEnum<{
|
|
16215
16341
|
pipe0: "pipe0";
|
|
@@ -16220,6 +16346,7 @@ declare const SearchResultFieldSchema: z$1.ZodObject<{
|
|
|
16220
16346
|
millionverifier: "millionverifier";
|
|
16221
16347
|
googlemaps: "googlemaps";
|
|
16222
16348
|
gemini: "gemini";
|
|
16349
|
+
anthropic: "anthropic";
|
|
16223
16350
|
leadmagic: "leadmagic";
|
|
16224
16351
|
mixrank: "mixrank";
|
|
16225
16352
|
builtwith: "builtwith";
|
|
@@ -16240,6 +16367,7 @@ declare const SearchResultFieldSchema: z$1.ZodObject<{
|
|
|
16240
16367
|
parallel: "parallel";
|
|
16241
16368
|
luma: "luma";
|
|
16242
16369
|
postgres: "postgres";
|
|
16370
|
+
databricks: "databricks";
|
|
16243
16371
|
}>>;
|
|
16244
16372
|
}, z$1.core.$strip>>>;
|
|
16245
16373
|
icon: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -16416,6 +16544,7 @@ declare const SearchResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable<z
|
|
|
16416
16544
|
millionverifier: "millionverifier";
|
|
16417
16545
|
googlemaps: "googlemaps";
|
|
16418
16546
|
gemini: "gemini";
|
|
16547
|
+
anthropic: "anthropic";
|
|
16419
16548
|
leadmagic: "leadmagic";
|
|
16420
16549
|
mixrank: "mixrank";
|
|
16421
16550
|
builtwith: "builtwith";
|
|
@@ -16436,6 +16565,7 @@ declare const SearchResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable<z
|
|
|
16436
16565
|
parallel: "parallel";
|
|
16437
16566
|
luma: "luma";
|
|
16438
16567
|
postgres: "postgres";
|
|
16568
|
+
databricks: "databricks";
|
|
16439
16569
|
}>;
|
|
16440
16570
|
}, z$1.core.$strip>>;
|
|
16441
16571
|
available_providers: z$1.ZodArray<z$1.ZodEnum<{
|
|
@@ -16447,6 +16577,7 @@ declare const SearchResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable<z
|
|
|
16447
16577
|
millionverifier: "millionverifier";
|
|
16448
16578
|
googlemaps: "googlemaps";
|
|
16449
16579
|
gemini: "gemini";
|
|
16580
|
+
anthropic: "anthropic";
|
|
16450
16581
|
leadmagic: "leadmagic";
|
|
16451
16582
|
mixrank: "mixrank";
|
|
16452
16583
|
builtwith: "builtwith";
|
|
@@ -16467,6 +16598,7 @@ declare const SearchResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable<z
|
|
|
16467
16598
|
parallel: "parallel";
|
|
16468
16599
|
luma: "luma";
|
|
16469
16600
|
postgres: "postgres";
|
|
16601
|
+
databricks: "databricks";
|
|
16470
16602
|
}>>;
|
|
16471
16603
|
successful_provider: z$1.ZodOptional<z$1.ZodEnum<{
|
|
16472
16604
|
pipe0: "pipe0";
|
|
@@ -16477,6 +16609,7 @@ declare const SearchResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable<z
|
|
|
16477
16609
|
millionverifier: "millionverifier";
|
|
16478
16610
|
googlemaps: "googlemaps";
|
|
16479
16611
|
gemini: "gemini";
|
|
16612
|
+
anthropic: "anthropic";
|
|
16480
16613
|
leadmagic: "leadmagic";
|
|
16481
16614
|
mixrank: "mixrank";
|
|
16482
16615
|
builtwith: "builtwith";
|
|
@@ -16497,6 +16630,7 @@ declare const SearchResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable<z
|
|
|
16497
16630
|
parallel: "parallel";
|
|
16498
16631
|
luma: "luma";
|
|
16499
16632
|
postgres: "postgres";
|
|
16633
|
+
databricks: "databricks";
|
|
16500
16634
|
}>>;
|
|
16501
16635
|
}, z$1.core.$strip>>>;
|
|
16502
16636
|
icon: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -17836,6 +17970,22 @@ declare function getSearchPayloadSchema(seachId: SearchId): z$1.ZodObject<{
|
|
|
17836
17970
|
limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
17837
17971
|
page_number: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
17838
17972
|
}, z$1.core.$strip>;
|
|
17973
|
+
}, z$1.core.$strip> | z$1.ZodObject<{
|
|
17974
|
+
search_id: z$1.ZodLiteral<"query:databricks@1">;
|
|
17975
|
+
connector: z$1.ZodObject<{
|
|
17976
|
+
strategy: z$1.ZodDefault<z$1.ZodEnum<{
|
|
17977
|
+
first: "first";
|
|
17978
|
+
}>>;
|
|
17979
|
+
connections: z$1.ZodArray<z$1.ZodObject<{
|
|
17980
|
+
type: z$1.ZodLiteral<"vault">;
|
|
17981
|
+
connection: z$1.ZodString;
|
|
17982
|
+
}, z$1.core.$strip>>;
|
|
17983
|
+
}, z$1.core.$strip>;
|
|
17984
|
+
config: z$1.ZodObject<{
|
|
17985
|
+
query: z$1.ZodString;
|
|
17986
|
+
limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
17987
|
+
page_number: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
17988
|
+
}, z$1.core.$strip>;
|
|
17839
17989
|
}, z$1.core.$strip>;
|
|
17840
17990
|
declare const PaginationTypeSchema: z$1.ZodEnum<{
|
|
17841
17991
|
cursor: "cursor";
|
|
@@ -17864,6 +18014,7 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
17864
18014
|
"people:eventguests:luma@1": "people:eventguests:luma@1";
|
|
17865
18015
|
"sheet:rows@1": "sheet:rows@1";
|
|
17866
18016
|
"query:postgres@1": "query:postgres@1";
|
|
18017
|
+
"query:databricks@1": "query:databricks@1";
|
|
17867
18018
|
}>;
|
|
17868
18019
|
errors: z$1.ZodArray<z$1.ZodObject<{
|
|
17869
18020
|
code: z$1.ZodString;
|
|
@@ -18019,6 +18170,7 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
18019
18170
|
millionverifier: "millionverifier";
|
|
18020
18171
|
googlemaps: "googlemaps";
|
|
18021
18172
|
gemini: "gemini";
|
|
18173
|
+
anthropic: "anthropic";
|
|
18022
18174
|
leadmagic: "leadmagic";
|
|
18023
18175
|
mixrank: "mixrank";
|
|
18024
18176
|
builtwith: "builtwith";
|
|
@@ -18039,6 +18191,7 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
18039
18191
|
parallel: "parallel";
|
|
18040
18192
|
luma: "luma";
|
|
18041
18193
|
postgres: "postgres";
|
|
18194
|
+
databricks: "databricks";
|
|
18042
18195
|
}>;
|
|
18043
18196
|
}, z$1.core.$strip>>;
|
|
18044
18197
|
available_providers: z$1.ZodArray<z$1.ZodEnum<{
|
|
@@ -18050,6 +18203,7 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
18050
18203
|
millionverifier: "millionverifier";
|
|
18051
18204
|
googlemaps: "googlemaps";
|
|
18052
18205
|
gemini: "gemini";
|
|
18206
|
+
anthropic: "anthropic";
|
|
18053
18207
|
leadmagic: "leadmagic";
|
|
18054
18208
|
mixrank: "mixrank";
|
|
18055
18209
|
builtwith: "builtwith";
|
|
@@ -18070,6 +18224,7 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
18070
18224
|
parallel: "parallel";
|
|
18071
18225
|
luma: "luma";
|
|
18072
18226
|
postgres: "postgres";
|
|
18227
|
+
databricks: "databricks";
|
|
18073
18228
|
}>>;
|
|
18074
18229
|
successful_provider: z$1.ZodOptional<z$1.ZodEnum<{
|
|
18075
18230
|
pipe0: "pipe0";
|
|
@@ -18080,6 +18235,7 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
18080
18235
|
millionverifier: "millionverifier";
|
|
18081
18236
|
googlemaps: "googlemaps";
|
|
18082
18237
|
gemini: "gemini";
|
|
18238
|
+
anthropic: "anthropic";
|
|
18083
18239
|
leadmagic: "leadmagic";
|
|
18084
18240
|
mixrank: "mixrank";
|
|
18085
18241
|
builtwith: "builtwith";
|
|
@@ -18100,6 +18256,7 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
18100
18256
|
parallel: "parallel";
|
|
18101
18257
|
luma: "luma";
|
|
18102
18258
|
postgres: "postgres";
|
|
18259
|
+
databricks: "databricks";
|
|
18103
18260
|
}>>;
|
|
18104
18261
|
}, z$1.core.$strip>>>;
|
|
18105
18262
|
icon: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -19439,6 +19596,22 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
19439
19596
|
limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
19440
19597
|
page_number: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
19441
19598
|
}, z$1.core.$strip>;
|
|
19599
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
19600
|
+
search_id: z$1.ZodLiteral<"query:databricks@1">;
|
|
19601
|
+
connector: z$1.ZodObject<{
|
|
19602
|
+
strategy: z$1.ZodDefault<z$1.ZodEnum<{
|
|
19603
|
+
first: "first";
|
|
19604
|
+
}>>;
|
|
19605
|
+
connections: z$1.ZodArray<z$1.ZodObject<{
|
|
19606
|
+
type: z$1.ZodLiteral<"vault">;
|
|
19607
|
+
connection: z$1.ZodString;
|
|
19608
|
+
}, z$1.core.$strip>>;
|
|
19609
|
+
}, z$1.core.$strip>;
|
|
19610
|
+
config: z$1.ZodObject<{
|
|
19611
|
+
query: z$1.ZodString;
|
|
19612
|
+
limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
19613
|
+
page_number: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
19614
|
+
}, z$1.core.$strip>;
|
|
19442
19615
|
}, z$1.core.$strip>], string>>;
|
|
19443
19616
|
pagination_type: z$1.ZodNullable<z$1.ZodEnum<{
|
|
19444
19617
|
cursor: "cursor";
|
|
@@ -19505,12 +19678,12 @@ declare function getSearchEntry(searchId: SearchId): SearchDef<any>;
|
|
|
19505
19678
|
declare function getInitialSearchTableData(category: SearchCategory | null): SearchCatalogTableData[];
|
|
19506
19679
|
declare function getDefaultSearchOutputFields(searchId: SearchId): string[];
|
|
19507
19680
|
declare function getSearchTableDataAggregates(initialTableData: SearchCatalogTableData[], category: SearchCategory | null): {
|
|
19508
|
-
searchIdsByOutputField: Record<string, ("companies:profiles:crustdata@1" | "companies:profiles:crustdata@2" | "companies:profiles:amplemarket@1" | "companies:profiles:amplemarket@2" | "people:profiles:crustdata@1" | "people:profiles:crustdata@2" | "people:profiles:amplemarket@1" | "people:profiles:amplemarket@2" | "companies:entitysearch:parallel@1" | "people:entitysearch:parallel@1" | "people:eventguests:luma@1" | "sheet:rows@1" | "query:postgres@1")[]>;
|
|
19509
|
-
searchIdsByTag: Record<string, ("companies:profiles:crustdata@1" | "companies:profiles:crustdata@2" | "companies:profiles:amplemarket@1" | "companies:profiles:amplemarket@2" | "people:profiles:crustdata@1" | "people:profiles:crustdata@2" | "people:profiles:amplemarket@1" | "people:profiles:amplemarket@2" | "companies:entitysearch:parallel@1" | "people:entitysearch:parallel@1" | "people:eventguests:luma@1" | "sheet:rows@1" | "query:postgres@1")[]>;
|
|
19510
|
-
searchIdsByProvider: Record<string, ("companies:profiles:crustdata@1" | "companies:profiles:crustdata@2" | "companies:profiles:amplemarket@1" | "companies:profiles:amplemarket@2" | "people:profiles:crustdata@1" | "people:profiles:crustdata@2" | "people:profiles:amplemarket@1" | "people:profiles:amplemarket@2" | "companies:entitysearch:parallel@1" | "people:entitysearch:parallel@1" | "people:eventguests:luma@1" | "sheet:rows@1" | "query:postgres@1")[]>;
|
|
19511
|
-
sortedTagEntries: [string, ("companies:profiles:crustdata@1" | "companies:profiles:crustdata@2" | "companies:profiles:amplemarket@1" | "companies:profiles:amplemarket@2" | "people:profiles:crustdata@1" | "people:profiles:crustdata@2" | "people:profiles:amplemarket@1" | "people:profiles:amplemarket@2" | "companies:entitysearch:parallel@1" | "people:entitysearch:parallel@1" | "people:eventguests:luma@1" | "sheet:rows@1" | "query:postgres@1")[]][];
|
|
19512
|
-
sortedOutputFieldEntries: [string, ("companies:profiles:crustdata@1" | "companies:profiles:crustdata@2" | "companies:profiles:amplemarket@1" | "companies:profiles:amplemarket@2" | "people:profiles:crustdata@1" | "people:profiles:crustdata@2" | "people:profiles:amplemarket@1" | "people:profiles:amplemarket@2" | "companies:entitysearch:parallel@1" | "people:entitysearch:parallel@1" | "people:eventguests:luma@1" | "sheet:rows@1" | "query:postgres@1")[]][];
|
|
19513
|
-
sortedProviderEntries: [string, ("companies:profiles:crustdata@1" | "companies:profiles:crustdata@2" | "companies:profiles:amplemarket@1" | "companies:profiles:amplemarket@2" | "people:profiles:crustdata@1" | "people:profiles:crustdata@2" | "people:profiles:amplemarket@1" | "people:profiles:amplemarket@2" | "companies:entitysearch:parallel@1" | "people:entitysearch:parallel@1" | "people:eventguests:luma@1" | "sheet:rows@1" | "query:postgres@1")[]][];
|
|
19681
|
+
searchIdsByOutputField: Record<string, ("companies:profiles:crustdata@1" | "companies:profiles:crustdata@2" | "companies:profiles:amplemarket@1" | "companies:profiles:amplemarket@2" | "people:profiles:crustdata@1" | "people:profiles:crustdata@2" | "people:profiles:amplemarket@1" | "people:profiles:amplemarket@2" | "companies:entitysearch:parallel@1" | "people:entitysearch:parallel@1" | "people:eventguests:luma@1" | "sheet:rows@1" | "query:postgres@1" | "query:databricks@1")[]>;
|
|
19682
|
+
searchIdsByTag: Record<string, ("companies:profiles:crustdata@1" | "companies:profiles:crustdata@2" | "companies:profiles:amplemarket@1" | "companies:profiles:amplemarket@2" | "people:profiles:crustdata@1" | "people:profiles:crustdata@2" | "people:profiles:amplemarket@1" | "people:profiles:amplemarket@2" | "companies:entitysearch:parallel@1" | "people:entitysearch:parallel@1" | "people:eventguests:luma@1" | "sheet:rows@1" | "query:postgres@1" | "query:databricks@1")[]>;
|
|
19683
|
+
searchIdsByProvider: Record<string, ("companies:profiles:crustdata@1" | "companies:profiles:crustdata@2" | "companies:profiles:amplemarket@1" | "companies:profiles:amplemarket@2" | "people:profiles:crustdata@1" | "people:profiles:crustdata@2" | "people:profiles:amplemarket@1" | "people:profiles:amplemarket@2" | "companies:entitysearch:parallel@1" | "people:entitysearch:parallel@1" | "people:eventguests:luma@1" | "sheet:rows@1" | "query:postgres@1" | "query:databricks@1")[]>;
|
|
19684
|
+
sortedTagEntries: [string, ("companies:profiles:crustdata@1" | "companies:profiles:crustdata@2" | "companies:profiles:amplemarket@1" | "companies:profiles:amplemarket@2" | "people:profiles:crustdata@1" | "people:profiles:crustdata@2" | "people:profiles:amplemarket@1" | "people:profiles:amplemarket@2" | "companies:entitysearch:parallel@1" | "people:entitysearch:parallel@1" | "people:eventguests:luma@1" | "sheet:rows@1" | "query:postgres@1" | "query:databricks@1")[]][];
|
|
19685
|
+
sortedOutputFieldEntries: [string, ("companies:profiles:crustdata@1" | "companies:profiles:crustdata@2" | "companies:profiles:amplemarket@1" | "companies:profiles:amplemarket@2" | "people:profiles:crustdata@1" | "people:profiles:crustdata@2" | "people:profiles:amplemarket@1" | "people:profiles:amplemarket@2" | "companies:entitysearch:parallel@1" | "people:entitysearch:parallel@1" | "people:eventguests:luma@1" | "sheet:rows@1" | "query:postgres@1" | "query:databricks@1")[]][];
|
|
19686
|
+
sortedProviderEntries: [string, ("companies:profiles:crustdata@1" | "companies:profiles:crustdata@2" | "companies:profiles:amplemarket@1" | "companies:profiles:amplemarket@2" | "people:profiles:crustdata@1" | "people:profiles:crustdata@2" | "people:profiles:amplemarket@1" | "people:profiles:amplemarket@2" | "companies:entitysearch:parallel@1" | "people:entitysearch:parallel@1" | "people:eventguests:luma@1" | "sheet:rows@1" | "query:postgres@1" | "query:databricks@1")[]][];
|
|
19514
19687
|
searchEntriesByBaseSearch: Record<string, SearchMetaEntryWithId[]>;
|
|
19515
19688
|
};
|
|
19516
19689
|
declare function getStartingCostPerSearchProvider(search_id: SearchId): {
|
|
@@ -22061,6 +22234,7 @@ declare const SearchesResultFieldSchema: z$1.ZodObject<{
|
|
|
22061
22234
|
millionverifier: "millionverifier";
|
|
22062
22235
|
googlemaps: "googlemaps";
|
|
22063
22236
|
gemini: "gemini";
|
|
22237
|
+
anthropic: "anthropic";
|
|
22064
22238
|
leadmagic: "leadmagic";
|
|
22065
22239
|
mixrank: "mixrank";
|
|
22066
22240
|
builtwith: "builtwith";
|
|
@@ -22081,6 +22255,7 @@ declare const SearchesResultFieldSchema: z$1.ZodObject<{
|
|
|
22081
22255
|
parallel: "parallel";
|
|
22082
22256
|
luma: "luma";
|
|
22083
22257
|
postgres: "postgres";
|
|
22258
|
+
databricks: "databricks";
|
|
22084
22259
|
}>;
|
|
22085
22260
|
}, z$1.core.$strip>>;
|
|
22086
22261
|
available_providers: z$1.ZodArray<z$1.ZodEnum<{
|
|
@@ -22092,6 +22267,7 @@ declare const SearchesResultFieldSchema: z$1.ZodObject<{
|
|
|
22092
22267
|
millionverifier: "millionverifier";
|
|
22093
22268
|
googlemaps: "googlemaps";
|
|
22094
22269
|
gemini: "gemini";
|
|
22270
|
+
anthropic: "anthropic";
|
|
22095
22271
|
leadmagic: "leadmagic";
|
|
22096
22272
|
mixrank: "mixrank";
|
|
22097
22273
|
builtwith: "builtwith";
|
|
@@ -22112,6 +22288,7 @@ declare const SearchesResultFieldSchema: z$1.ZodObject<{
|
|
|
22112
22288
|
parallel: "parallel";
|
|
22113
22289
|
luma: "luma";
|
|
22114
22290
|
postgres: "postgres";
|
|
22291
|
+
databricks: "databricks";
|
|
22115
22292
|
}>>;
|
|
22116
22293
|
successful_provider: z$1.ZodOptional<z$1.ZodEnum<{
|
|
22117
22294
|
pipe0: "pipe0";
|
|
@@ -22122,6 +22299,7 @@ declare const SearchesResultFieldSchema: z$1.ZodObject<{
|
|
|
22122
22299
|
millionverifier: "millionverifier";
|
|
22123
22300
|
googlemaps: "googlemaps";
|
|
22124
22301
|
gemini: "gemini";
|
|
22302
|
+
anthropic: "anthropic";
|
|
22125
22303
|
leadmagic: "leadmagic";
|
|
22126
22304
|
mixrank: "mixrank";
|
|
22127
22305
|
builtwith: "builtwith";
|
|
@@ -22142,6 +22320,7 @@ declare const SearchesResultFieldSchema: z$1.ZodObject<{
|
|
|
22142
22320
|
parallel: "parallel";
|
|
22143
22321
|
luma: "luma";
|
|
22144
22322
|
postgres: "postgres";
|
|
22323
|
+
databricks: "databricks";
|
|
22145
22324
|
}>>;
|
|
22146
22325
|
}, z$1.core.$strip>>>;
|
|
22147
22326
|
icon: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -22318,6 +22497,7 @@ declare const SearchesResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable
|
|
|
22318
22497
|
millionverifier: "millionverifier";
|
|
22319
22498
|
googlemaps: "googlemaps";
|
|
22320
22499
|
gemini: "gemini";
|
|
22500
|
+
anthropic: "anthropic";
|
|
22321
22501
|
leadmagic: "leadmagic";
|
|
22322
22502
|
mixrank: "mixrank";
|
|
22323
22503
|
builtwith: "builtwith";
|
|
@@ -22338,6 +22518,7 @@ declare const SearchesResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable
|
|
|
22338
22518
|
parallel: "parallel";
|
|
22339
22519
|
luma: "luma";
|
|
22340
22520
|
postgres: "postgres";
|
|
22521
|
+
databricks: "databricks";
|
|
22341
22522
|
}>;
|
|
22342
22523
|
}, z$1.core.$strip>>;
|
|
22343
22524
|
available_providers: z$1.ZodArray<z$1.ZodEnum<{
|
|
@@ -22349,6 +22530,7 @@ declare const SearchesResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable
|
|
|
22349
22530
|
millionverifier: "millionverifier";
|
|
22350
22531
|
googlemaps: "googlemaps";
|
|
22351
22532
|
gemini: "gemini";
|
|
22533
|
+
anthropic: "anthropic";
|
|
22352
22534
|
leadmagic: "leadmagic";
|
|
22353
22535
|
mixrank: "mixrank";
|
|
22354
22536
|
builtwith: "builtwith";
|
|
@@ -22369,6 +22551,7 @@ declare const SearchesResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable
|
|
|
22369
22551
|
parallel: "parallel";
|
|
22370
22552
|
luma: "luma";
|
|
22371
22553
|
postgres: "postgres";
|
|
22554
|
+
databricks: "databricks";
|
|
22372
22555
|
}>>;
|
|
22373
22556
|
successful_provider: z$1.ZodOptional<z$1.ZodEnum<{
|
|
22374
22557
|
pipe0: "pipe0";
|
|
@@ -22379,6 +22562,7 @@ declare const SearchesResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable
|
|
|
22379
22562
|
millionverifier: "millionverifier";
|
|
22380
22563
|
googlemaps: "googlemaps";
|
|
22381
22564
|
gemini: "gemini";
|
|
22565
|
+
anthropic: "anthropic";
|
|
22382
22566
|
leadmagic: "leadmagic";
|
|
22383
22567
|
mixrank: "mixrank";
|
|
22384
22568
|
builtwith: "builtwith";
|
|
@@ -22399,6 +22583,7 @@ declare const SearchesResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable
|
|
|
22399
22583
|
parallel: "parallel";
|
|
22400
22584
|
luma: "luma";
|
|
22401
22585
|
postgres: "postgres";
|
|
22586
|
+
databricks: "databricks";
|
|
22402
22587
|
}>>;
|
|
22403
22588
|
}, z$1.core.$strip>>>;
|
|
22404
22589
|
icon: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -22625,6 +22810,7 @@ declare const SearchesResponseSchema: z$1.ZodObject<{
|
|
|
22625
22810
|
millionverifier: "millionverifier";
|
|
22626
22811
|
googlemaps: "googlemaps";
|
|
22627
22812
|
gemini: "gemini";
|
|
22813
|
+
anthropic: "anthropic";
|
|
22628
22814
|
leadmagic: "leadmagic";
|
|
22629
22815
|
mixrank: "mixrank";
|
|
22630
22816
|
builtwith: "builtwith";
|
|
@@ -22645,6 +22831,7 @@ declare const SearchesResponseSchema: z$1.ZodObject<{
|
|
|
22645
22831
|
parallel: "parallel";
|
|
22646
22832
|
luma: "luma";
|
|
22647
22833
|
postgres: "postgres";
|
|
22834
|
+
databricks: "databricks";
|
|
22648
22835
|
}>;
|
|
22649
22836
|
}, z$1.core.$strip>>;
|
|
22650
22837
|
available_providers: z$1.ZodArray<z$1.ZodEnum<{
|
|
@@ -22656,6 +22843,7 @@ declare const SearchesResponseSchema: z$1.ZodObject<{
|
|
|
22656
22843
|
millionverifier: "millionverifier";
|
|
22657
22844
|
googlemaps: "googlemaps";
|
|
22658
22845
|
gemini: "gemini";
|
|
22846
|
+
anthropic: "anthropic";
|
|
22659
22847
|
leadmagic: "leadmagic";
|
|
22660
22848
|
mixrank: "mixrank";
|
|
22661
22849
|
builtwith: "builtwith";
|
|
@@ -22676,6 +22864,7 @@ declare const SearchesResponseSchema: z$1.ZodObject<{
|
|
|
22676
22864
|
parallel: "parallel";
|
|
22677
22865
|
luma: "luma";
|
|
22678
22866
|
postgres: "postgres";
|
|
22867
|
+
databricks: "databricks";
|
|
22679
22868
|
}>>;
|
|
22680
22869
|
successful_provider: z$1.ZodOptional<z$1.ZodEnum<{
|
|
22681
22870
|
pipe0: "pipe0";
|
|
@@ -22686,6 +22875,7 @@ declare const SearchesResponseSchema: z$1.ZodObject<{
|
|
|
22686
22875
|
millionverifier: "millionverifier";
|
|
22687
22876
|
googlemaps: "googlemaps";
|
|
22688
22877
|
gemini: "gemini";
|
|
22878
|
+
anthropic: "anthropic";
|
|
22689
22879
|
leadmagic: "leadmagic";
|
|
22690
22880
|
mixrank: "mixrank";
|
|
22691
22881
|
builtwith: "builtwith";
|
|
@@ -22706,6 +22896,7 @@ declare const SearchesResponseSchema: z$1.ZodObject<{
|
|
|
22706
22896
|
parallel: "parallel";
|
|
22707
22897
|
luma: "luma";
|
|
22708
22898
|
postgres: "postgres";
|
|
22899
|
+
databricks: "databricks";
|
|
22709
22900
|
}>>;
|
|
22710
22901
|
}, z$1.core.$strip>>>;
|
|
22711
22902
|
icon: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -24093,10 +24284,12 @@ declare class FieldAnnotations {
|
|
|
24093
24284
|
getAnnotation(key: string): FieldAnnotationsType[string] | undefined;
|
|
24094
24285
|
static fromInput(input: Record<string, FieldValue>[], {
|
|
24095
24286
|
probeCount,
|
|
24096
|
-
inferCatalogFields
|
|
24287
|
+
inferCatalogFields,
|
|
24288
|
+
addIdColumn
|
|
24097
24289
|
}?: {
|
|
24098
24290
|
probeCount?: number;
|
|
24099
24291
|
inferCatalogFields?: boolean;
|
|
24292
|
+
addIdColumn?: boolean;
|
|
24100
24293
|
}): FieldAnnotations;
|
|
24101
24294
|
merge(source: FieldAnnotationsType | FieldAnnotations, overwrite?: boolean): FieldAnnotations;
|
|
24102
24295
|
deleteKey(fieldName: string): FieldAnnotations;
|
|
@@ -28187,6 +28380,7 @@ declare const pipePayloadSchemaCatalog: {
|
|
|
28187
28380
|
"gemini-flash-latest": "gemini-flash-latest";
|
|
28188
28381
|
"openai-gpt-latest": "openai-gpt-latest";
|
|
28189
28382
|
"openai-gpt-mini-latest": "openai-gpt-mini-latest";
|
|
28383
|
+
"anthropic-opus-latest": "anthropic-opus-latest";
|
|
28190
28384
|
}>>;
|
|
28191
28385
|
}, z.core.$strip>;
|
|
28192
28386
|
}, z.core.$strip>;
|
|
@@ -29922,6 +30116,7 @@ declare const pipePayloadSchemaCatalog: {
|
|
|
29922
30116
|
"gemini-flash-latest": "gemini-flash-latest";
|
|
29923
30117
|
"openai-gpt-latest": "openai-gpt-latest";
|
|
29924
30118
|
"openai-gpt-mini-latest": "openai-gpt-mini-latest";
|
|
30119
|
+
"anthropic-opus-latest": "anthropic-opus-latest";
|
|
29925
30120
|
}>>;
|
|
29926
30121
|
signature: z.ZodString;
|
|
29927
30122
|
persona: z.ZodString | z.ZodDefault<z.ZodString>;
|
|
@@ -31361,6 +31556,7 @@ declare const pipePayloadSchemaCatalog: {
|
|
|
31361
31556
|
"gemini-flash-latest": "gemini-flash-latest";
|
|
31362
31557
|
"openai-gpt-latest": "openai-gpt-latest";
|
|
31363
31558
|
"openai-gpt-mini-latest": "openai-gpt-mini-latest";
|
|
31559
|
+
"anthropic-opus-latest": "anthropic-opus-latest";
|
|
31364
31560
|
}>>;
|
|
31365
31561
|
output_fields: z.ZodOptional<z.ZodObject<{
|
|
31366
31562
|
message: z.ZodDefault<z.ZodObject<{
|
|
@@ -33869,6 +34065,7 @@ declare function getPipePayloadSchema(pipeId: PipeId): z.ZodObject<{
|
|
|
33869
34065
|
"gemini-flash-latest": "gemini-flash-latest";
|
|
33870
34066
|
"openai-gpt-latest": "openai-gpt-latest";
|
|
33871
34067
|
"openai-gpt-mini-latest": "openai-gpt-mini-latest";
|
|
34068
|
+
"anthropic-opus-latest": "anthropic-opus-latest";
|
|
33872
34069
|
}>>;
|
|
33873
34070
|
}, z.core.$strip>;
|
|
33874
34071
|
}, z.core.$strip> | z.ZodObject<{
|
|
@@ -35580,6 +35777,7 @@ declare function getPipePayloadSchema(pipeId: PipeId): z.ZodObject<{
|
|
|
35580
35777
|
"gemini-flash-latest": "gemini-flash-latest";
|
|
35581
35778
|
"openai-gpt-latest": "openai-gpt-latest";
|
|
35582
35779
|
"openai-gpt-mini-latest": "openai-gpt-mini-latest";
|
|
35780
|
+
"anthropic-opus-latest": "anthropic-opus-latest";
|
|
35583
35781
|
}>>;
|
|
35584
35782
|
signature: z.ZodString;
|
|
35585
35783
|
persona: z.ZodString | z.ZodDefault<z.ZodString>;
|
|
@@ -36998,6 +37196,7 @@ declare function getPipePayloadSchema(pipeId: PipeId): z.ZodObject<{
|
|
|
36998
37196
|
"gemini-flash-latest": "gemini-flash-latest";
|
|
36999
37197
|
"openai-gpt-latest": "openai-gpt-latest";
|
|
37000
37198
|
"openai-gpt-mini-latest": "openai-gpt-mini-latest";
|
|
37199
|
+
"anthropic-opus-latest": "anthropic-opus-latest";
|
|
37001
37200
|
}>>;
|
|
37002
37201
|
output_fields: z.ZodOptional<z.ZodObject<{
|
|
37003
37202
|
message: z.ZodDefault<z.ZodObject<{
|
|
@@ -39812,6 +40011,7 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
39812
40011
|
millionverifier: "millionverifier";
|
|
39813
40012
|
googlemaps: "googlemaps";
|
|
39814
40013
|
gemini: "gemini";
|
|
40014
|
+
anthropic: "anthropic";
|
|
39815
40015
|
leadmagic: "leadmagic";
|
|
39816
40016
|
mixrank: "mixrank";
|
|
39817
40017
|
builtwith: "builtwith";
|
|
@@ -39832,6 +40032,7 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
39832
40032
|
parallel: "parallel";
|
|
39833
40033
|
luma: "luma";
|
|
39834
40034
|
postgres: "postgres";
|
|
40035
|
+
databricks: "databricks";
|
|
39835
40036
|
}>;
|
|
39836
40037
|
}, z.core.$strip>>;
|
|
39837
40038
|
available_providers: z.ZodArray<z.ZodEnum<{
|
|
@@ -39843,6 +40044,7 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
39843
40044
|
millionverifier: "millionverifier";
|
|
39844
40045
|
googlemaps: "googlemaps";
|
|
39845
40046
|
gemini: "gemini";
|
|
40047
|
+
anthropic: "anthropic";
|
|
39846
40048
|
leadmagic: "leadmagic";
|
|
39847
40049
|
mixrank: "mixrank";
|
|
39848
40050
|
builtwith: "builtwith";
|
|
@@ -39863,6 +40065,7 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
39863
40065
|
parallel: "parallel";
|
|
39864
40066
|
luma: "luma";
|
|
39865
40067
|
postgres: "postgres";
|
|
40068
|
+
databricks: "databricks";
|
|
39866
40069
|
}>>;
|
|
39867
40070
|
successful_provider: z.ZodOptional<z.ZodEnum<{
|
|
39868
40071
|
pipe0: "pipe0";
|
|
@@ -39873,6 +40076,7 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
39873
40076
|
millionverifier: "millionverifier";
|
|
39874
40077
|
googlemaps: "googlemaps";
|
|
39875
40078
|
gemini: "gemini";
|
|
40079
|
+
anthropic: "anthropic";
|
|
39876
40080
|
leadmagic: "leadmagic";
|
|
39877
40081
|
mixrank: "mixrank";
|
|
39878
40082
|
builtwith: "builtwith";
|
|
@@ -39893,6 +40097,7 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
39893
40097
|
parallel: "parallel";
|
|
39894
40098
|
luma: "luma";
|
|
39895
40099
|
postgres: "postgres";
|
|
40100
|
+
databricks: "databricks";
|
|
39896
40101
|
}>>;
|
|
39897
40102
|
}, z.core.$strip>>>;
|
|
39898
40103
|
icon: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -40085,6 +40290,7 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
40085
40290
|
"gemini-flash-latest": "gemini-flash-latest";
|
|
40086
40291
|
"openai-gpt-latest": "openai-gpt-latest";
|
|
40087
40292
|
"openai-gpt-mini-latest": "openai-gpt-mini-latest";
|
|
40293
|
+
"anthropic-opus-latest": "anthropic-opus-latest";
|
|
40088
40294
|
}>>;
|
|
40089
40295
|
}, z.core.$strip>;
|
|
40090
40296
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -41796,6 +42002,7 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
41796
42002
|
"gemini-flash-latest": "gemini-flash-latest";
|
|
41797
42003
|
"openai-gpt-latest": "openai-gpt-latest";
|
|
41798
42004
|
"openai-gpt-mini-latest": "openai-gpt-mini-latest";
|
|
42005
|
+
"anthropic-opus-latest": "anthropic-opus-latest";
|
|
41799
42006
|
}>>;
|
|
41800
42007
|
signature: z.ZodString;
|
|
41801
42008
|
persona: z.ZodString | z.ZodDefault<z.ZodString>;
|
|
@@ -41865,6 +42072,7 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
41865
42072
|
"gemini-flash-latest": "gemini-flash-latest";
|
|
41866
42073
|
"openai-gpt-latest": "openai-gpt-latest";
|
|
41867
42074
|
"openai-gpt-mini-latest": "openai-gpt-mini-latest";
|
|
42075
|
+
"anthropic-opus-latest": "anthropic-opus-latest";
|
|
41868
42076
|
}>>;
|
|
41869
42077
|
output_fields: z.ZodOptional<z.ZodObject<{
|
|
41870
42078
|
message: z.ZodDefault<z.ZodObject<{
|
|
@@ -45861,6 +46069,7 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
45861
46069
|
millionverifier: "millionverifier";
|
|
45862
46070
|
googlemaps: "googlemaps";
|
|
45863
46071
|
gemini: "gemini";
|
|
46072
|
+
anthropic: "anthropic";
|
|
45864
46073
|
leadmagic: "leadmagic";
|
|
45865
46074
|
mixrank: "mixrank";
|
|
45866
46075
|
builtwith: "builtwith";
|
|
@@ -45881,6 +46090,7 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
45881
46090
|
parallel: "parallel";
|
|
45882
46091
|
luma: "luma";
|
|
45883
46092
|
postgres: "postgres";
|
|
46093
|
+
databricks: "databricks";
|
|
45884
46094
|
}>;
|
|
45885
46095
|
}, z.core.$strip>>;
|
|
45886
46096
|
available_providers: z.ZodArray<z.ZodEnum<{
|
|
@@ -45892,6 +46102,7 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
45892
46102
|
millionverifier: "millionverifier";
|
|
45893
46103
|
googlemaps: "googlemaps";
|
|
45894
46104
|
gemini: "gemini";
|
|
46105
|
+
anthropic: "anthropic";
|
|
45895
46106
|
leadmagic: "leadmagic";
|
|
45896
46107
|
mixrank: "mixrank";
|
|
45897
46108
|
builtwith: "builtwith";
|
|
@@ -45912,6 +46123,7 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
45912
46123
|
parallel: "parallel";
|
|
45913
46124
|
luma: "luma";
|
|
45914
46125
|
postgres: "postgres";
|
|
46126
|
+
databricks: "databricks";
|
|
45915
46127
|
}>>;
|
|
45916
46128
|
successful_provider: z.ZodOptional<z.ZodEnum<{
|
|
45917
46129
|
pipe0: "pipe0";
|
|
@@ -45922,6 +46134,7 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
45922
46134
|
millionverifier: "millionverifier";
|
|
45923
46135
|
googlemaps: "googlemaps";
|
|
45924
46136
|
gemini: "gemini";
|
|
46137
|
+
anthropic: "anthropic";
|
|
45925
46138
|
leadmagic: "leadmagic";
|
|
45926
46139
|
mixrank: "mixrank";
|
|
45927
46140
|
builtwith: "builtwith";
|
|
@@ -45942,6 +46155,7 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
45942
46155
|
parallel: "parallel";
|
|
45943
46156
|
luma: "luma";
|
|
45944
46157
|
postgres: "postgres";
|
|
46158
|
+
databricks: "databricks";
|
|
45945
46159
|
}>>;
|
|
45946
46160
|
}, z.core.$strip>>>;
|
|
45947
46161
|
icon: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -45981,7 +46195,7 @@ declare const ICON_KEYS: readonly ["school", "user", "location", "language", "br
|
|
|
45981
46195
|
type IconKey = (typeof ICON_KEYS)[number];
|
|
45982
46196
|
//#endregion
|
|
45983
46197
|
//#region src/pipes/ai-models/ai-model-catalog.d.ts
|
|
45984
|
-
declare const AI_MODELS: readonly ["gemini-flash-latest", "openai-gpt-latest", "openai-gpt-mini-latest"];
|
|
46198
|
+
declare const AI_MODELS: readonly ["gemini-flash-latest", "openai-gpt-latest", "openai-gpt-mini-latest", "anthropic-opus-latest"];
|
|
45985
46199
|
type AiModelId = (typeof AI_MODELS)[number];
|
|
45986
46200
|
declare const AI_MODEL_CATALOG: Record<AiModelId, {
|
|
45987
46201
|
provider: ProviderName;
|
|
@@ -46651,6 +46865,7 @@ declare const llmSelectInput: <T extends AIModelSelectInputMetadata>({
|
|
|
46651
46865
|
"gemini-flash-latest": "gemini-flash-latest";
|
|
46652
46866
|
"openai-gpt-latest": "openai-gpt-latest";
|
|
46653
46867
|
"openai-gpt-mini-latest": "openai-gpt-mini-latest";
|
|
46868
|
+
"anthropic-opus-latest": "anthropic-opus-latest";
|
|
46654
46869
|
}>>;
|
|
46655
46870
|
declare const multiSelectInput: (metadata: Pick<MultiSelectMeta, "options" | "required" | "enabledIf" | "info" | "path" | "label" | "disableSearch" | "placeholder" | "order" | "groupPath" | "sectionKey" | "description">, registry: Registry) => z.ZodArray<z.ZodEnum<{
|
|
46656
46871
|
[x: string]: string;
|
|
@@ -46908,6 +47123,7 @@ declare const pipesLLMSelectInput: <T extends Metadata<typeof llmSelectInput>>(m
|
|
|
46908
47123
|
"gemini-flash-latest": "gemini-flash-latest";
|
|
46909
47124
|
"openai-gpt-latest": "openai-gpt-latest";
|
|
46910
47125
|
"openai-gpt-mini-latest": "openai-gpt-mini-latest";
|
|
47126
|
+
"anthropic-opus-latest": "anthropic-opus-latest";
|
|
46911
47127
|
}>>;
|
|
46912
47128
|
declare const pipesMultiSelectInput: <T extends Metadata<typeof multiSelectInput>>(metadata: T) => z.ZodArray<z.ZodEnum<{
|
|
46913
47129
|
[x: string]: string;
|
|
@@ -48871,10 +49087,10 @@ declare function markRecordFieldAsComplete({
|
|
|
48871
49087
|
} | undefined;
|
|
48872
49088
|
waterfall?: {
|
|
48873
49089
|
attempted_providers: {
|
|
48874
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
49090
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
48875
49091
|
}[];
|
|
48876
|
-
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres")[];
|
|
48877
|
-
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | undefined;
|
|
49092
|
+
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks")[];
|
|
49093
|
+
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks" | undefined;
|
|
48878
49094
|
} | undefined;
|
|
48879
49095
|
icon?: {
|
|
48880
49096
|
key: "linkedin" | "job";
|
|
@@ -48935,10 +49151,10 @@ declare function markRecordFieldAsPending({
|
|
|
48935
49151
|
} | undefined;
|
|
48936
49152
|
waterfall?: {
|
|
48937
49153
|
attempted_providers: {
|
|
48938
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
49154
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
48939
49155
|
}[];
|
|
48940
|
-
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres")[];
|
|
48941
|
-
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | undefined;
|
|
49156
|
+
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks")[];
|
|
49157
|
+
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks" | undefined;
|
|
48942
49158
|
} | undefined;
|
|
48943
49159
|
icon?: {
|
|
48944
49160
|
key: "linkedin" | "job";
|
|
@@ -49005,10 +49221,10 @@ declare function markRecordFieldAsNoResult({
|
|
|
49005
49221
|
} | undefined;
|
|
49006
49222
|
waterfall?: {
|
|
49007
49223
|
attempted_providers: {
|
|
49008
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
49224
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
49009
49225
|
}[];
|
|
49010
|
-
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres")[];
|
|
49011
|
-
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | undefined;
|
|
49226
|
+
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks")[];
|
|
49227
|
+
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks" | undefined;
|
|
49012
49228
|
} | undefined;
|
|
49013
49229
|
icon?: {
|
|
49014
49230
|
key: "linkedin" | "job";
|
|
@@ -49065,10 +49281,10 @@ declare function markRecordFieldAsFailed(field: RecordField, reason: FieldReason
|
|
|
49065
49281
|
} | undefined;
|
|
49066
49282
|
waterfall?: {
|
|
49067
49283
|
attempted_providers: {
|
|
49068
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
49284
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
49069
49285
|
}[];
|
|
49070
|
-
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres")[];
|
|
49071
|
-
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | undefined;
|
|
49286
|
+
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks")[];
|
|
49287
|
+
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks" | undefined;
|
|
49072
49288
|
} | undefined;
|
|
49073
49289
|
icon?: {
|
|
49074
49290
|
key: "linkedin" | "job";
|
|
@@ -49125,10 +49341,10 @@ declare function markRecordFieldAsSkipped(field: RecordField, reason: FieldReaso
|
|
|
49125
49341
|
} | undefined;
|
|
49126
49342
|
waterfall?: {
|
|
49127
49343
|
attempted_providers: {
|
|
49128
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
49344
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
49129
49345
|
}[];
|
|
49130
|
-
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres")[];
|
|
49131
|
-
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | undefined;
|
|
49346
|
+
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks")[];
|
|
49347
|
+
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks" | undefined;
|
|
49132
49348
|
} | undefined;
|
|
49133
49349
|
icon?: {
|
|
49134
49350
|
key: "linkedin" | "job";
|
|
@@ -49185,10 +49401,10 @@ declare function markRecordFieldAsProcessing(field: RecordField): {
|
|
|
49185
49401
|
} | undefined;
|
|
49186
49402
|
waterfall?: {
|
|
49187
49403
|
attempted_providers: {
|
|
49188
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
49404
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
49189
49405
|
}[];
|
|
49190
|
-
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres")[];
|
|
49191
|
-
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | undefined;
|
|
49406
|
+
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks")[];
|
|
49407
|
+
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks" | undefined;
|
|
49192
49408
|
} | undefined;
|
|
49193
49409
|
icon?: {
|
|
49194
49410
|
key: "linkedin" | "job";
|
|
@@ -49684,10 +49900,10 @@ declare function inputFromRecords(records: PipesInMemoryResponse["records"], con
|
|
|
49684
49900
|
} | undefined;
|
|
49685
49901
|
waterfall?: {
|
|
49686
49902
|
attempted_providers: {
|
|
49687
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
49903
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
49688
49904
|
}[];
|
|
49689
|
-
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres")[];
|
|
49690
|
-
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | undefined;
|
|
49905
|
+
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks")[];
|
|
49906
|
+
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks" | undefined;
|
|
49691
49907
|
} | undefined;
|
|
49692
49908
|
icon?: {
|
|
49693
49909
|
key: "linkedin" | "job";
|
|
@@ -49744,10 +49960,10 @@ declare function inputFromRecords(records: PipesInMemoryResponse["records"], con
|
|
|
49744
49960
|
} | undefined;
|
|
49745
49961
|
waterfall?: {
|
|
49746
49962
|
attempted_providers: {
|
|
49747
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
49963
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
49748
49964
|
}[];
|
|
49749
|
-
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres")[];
|
|
49750
|
-
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | undefined;
|
|
49965
|
+
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks")[];
|
|
49966
|
+
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks" | undefined;
|
|
49751
49967
|
} | undefined;
|
|
49752
49968
|
icon?: {
|
|
49753
49969
|
key: "linkedin" | "job";
|
|
@@ -49807,10 +50023,10 @@ declare function inputFromRecordArr(records: PipesRecord[], config?: Partial<Fie
|
|
|
49807
50023
|
} | undefined;
|
|
49808
50024
|
waterfall?: {
|
|
49809
50025
|
attempted_providers: {
|
|
49810
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
50026
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
49811
50027
|
}[];
|
|
49812
|
-
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres")[];
|
|
49813
|
-
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | undefined;
|
|
50028
|
+
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks")[];
|
|
50029
|
+
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks" | undefined;
|
|
49814
50030
|
} | undefined;
|
|
49815
50031
|
icon?: {
|
|
49816
50032
|
key: "linkedin" | "job";
|
|
@@ -49867,10 +50083,10 @@ declare function inputFromRecordArr(records: PipesRecord[], config?: Partial<Fie
|
|
|
49867
50083
|
} | undefined;
|
|
49868
50084
|
waterfall?: {
|
|
49869
50085
|
attempted_providers: {
|
|
49870
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
50086
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
49871
50087
|
}[];
|
|
49872
|
-
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres")[];
|
|
49873
|
-
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | undefined;
|
|
50088
|
+
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks")[];
|
|
50089
|
+
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks" | undefined;
|
|
49874
50090
|
} | undefined;
|
|
49875
50091
|
icon?: {
|
|
49876
50092
|
key: "linkedin" | "job";
|
|
@@ -49930,10 +50146,10 @@ declare function inputFromRecord(record: PipesRecord, config?: Partial<FieldsToO
|
|
|
49930
50146
|
} | undefined;
|
|
49931
50147
|
waterfall?: {
|
|
49932
50148
|
attempted_providers: {
|
|
49933
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
50149
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
49934
50150
|
}[];
|
|
49935
|
-
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres")[];
|
|
49936
|
-
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | undefined;
|
|
50151
|
+
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks")[];
|
|
50152
|
+
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks" | undefined;
|
|
49937
50153
|
} | undefined;
|
|
49938
50154
|
icon?: {
|
|
49939
50155
|
key: "linkedin" | "job";
|
|
@@ -49990,10 +50206,10 @@ declare function inputFromRecord(record: PipesRecord, config?: Partial<FieldsToO
|
|
|
49990
50206
|
} | undefined;
|
|
49991
50207
|
waterfall?: {
|
|
49992
50208
|
attempted_providers: {
|
|
49993
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
50209
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
49994
50210
|
}[];
|
|
49995
|
-
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres")[];
|
|
49996
|
-
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | undefined;
|
|
50211
|
+
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks")[];
|
|
50212
|
+
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks" | undefined;
|
|
49997
50213
|
} | undefined;
|
|
49998
50214
|
icon?: {
|
|
49999
50215
|
key: "linkedin" | "job";
|
|
@@ -50036,7 +50252,7 @@ type ProviderCatalogEntry = {
|
|
|
50036
50252
|
description: string;
|
|
50037
50253
|
public: boolean;
|
|
50038
50254
|
url: string;
|
|
50039
|
-
connectionType: "api_key" | "oauth_token" | "oauth_token_bundle" | "connection_string";
|
|
50255
|
+
connectionType: "api_key" | "oauth_token" | "oauth_token_bundle" | "connection_string" | "databricks";
|
|
50040
50256
|
hasManagedConnections: boolean;
|
|
50041
50257
|
allowsUserConnections: boolean;
|
|
50042
50258
|
oAuthConfig: object | null;
|
|
@@ -50234,6 +50450,22 @@ declare const providerCatalog: {
|
|
|
50234
50450
|
};
|
|
50235
50451
|
readonly oAuthConfig: null;
|
|
50236
50452
|
};
|
|
50453
|
+
readonly anthropic: {
|
|
50454
|
+
readonly name: "anthropic";
|
|
50455
|
+
readonly label: "Anthropic";
|
|
50456
|
+
readonly description: "Anthropic's Claude AI models";
|
|
50457
|
+
readonly url: "https://www.anthropic.com";
|
|
50458
|
+
readonly public: true;
|
|
50459
|
+
readonly hasManagedConnections: true;
|
|
50460
|
+
readonly allowsUserConnections: true;
|
|
50461
|
+
readonly connectionType: "api_key";
|
|
50462
|
+
readonly logoUrl: "https://imagedelivery.net/3B3AWuP94-S3Ro5eEac6JA/8f2b7ff3-12a6-4c55-31fd-460b9f461300/icon";
|
|
50463
|
+
readonly background: {
|
|
50464
|
+
readonly light: "#F0EEE6";
|
|
50465
|
+
readonly dark: "#2B2A26";
|
|
50466
|
+
};
|
|
50467
|
+
readonly oAuthConfig: null;
|
|
50468
|
+
};
|
|
50237
50469
|
readonly slack: {
|
|
50238
50470
|
readonly name: "slack";
|
|
50239
50471
|
readonly label: "Slack";
|
|
@@ -50490,11 +50722,27 @@ declare const providerCatalog: {
|
|
|
50490
50722
|
};
|
|
50491
50723
|
readonly oAuthConfig: null;
|
|
50492
50724
|
};
|
|
50725
|
+
readonly databricks: {
|
|
50726
|
+
readonly name: "databricks";
|
|
50727
|
+
readonly label: "Databricks";
|
|
50728
|
+
readonly description: "Query your Databricks SQL warehouse read-only via a service principal.";
|
|
50729
|
+
readonly url: "https://www.databricks.com";
|
|
50730
|
+
readonly public: true;
|
|
50731
|
+
readonly hasManagedConnections: false;
|
|
50732
|
+
readonly allowsUserConnections: true;
|
|
50733
|
+
readonly connectionType: "databricks";
|
|
50734
|
+
readonly logoUrl: "https://imagedelivery.net/3B3AWuP94-S3Ro5eEac6JA/07b73e49-e1fa-445b-865e-2b7dc2641700/icon";
|
|
50735
|
+
readonly background: {
|
|
50736
|
+
readonly light: "#F5E6DC";
|
|
50737
|
+
readonly dark: "#3A1B0B";
|
|
50738
|
+
};
|
|
50739
|
+
readonly oAuthConfig: null;
|
|
50740
|
+
};
|
|
50493
50741
|
};
|
|
50494
50742
|
//#endregion
|
|
50495
50743
|
//#region src/providers/provider-utils.d.ts
|
|
50496
50744
|
declare function getProviderEntry(providerName: ProviderName): {
|
|
50497
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
50745
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
50498
50746
|
name: "pipe0";
|
|
50499
50747
|
label: "pipe0";
|
|
50500
50748
|
description: "A framework for lead and company data enrichment.";
|
|
@@ -50510,7 +50758,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50510
50758
|
};
|
|
50511
50759
|
oAuthConfig: null;
|
|
50512
50760
|
} | {
|
|
50513
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
50761
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
50514
50762
|
name: "findymail";
|
|
50515
50763
|
label: "FindyMail";
|
|
50516
50764
|
description: "Find verified emails.";
|
|
@@ -50526,7 +50774,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50526
50774
|
readonly dark: "#143822";
|
|
50527
50775
|
};
|
|
50528
50776
|
} | {
|
|
50529
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
50777
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
50530
50778
|
name: "hunter";
|
|
50531
50779
|
label: "HunterMail";
|
|
50532
50780
|
description: "Find email addresses and send cold emails";
|
|
@@ -50542,7 +50790,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50542
50790
|
readonly dark: "#3D1F0C";
|
|
50543
50791
|
};
|
|
50544
50792
|
} | {
|
|
50545
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
50793
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
50546
50794
|
name: "zerobounce";
|
|
50547
50795
|
label: "ZeroBounce";
|
|
50548
50796
|
description: "Email validation tools and email list cleaning";
|
|
@@ -50558,7 +50806,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50558
50806
|
};
|
|
50559
50807
|
oAuthConfig: null;
|
|
50560
50808
|
} | {
|
|
50561
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
50809
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
50562
50810
|
name: "googlemaps";
|
|
50563
50811
|
label: "Google Maps";
|
|
50564
50812
|
description: "A map service by Google";
|
|
@@ -50574,7 +50822,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50574
50822
|
};
|
|
50575
50823
|
oAuthConfig: null;
|
|
50576
50824
|
} | {
|
|
50577
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
50825
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
50578
50826
|
name: "leadmagic";
|
|
50579
50827
|
label: "LeadMagic";
|
|
50580
50828
|
description: "Enrichment provider";
|
|
@@ -50590,7 +50838,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50590
50838
|
};
|
|
50591
50839
|
oAuthConfig: null;
|
|
50592
50840
|
} | {
|
|
50593
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
50841
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
50594
50842
|
name: "builtwith";
|
|
50595
50843
|
label: "BuiltWith";
|
|
50596
50844
|
description: "BuiltWith tracks over 2500 eCommerce technologies across over 26 million eCommerce websites.";
|
|
@@ -50606,7 +50854,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50606
50854
|
};
|
|
50607
50855
|
oAuthConfig: null;
|
|
50608
50856
|
} | {
|
|
50609
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
50857
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
50610
50858
|
name: "perplexity";
|
|
50611
50859
|
label: "Perplexity";
|
|
50612
50860
|
description: "AI search company";
|
|
@@ -50622,7 +50870,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50622
50870
|
};
|
|
50623
50871
|
oAuthConfig: null;
|
|
50624
50872
|
} | {
|
|
50625
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
50873
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
50626
50874
|
name: "serper";
|
|
50627
50875
|
label: "Serper";
|
|
50628
50876
|
description: "The World's Fastest & Cheapest Google Search API";
|
|
@@ -50638,7 +50886,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50638
50886
|
};
|
|
50639
50887
|
oAuthConfig: null;
|
|
50640
50888
|
} | {
|
|
50641
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
50889
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
50642
50890
|
name: "icypeas";
|
|
50643
50891
|
label: "Icypeas";
|
|
50644
50892
|
description: "A popular data catalog";
|
|
@@ -50654,7 +50902,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50654
50902
|
};
|
|
50655
50903
|
oAuthConfig: null;
|
|
50656
50904
|
} | {
|
|
50657
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
50905
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
50658
50906
|
name: "prospeo";
|
|
50659
50907
|
label: "Prospeo";
|
|
50660
50908
|
description: "Find anyone’s contact data.";
|
|
@@ -50670,7 +50918,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50670
50918
|
};
|
|
50671
50919
|
oAuthConfig: null;
|
|
50672
50920
|
} | {
|
|
50673
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
50921
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
50674
50922
|
name: "gemini";
|
|
50675
50923
|
label: "Gemini";
|
|
50676
50924
|
description: "Google's AI service";
|
|
@@ -50686,7 +50934,23 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50686
50934
|
};
|
|
50687
50935
|
oAuthConfig: null;
|
|
50688
50936
|
} | {
|
|
50689
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
50937
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
50938
|
+
name: "anthropic";
|
|
50939
|
+
label: "Anthropic";
|
|
50940
|
+
description: "Anthropic's Claude AI models";
|
|
50941
|
+
url: "https://www.anthropic.com";
|
|
50942
|
+
public: true;
|
|
50943
|
+
hasManagedConnections: true;
|
|
50944
|
+
allowsUserConnections: true;
|
|
50945
|
+
connectionType: "api_key";
|
|
50946
|
+
logoUrl: "https://imagedelivery.net/3B3AWuP94-S3Ro5eEac6JA/8f2b7ff3-12a6-4c55-31fd-460b9f461300/icon";
|
|
50947
|
+
background: {
|
|
50948
|
+
readonly light: "#F0EEE6";
|
|
50949
|
+
readonly dark: "#2B2A26";
|
|
50950
|
+
};
|
|
50951
|
+
oAuthConfig: null;
|
|
50952
|
+
} | {
|
|
50953
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
50690
50954
|
name: "slack";
|
|
50691
50955
|
label: "Slack";
|
|
50692
50956
|
description: "A modern business chat application.";
|
|
@@ -50702,7 +50966,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50702
50966
|
};
|
|
50703
50967
|
oAuthConfig: {};
|
|
50704
50968
|
} | {
|
|
50705
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
50969
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
50706
50970
|
name: "companyenrich";
|
|
50707
50971
|
label: "CompanyEnrich";
|
|
50708
50972
|
description: "A company enrichment service.";
|
|
@@ -50718,7 +50982,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50718
50982
|
};
|
|
50719
50983
|
oAuthConfig: {};
|
|
50720
50984
|
} | {
|
|
50721
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
50985
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
50722
50986
|
name: "mixrank";
|
|
50723
50987
|
label: "MixRank";
|
|
50724
50988
|
description: "Ultra-high-frequency technographic and people data for your data teams.";
|
|
@@ -50734,7 +50998,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50734
50998
|
readonly dark: "#3A1D08";
|
|
50735
50999
|
};
|
|
50736
51000
|
} | {
|
|
50737
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
51001
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
50738
51002
|
name: "clado";
|
|
50739
51003
|
label: "Clado";
|
|
50740
51004
|
description: "A data provider deploying 10^5 AI agents to find contact information.";
|
|
@@ -50750,7 +51014,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50750
51014
|
};
|
|
50751
51015
|
oAuthConfig: null;
|
|
50752
51016
|
} | {
|
|
50753
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
51017
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
50754
51018
|
name: "gmail";
|
|
50755
51019
|
label: "Gmail";
|
|
50756
51020
|
description: "Google's email service";
|
|
@@ -50766,7 +51030,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50766
51030
|
};
|
|
50767
51031
|
oAuthConfig: {};
|
|
50768
51032
|
} | {
|
|
50769
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
51033
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
50770
51034
|
name: "resend";
|
|
50771
51035
|
label: "Resend";
|
|
50772
51036
|
description: "An email platform built for developers.";
|
|
@@ -50782,7 +51046,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50782
51046
|
};
|
|
50783
51047
|
oAuthConfig: null;
|
|
50784
51048
|
} | {
|
|
50785
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
51049
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
50786
51050
|
name: "firecrawl";
|
|
50787
51051
|
label: "Firecrawl";
|
|
50788
51052
|
description: "Firecrawl is an API service that takes a URL, crawls it, and converts it into clean markdown. Firecrawl crawls all accessible subpages and gives you clean markdown for each. No sitemap required.";
|
|
@@ -50798,7 +51062,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50798
51062
|
};
|
|
50799
51063
|
oAuthConfig: null;
|
|
50800
51064
|
} | {
|
|
50801
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
51065
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
50802
51066
|
name: "exa";
|
|
50803
51067
|
label: "Exa";
|
|
50804
51068
|
description: "Exa is a search engine built for AI.";
|
|
@@ -50814,7 +51078,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50814
51078
|
};
|
|
50815
51079
|
oAuthConfig: null;
|
|
50816
51080
|
} | {
|
|
50817
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
51081
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
50818
51082
|
name: "openai";
|
|
50819
51083
|
label: "OpenAI";
|
|
50820
51084
|
description: "Foundational AI company based out of San Francisco.";
|
|
@@ -50830,7 +51094,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50830
51094
|
};
|
|
50831
51095
|
oAuthConfig: null;
|
|
50832
51096
|
} | {
|
|
50833
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
51097
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
50834
51098
|
name: "millionverifier";
|
|
50835
51099
|
label: "MillionVerifier";
|
|
50836
51100
|
description: "E-Mail validation service.";
|
|
@@ -50846,7 +51110,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50846
51110
|
};
|
|
50847
51111
|
oAuthConfig: null;
|
|
50848
51112
|
} | {
|
|
50849
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
51113
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
50850
51114
|
name: "logodev";
|
|
50851
51115
|
label: "Logo.dev";
|
|
50852
51116
|
description: "Every company logo, one simple API.";
|
|
@@ -50862,7 +51126,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50862
51126
|
};
|
|
50863
51127
|
oAuthConfig: null;
|
|
50864
51128
|
} | {
|
|
50865
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
51129
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
50866
51130
|
name: "crustdata";
|
|
50867
51131
|
label: "Crustdata";
|
|
50868
51132
|
description: "Real-time company & people data";
|
|
@@ -50878,7 +51142,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50878
51142
|
};
|
|
50879
51143
|
oAuthConfig: null;
|
|
50880
51144
|
} | {
|
|
50881
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
51145
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
50882
51146
|
name: "amplemarket";
|
|
50883
51147
|
label: "Amplemarket";
|
|
50884
51148
|
description: "Sales data platform";
|
|
@@ -50894,7 +51158,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50894
51158
|
};
|
|
50895
51159
|
oAuthConfig: null;
|
|
50896
51160
|
} | {
|
|
50897
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
51161
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
50898
51162
|
name: "parallel";
|
|
50899
51163
|
label: "Parallel";
|
|
50900
51164
|
description: "Agentic web search & research APIs purpose-built for AI agents.";
|
|
@@ -50910,7 +51174,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50910
51174
|
};
|
|
50911
51175
|
oAuthConfig: null;
|
|
50912
51176
|
} | {
|
|
50913
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
51177
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
50914
51178
|
name: "luma";
|
|
50915
51179
|
label: "Luma";
|
|
50916
51180
|
description: "Delightful events, calendars, and ticketing for communities.";
|
|
@@ -50926,7 +51190,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50926
51190
|
};
|
|
50927
51191
|
oAuthConfig: null;
|
|
50928
51192
|
} | {
|
|
50929
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
51193
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
50930
51194
|
name: "postgres";
|
|
50931
51195
|
label: "PostgreSQL";
|
|
50932
51196
|
description: "Connect your own PostgreSQL database and query it read-only.";
|
|
@@ -50941,6 +51205,22 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50941
51205
|
readonly dark: "#0B2A45";
|
|
50942
51206
|
};
|
|
50943
51207
|
oAuthConfig: null;
|
|
51208
|
+
} | {
|
|
51209
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
51210
|
+
name: "databricks";
|
|
51211
|
+
label: "Databricks";
|
|
51212
|
+
description: "Query your Databricks SQL warehouse read-only via a service principal.";
|
|
51213
|
+
url: "https://www.databricks.com";
|
|
51214
|
+
public: true;
|
|
51215
|
+
hasManagedConnections: false;
|
|
51216
|
+
allowsUserConnections: true;
|
|
51217
|
+
connectionType: "databricks";
|
|
51218
|
+
logoUrl: "https://imagedelivery.net/3B3AWuP94-S3Ro5eEac6JA/07b73e49-e1fa-445b-865e-2b7dc2641700/icon";
|
|
51219
|
+
background: {
|
|
51220
|
+
readonly light: "#F5E6DC";
|
|
51221
|
+
readonly dark: "#3A1B0B";
|
|
51222
|
+
};
|
|
51223
|
+
oAuthConfig: null;
|
|
50944
51224
|
};
|
|
50945
51225
|
//#endregion
|
|
50946
51226
|
//#region src/sandbox.d.ts
|
|
@@ -51150,7 +51430,7 @@ declare function configDefaults<T extends Record<string, any> | null | undefined
|
|
|
51150
51430
|
//#endregion
|
|
51151
51431
|
//#region src/utils/connection-id.d.ts
|
|
51152
51432
|
declare function splitConnectionString(connection: string): {
|
|
51153
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
51433
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "anthropic" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | "databricks";
|
|
51154
51434
|
id: string;
|
|
51155
51435
|
};
|
|
51156
51436
|
declare function joinConnectionString(connection: {
|
|
@@ -51506,4 +51786,4 @@ declare const ProfileFieldSchema: z.ZodObject<{
|
|
|
51506
51786
|
}, z.core.$strip>;
|
|
51507
51787
|
type ProfielField = z.infer<typeof ProfileFieldSchema>;
|
|
51508
51788
|
//#endregion
|
|
51509
|
-
export { AI_MODELS, AI_MODEL_CATALOG, type AiModelId, type AnalysisResult, AnyPipeConstructor, AppError, AsyncIncludeExcludeSelectMeta, AsyncMultiSelectMeta, type AutocompleteOption, type AutocompleteSourceKey, BillableOperation, BillableOperationDef, BillableOperations, BillingMode, BooleanMeta, type BuiltWithTechStackTransformedRespoonse as BuiltWithDomainStack, type BuiltWithTechStackTransformedRespoonse, type CatalogEntityFilter, type CatalogFilter, type CatalogPattern, CatalogSchemaRef, CatalogSchemaRefSchema, type CladoPersonMatch, type CladoPersonMatchV2, ConditionOperators, ConditionOperatorsSchema, ConfigField, ConnectorConnection, ConnectorMeta, type ConstantSuggestion, ContextSelectMeta, CursorPaginationMeta, DateRangeMeta, type DedupConfig, type DedupStrategy, type DependencyGraphRelation, DerivedInputFields, EmailValidationStatus, type EnabledIf, type EnabledResult, ExactRangeMeta, ExecutionMode, ExpandedFieldValue, ExpandedFieldValueSchema, ExternalProviderName, FIELD_PLACEHOLDERS, FieldAnnotation, FieldAnnotationSchema, FieldAnnotations, FieldAnnotationsSchema, FieldAnnotationsType, FieldCatalog, type FieldContextArgs, type FieldContextClient, type FieldContextSheetSummary, FieldEntry, FieldGroup, FieldMode, FieldName, FieldNameSchema, type FieldPlaceholderKey, FieldReason, FieldReasonSchema, FieldSchemaType, FieldValue, FieldValueMap, FieldValueSchema, FieldsSelectMeta, FieldsToObjectsConfig, type FormResolvers, FormSection, FormSectionMeta, type FormStore, FormStoreSchema, GeneratedFormInputType, GeneratedInputMeta, GeneratedInputMetaMap, type GetConnectionsArgs, type GetConstantsArgs, type GetSecretsArgs, GroupPathMatch, HIGH_VOLUME_PRICING_MIN_CREDITS, type HighVolumeEligibleOperation, HighVolumeLevel, type HighVolumeTier, type IconKey, IconWidgetKey, type IcypeasCompanyMatch, type IcypeasPersonMatch, IncludeExcludeMeta, IncludeExcludeSelectMeta, IntegerMeta, IntermediateFormSection, JSONExtractSchema, JSONExtraction, JSONExtractionMeta, JSONMeta, JSONMetaSchema, JSONSchemaMeta, JsonFieldType, KeyValueListMeta, LazyResolveContext, type LumaEventGuestMatch, ManagedCredits, MinMaxIntMeta, MultiCreateMeta, MultiSelectMeta, NamedFieldEntry, NoConnector, NoConnectorSchema, NullableBooleanMeta, NumberMeta, OptionalConnector, OptionalConnectorSchema, type OptionsDef, OrderedMultiCreateMeta, type OutputDecl, OutputFieldMeta, PIPE_IDS, PaginationType, PaginationTypeSchema, PersonWorkemailWaterfall1Entry, PersonWorkemailWaterfall1PayloadSchema, PersonWorkemailWaterfall1PipeClass, Pipe, Pipe0Error, PipeBaseConfig, PipeCatalog, PipeCatalogEntry, PipeCategory, PipeCategoryEntry, PipeConfigMapByExpecutionType, PipeConnectionRequirement, PipeDef, PipeEntryWithLatestVersion, type PipeFieldContextDef, PipeId, PipeIdSchema, PipeInputField, PipeModuleExport, PipeOutputField, PipePayload, PipePayloadInput, PipePayloadMap, PipePayloadSchema, PipePayloadSchemaCatalog, PipeRequestPayloadMap, PipeRunIf, PipeRunIfSchema, PipelineValidationError, type PipesEnvironment, PipesEnvironmentSchema, PipesError, PipesErrorSchema, PipesFieldDefinition, PipesFieldDefinitionSchema, PipesFieldDefinitionWithName, PipesFieldDefinitions, PipesFieldDefinitionsSchema, PipesInMemoryResponse, PipesInput, PipesInputSchema, PipesRecord, PipesRequest, PipesRequestConfig, PipesRequestConfigSchema, PipesRequestPayload, PipesRequestSchema, PipesResponse, PipesResponseSchema, PipesRunIfMeta, ProcessedPipePayloadSchema, ProcessedSearchPayloadSchema, ProcessedSearchesPayloadSchema, type ProfielField, PromptMeta, ProviderCatalogEntry, ProviderName, ProviderNameSchema, ProviderRateLimitOperation, ProvidersInputMeta, RECORD_FIELD_FORMATS, RECORD_FIELD_TYPES, RUN_IF_OPERATOR_LABELS, RUN_IF_STATUS_OPERATORS, RUN_IF_VALUE_OPERATORS, RangeMeta, RecordClaimedBy, RecordClaimedBySchema, RecordField, RecordFieldFormat, RecordFieldFormatSchema, RecordFieldSchema, RecordFieldStatus, RecordFieldStatusSchema, RecordFieldType, RecordFieldTypeSchema, RecordId, RecordIdSchema, RecordResolvedBy, RecordResolvedBySchema, RecordSchema, RequestValidationError, RequiredConnector, RequiredConnectorSchema, type Requirement, RequirementSatisfactionResult, type RichTextNode, RunIfStatusOperatorsSchema, RunIfStatusValueSchema, RunIfValueOperatorsSchema, SEARCHES_IDS, SEARCH_IDS, Search, SearchCatalog, SearchCatalogEntry, SearchCatalogTableData, SearchCategory, SearchCategoryEntry, SearchError, SearchErrorSchema, SearchId, SearchIdSchema, SearchMetaEntryWithId, SearchOutputField, SearchPayload, SearchPayloadCatalog, SearchPayloadInput, SearchPayloadMap, SearchPayloadSchema, SearchRequestPayload, SearchRequestPayloadMap, SearchRequestSchema, SearchRequestType, SearchResponse, SearchResponseSchema, SearchResult, SearchResultField, SearchResultFieldSchema, SearchResultSchema, SearchValidationResult, SearchesCatalog, SearchesCatalogEntry, SearchesCatalogTableData, SearchesCostPerResult, SearchesCostPerResultEntry, SearchesError, SearchesErrorSchema, SearchesId, SearchesIdSchema, SearchesMetaEntryWithId, SearchesPayload, SearchesPayloadCatalog, SearchesPayloadInput, SearchesPayloadMap, SearchesPayloadSchema, SearchesRequest, SearchesRequestBaseConfig, SearchesRequestBaseConfigSchema, SearchesRequestPayload, SearchesRequestPayloadMap, SearchesRequestSchema, SearchesResponse, SearchesResponseSchema, SearchesResult, SearchesResultField, SearchesResultFieldSchema, SearchesResultSchema, SearchesSearch, SearchesStatus, SearchesStatusSchema, SearchesValidationResult, type SecretSuggestion, SectionKeys, SectionMapDefinition, SelectMeta, type StoreOption, StoreOptionAutocompleteOption, StoreOptionsDef, SupportedTags, TYPES_TO_FORMATS, TaggedOrderedMultiCreateMeta, TaggedTextMeta, TemplateInputMeta, TextMeta, TextareaMeta, Tier, type TransformIntoResponseConfig, type UserConnection, ValidationContext, type Widget, Widgets, type StoreOptionWidget as WidgetsByKind, StoreOptionWidgetSchema as WidgetsByKindSchema, WidgetsSchema, all, analyzeLiquidTemplate, and, any, assertUniqueBillableOperations, autocomplete, buildAiModelBillableOperations, buildDependencyGraph, buildInputRequirementFromTemplates, catalogInput, cleanObject, cleanUrl, cleanWebsiteUrl, collectConstantReferencesFromTemplates, collectPipeContextSelectFields, collectRequirementFields, collectSearchContextSelectFields, collectSecretReferencesFromTemplates, compilePattern, configDefaults, convertIntermediateFieldsIntoGroups, defaultSectionMap, describeRequirement, entityLogoFavicon, entityLogoProfessionalProfileUrl, extractFormMetadata, field, fieldBehaviorCatalog, fieldCatalog, fieldNameStr, fieldTypeFromValue, fieldsToObject, filterPipeEntries, filterSearchEntries, filterSearchesEntries, getAiModelBillingKey, getAiModelConnectionRequirements, getAiModelProviders, getAllAiModelProviders, getBasePipeName, getDefaultOutputFields, getDefaultPipeProviders, getDefaultSearchOutputFields, getDefaultSearchesOutputFields, getDependentPipeNamesForInputProperty, getDependentPipeNamesForPipe, getDomain, getExpansionState, getFaviconUrlGoogle, getField, getFieldBehavior, getFieldDisplayLabel, getFieldWidgets, getInitialSearchTableData, getInitialSearchesTableData, getInitialTableData, getInputHash, getJsonMetaForFieldDef, getLoweestSearchCreditAmount, getLoweestSearchesCreditAmount, getLowestPipeCreditAmount, getOutputFieldInfoFromDef, getPipeBillableOperationDef, getPipeCategoryEntries, getPipeCategoryEntry, getPipeClass, getPipeConfigHash, getPipeDefaultPayload, getPipeDocsURI, getPipeEntry, getPipeInstances, getPipePayloadFormConfig, getPipePayloadSchema, getPipeVersion, getProviderBillableOperation, getProviderCreditsFromBillableOperations, getProviderEntry, getReadableFieldStatus, getSandboxConnections, getSandboxConnectionsForPipe, getSandboxConnectionsForSearch, getSandboxConnectionsForSearches, getSearchCategoryEntries, getSearchCategoryEntry, getSearchClass, getSearchDefaultPayload, getSearchEntry, getSearchFieldWidgets, getSearchInstance, getSearchPayloadFormConfig, getSearchPayloadSchema, getSearchTableDataAggregates, getSearchVersion, getSearchesClass, getSearchesDefaultPayload, getSearchesEntry, getSearchesFieldWidgets, getSearchesInstances, getSearchesPayloadSchema, getSearchesTableDataAggregates, getSearchesVersion, getStartingCostPerPipesProvider, getStartingCostPerSearchProvider, getStartingCostPerSearchesProvider, getTableDataAggregates, getTier, getUnexpandedValue, ifDefined, inputFields, inputFromRecord, inputFromRecordArr, inputFromRecords, inputGuards, isCatalogField, isEmptyValue, isFieldName, isHighVolumeEligible, isPipeAllowed, isProviderAllowed, isRequirementMet, isRequirementSatisfiedByRecord, isSearchAllowed, isSearchesAllowed, joinConnectionString, listHighVolumeEligibleOperations, listTiers, markRecordFieldAsComplete, markRecordFieldAsFailed, markRecordFieldAsNoResult, markRecordFieldAsPending, markRecordFieldAsProcessing, markRecordFieldAsSkipped, matchesAny, matchesPattern, mergeWidgets, noConnectorInput, optional, optionalConnectorInput, or, outputFields, parseLiquidTemplate, parseOutputTagArgs, parseRecordValueOrError, parseRichText, pipeCatalog, pipeCategoryCatalog, pipeClassCatalog, pipePayloadSchemaCatalog, pipesAsyncIncludeExcludeSelectInput, pipesContextSelectInput, pipesDateRangeInput, pipesFieldsSelectInput, pipesIncludeExcludeInput, pipesIncludeExcludeSelectInput, pipesInputField, pipesIntInput, pipesJsonExtractionInput, pipesJsonSchemaField, pipesKeyValueListInput, pipesLLMSelectInput, pipesMultiCreateInput, pipesMultiSelectInput, pipesNumberInput, pipesOptionalBooleanInput, pipesOrderedMultiCreateInput, pipesOutputField, pipesPayloadRegistry, pipesPromptInput, pipesProviderInput, pipesRangeInput, pipesRunIfInput, pipesSelectInput, pipesSnippetCatalog, pipesTaggedOrderedMultiCreateInput, pipesTaggedTextInput, pipesTemplateInput, pipesTextInput, pipesTextareaInput, placeholder, processInputObjects, providerCatalog, rateLimitRatioFallingProgression, renderLiquidTemplate, renderLiquidTemplateSync, requiredConnectorInput, requirementToInputFields, requirementUnmetMessage, requiresConnection, requiresField, searchCatalog, searchCategoryCatalog, searchClassCatalog, searchPayloadSchemaCatalog, searchSnippetCatalog, searchesAsyncIncludeExcludeSelectInput, searchesAsyncMultiSelectInput, searchesCatalog, searchesClassCatalog, searchesContextSelectInput, searchesDateRangeInput, searchesExactRangeInput, searchesIncludeExcludeInput, searchesIncludeExcludeSelectInput, searchesIntInput, searchesMinMaxIntInput, searchesMultiCreateInput, searchesMultiSelectInput, searchesNumberField, searchesOptionalBooleanInput, searchesOptionalConnectorInput, searchesOptionalNullableBooleanInput, searchesOrderedMultiCreateInput, searchesOutputField, searchesPayloadRegistry, searchesPayloadSchemaCatalog, searchesRangeInput, searchesRequiredConnectorInput, searchesSelectInput, searchesTextInput, searchesTextareaField, sortObjectKeys, sortPipeCatalogByBasePipe, sortSearchCatalogByBaseSearch, sortSearchesCatalogByBaseSearch, splitConnectionString, staticAutocomplete, staticOptions, stringify, testPrint, tierAtOrBelow, transformIntoResponse, validatePipesOrError, validateSearches, validationErrorMessages };
|
|
51789
|
+
export { AI_MODELS, AI_MODEL_CATALOG, type AiModelId, type AnalysisResult, AnyPipeConstructor, AppError, AsyncIncludeExcludeSelectMeta, AsyncMultiSelectMeta, type AutocompleteOption, type AutocompleteSourceKey, BillableOperation, BillableOperationDef, BillableOperations, BillingMode, BooleanMeta, type BuiltWithTechStackTransformedRespoonse as BuiltWithDomainStack, type BuiltWithTechStackTransformedRespoonse, type CatalogEntityFilter, type CatalogFilter, type CatalogPattern, CatalogSchemaRef, CatalogSchemaRefSchema, type CladoPersonMatch, type CladoPersonMatchV2, ConditionOperators, ConditionOperatorsSchema, ConfigField, ConnectorConnection, ConnectorMeta, type ConstantSuggestion, ContextSelectMeta, CursorPaginationMeta, DateRangeMeta, type DedupConfig, type DedupStrategy, type DependencyGraphRelation, DerivedInputFields, EmailValidationStatus, type EnabledIf, type EnabledResult, ExactRangeMeta, ExecutionMode, ExpandedFieldValue, ExpandedFieldValueSchema, ExternalProviderName, FIELD_PLACEHOLDERS, FieldAnnotation, FieldAnnotationSchema, FieldAnnotations, FieldAnnotationsSchema, FieldAnnotationsType, FieldCatalog, type FieldContextArgs, type FieldContextClient, type FieldContextSheetSummary, FieldEntry, FieldGroup, FieldMode, FieldName, FieldNameSchema, type FieldPlaceholderKey, FieldReason, FieldReasonSchema, FieldSchemaType, FieldValue, FieldValueMap, FieldValueSchema, FieldsSelectMeta, FieldsToObjectsConfig, type FormResolvers, FormSection, FormSectionMeta, type FormStore, FormStoreSchema, GeneratedFormInputType, GeneratedInputMeta, GeneratedInputMetaMap, type GetConnectionsArgs, type GetConstantsArgs, type GetSecretsArgs, GroupPathMatch, HIGH_VOLUME_PRICING_MIN_CREDITS, type HighVolumeEligibleOperation, HighVolumeLevel, type HighVolumeTier, type IconKey, IconWidgetKey, type IcypeasCompanyMatch, type IcypeasPersonMatch, IncludeExcludeMeta, IncludeExcludeSelectMeta, IntegerMeta, IntermediateFormSection, JSONExtractSchema, JSONExtraction, JSONExtractionMeta, JSONMeta, JSONMetaSchema, JSONSchemaMeta, JsonFieldType, KeyValueListMeta, LazyResolveContext, type LumaEventGuestMatch, ManagedCredits, MinMaxIntMeta, MultiCreateMeta, MultiSelectMeta, NamedFieldEntry, NoConnector, NoConnectorSchema, NullableBooleanMeta, NumberMeta, OptionalConnector, OptionalConnectorSchema, type OptionsDef, OrderedMultiCreateMeta, type OutputDecl, OutputFieldMeta, PIPE_IDS, PaginationType, PaginationTypeSchema, PersonWorkemailWaterfall1Entry, PersonWorkemailWaterfall1PayloadSchema, PersonWorkemailWaterfall1PipeClass, Pipe, Pipe0Error, PipeBaseConfig, PipeCatalog, PipeCatalogEntry, PipeCategory, PipeCategoryEntry, PipeConfigMapByExpecutionType, PipeConnectionRequirement, PipeDef, PipeEntryWithLatestVersion, type PipeFieldContextDef, PipeId, PipeIdSchema, PipeInputField, PipeModuleExport, PipeOutputField, PipePayload, PipePayloadInput, PipePayloadMap, PipePayloadSchema, PipePayloadSchemaCatalog, PipeRequestPayloadMap, PipeRunIf, PipeRunIfSchema, PipelineValidationError, type PipesEnvironment, PipesEnvironmentSchema, PipesError, PipesErrorSchema, PipesFieldDefinition, PipesFieldDefinitionSchema, PipesFieldDefinitionWithName, PipesFieldDefinitions, PipesFieldDefinitionsSchema, PipesInMemoryResponse, PipesInput, PipesInputSchema, PipesRecord, PipesRequest, PipesRequestConfig, PipesRequestConfigSchema, PipesRequestPayload, PipesRequestSchema, PipesResponse, PipesResponseSchema, PipesRunIfMeta, ProcessedPipePayloadSchema, ProcessedSearchPayloadSchema, ProcessedSearchesPayloadSchema, type ProfielField, PromptMeta, ProviderCatalogEntry, ProviderName, ProviderNameSchema, ProviderRateLimitOperation, ProvidersInputMeta, RECORD_FIELD_FORMATS, RECORD_FIELD_TYPES, RUN_IF_OPERATOR_LABELS, RUN_IF_STATUS_OPERATORS, RUN_IF_VALUE_OPERATORS, RangeMeta, RecordClaimedBy, RecordClaimedBySchema, RecordField, RecordFieldFormat, RecordFieldFormatSchema, RecordFieldSchema, RecordFieldStatus, RecordFieldStatusSchema, RecordFieldType, RecordFieldTypeSchema, RecordId, RecordIdSchema, RecordResolvedBy, RecordResolvedBySchema, RecordSchema, RequestValidationError, RequiredConnector, RequiredConnectorSchema, type Requirement, RequirementSatisfactionResult, ResultColumn, type RichTextNode, RunIfStatusOperatorsSchema, RunIfStatusValueSchema, RunIfValueOperatorsSchema, SEARCHES_IDS, SEARCH_IDS, Search, SearchCatalog, SearchCatalogEntry, SearchCatalogTableData, SearchCategory, SearchCategoryEntry, SearchError, SearchErrorSchema, SearchId, SearchIdSchema, SearchMetaEntryWithId, SearchOutputField, SearchPayload, SearchPayloadCatalog, SearchPayloadInput, SearchPayloadMap, SearchPayloadSchema, SearchRequestPayload, SearchRequestPayloadMap, SearchRequestSchema, SearchRequestType, SearchResponse, SearchResponseSchema, SearchResult, SearchResultField, SearchResultFieldSchema, SearchResultSchema, SearchValidationResult, SearchesCatalog, SearchesCatalogEntry, SearchesCatalogTableData, SearchesCostPerResult, SearchesCostPerResultEntry, SearchesError, SearchesErrorSchema, SearchesId, SearchesIdSchema, SearchesMetaEntryWithId, SearchesPayload, SearchesPayloadCatalog, SearchesPayloadInput, SearchesPayloadMap, SearchesPayloadSchema, SearchesRequest, SearchesRequestBaseConfig, SearchesRequestBaseConfigSchema, SearchesRequestPayload, SearchesRequestPayloadMap, SearchesRequestSchema, SearchesResponse, SearchesResponseSchema, SearchesResult, SearchesResultField, SearchesResultFieldSchema, SearchesResultSchema, SearchesSearch, SearchesStatus, SearchesStatusSchema, SearchesValidationResult, type SecretSuggestion, SectionKeys, SectionMapDefinition, SelectMeta, type StoreOption, StoreOptionAutocompleteOption, StoreOptionsDef, SupportedTags, TYPES_TO_FORMATS, TaggedOrderedMultiCreateMeta, TaggedTextMeta, TemplateInputMeta, TextMeta, TextareaMeta, Tier, type TransformIntoResponseConfig, type UserConnection, ValidationContext, type Widget, Widgets, type StoreOptionWidget as WidgetsByKind, StoreOptionWidgetSchema as WidgetsByKindSchema, WidgetsSchema, all, analyzeLiquidTemplate, and, any, assertUniqueBillableOperations, autocomplete, buildAiModelBillableOperations, buildDependencyGraph, buildInputRequirementFromTemplates, buildResultColumns, catalogInput, cleanObject, cleanUrl, cleanWebsiteUrl, collectConstantReferencesFromTemplates, collectPipeContextSelectFields, collectRequirementFields, collectSearchContextSelectFields, collectSecretReferencesFromTemplates, compilePattern, configDefaults, convertIntermediateFieldsIntoGroups, dedupeColumnNames, defaultSectionMap, describeRequirement, entityLogoFavicon, entityLogoProfessionalProfileUrl, extractFormMetadata, field, fieldBehaviorCatalog, fieldCatalog, fieldNameStr, fieldTypeFromValue, fieldsToObject, filterPipeEntries, filterSearchEntries, filterSearchesEntries, getAiModelBillingKey, getAiModelConnectionRequirements, getAiModelProviders, getAllAiModelProviders, getBasePipeName, getDefaultOutputFields, getDefaultPipeProviders, getDefaultSearchOutputFields, getDefaultSearchesOutputFields, getDependentPipeNamesForInputProperty, getDependentPipeNamesForPipe, getDomain, getExpansionState, getFaviconUrlGoogle, getField, getFieldBehavior, getFieldDisplayLabel, getFieldWidgets, getInitialSearchTableData, getInitialSearchesTableData, getInitialTableData, getInputHash, getJsonMetaForFieldDef, getLoweestSearchCreditAmount, getLoweestSearchesCreditAmount, getLowestPipeCreditAmount, getOutputFieldInfoFromDef, getPipeBillableOperationDef, getPipeCategoryEntries, getPipeCategoryEntry, getPipeClass, getPipeConfigHash, getPipeDefaultPayload, getPipeDocsURI, getPipeEntry, getPipeInstances, getPipePayloadFormConfig, getPipePayloadSchema, getPipeVersion, getProviderBillableOperation, getProviderCreditsFromBillableOperations, getProviderEntry, getReadableFieldStatus, getSandboxConnections, getSandboxConnectionsForPipe, getSandboxConnectionsForSearch, getSandboxConnectionsForSearches, getSearchCategoryEntries, getSearchCategoryEntry, getSearchClass, getSearchDefaultPayload, getSearchEntry, getSearchFieldWidgets, getSearchInstance, getSearchPayloadFormConfig, getSearchPayloadSchema, getSearchTableDataAggregates, getSearchVersion, getSearchesClass, getSearchesDefaultPayload, getSearchesEntry, getSearchesFieldWidgets, getSearchesInstances, getSearchesPayloadSchema, getSearchesTableDataAggregates, getSearchesVersion, getStartingCostPerPipesProvider, getStartingCostPerSearchProvider, getStartingCostPerSearchesProvider, getTableDataAggregates, getTier, getUnexpandedValue, ifDefined, inputFields, inputFromRecord, inputFromRecordArr, inputFromRecords, inputGuards, isCatalogField, isEmptyValue, isFieldName, isHighVolumeEligible, isPipeAllowed, isProviderAllowed, isRequirementMet, isRequirementSatisfiedByRecord, isSearchAllowed, isSearchesAllowed, joinConnectionString, listHighVolumeEligibleOperations, listTiers, markRecordFieldAsComplete, markRecordFieldAsFailed, markRecordFieldAsNoResult, markRecordFieldAsPending, markRecordFieldAsProcessing, markRecordFieldAsSkipped, matchesAny, matchesPattern, mergeWidgets, noConnectorInput, normalizeColumnName, optional, optionalConnectorInput, or, outputFields, parseLiquidTemplate, parseOutputTagArgs, parseRecordValueOrError, parseRichText, pipeCatalog, pipeCategoryCatalog, pipeClassCatalog, pipePayloadSchemaCatalog, pipesAsyncIncludeExcludeSelectInput, pipesContextSelectInput, pipesDateRangeInput, pipesFieldsSelectInput, pipesIncludeExcludeInput, pipesIncludeExcludeSelectInput, pipesInputField, pipesIntInput, pipesJsonExtractionInput, pipesJsonSchemaField, pipesKeyValueListInput, pipesLLMSelectInput, pipesMultiCreateInput, pipesMultiSelectInput, pipesNumberInput, pipesOptionalBooleanInput, pipesOrderedMultiCreateInput, pipesOutputField, pipesPayloadRegistry, pipesPromptInput, pipesProviderInput, pipesRangeInput, pipesRunIfInput, pipesSelectInput, pipesSnippetCatalog, pipesTaggedOrderedMultiCreateInput, pipesTaggedTextInput, pipesTemplateInput, pipesTextInput, pipesTextareaInput, placeholder, processInputObjects, providerCatalog, rateLimitRatioFallingProgression, renderLiquidTemplate, renderLiquidTemplateSync, requiredConnectorInput, requirementToInputFields, requirementUnmetMessage, requiresConnection, requiresField, searchCatalog, searchCategoryCatalog, searchClassCatalog, searchPayloadSchemaCatalog, searchSnippetCatalog, searchesAsyncIncludeExcludeSelectInput, searchesAsyncMultiSelectInput, searchesCatalog, searchesClassCatalog, searchesContextSelectInput, searchesDateRangeInput, searchesExactRangeInput, searchesIncludeExcludeInput, searchesIncludeExcludeSelectInput, searchesIntInput, searchesMinMaxIntInput, searchesMultiCreateInput, searchesMultiSelectInput, searchesNumberField, searchesOptionalBooleanInput, searchesOptionalConnectorInput, searchesOptionalNullableBooleanInput, searchesOrderedMultiCreateInput, searchesOutputField, searchesPayloadRegistry, searchesPayloadSchemaCatalog, searchesRangeInput, searchesRequiredConnectorInput, searchesSelectInput, searchesTextInput, searchesTextareaField, sortObjectKeys, sortPipeCatalogByBasePipe, sortSearchCatalogByBaseSearch, sortSearchesCatalogByBaseSearch, splitConnectionString, staticAutocomplete, staticOptions, stringify, testPrint, tierAtOrBelow, transformIntoResponse, validatePipesOrError, validateSearches, validationErrorMessages };
|