@pipe0/base 0.4.2 → 0.4.4
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 +406 -76
- package/dist/index.mjs +10 -10
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -373,6 +373,8 @@ declare const StoreOptionWidgetSchema: z.ZodObject<{
|
|
|
373
373
|
amplemarket: "amplemarket";
|
|
374
374
|
parallel: "parallel";
|
|
375
375
|
luma: "luma";
|
|
376
|
+
postgres: "postgres";
|
|
377
|
+
databricks: "databricks";
|
|
376
378
|
}>;
|
|
377
379
|
}, z.core.$strip>>;
|
|
378
380
|
emoji: z.ZodOptional<z.ZodObject<{
|
|
@@ -455,6 +457,50 @@ declare function autocomplete(sourceKey: AutocompleteSourceKey, options?: {
|
|
|
455
457
|
limit?: number;
|
|
456
458
|
}): StoreOptionsDef;
|
|
457
459
|
//#endregion
|
|
460
|
+
//#region src/fields/column-names.d.ts
|
|
461
|
+
/**
|
|
462
|
+
* Canonical column-name → field-id normalization for data ingested from external
|
|
463
|
+
* sources with arbitrary column headers (DB-query results, CSV imports, …).
|
|
464
|
+
*
|
|
465
|
+
* pipe0 field names are used as Liquid variables (`{{ name }}`) and as sheet
|
|
466
|
+
* column ids, so they must be identifier-safe. This is the single source of
|
|
467
|
+
* truth — both the DB-query search runner and the CSV importer use it, so a
|
|
468
|
+
* header like `"Saudi Arabia"` or `"'Asir"` normalizes identically everywhere.
|
|
469
|
+
* (It is deliberately NOT applied inside the general pipe/sheet transform:
|
|
470
|
+
* existing sheet field names may legitimately be non-slug; normalization belongs
|
|
471
|
+
* only at the ingestion boundary.)
|
|
472
|
+
*
|
|
473
|
+
* Case is PRESERVED so camelCase (`firstName`) and snake_case (`first_name`)
|
|
474
|
+
* column names survive intact — we only strip what isn't identifier-safe.
|
|
475
|
+
*/
|
|
476
|
+
/**
|
|
477
|
+
* Normalize an arbitrary column name into a Liquid-referenceable identifier:
|
|
478
|
+
* strip diacritics, collapse every run of non-alphanumerics to a single `_`
|
|
479
|
+
* (spaces, apostrophes, hyphens, … — hyphens break Liquid `{{ }}`), and trim
|
|
480
|
+
* leading/trailing `_`. Case is preserved. A digit-leading result is prefixed
|
|
481
|
+
* with `_` (Liquid variable names can't start with a digit — `{{ 2024 }}` parses
|
|
482
|
+
* as the number literal, not the field). An empty result becomes `column`.
|
|
483
|
+
* Output always satisfies `^_?[A-Za-z0-9]+(?:_[A-Za-z0-9]+)*$`.
|
|
484
|
+
*/
|
|
485
|
+
declare function normalizeColumnName(name: string): string;
|
|
486
|
+
/**
|
|
487
|
+
* Make a list of names unique by suffixing collisions with `_2`, `_3`, … in
|
|
488
|
+
* order. Preserves the first occurrence as-is.
|
|
489
|
+
*/
|
|
490
|
+
declare function dedupeColumnNames(names: string[]): string[];
|
|
491
|
+
interface ResultColumn {
|
|
492
|
+
/** Normalized, identifier-safe, de-duplicated name (the field id / row key). */
|
|
493
|
+
name: string;
|
|
494
|
+
/** Original column name, kept for display. */
|
|
495
|
+
label: string;
|
|
496
|
+
}
|
|
497
|
+
/**
|
|
498
|
+
* Map original column names (in order) to normalized + de-duped `{ name, label }`
|
|
499
|
+
* pairs. `name` is the field id callers should key rows by; `label` is the
|
|
500
|
+
* original name for display.
|
|
501
|
+
*/
|
|
502
|
+
declare function buildResultColumns(originalNames: string[]): ResultColumn[];
|
|
503
|
+
//#endregion
|
|
458
504
|
//#region src/pipes/utils/schemas-primitives.d.ts
|
|
459
505
|
declare const PipesEnvironmentSchema: z.ZodEnum<{
|
|
460
506
|
production: "production";
|
|
@@ -621,6 +667,8 @@ declare const WidgetsSchema: z.ZodObject<{
|
|
|
621
667
|
amplemarket: "amplemarket";
|
|
622
668
|
parallel: "parallel";
|
|
623
669
|
luma: "luma";
|
|
670
|
+
postgres: "postgres";
|
|
671
|
+
databricks: "databricks";
|
|
624
672
|
}>;
|
|
625
673
|
}, z.core.$strip>>;
|
|
626
674
|
available_providers: z.ZodArray<z.ZodEnum<{
|
|
@@ -651,6 +699,8 @@ declare const WidgetsSchema: z.ZodObject<{
|
|
|
651
699
|
amplemarket: "amplemarket";
|
|
652
700
|
parallel: "parallel";
|
|
653
701
|
luma: "luma";
|
|
702
|
+
postgres: "postgres";
|
|
703
|
+
databricks: "databricks";
|
|
654
704
|
}>>;
|
|
655
705
|
successful_provider: z.ZodOptional<z.ZodEnum<{
|
|
656
706
|
pipe0: "pipe0";
|
|
@@ -680,6 +730,8 @@ declare const WidgetsSchema: z.ZodObject<{
|
|
|
680
730
|
amplemarket: "amplemarket";
|
|
681
731
|
parallel: "parallel";
|
|
682
732
|
luma: "luma";
|
|
733
|
+
postgres: "postgres";
|
|
734
|
+
databricks: "databricks";
|
|
683
735
|
}>>;
|
|
684
736
|
}, z.core.$strip>>>;
|
|
685
737
|
icon: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -1252,6 +1304,8 @@ declare const RecordFieldSchema: z.ZodObject<{
|
|
|
1252
1304
|
amplemarket: "amplemarket";
|
|
1253
1305
|
parallel: "parallel";
|
|
1254
1306
|
luma: "luma";
|
|
1307
|
+
postgres: "postgres";
|
|
1308
|
+
databricks: "databricks";
|
|
1255
1309
|
}>;
|
|
1256
1310
|
}, z.core.$strip>>;
|
|
1257
1311
|
available_providers: z.ZodArray<z.ZodEnum<{
|
|
@@ -1282,6 +1336,8 @@ declare const RecordFieldSchema: z.ZodObject<{
|
|
|
1282
1336
|
amplemarket: "amplemarket";
|
|
1283
1337
|
parallel: "parallel";
|
|
1284
1338
|
luma: "luma";
|
|
1339
|
+
postgres: "postgres";
|
|
1340
|
+
databricks: "databricks";
|
|
1285
1341
|
}>>;
|
|
1286
1342
|
successful_provider: z.ZodOptional<z.ZodEnum<{
|
|
1287
1343
|
pipe0: "pipe0";
|
|
@@ -1311,6 +1367,8 @@ declare const RecordFieldSchema: z.ZodObject<{
|
|
|
1311
1367
|
amplemarket: "amplemarket";
|
|
1312
1368
|
parallel: "parallel";
|
|
1313
1369
|
luma: "luma";
|
|
1370
|
+
postgres: "postgres";
|
|
1371
|
+
databricks: "databricks";
|
|
1314
1372
|
}>>;
|
|
1315
1373
|
}, z.core.$strip>>>;
|
|
1316
1374
|
icon: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -1618,6 +1676,8 @@ declare const ExpandedFieldValueSchema: z.ZodObject<{
|
|
|
1618
1676
|
amplemarket: "amplemarket";
|
|
1619
1677
|
parallel: "parallel";
|
|
1620
1678
|
luma: "luma";
|
|
1679
|
+
postgres: "postgres";
|
|
1680
|
+
databricks: "databricks";
|
|
1621
1681
|
}>;
|
|
1622
1682
|
}, z.core.$strip>>;
|
|
1623
1683
|
available_providers: z.ZodArray<z.ZodEnum<{
|
|
@@ -1648,6 +1708,8 @@ declare const ExpandedFieldValueSchema: z.ZodObject<{
|
|
|
1648
1708
|
amplemarket: "amplemarket";
|
|
1649
1709
|
parallel: "parallel";
|
|
1650
1710
|
luma: "luma";
|
|
1711
|
+
postgres: "postgres";
|
|
1712
|
+
databricks: "databricks";
|
|
1651
1713
|
}>>;
|
|
1652
1714
|
successful_provider: z.ZodOptional<z.ZodEnum<{
|
|
1653
1715
|
pipe0: "pipe0";
|
|
@@ -1677,6 +1739,8 @@ declare const ExpandedFieldValueSchema: z.ZodObject<{
|
|
|
1677
1739
|
amplemarket: "amplemarket";
|
|
1678
1740
|
parallel: "parallel";
|
|
1679
1741
|
luma: "luma";
|
|
1742
|
+
postgres: "postgres";
|
|
1743
|
+
databricks: "databricks";
|
|
1680
1744
|
}>>;
|
|
1681
1745
|
}, z.core.$strip>>>;
|
|
1682
1746
|
icon: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -1964,6 +2028,8 @@ declare const PipesInputSchema: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.
|
|
|
1964
2028
|
amplemarket: "amplemarket";
|
|
1965
2029
|
parallel: "parallel";
|
|
1966
2030
|
luma: "luma";
|
|
2031
|
+
postgres: "postgres";
|
|
2032
|
+
databricks: "databricks";
|
|
1967
2033
|
}>;
|
|
1968
2034
|
}, z.core.$strip>>;
|
|
1969
2035
|
available_providers: z.ZodArray<z.ZodEnum<{
|
|
@@ -1994,6 +2060,8 @@ declare const PipesInputSchema: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.
|
|
|
1994
2060
|
amplemarket: "amplemarket";
|
|
1995
2061
|
parallel: "parallel";
|
|
1996
2062
|
luma: "luma";
|
|
2063
|
+
postgres: "postgres";
|
|
2064
|
+
databricks: "databricks";
|
|
1997
2065
|
}>>;
|
|
1998
2066
|
successful_provider: z.ZodOptional<z.ZodEnum<{
|
|
1999
2067
|
pipe0: "pipe0";
|
|
@@ -2023,6 +2091,8 @@ declare const PipesInputSchema: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.
|
|
|
2023
2091
|
amplemarket: "amplemarket";
|
|
2024
2092
|
parallel: "parallel";
|
|
2025
2093
|
luma: "luma";
|
|
2094
|
+
postgres: "postgres";
|
|
2095
|
+
databricks: "databricks";
|
|
2026
2096
|
}>>;
|
|
2027
2097
|
}, z.core.$strip>>>;
|
|
2028
2098
|
icon: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -2292,6 +2362,8 @@ declare const RecordSchema: z.ZodObject<{
|
|
|
2292
2362
|
amplemarket: "amplemarket";
|
|
2293
2363
|
parallel: "parallel";
|
|
2294
2364
|
luma: "luma";
|
|
2365
|
+
postgres: "postgres";
|
|
2366
|
+
databricks: "databricks";
|
|
2295
2367
|
}>;
|
|
2296
2368
|
}, z.core.$strip>>;
|
|
2297
2369
|
available_providers: z.ZodArray<z.ZodEnum<{
|
|
@@ -2322,6 +2394,8 @@ declare const RecordSchema: z.ZodObject<{
|
|
|
2322
2394
|
amplemarket: "amplemarket";
|
|
2323
2395
|
parallel: "parallel";
|
|
2324
2396
|
luma: "luma";
|
|
2397
|
+
postgres: "postgres";
|
|
2398
|
+
databricks: "databricks";
|
|
2325
2399
|
}>>;
|
|
2326
2400
|
successful_provider: z.ZodOptional<z.ZodEnum<{
|
|
2327
2401
|
pipe0: "pipe0";
|
|
@@ -2351,6 +2425,8 @@ declare const RecordSchema: z.ZodObject<{
|
|
|
2351
2425
|
amplemarket: "amplemarket";
|
|
2352
2426
|
parallel: "parallel";
|
|
2353
2427
|
luma: "luma";
|
|
2428
|
+
postgres: "postgres";
|
|
2429
|
+
databricks: "databricks";
|
|
2354
2430
|
}>>;
|
|
2355
2431
|
}, z.core.$strip>>>;
|
|
2356
2432
|
icon: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -2946,11 +3022,13 @@ declare const ProviderNameSchema: z.ZodEnum<{
|
|
|
2946
3022
|
amplemarket: "amplemarket";
|
|
2947
3023
|
parallel: "parallel";
|
|
2948
3024
|
luma: "luma";
|
|
3025
|
+
postgres: "postgres";
|
|
3026
|
+
databricks: "databricks";
|
|
2949
3027
|
}>;
|
|
2950
|
-
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";
|
|
3028
|
+
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" | "databricks_query";
|
|
2951
3029
|
type ProviderName = z.infer<typeof ProviderNameSchema>;
|
|
2952
3030
|
type ExternalProviderName = Exclude<ProviderName, "pipe0">;
|
|
2953
|
-
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" | "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";
|
|
3031
|
+
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" | "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";
|
|
2954
3032
|
//#endregion
|
|
2955
3033
|
//#region src/fields/field-catalog.d.ts
|
|
2956
3034
|
type FieldEntry = {
|
|
@@ -12858,6 +12936,8 @@ declare const StoreOptionSchema: z.ZodObject<{
|
|
|
12858
12936
|
amplemarket: "amplemarket";
|
|
12859
12937
|
parallel: "parallel";
|
|
12860
12938
|
luma: "luma";
|
|
12939
|
+
postgres: "postgres";
|
|
12940
|
+
databricks: "databricks";
|
|
12861
12941
|
}>;
|
|
12862
12942
|
}, z.core.$strip>>;
|
|
12863
12943
|
emoji: z.ZodOptional<z.ZodObject<{
|
|
@@ -12959,6 +13039,8 @@ declare const FormStoreSchema: z.ZodObject<{
|
|
|
12959
13039
|
amplemarket: "amplemarket";
|
|
12960
13040
|
parallel: "parallel";
|
|
12961
13041
|
luma: "luma";
|
|
13042
|
+
postgres: "postgres";
|
|
13043
|
+
databricks: "databricks";
|
|
12962
13044
|
}>;
|
|
12963
13045
|
}, z.core.$strip>>;
|
|
12964
13046
|
emoji: z.ZodOptional<z.ZodObject<{
|
|
@@ -13216,7 +13298,7 @@ interface FormResolvers {
|
|
|
13216
13298
|
}
|
|
13217
13299
|
//#endregion
|
|
13218
13300
|
//#region src/search/schemas.d.ts
|
|
13219
|
-
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"];
|
|
13301
|
+
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"];
|
|
13220
13302
|
declare const SearchIdSchema: z.ZodEnum<{
|
|
13221
13303
|
"companies:profiles:crustdata@1": "companies:profiles:crustdata@1";
|
|
13222
13304
|
"companies:profiles:crustdata@2": "companies:profiles:crustdata@2";
|
|
@@ -13230,6 +13312,8 @@ declare const SearchIdSchema: z.ZodEnum<{
|
|
|
13230
13312
|
"people:entitysearch:parallel@1": "people:entitysearch:parallel@1";
|
|
13231
13313
|
"people:eventguests:luma@1": "people:eventguests:luma@1";
|
|
13232
13314
|
"sheet:rows@1": "sheet:rows@1";
|
|
13315
|
+
"query:postgres@1": "query:postgres@1";
|
|
13316
|
+
"query:databricks@1": "query:databricks@1";
|
|
13233
13317
|
}>;
|
|
13234
13318
|
type SearchId = z.infer<typeof SearchIdSchema>;
|
|
13235
13319
|
//#endregion
|
|
@@ -14628,6 +14712,40 @@ declare const searchPayloadSchemaCatalog: {
|
|
|
14628
14712
|
include_metadata: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
14629
14713
|
}, z$1.core.$strip>;
|
|
14630
14714
|
}, z$1.core.$strip>;
|
|
14715
|
+
"query:postgres@1": z$1.ZodObject<{
|
|
14716
|
+
search_id: z$1.ZodLiteral<"query:postgres@1">;
|
|
14717
|
+
connector: z$1.ZodObject<{
|
|
14718
|
+
strategy: z$1.ZodDefault<z$1.ZodEnum<{
|
|
14719
|
+
first: "first";
|
|
14720
|
+
}>>;
|
|
14721
|
+
connections: z$1.ZodArray<z$1.ZodObject<{
|
|
14722
|
+
type: z$1.ZodLiteral<"vault">;
|
|
14723
|
+
connection: z$1.ZodString;
|
|
14724
|
+
}, z$1.core.$strip>>;
|
|
14725
|
+
}, z$1.core.$strip>;
|
|
14726
|
+
config: z$1.ZodObject<{
|
|
14727
|
+
query: z$1.ZodString;
|
|
14728
|
+
limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
14729
|
+
page_number: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
14730
|
+
}, z$1.core.$strip>;
|
|
14731
|
+
}, z$1.core.$strip>;
|
|
14732
|
+
"query:databricks@1": z$1.ZodObject<{
|
|
14733
|
+
search_id: z$1.ZodLiteral<"query:databricks@1">;
|
|
14734
|
+
connector: z$1.ZodObject<{
|
|
14735
|
+
strategy: z$1.ZodDefault<z$1.ZodEnum<{
|
|
14736
|
+
first: "first";
|
|
14737
|
+
}>>;
|
|
14738
|
+
connections: z$1.ZodArray<z$1.ZodObject<{
|
|
14739
|
+
type: z$1.ZodLiteral<"vault">;
|
|
14740
|
+
connection: z$1.ZodString;
|
|
14741
|
+
}, z$1.core.$strip>>;
|
|
14742
|
+
}, z$1.core.$strip>;
|
|
14743
|
+
config: z$1.ZodObject<{
|
|
14744
|
+
query: z$1.ZodString;
|
|
14745
|
+
limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
14746
|
+
page_number: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
14747
|
+
}, z$1.core.$strip>;
|
|
14748
|
+
}, z$1.core.$strip>;
|
|
14631
14749
|
};
|
|
14632
14750
|
declare const searchCatalog: Record<SearchId, SearchDef<any>>;
|
|
14633
14751
|
type SearchCatalog = typeof searchCatalog;
|
|
@@ -15948,6 +16066,38 @@ declare const SearchRequestSchema: z$1.ZodObject<{
|
|
|
15948
16066
|
cursor: z$1.ZodCoercedString<unknown> | z$1.ZodNullable<z$1.ZodCoercedString<unknown>>;
|
|
15949
16067
|
include_metadata: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
15950
16068
|
}, z$1.core.$strip>;
|
|
16069
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
16070
|
+
search_id: z$1.ZodLiteral<"query:postgres@1">;
|
|
16071
|
+
connector: z$1.ZodObject<{
|
|
16072
|
+
strategy: z$1.ZodDefault<z$1.ZodEnum<{
|
|
16073
|
+
first: "first";
|
|
16074
|
+
}>>;
|
|
16075
|
+
connections: z$1.ZodArray<z$1.ZodObject<{
|
|
16076
|
+
type: z$1.ZodLiteral<"vault">;
|
|
16077
|
+
connection: z$1.ZodString;
|
|
16078
|
+
}, z$1.core.$strip>>;
|
|
16079
|
+
}, z$1.core.$strip>;
|
|
16080
|
+
config: z$1.ZodObject<{
|
|
16081
|
+
query: z$1.ZodString;
|
|
16082
|
+
limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
16083
|
+
page_number: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
16084
|
+
}, z$1.core.$strip>;
|
|
16085
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
16086
|
+
search_id: z$1.ZodLiteral<"query:databricks@1">;
|
|
16087
|
+
connector: z$1.ZodObject<{
|
|
16088
|
+
strategy: z$1.ZodDefault<z$1.ZodEnum<{
|
|
16089
|
+
first: "first";
|
|
16090
|
+
}>>;
|
|
16091
|
+
connections: z$1.ZodArray<z$1.ZodObject<{
|
|
16092
|
+
type: z$1.ZodLiteral<"vault">;
|
|
16093
|
+
connection: z$1.ZodString;
|
|
16094
|
+
}, z$1.core.$strip>>;
|
|
16095
|
+
}, z$1.core.$strip>;
|
|
16096
|
+
config: z$1.ZodObject<{
|
|
16097
|
+
query: z$1.ZodString;
|
|
16098
|
+
limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
16099
|
+
page_number: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
16100
|
+
}, z$1.core.$strip>;
|
|
15951
16101
|
}, z$1.core.$strip>], string>;
|
|
15952
16102
|
}, z$1.core.$strip>;
|
|
15953
16103
|
declare const SearchErrorSchema: z$1.ZodObject<{
|
|
@@ -16125,6 +16275,8 @@ declare const SearchResultFieldSchema: z$1.ZodObject<{
|
|
|
16125
16275
|
amplemarket: "amplemarket";
|
|
16126
16276
|
parallel: "parallel";
|
|
16127
16277
|
luma: "luma";
|
|
16278
|
+
postgres: "postgres";
|
|
16279
|
+
databricks: "databricks";
|
|
16128
16280
|
}>;
|
|
16129
16281
|
}, z$1.core.$strip>>;
|
|
16130
16282
|
available_providers: z$1.ZodArray<z$1.ZodEnum<{
|
|
@@ -16155,6 +16307,8 @@ declare const SearchResultFieldSchema: z$1.ZodObject<{
|
|
|
16155
16307
|
amplemarket: "amplemarket";
|
|
16156
16308
|
parallel: "parallel";
|
|
16157
16309
|
luma: "luma";
|
|
16310
|
+
postgres: "postgres";
|
|
16311
|
+
databricks: "databricks";
|
|
16158
16312
|
}>>;
|
|
16159
16313
|
successful_provider: z$1.ZodOptional<z$1.ZodEnum<{
|
|
16160
16314
|
pipe0: "pipe0";
|
|
@@ -16184,6 +16338,8 @@ declare const SearchResultFieldSchema: z$1.ZodObject<{
|
|
|
16184
16338
|
amplemarket: "amplemarket";
|
|
16185
16339
|
parallel: "parallel";
|
|
16186
16340
|
luma: "luma";
|
|
16341
|
+
postgres: "postgres";
|
|
16342
|
+
databricks: "databricks";
|
|
16187
16343
|
}>>;
|
|
16188
16344
|
}, z$1.core.$strip>>>;
|
|
16189
16345
|
icon: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -16379,6 +16535,8 @@ declare const SearchResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable<z
|
|
|
16379
16535
|
amplemarket: "amplemarket";
|
|
16380
16536
|
parallel: "parallel";
|
|
16381
16537
|
luma: "luma";
|
|
16538
|
+
postgres: "postgres";
|
|
16539
|
+
databricks: "databricks";
|
|
16382
16540
|
}>;
|
|
16383
16541
|
}, z$1.core.$strip>>;
|
|
16384
16542
|
available_providers: z$1.ZodArray<z$1.ZodEnum<{
|
|
@@ -16409,6 +16567,8 @@ declare const SearchResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable<z
|
|
|
16409
16567
|
amplemarket: "amplemarket";
|
|
16410
16568
|
parallel: "parallel";
|
|
16411
16569
|
luma: "luma";
|
|
16570
|
+
postgres: "postgres";
|
|
16571
|
+
databricks: "databricks";
|
|
16412
16572
|
}>>;
|
|
16413
16573
|
successful_provider: z$1.ZodOptional<z$1.ZodEnum<{
|
|
16414
16574
|
pipe0: "pipe0";
|
|
@@ -16438,6 +16598,8 @@ declare const SearchResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable<z
|
|
|
16438
16598
|
amplemarket: "amplemarket";
|
|
16439
16599
|
parallel: "parallel";
|
|
16440
16600
|
luma: "luma";
|
|
16601
|
+
postgres: "postgres";
|
|
16602
|
+
databricks: "databricks";
|
|
16441
16603
|
}>>;
|
|
16442
16604
|
}, z$1.core.$strip>>>;
|
|
16443
16605
|
icon: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -17761,6 +17923,38 @@ declare function getSearchPayloadSchema(seachId: SearchId): z$1.ZodObject<{
|
|
|
17761
17923
|
cursor: z$1.ZodCoercedString<unknown> | z$1.ZodNullable<z$1.ZodCoercedString<unknown>>;
|
|
17762
17924
|
include_metadata: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
17763
17925
|
}, z$1.core.$strip>;
|
|
17926
|
+
}, z$1.core.$strip> | z$1.ZodObject<{
|
|
17927
|
+
search_id: z$1.ZodLiteral<"query:postgres@1">;
|
|
17928
|
+
connector: z$1.ZodObject<{
|
|
17929
|
+
strategy: z$1.ZodDefault<z$1.ZodEnum<{
|
|
17930
|
+
first: "first";
|
|
17931
|
+
}>>;
|
|
17932
|
+
connections: z$1.ZodArray<z$1.ZodObject<{
|
|
17933
|
+
type: z$1.ZodLiteral<"vault">;
|
|
17934
|
+
connection: z$1.ZodString;
|
|
17935
|
+
}, z$1.core.$strip>>;
|
|
17936
|
+
}, z$1.core.$strip>;
|
|
17937
|
+
config: z$1.ZodObject<{
|
|
17938
|
+
query: z$1.ZodString;
|
|
17939
|
+
limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
17940
|
+
page_number: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
17941
|
+
}, z$1.core.$strip>;
|
|
17942
|
+
}, z$1.core.$strip> | z$1.ZodObject<{
|
|
17943
|
+
search_id: z$1.ZodLiteral<"query:databricks@1">;
|
|
17944
|
+
connector: z$1.ZodObject<{
|
|
17945
|
+
strategy: z$1.ZodDefault<z$1.ZodEnum<{
|
|
17946
|
+
first: "first";
|
|
17947
|
+
}>>;
|
|
17948
|
+
connections: z$1.ZodArray<z$1.ZodObject<{
|
|
17949
|
+
type: z$1.ZodLiteral<"vault">;
|
|
17950
|
+
connection: z$1.ZodString;
|
|
17951
|
+
}, z$1.core.$strip>>;
|
|
17952
|
+
}, z$1.core.$strip>;
|
|
17953
|
+
config: z$1.ZodObject<{
|
|
17954
|
+
query: z$1.ZodString;
|
|
17955
|
+
limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
17956
|
+
page_number: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
17957
|
+
}, z$1.core.$strip>;
|
|
17764
17958
|
}, z$1.core.$strip>;
|
|
17765
17959
|
declare const PaginationTypeSchema: z$1.ZodEnum<{
|
|
17766
17960
|
cursor: "cursor";
|
|
@@ -17788,6 +17982,8 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
17788
17982
|
"people:entitysearch:parallel@1": "people:entitysearch:parallel@1";
|
|
17789
17983
|
"people:eventguests:luma@1": "people:eventguests:luma@1";
|
|
17790
17984
|
"sheet:rows@1": "sheet:rows@1";
|
|
17985
|
+
"query:postgres@1": "query:postgres@1";
|
|
17986
|
+
"query:databricks@1": "query:databricks@1";
|
|
17791
17987
|
}>;
|
|
17792
17988
|
errors: z$1.ZodArray<z$1.ZodObject<{
|
|
17793
17989
|
code: z$1.ZodString;
|
|
@@ -17962,6 +18158,8 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
17962
18158
|
amplemarket: "amplemarket";
|
|
17963
18159
|
parallel: "parallel";
|
|
17964
18160
|
luma: "luma";
|
|
18161
|
+
postgres: "postgres";
|
|
18162
|
+
databricks: "databricks";
|
|
17965
18163
|
}>;
|
|
17966
18164
|
}, z$1.core.$strip>>;
|
|
17967
18165
|
available_providers: z$1.ZodArray<z$1.ZodEnum<{
|
|
@@ -17992,6 +18190,8 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
17992
18190
|
amplemarket: "amplemarket";
|
|
17993
18191
|
parallel: "parallel";
|
|
17994
18192
|
luma: "luma";
|
|
18193
|
+
postgres: "postgres";
|
|
18194
|
+
databricks: "databricks";
|
|
17995
18195
|
}>>;
|
|
17996
18196
|
successful_provider: z$1.ZodOptional<z$1.ZodEnum<{
|
|
17997
18197
|
pipe0: "pipe0";
|
|
@@ -18021,6 +18221,8 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
18021
18221
|
amplemarket: "amplemarket";
|
|
18022
18222
|
parallel: "parallel";
|
|
18023
18223
|
luma: "luma";
|
|
18224
|
+
postgres: "postgres";
|
|
18225
|
+
databricks: "databricks";
|
|
18024
18226
|
}>>;
|
|
18025
18227
|
}, z$1.core.$strip>>>;
|
|
18026
18228
|
icon: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -19344,6 +19546,38 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
19344
19546
|
cursor: z$1.ZodCoercedString<unknown> | z$1.ZodNullable<z$1.ZodCoercedString<unknown>>;
|
|
19345
19547
|
include_metadata: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
19346
19548
|
}, z$1.core.$strip>;
|
|
19549
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
19550
|
+
search_id: z$1.ZodLiteral<"query:postgres@1">;
|
|
19551
|
+
connector: z$1.ZodObject<{
|
|
19552
|
+
strategy: z$1.ZodDefault<z$1.ZodEnum<{
|
|
19553
|
+
first: "first";
|
|
19554
|
+
}>>;
|
|
19555
|
+
connections: z$1.ZodArray<z$1.ZodObject<{
|
|
19556
|
+
type: z$1.ZodLiteral<"vault">;
|
|
19557
|
+
connection: z$1.ZodString;
|
|
19558
|
+
}, z$1.core.$strip>>;
|
|
19559
|
+
}, z$1.core.$strip>;
|
|
19560
|
+
config: z$1.ZodObject<{
|
|
19561
|
+
query: z$1.ZodString;
|
|
19562
|
+
limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
19563
|
+
page_number: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
19564
|
+
}, z$1.core.$strip>;
|
|
19565
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
19566
|
+
search_id: z$1.ZodLiteral<"query:databricks@1">;
|
|
19567
|
+
connector: z$1.ZodObject<{
|
|
19568
|
+
strategy: z$1.ZodDefault<z$1.ZodEnum<{
|
|
19569
|
+
first: "first";
|
|
19570
|
+
}>>;
|
|
19571
|
+
connections: z$1.ZodArray<z$1.ZodObject<{
|
|
19572
|
+
type: z$1.ZodLiteral<"vault">;
|
|
19573
|
+
connection: z$1.ZodString;
|
|
19574
|
+
}, z$1.core.$strip>>;
|
|
19575
|
+
}, z$1.core.$strip>;
|
|
19576
|
+
config: z$1.ZodObject<{
|
|
19577
|
+
query: z$1.ZodString;
|
|
19578
|
+
limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
19579
|
+
page_number: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
19580
|
+
}, z$1.core.$strip>;
|
|
19347
19581
|
}, z$1.core.$strip>], string>>;
|
|
19348
19582
|
pagination_type: z$1.ZodNullable<z$1.ZodEnum<{
|
|
19349
19583
|
cursor: "cursor";
|
|
@@ -19410,12 +19644,12 @@ declare function getSearchEntry(searchId: SearchId): SearchDef<any>;
|
|
|
19410
19644
|
declare function getInitialSearchTableData(category: SearchCategory | null): SearchCatalogTableData[];
|
|
19411
19645
|
declare function getDefaultSearchOutputFields(searchId: SearchId): string[];
|
|
19412
19646
|
declare function getSearchTableDataAggregates(initialTableData: SearchCatalogTableData[], category: SearchCategory | null): {
|
|
19413
|
-
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")[]>;
|
|
19414
|
-
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")[]>;
|
|
19415
|
-
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")[]>;
|
|
19416
|
-
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")[]][];
|
|
19417
|
-
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")[]][];
|
|
19418
|
-
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")[]][];
|
|
19647
|
+
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")[]>;
|
|
19648
|
+
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")[]>;
|
|
19649
|
+
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")[]>;
|
|
19650
|
+
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")[]][];
|
|
19651
|
+
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")[]][];
|
|
19652
|
+
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")[]][];
|
|
19419
19653
|
searchEntriesByBaseSearch: Record<string, SearchMetaEntryWithId[]>;
|
|
19420
19654
|
};
|
|
19421
19655
|
declare function getStartingCostPerSearchProvider(search_id: SearchId): {
|
|
@@ -21985,6 +22219,8 @@ declare const SearchesResultFieldSchema: z$1.ZodObject<{
|
|
|
21985
22219
|
amplemarket: "amplemarket";
|
|
21986
22220
|
parallel: "parallel";
|
|
21987
22221
|
luma: "luma";
|
|
22222
|
+
postgres: "postgres";
|
|
22223
|
+
databricks: "databricks";
|
|
21988
22224
|
}>;
|
|
21989
22225
|
}, z$1.core.$strip>>;
|
|
21990
22226
|
available_providers: z$1.ZodArray<z$1.ZodEnum<{
|
|
@@ -22015,6 +22251,8 @@ declare const SearchesResultFieldSchema: z$1.ZodObject<{
|
|
|
22015
22251
|
amplemarket: "amplemarket";
|
|
22016
22252
|
parallel: "parallel";
|
|
22017
22253
|
luma: "luma";
|
|
22254
|
+
postgres: "postgres";
|
|
22255
|
+
databricks: "databricks";
|
|
22018
22256
|
}>>;
|
|
22019
22257
|
successful_provider: z$1.ZodOptional<z$1.ZodEnum<{
|
|
22020
22258
|
pipe0: "pipe0";
|
|
@@ -22044,6 +22282,8 @@ declare const SearchesResultFieldSchema: z$1.ZodObject<{
|
|
|
22044
22282
|
amplemarket: "amplemarket";
|
|
22045
22283
|
parallel: "parallel";
|
|
22046
22284
|
luma: "luma";
|
|
22285
|
+
postgres: "postgres";
|
|
22286
|
+
databricks: "databricks";
|
|
22047
22287
|
}>>;
|
|
22048
22288
|
}, z$1.core.$strip>>>;
|
|
22049
22289
|
icon: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -22239,6 +22479,8 @@ declare const SearchesResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable
|
|
|
22239
22479
|
amplemarket: "amplemarket";
|
|
22240
22480
|
parallel: "parallel";
|
|
22241
22481
|
luma: "luma";
|
|
22482
|
+
postgres: "postgres";
|
|
22483
|
+
databricks: "databricks";
|
|
22242
22484
|
}>;
|
|
22243
22485
|
}, z$1.core.$strip>>;
|
|
22244
22486
|
available_providers: z$1.ZodArray<z$1.ZodEnum<{
|
|
@@ -22269,6 +22511,8 @@ declare const SearchesResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable
|
|
|
22269
22511
|
amplemarket: "amplemarket";
|
|
22270
22512
|
parallel: "parallel";
|
|
22271
22513
|
luma: "luma";
|
|
22514
|
+
postgres: "postgres";
|
|
22515
|
+
databricks: "databricks";
|
|
22272
22516
|
}>>;
|
|
22273
22517
|
successful_provider: z$1.ZodOptional<z$1.ZodEnum<{
|
|
22274
22518
|
pipe0: "pipe0";
|
|
@@ -22298,6 +22542,8 @@ declare const SearchesResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable
|
|
|
22298
22542
|
amplemarket: "amplemarket";
|
|
22299
22543
|
parallel: "parallel";
|
|
22300
22544
|
luma: "luma";
|
|
22545
|
+
postgres: "postgres";
|
|
22546
|
+
databricks: "databricks";
|
|
22301
22547
|
}>>;
|
|
22302
22548
|
}, z$1.core.$strip>>>;
|
|
22303
22549
|
icon: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -22543,6 +22789,8 @@ declare const SearchesResponseSchema: z$1.ZodObject<{
|
|
|
22543
22789
|
amplemarket: "amplemarket";
|
|
22544
22790
|
parallel: "parallel";
|
|
22545
22791
|
luma: "luma";
|
|
22792
|
+
postgres: "postgres";
|
|
22793
|
+
databricks: "databricks";
|
|
22546
22794
|
}>;
|
|
22547
22795
|
}, z$1.core.$strip>>;
|
|
22548
22796
|
available_providers: z$1.ZodArray<z$1.ZodEnum<{
|
|
@@ -22573,6 +22821,8 @@ declare const SearchesResponseSchema: z$1.ZodObject<{
|
|
|
22573
22821
|
amplemarket: "amplemarket";
|
|
22574
22822
|
parallel: "parallel";
|
|
22575
22823
|
luma: "luma";
|
|
22824
|
+
postgres: "postgres";
|
|
22825
|
+
databricks: "databricks";
|
|
22576
22826
|
}>>;
|
|
22577
22827
|
successful_provider: z$1.ZodOptional<z$1.ZodEnum<{
|
|
22578
22828
|
pipe0: "pipe0";
|
|
@@ -22602,6 +22852,8 @@ declare const SearchesResponseSchema: z$1.ZodObject<{
|
|
|
22602
22852
|
amplemarket: "amplemarket";
|
|
22603
22853
|
parallel: "parallel";
|
|
22604
22854
|
luma: "luma";
|
|
22855
|
+
postgres: "postgres";
|
|
22856
|
+
databricks: "databricks";
|
|
22605
22857
|
}>>;
|
|
22606
22858
|
}, z$1.core.$strip>>>;
|
|
22607
22859
|
icon: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -23989,10 +24241,12 @@ declare class FieldAnnotations {
|
|
|
23989
24241
|
getAnnotation(key: string): FieldAnnotationsType[string] | undefined;
|
|
23990
24242
|
static fromInput(input: Record<string, FieldValue>[], {
|
|
23991
24243
|
probeCount,
|
|
23992
|
-
inferCatalogFields
|
|
24244
|
+
inferCatalogFields,
|
|
24245
|
+
addIdColumn
|
|
23993
24246
|
}?: {
|
|
23994
24247
|
probeCount?: number;
|
|
23995
24248
|
inferCatalogFields?: boolean;
|
|
24249
|
+
addIdColumn?: boolean;
|
|
23996
24250
|
}): FieldAnnotations;
|
|
23997
24251
|
merge(source: FieldAnnotationsType | FieldAnnotations, overwrite?: boolean): FieldAnnotations;
|
|
23998
24252
|
deleteKey(fieldName: string): FieldAnnotations;
|
|
@@ -39727,6 +39981,8 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
39727
39981
|
amplemarket: "amplemarket";
|
|
39728
39982
|
parallel: "parallel";
|
|
39729
39983
|
luma: "luma";
|
|
39984
|
+
postgres: "postgres";
|
|
39985
|
+
databricks: "databricks";
|
|
39730
39986
|
}>;
|
|
39731
39987
|
}, z.core.$strip>>;
|
|
39732
39988
|
available_providers: z.ZodArray<z.ZodEnum<{
|
|
@@ -39757,6 +40013,8 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
39757
40013
|
amplemarket: "amplemarket";
|
|
39758
40014
|
parallel: "parallel";
|
|
39759
40015
|
luma: "luma";
|
|
40016
|
+
postgres: "postgres";
|
|
40017
|
+
databricks: "databricks";
|
|
39760
40018
|
}>>;
|
|
39761
40019
|
successful_provider: z.ZodOptional<z.ZodEnum<{
|
|
39762
40020
|
pipe0: "pipe0";
|
|
@@ -39786,6 +40044,8 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
39786
40044
|
amplemarket: "amplemarket";
|
|
39787
40045
|
parallel: "parallel";
|
|
39788
40046
|
luma: "luma";
|
|
40047
|
+
postgres: "postgres";
|
|
40048
|
+
databricks: "databricks";
|
|
39789
40049
|
}>>;
|
|
39790
40050
|
}, z.core.$strip>>>;
|
|
39791
40051
|
icon: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -45773,6 +46033,8 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
45773
46033
|
amplemarket: "amplemarket";
|
|
45774
46034
|
parallel: "parallel";
|
|
45775
46035
|
luma: "luma";
|
|
46036
|
+
postgres: "postgres";
|
|
46037
|
+
databricks: "databricks";
|
|
45776
46038
|
}>;
|
|
45777
46039
|
}, z.core.$strip>>;
|
|
45778
46040
|
available_providers: z.ZodArray<z.ZodEnum<{
|
|
@@ -45803,6 +46065,8 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
45803
46065
|
amplemarket: "amplemarket";
|
|
45804
46066
|
parallel: "parallel";
|
|
45805
46067
|
luma: "luma";
|
|
46068
|
+
postgres: "postgres";
|
|
46069
|
+
databricks: "databricks";
|
|
45806
46070
|
}>>;
|
|
45807
46071
|
successful_provider: z.ZodOptional<z.ZodEnum<{
|
|
45808
46072
|
pipe0: "pipe0";
|
|
@@ -45832,6 +46096,8 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
45832
46096
|
amplemarket: "amplemarket";
|
|
45833
46097
|
parallel: "parallel";
|
|
45834
46098
|
luma: "luma";
|
|
46099
|
+
postgres: "postgres";
|
|
46100
|
+
databricks: "databricks";
|
|
45835
46101
|
}>>;
|
|
45836
46102
|
}, z.core.$strip>>>;
|
|
45837
46103
|
icon: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -48761,10 +49027,10 @@ declare function markRecordFieldAsComplete({
|
|
|
48761
49027
|
} | undefined;
|
|
48762
49028
|
waterfall?: {
|
|
48763
49029
|
attempted_providers: {
|
|
48764
|
-
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";
|
|
49030
|
+
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" | "databricks";
|
|
48765
49031
|
}[];
|
|
48766
|
-
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")[];
|
|
48767
|
-
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" | undefined;
|
|
49032
|
+
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" | "databricks")[];
|
|
49033
|
+
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" | "databricks" | undefined;
|
|
48768
49034
|
} | undefined;
|
|
48769
49035
|
icon?: {
|
|
48770
49036
|
key: "linkedin" | "job";
|
|
@@ -48825,10 +49091,10 @@ declare function markRecordFieldAsPending({
|
|
|
48825
49091
|
} | undefined;
|
|
48826
49092
|
waterfall?: {
|
|
48827
49093
|
attempted_providers: {
|
|
48828
|
-
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";
|
|
49094
|
+
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" | "databricks";
|
|
48829
49095
|
}[];
|
|
48830
|
-
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")[];
|
|
48831
|
-
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" | undefined;
|
|
49096
|
+
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" | "databricks")[];
|
|
49097
|
+
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" | "databricks" | undefined;
|
|
48832
49098
|
} | undefined;
|
|
48833
49099
|
icon?: {
|
|
48834
49100
|
key: "linkedin" | "job";
|
|
@@ -48895,10 +49161,10 @@ declare function markRecordFieldAsNoResult({
|
|
|
48895
49161
|
} | undefined;
|
|
48896
49162
|
waterfall?: {
|
|
48897
49163
|
attempted_providers: {
|
|
48898
|
-
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";
|
|
49164
|
+
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" | "databricks";
|
|
48899
49165
|
}[];
|
|
48900
|
-
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")[];
|
|
48901
|
-
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" | undefined;
|
|
49166
|
+
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" | "databricks")[];
|
|
49167
|
+
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" | "databricks" | undefined;
|
|
48902
49168
|
} | undefined;
|
|
48903
49169
|
icon?: {
|
|
48904
49170
|
key: "linkedin" | "job";
|
|
@@ -48955,10 +49221,10 @@ declare function markRecordFieldAsFailed(field: RecordField, reason: FieldReason
|
|
|
48955
49221
|
} | undefined;
|
|
48956
49222
|
waterfall?: {
|
|
48957
49223
|
attempted_providers: {
|
|
48958
|
-
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";
|
|
49224
|
+
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" | "databricks";
|
|
48959
49225
|
}[];
|
|
48960
|
-
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")[];
|
|
48961
|
-
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" | undefined;
|
|
49226
|
+
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" | "databricks")[];
|
|
49227
|
+
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" | "databricks" | undefined;
|
|
48962
49228
|
} | undefined;
|
|
48963
49229
|
icon?: {
|
|
48964
49230
|
key: "linkedin" | "job";
|
|
@@ -49015,10 +49281,10 @@ declare function markRecordFieldAsSkipped(field: RecordField, reason: FieldReaso
|
|
|
49015
49281
|
} | undefined;
|
|
49016
49282
|
waterfall?: {
|
|
49017
49283
|
attempted_providers: {
|
|
49018
|
-
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";
|
|
49284
|
+
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" | "databricks";
|
|
49019
49285
|
}[];
|
|
49020
|
-
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")[];
|
|
49021
|
-
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" | undefined;
|
|
49286
|
+
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" | "databricks")[];
|
|
49287
|
+
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" | "databricks" | undefined;
|
|
49022
49288
|
} | undefined;
|
|
49023
49289
|
icon?: {
|
|
49024
49290
|
key: "linkedin" | "job";
|
|
@@ -49075,10 +49341,10 @@ declare function markRecordFieldAsProcessing(field: RecordField): {
|
|
|
49075
49341
|
} | undefined;
|
|
49076
49342
|
waterfall?: {
|
|
49077
49343
|
attempted_providers: {
|
|
49078
|
-
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";
|
|
49344
|
+
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" | "databricks";
|
|
49079
49345
|
}[];
|
|
49080
|
-
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")[];
|
|
49081
|
-
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" | undefined;
|
|
49346
|
+
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" | "databricks")[];
|
|
49347
|
+
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" | "databricks" | undefined;
|
|
49082
49348
|
} | undefined;
|
|
49083
49349
|
icon?: {
|
|
49084
49350
|
key: "linkedin" | "job";
|
|
@@ -49574,10 +49840,10 @@ declare function inputFromRecords(records: PipesInMemoryResponse["records"], con
|
|
|
49574
49840
|
} | undefined;
|
|
49575
49841
|
waterfall?: {
|
|
49576
49842
|
attempted_providers: {
|
|
49577
|
-
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";
|
|
49843
|
+
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" | "databricks";
|
|
49578
49844
|
}[];
|
|
49579
|
-
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")[];
|
|
49580
|
-
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" | undefined;
|
|
49845
|
+
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" | "databricks")[];
|
|
49846
|
+
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" | "databricks" | undefined;
|
|
49581
49847
|
} | undefined;
|
|
49582
49848
|
icon?: {
|
|
49583
49849
|
key: "linkedin" | "job";
|
|
@@ -49634,10 +49900,10 @@ declare function inputFromRecords(records: PipesInMemoryResponse["records"], con
|
|
|
49634
49900
|
} | undefined;
|
|
49635
49901
|
waterfall?: {
|
|
49636
49902
|
attempted_providers: {
|
|
49637
|
-
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";
|
|
49903
|
+
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" | "databricks";
|
|
49638
49904
|
}[];
|
|
49639
|
-
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")[];
|
|
49640
|
-
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" | undefined;
|
|
49905
|
+
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" | "databricks")[];
|
|
49906
|
+
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" | "databricks" | undefined;
|
|
49641
49907
|
} | undefined;
|
|
49642
49908
|
icon?: {
|
|
49643
49909
|
key: "linkedin" | "job";
|
|
@@ -49697,10 +49963,10 @@ declare function inputFromRecordArr(records: PipesRecord[], config?: Partial<Fie
|
|
|
49697
49963
|
} | undefined;
|
|
49698
49964
|
waterfall?: {
|
|
49699
49965
|
attempted_providers: {
|
|
49700
|
-
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";
|
|
49966
|
+
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" | "databricks";
|
|
49701
49967
|
}[];
|
|
49702
|
-
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")[];
|
|
49703
|
-
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" | undefined;
|
|
49968
|
+
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" | "databricks")[];
|
|
49969
|
+
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" | "databricks" | undefined;
|
|
49704
49970
|
} | undefined;
|
|
49705
49971
|
icon?: {
|
|
49706
49972
|
key: "linkedin" | "job";
|
|
@@ -49757,10 +50023,10 @@ declare function inputFromRecordArr(records: PipesRecord[], config?: Partial<Fie
|
|
|
49757
50023
|
} | undefined;
|
|
49758
50024
|
waterfall?: {
|
|
49759
50025
|
attempted_providers: {
|
|
49760
|
-
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";
|
|
50026
|
+
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" | "databricks";
|
|
49761
50027
|
}[];
|
|
49762
|
-
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")[];
|
|
49763
|
-
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" | undefined;
|
|
50028
|
+
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" | "databricks")[];
|
|
50029
|
+
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" | "databricks" | undefined;
|
|
49764
50030
|
} | undefined;
|
|
49765
50031
|
icon?: {
|
|
49766
50032
|
key: "linkedin" | "job";
|
|
@@ -49820,10 +50086,10 @@ declare function inputFromRecord(record: PipesRecord, config?: Partial<FieldsToO
|
|
|
49820
50086
|
} | undefined;
|
|
49821
50087
|
waterfall?: {
|
|
49822
50088
|
attempted_providers: {
|
|
49823
|
-
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";
|
|
50089
|
+
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" | "databricks";
|
|
49824
50090
|
}[];
|
|
49825
|
-
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")[];
|
|
49826
|
-
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" | undefined;
|
|
50091
|
+
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" | "databricks")[];
|
|
50092
|
+
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" | "databricks" | undefined;
|
|
49827
50093
|
} | undefined;
|
|
49828
50094
|
icon?: {
|
|
49829
50095
|
key: "linkedin" | "job";
|
|
@@ -49880,10 +50146,10 @@ declare function inputFromRecord(record: PipesRecord, config?: Partial<FieldsToO
|
|
|
49880
50146
|
} | undefined;
|
|
49881
50147
|
waterfall?: {
|
|
49882
50148
|
attempted_providers: {
|
|
49883
|
-
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";
|
|
50149
|
+
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" | "databricks";
|
|
49884
50150
|
}[];
|
|
49885
|
-
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")[];
|
|
49886
|
-
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" | undefined;
|
|
50151
|
+
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" | "databricks")[];
|
|
50152
|
+
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" | "databricks" | undefined;
|
|
49887
50153
|
} | undefined;
|
|
49888
50154
|
icon?: {
|
|
49889
50155
|
key: "linkedin" | "job";
|
|
@@ -49926,7 +50192,7 @@ type ProviderCatalogEntry = {
|
|
|
49926
50192
|
description: string;
|
|
49927
50193
|
public: boolean;
|
|
49928
50194
|
url: string;
|
|
49929
|
-
connectionType: "api_key" | "oauth_token" | "oauth_token_bundle";
|
|
50195
|
+
connectionType: "api_key" | "oauth_token" | "oauth_token_bundle" | "connection_string" | "databricks";
|
|
49930
50196
|
hasManagedConnections: boolean;
|
|
49931
50197
|
allowsUserConnections: boolean;
|
|
49932
50198
|
oAuthConfig: object | null;
|
|
@@ -50364,11 +50630,43 @@ declare const providerCatalog: {
|
|
|
50364
50630
|
};
|
|
50365
50631
|
readonly oAuthConfig: null;
|
|
50366
50632
|
};
|
|
50633
|
+
readonly postgres: {
|
|
50634
|
+
readonly name: "postgres";
|
|
50635
|
+
readonly label: "PostgreSQL";
|
|
50636
|
+
readonly description: "Connect your own PostgreSQL database and query it read-only.";
|
|
50637
|
+
readonly url: "https://www.postgresql.org";
|
|
50638
|
+
readonly public: true;
|
|
50639
|
+
readonly hasManagedConnections: false;
|
|
50640
|
+
readonly allowsUserConnections: true;
|
|
50641
|
+
readonly connectionType: "connection_string";
|
|
50642
|
+
readonly logoUrl: "https://imagedelivery.net/3B3AWuP94-S3Ro5eEac6JA/eb8b2802-8280-45c3-ee08-a24aad6a0a00/icon";
|
|
50643
|
+
readonly background: {
|
|
50644
|
+
readonly light: "#DCE9F5";
|
|
50645
|
+
readonly dark: "#0B2A45";
|
|
50646
|
+
};
|
|
50647
|
+
readonly oAuthConfig: null;
|
|
50648
|
+
};
|
|
50649
|
+
readonly databricks: {
|
|
50650
|
+
readonly name: "databricks";
|
|
50651
|
+
readonly label: "Databricks";
|
|
50652
|
+
readonly description: "Query your Databricks SQL warehouse read-only via a service principal.";
|
|
50653
|
+
readonly url: "https://www.databricks.com";
|
|
50654
|
+
readonly public: true;
|
|
50655
|
+
readonly hasManagedConnections: false;
|
|
50656
|
+
readonly allowsUserConnections: true;
|
|
50657
|
+
readonly connectionType: "databricks";
|
|
50658
|
+
readonly logoUrl: "https://imagedelivery.net/3B3AWuP94-S3Ro5eEac6JA/07b73e49-e1fa-445b-865e-2b7dc2641700/icon";
|
|
50659
|
+
readonly background: {
|
|
50660
|
+
readonly light: "#F5E6DC";
|
|
50661
|
+
readonly dark: "#3A1B0B";
|
|
50662
|
+
};
|
|
50663
|
+
readonly oAuthConfig: null;
|
|
50664
|
+
};
|
|
50367
50665
|
};
|
|
50368
50666
|
//#endregion
|
|
50369
50667
|
//#region src/providers/provider-utils.d.ts
|
|
50370
50668
|
declare function getProviderEntry(providerName: ProviderName): {
|
|
50371
|
-
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";
|
|
50669
|
+
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" | "databricks";
|
|
50372
50670
|
name: "pipe0";
|
|
50373
50671
|
label: "pipe0";
|
|
50374
50672
|
description: "A framework for lead and company data enrichment.";
|
|
@@ -50384,7 +50682,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50384
50682
|
};
|
|
50385
50683
|
oAuthConfig: null;
|
|
50386
50684
|
} | {
|
|
50387
|
-
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";
|
|
50685
|
+
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" | "databricks";
|
|
50388
50686
|
name: "findymail";
|
|
50389
50687
|
label: "FindyMail";
|
|
50390
50688
|
description: "Find verified emails.";
|
|
@@ -50400,7 +50698,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50400
50698
|
readonly dark: "#143822";
|
|
50401
50699
|
};
|
|
50402
50700
|
} | {
|
|
50403
|
-
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";
|
|
50701
|
+
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" | "databricks";
|
|
50404
50702
|
name: "hunter";
|
|
50405
50703
|
label: "HunterMail";
|
|
50406
50704
|
description: "Find email addresses and send cold emails";
|
|
@@ -50416,7 +50714,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50416
50714
|
readonly dark: "#3D1F0C";
|
|
50417
50715
|
};
|
|
50418
50716
|
} | {
|
|
50419
|
-
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";
|
|
50717
|
+
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" | "databricks";
|
|
50420
50718
|
name: "zerobounce";
|
|
50421
50719
|
label: "ZeroBounce";
|
|
50422
50720
|
description: "Email validation tools and email list cleaning";
|
|
@@ -50432,7 +50730,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50432
50730
|
};
|
|
50433
50731
|
oAuthConfig: null;
|
|
50434
50732
|
} | {
|
|
50435
|
-
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";
|
|
50733
|
+
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" | "databricks";
|
|
50436
50734
|
name: "googlemaps";
|
|
50437
50735
|
label: "Google Maps";
|
|
50438
50736
|
description: "A map service by Google";
|
|
@@ -50448,7 +50746,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50448
50746
|
};
|
|
50449
50747
|
oAuthConfig: null;
|
|
50450
50748
|
} | {
|
|
50451
|
-
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";
|
|
50749
|
+
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" | "databricks";
|
|
50452
50750
|
name: "leadmagic";
|
|
50453
50751
|
label: "LeadMagic";
|
|
50454
50752
|
description: "Enrichment provider";
|
|
@@ -50464,7 +50762,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50464
50762
|
};
|
|
50465
50763
|
oAuthConfig: null;
|
|
50466
50764
|
} | {
|
|
50467
|
-
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";
|
|
50765
|
+
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" | "databricks";
|
|
50468
50766
|
name: "builtwith";
|
|
50469
50767
|
label: "BuiltWith";
|
|
50470
50768
|
description: "BuiltWith tracks over 2500 eCommerce technologies across over 26 million eCommerce websites.";
|
|
@@ -50480,7 +50778,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50480
50778
|
};
|
|
50481
50779
|
oAuthConfig: null;
|
|
50482
50780
|
} | {
|
|
50483
|
-
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";
|
|
50781
|
+
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" | "databricks";
|
|
50484
50782
|
name: "perplexity";
|
|
50485
50783
|
label: "Perplexity";
|
|
50486
50784
|
description: "AI search company";
|
|
@@ -50496,7 +50794,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50496
50794
|
};
|
|
50497
50795
|
oAuthConfig: null;
|
|
50498
50796
|
} | {
|
|
50499
|
-
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";
|
|
50797
|
+
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" | "databricks";
|
|
50500
50798
|
name: "serper";
|
|
50501
50799
|
label: "Serper";
|
|
50502
50800
|
description: "The World's Fastest & Cheapest Google Search API";
|
|
@@ -50512,7 +50810,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50512
50810
|
};
|
|
50513
50811
|
oAuthConfig: null;
|
|
50514
50812
|
} | {
|
|
50515
|
-
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";
|
|
50813
|
+
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" | "databricks";
|
|
50516
50814
|
name: "icypeas";
|
|
50517
50815
|
label: "Icypeas";
|
|
50518
50816
|
description: "A popular data catalog";
|
|
@@ -50528,7 +50826,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50528
50826
|
};
|
|
50529
50827
|
oAuthConfig: null;
|
|
50530
50828
|
} | {
|
|
50531
|
-
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";
|
|
50829
|
+
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" | "databricks";
|
|
50532
50830
|
name: "prospeo";
|
|
50533
50831
|
label: "Prospeo";
|
|
50534
50832
|
description: "Find anyone’s contact data.";
|
|
@@ -50544,7 +50842,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50544
50842
|
};
|
|
50545
50843
|
oAuthConfig: null;
|
|
50546
50844
|
} | {
|
|
50547
|
-
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";
|
|
50845
|
+
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" | "databricks";
|
|
50548
50846
|
name: "gemini";
|
|
50549
50847
|
label: "Gemini";
|
|
50550
50848
|
description: "Google's AI service";
|
|
@@ -50560,7 +50858,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50560
50858
|
};
|
|
50561
50859
|
oAuthConfig: null;
|
|
50562
50860
|
} | {
|
|
50563
|
-
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";
|
|
50861
|
+
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" | "databricks";
|
|
50564
50862
|
name: "slack";
|
|
50565
50863
|
label: "Slack";
|
|
50566
50864
|
description: "A modern business chat application.";
|
|
@@ -50576,7 +50874,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50576
50874
|
};
|
|
50577
50875
|
oAuthConfig: {};
|
|
50578
50876
|
} | {
|
|
50579
|
-
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";
|
|
50877
|
+
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" | "databricks";
|
|
50580
50878
|
name: "companyenrich";
|
|
50581
50879
|
label: "CompanyEnrich";
|
|
50582
50880
|
description: "A company enrichment service.";
|
|
@@ -50592,7 +50890,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50592
50890
|
};
|
|
50593
50891
|
oAuthConfig: {};
|
|
50594
50892
|
} | {
|
|
50595
|
-
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";
|
|
50893
|
+
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" | "databricks";
|
|
50596
50894
|
name: "mixrank";
|
|
50597
50895
|
label: "MixRank";
|
|
50598
50896
|
description: "Ultra-high-frequency technographic and people data for your data teams.";
|
|
@@ -50608,7 +50906,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50608
50906
|
readonly dark: "#3A1D08";
|
|
50609
50907
|
};
|
|
50610
50908
|
} | {
|
|
50611
|
-
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";
|
|
50909
|
+
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" | "databricks";
|
|
50612
50910
|
name: "clado";
|
|
50613
50911
|
label: "Clado";
|
|
50614
50912
|
description: "A data provider deploying 10^5 AI agents to find contact information.";
|
|
@@ -50624,7 +50922,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50624
50922
|
};
|
|
50625
50923
|
oAuthConfig: null;
|
|
50626
50924
|
} | {
|
|
50627
|
-
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";
|
|
50925
|
+
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" | "databricks";
|
|
50628
50926
|
name: "gmail";
|
|
50629
50927
|
label: "Gmail";
|
|
50630
50928
|
description: "Google's email service";
|
|
@@ -50640,7 +50938,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50640
50938
|
};
|
|
50641
50939
|
oAuthConfig: {};
|
|
50642
50940
|
} | {
|
|
50643
|
-
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";
|
|
50941
|
+
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" | "databricks";
|
|
50644
50942
|
name: "resend";
|
|
50645
50943
|
label: "Resend";
|
|
50646
50944
|
description: "An email platform built for developers.";
|
|
@@ -50656,7 +50954,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50656
50954
|
};
|
|
50657
50955
|
oAuthConfig: null;
|
|
50658
50956
|
} | {
|
|
50659
|
-
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";
|
|
50957
|
+
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" | "databricks";
|
|
50660
50958
|
name: "firecrawl";
|
|
50661
50959
|
label: "Firecrawl";
|
|
50662
50960
|
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.";
|
|
@@ -50672,7 +50970,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50672
50970
|
};
|
|
50673
50971
|
oAuthConfig: null;
|
|
50674
50972
|
} | {
|
|
50675
|
-
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";
|
|
50973
|
+
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" | "databricks";
|
|
50676
50974
|
name: "exa";
|
|
50677
50975
|
label: "Exa";
|
|
50678
50976
|
description: "Exa is a search engine built for AI.";
|
|
@@ -50688,7 +50986,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50688
50986
|
};
|
|
50689
50987
|
oAuthConfig: null;
|
|
50690
50988
|
} | {
|
|
50691
|
-
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";
|
|
50989
|
+
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" | "databricks";
|
|
50692
50990
|
name: "openai";
|
|
50693
50991
|
label: "OpenAI";
|
|
50694
50992
|
description: "Foundational AI company based out of San Francisco.";
|
|
@@ -50704,7 +51002,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50704
51002
|
};
|
|
50705
51003
|
oAuthConfig: null;
|
|
50706
51004
|
} | {
|
|
50707
|
-
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";
|
|
51005
|
+
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" | "databricks";
|
|
50708
51006
|
name: "millionverifier";
|
|
50709
51007
|
label: "MillionVerifier";
|
|
50710
51008
|
description: "E-Mail validation service.";
|
|
@@ -50720,7 +51018,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50720
51018
|
};
|
|
50721
51019
|
oAuthConfig: null;
|
|
50722
51020
|
} | {
|
|
50723
|
-
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";
|
|
51021
|
+
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" | "databricks";
|
|
50724
51022
|
name: "logodev";
|
|
50725
51023
|
label: "Logo.dev";
|
|
50726
51024
|
description: "Every company logo, one simple API.";
|
|
@@ -50736,7 +51034,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50736
51034
|
};
|
|
50737
51035
|
oAuthConfig: null;
|
|
50738
51036
|
} | {
|
|
50739
|
-
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";
|
|
51037
|
+
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" | "databricks";
|
|
50740
51038
|
name: "crustdata";
|
|
50741
51039
|
label: "Crustdata";
|
|
50742
51040
|
description: "Real-time company & people data";
|
|
@@ -50752,7 +51050,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50752
51050
|
};
|
|
50753
51051
|
oAuthConfig: null;
|
|
50754
51052
|
} | {
|
|
50755
|
-
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";
|
|
51053
|
+
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" | "databricks";
|
|
50756
51054
|
name: "amplemarket";
|
|
50757
51055
|
label: "Amplemarket";
|
|
50758
51056
|
description: "Sales data platform";
|
|
@@ -50768,7 +51066,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50768
51066
|
};
|
|
50769
51067
|
oAuthConfig: null;
|
|
50770
51068
|
} | {
|
|
50771
|
-
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";
|
|
51069
|
+
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" | "databricks";
|
|
50772
51070
|
name: "parallel";
|
|
50773
51071
|
label: "Parallel";
|
|
50774
51072
|
description: "Agentic web search & research APIs purpose-built for AI agents.";
|
|
@@ -50784,7 +51082,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50784
51082
|
};
|
|
50785
51083
|
oAuthConfig: null;
|
|
50786
51084
|
} | {
|
|
50787
|
-
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";
|
|
51085
|
+
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" | "databricks";
|
|
50788
51086
|
name: "luma";
|
|
50789
51087
|
label: "Luma";
|
|
50790
51088
|
description: "Delightful events, calendars, and ticketing for communities.";
|
|
@@ -50799,6 +51097,38 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50799
51097
|
readonly dark: "#3A1F0F";
|
|
50800
51098
|
};
|
|
50801
51099
|
oAuthConfig: null;
|
|
51100
|
+
} | {
|
|
51101
|
+
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" | "databricks";
|
|
51102
|
+
name: "postgres";
|
|
51103
|
+
label: "PostgreSQL";
|
|
51104
|
+
description: "Connect your own PostgreSQL database and query it read-only.";
|
|
51105
|
+
url: "https://www.postgresql.org";
|
|
51106
|
+
public: true;
|
|
51107
|
+
hasManagedConnections: false;
|
|
51108
|
+
allowsUserConnections: true;
|
|
51109
|
+
connectionType: "connection_string";
|
|
51110
|
+
logoUrl: "https://imagedelivery.net/3B3AWuP94-S3Ro5eEac6JA/eb8b2802-8280-45c3-ee08-a24aad6a0a00/icon";
|
|
51111
|
+
background: {
|
|
51112
|
+
readonly light: "#DCE9F5";
|
|
51113
|
+
readonly dark: "#0B2A45";
|
|
51114
|
+
};
|
|
51115
|
+
oAuthConfig: null;
|
|
51116
|
+
} | {
|
|
51117
|
+
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" | "databricks";
|
|
51118
|
+
name: "databricks";
|
|
51119
|
+
label: "Databricks";
|
|
51120
|
+
description: "Query your Databricks SQL warehouse read-only via a service principal.";
|
|
51121
|
+
url: "https://www.databricks.com";
|
|
51122
|
+
public: true;
|
|
51123
|
+
hasManagedConnections: false;
|
|
51124
|
+
allowsUserConnections: true;
|
|
51125
|
+
connectionType: "databricks";
|
|
51126
|
+
logoUrl: "https://imagedelivery.net/3B3AWuP94-S3Ro5eEac6JA/07b73e49-e1fa-445b-865e-2b7dc2641700/icon";
|
|
51127
|
+
background: {
|
|
51128
|
+
readonly light: "#F5E6DC";
|
|
51129
|
+
readonly dark: "#3A1B0B";
|
|
51130
|
+
};
|
|
51131
|
+
oAuthConfig: null;
|
|
50802
51132
|
};
|
|
50803
51133
|
//#endregion
|
|
50804
51134
|
//#region src/sandbox.d.ts
|
|
@@ -51008,7 +51338,7 @@ declare function configDefaults<T extends Record<string, any> | null | undefined
|
|
|
51008
51338
|
//#endregion
|
|
51009
51339
|
//#region src/utils/connection-id.d.ts
|
|
51010
51340
|
declare function splitConnectionString(connection: string): {
|
|
51011
|
-
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";
|
|
51341
|
+
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" | "databricks";
|
|
51012
51342
|
id: string;
|
|
51013
51343
|
};
|
|
51014
51344
|
declare function joinConnectionString(connection: {
|
|
@@ -51364,4 +51694,4 @@ declare const ProfileFieldSchema: z.ZodObject<{
|
|
|
51364
51694
|
}, z.core.$strip>;
|
|
51365
51695
|
type ProfielField = z.infer<typeof ProfileFieldSchema>;
|
|
51366
51696
|
//#endregion
|
|
51367
|
-
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 };
|
|
51697
|
+
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 };
|