@pipe0/base 0.4.3 → 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 +8 -0
- package/dist/index.d.mts +265 -77
- package/dist/index.mjs +10 -10
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -374,6 +374,7 @@ declare const StoreOptionWidgetSchema: z.ZodObject<{
|
|
|
374
374
|
parallel: "parallel";
|
|
375
375
|
luma: "luma";
|
|
376
376
|
postgres: "postgres";
|
|
377
|
+
databricks: "databricks";
|
|
377
378
|
}>;
|
|
378
379
|
}, z.core.$strip>>;
|
|
379
380
|
emoji: z.ZodOptional<z.ZodObject<{
|
|
@@ -456,6 +457,50 @@ declare function autocomplete(sourceKey: AutocompleteSourceKey, options?: {
|
|
|
456
457
|
limit?: number;
|
|
457
458
|
}): StoreOptionsDef;
|
|
458
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
|
|
459
504
|
//#region src/pipes/utils/schemas-primitives.d.ts
|
|
460
505
|
declare const PipesEnvironmentSchema: z.ZodEnum<{
|
|
461
506
|
production: "production";
|
|
@@ -623,6 +668,7 @@ declare const WidgetsSchema: z.ZodObject<{
|
|
|
623
668
|
parallel: "parallel";
|
|
624
669
|
luma: "luma";
|
|
625
670
|
postgres: "postgres";
|
|
671
|
+
databricks: "databricks";
|
|
626
672
|
}>;
|
|
627
673
|
}, z.core.$strip>>;
|
|
628
674
|
available_providers: z.ZodArray<z.ZodEnum<{
|
|
@@ -654,6 +700,7 @@ declare const WidgetsSchema: z.ZodObject<{
|
|
|
654
700
|
parallel: "parallel";
|
|
655
701
|
luma: "luma";
|
|
656
702
|
postgres: "postgres";
|
|
703
|
+
databricks: "databricks";
|
|
657
704
|
}>>;
|
|
658
705
|
successful_provider: z.ZodOptional<z.ZodEnum<{
|
|
659
706
|
pipe0: "pipe0";
|
|
@@ -684,6 +731,7 @@ declare const WidgetsSchema: z.ZodObject<{
|
|
|
684
731
|
parallel: "parallel";
|
|
685
732
|
luma: "luma";
|
|
686
733
|
postgres: "postgres";
|
|
734
|
+
databricks: "databricks";
|
|
687
735
|
}>>;
|
|
688
736
|
}, z.core.$strip>>>;
|
|
689
737
|
icon: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -1257,6 +1305,7 @@ declare const RecordFieldSchema: z.ZodObject<{
|
|
|
1257
1305
|
parallel: "parallel";
|
|
1258
1306
|
luma: "luma";
|
|
1259
1307
|
postgres: "postgres";
|
|
1308
|
+
databricks: "databricks";
|
|
1260
1309
|
}>;
|
|
1261
1310
|
}, z.core.$strip>>;
|
|
1262
1311
|
available_providers: z.ZodArray<z.ZodEnum<{
|
|
@@ -1288,6 +1337,7 @@ declare const RecordFieldSchema: z.ZodObject<{
|
|
|
1288
1337
|
parallel: "parallel";
|
|
1289
1338
|
luma: "luma";
|
|
1290
1339
|
postgres: "postgres";
|
|
1340
|
+
databricks: "databricks";
|
|
1291
1341
|
}>>;
|
|
1292
1342
|
successful_provider: z.ZodOptional<z.ZodEnum<{
|
|
1293
1343
|
pipe0: "pipe0";
|
|
@@ -1318,6 +1368,7 @@ declare const RecordFieldSchema: z.ZodObject<{
|
|
|
1318
1368
|
parallel: "parallel";
|
|
1319
1369
|
luma: "luma";
|
|
1320
1370
|
postgres: "postgres";
|
|
1371
|
+
databricks: "databricks";
|
|
1321
1372
|
}>>;
|
|
1322
1373
|
}, z.core.$strip>>>;
|
|
1323
1374
|
icon: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -1626,6 +1677,7 @@ declare const ExpandedFieldValueSchema: z.ZodObject<{
|
|
|
1626
1677
|
parallel: "parallel";
|
|
1627
1678
|
luma: "luma";
|
|
1628
1679
|
postgres: "postgres";
|
|
1680
|
+
databricks: "databricks";
|
|
1629
1681
|
}>;
|
|
1630
1682
|
}, z.core.$strip>>;
|
|
1631
1683
|
available_providers: z.ZodArray<z.ZodEnum<{
|
|
@@ -1657,6 +1709,7 @@ declare const ExpandedFieldValueSchema: z.ZodObject<{
|
|
|
1657
1709
|
parallel: "parallel";
|
|
1658
1710
|
luma: "luma";
|
|
1659
1711
|
postgres: "postgres";
|
|
1712
|
+
databricks: "databricks";
|
|
1660
1713
|
}>>;
|
|
1661
1714
|
successful_provider: z.ZodOptional<z.ZodEnum<{
|
|
1662
1715
|
pipe0: "pipe0";
|
|
@@ -1687,6 +1740,7 @@ declare const ExpandedFieldValueSchema: z.ZodObject<{
|
|
|
1687
1740
|
parallel: "parallel";
|
|
1688
1741
|
luma: "luma";
|
|
1689
1742
|
postgres: "postgres";
|
|
1743
|
+
databricks: "databricks";
|
|
1690
1744
|
}>>;
|
|
1691
1745
|
}, z.core.$strip>>>;
|
|
1692
1746
|
icon: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -1975,6 +2029,7 @@ declare const PipesInputSchema: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.
|
|
|
1975
2029
|
parallel: "parallel";
|
|
1976
2030
|
luma: "luma";
|
|
1977
2031
|
postgres: "postgres";
|
|
2032
|
+
databricks: "databricks";
|
|
1978
2033
|
}>;
|
|
1979
2034
|
}, z.core.$strip>>;
|
|
1980
2035
|
available_providers: z.ZodArray<z.ZodEnum<{
|
|
@@ -2006,6 +2061,7 @@ declare const PipesInputSchema: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.
|
|
|
2006
2061
|
parallel: "parallel";
|
|
2007
2062
|
luma: "luma";
|
|
2008
2063
|
postgres: "postgres";
|
|
2064
|
+
databricks: "databricks";
|
|
2009
2065
|
}>>;
|
|
2010
2066
|
successful_provider: z.ZodOptional<z.ZodEnum<{
|
|
2011
2067
|
pipe0: "pipe0";
|
|
@@ -2036,6 +2092,7 @@ declare const PipesInputSchema: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.
|
|
|
2036
2092
|
parallel: "parallel";
|
|
2037
2093
|
luma: "luma";
|
|
2038
2094
|
postgres: "postgres";
|
|
2095
|
+
databricks: "databricks";
|
|
2039
2096
|
}>>;
|
|
2040
2097
|
}, z.core.$strip>>>;
|
|
2041
2098
|
icon: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -2306,6 +2363,7 @@ declare const RecordSchema: z.ZodObject<{
|
|
|
2306
2363
|
parallel: "parallel";
|
|
2307
2364
|
luma: "luma";
|
|
2308
2365
|
postgres: "postgres";
|
|
2366
|
+
databricks: "databricks";
|
|
2309
2367
|
}>;
|
|
2310
2368
|
}, z.core.$strip>>;
|
|
2311
2369
|
available_providers: z.ZodArray<z.ZodEnum<{
|
|
@@ -2337,6 +2395,7 @@ declare const RecordSchema: z.ZodObject<{
|
|
|
2337
2395
|
parallel: "parallel";
|
|
2338
2396
|
luma: "luma";
|
|
2339
2397
|
postgres: "postgres";
|
|
2398
|
+
databricks: "databricks";
|
|
2340
2399
|
}>>;
|
|
2341
2400
|
successful_provider: z.ZodOptional<z.ZodEnum<{
|
|
2342
2401
|
pipe0: "pipe0";
|
|
@@ -2367,6 +2426,7 @@ declare const RecordSchema: z.ZodObject<{
|
|
|
2367
2426
|
parallel: "parallel";
|
|
2368
2427
|
luma: "luma";
|
|
2369
2428
|
postgres: "postgres";
|
|
2429
|
+
databricks: "databricks";
|
|
2370
2430
|
}>>;
|
|
2371
2431
|
}, z.core.$strip>>>;
|
|
2372
2432
|
icon: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -2963,11 +3023,12 @@ declare const ProviderNameSchema: z.ZodEnum<{
|
|
|
2963
3023
|
parallel: "parallel";
|
|
2964
3024
|
luma: "luma";
|
|
2965
3025
|
postgres: "postgres";
|
|
3026
|
+
databricks: "databricks";
|
|
2966
3027
|
}>;
|
|
2967
|
-
type ProviderRateLimitOperation = "pipe0_logic" | "pipe0_generic" | "pipe0-sheet-operation" | "pipe0_scraper" | "findymail_generic" | "findymail_email_lookup" | "findymail_email_b2b_lookup" | "findymail_phone_lookup" | "dropcontact_generic" | "hunter_generic" | "hunter_email_finder" | "hunter_email_enrichment" | "zerobounce_generic" | "millionverifier_generic" | "googlemaps_generic" | "gemini_35_flash" | "gemini_20_flash" | "leadmagic_company_search" | "leadmagic_email_lookup" | "leadmagic_email_b2b_lookup" | "leadmagic_email_to_b2b_profile" | "leadmagic_personal_email_finder" | "leadmagic_mobile_number_lookup" | "leadmagic_company_funding" | "leadmagic_role_finder" | "contactout_generic" | "builtwith_generic" | "perplexity_generic" | "serper_search" | "clado_search_people" | "clado_contact_information" | "icypeas_scrape_profile" | "icypeas_lead_database" | "icypeas_company_database" | "icypeas_email_lookup" | "prospeo_phone_number_lookup" | "prospeo_social_profile_lookup" | "clado_social_profile_lookup" | "prospeo_email_lookup" | "resend_generic" | "slack_post_message" | "gmail_send_email" | "leadmagic_employee_finder" | "firecrawl_generic" | "firecrawl_map_requests" | "firecrawl_extract" | "exa_websets" | "parallel_search_base" | "parallel_entity_search" | "parallel_extract" | "openai_gpt-5" | "openai_gpt-5-mini" | "company_enrich_generic" | "logodev_describe" | "crustdata_company_db_search" | "crustdata_company_enrich" | "crustdata_company_identify" | "crustdata_people_db_search" | "crustdata_realtime_post_fetch" | "crustdata_realtime_person_enrich" | "amplemarket_generic" | "amplemarket-person-reveal" | "amplemarket_people_search" | "amplemarket_company_search" | "mixrank-person-match" | "luma_get_guests" | "postgres_query";
|
|
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";
|
|
2968
3029
|
type ProviderName = z.infer<typeof ProviderNameSchema>;
|
|
2969
3030
|
type ExternalProviderName = Exclude<ProviderName, "pipe0">;
|
|
2970
|
-
type BillableOperation = "companies-profiles-amplemarket-v1" | "companies-profiles-amplemarket-v2" | "companies-profiles-crustdata-v1" | "companies-profiles-crustdata-v2" | "companies-entitysearch-parallel-v1" | "people-entitysearch-parallel-v1" | "people-eventguests-luma-v1" | "data-query-postgres-v1" | "company-domain-workemail-v1-pipe0" | "company-funding-leadmagic-v1-leadmagic" | "company-funding-leadmagic-v2-leadmagic" | "company-identity-v1-pipe0" | "company-identity-v2-pipe0" | "company-identity-v3-pipe0" | "company-lookalikes-companyenrich-v1-companyenrich" | "company-lookalikes-companyenrich-v2-companyenrich" | "company-identity-crustdata-v1-crustdata" | "company-match-crustdata-v1-crustdata" | "company-match-crustdata-v2-crustdata" | "company-match-logodev-v1-logodev" | "company-match-logodev-v2-logodev" | "company-newssummary-domain-v1-pipe0" | "company-newssummary-website-v1-pipe0" | "company-overview-v1-pipe0" | "company-overview-v2-pipe0" | "company-overview-v3-pipe0" | "company-techstack-builtwith-v1-builtwith" | "company-techstack-builtwith-v2-builtwith" | "company-websiteurl-email-v1-pipe0" | "contact-create-resend-v1-resend" | "email-iswork-v1-pipe0" | "email-send-gmail-v1-gmail" | "email-send-resend-v1-resend" | "email-validate-zerobounce-v1-zerobounce" | "email-write-v1-gemini-flash-latest" | "email-write-v1-openai-gpt-latest" | "email-write-v1-openai-gpt-mini-latest" | "field-domainify-v1-pipe0" | "field-slugify-v1-pipe0" | "fields-merge-v1-pipe0" | "http-request-v1-pipe0" | "json-extract-multi-v1-pipe0" | "message-send-slack-v1-slack" | "message-write-v1-gemini-flash-latest" | "message-write-v1-openai-gpt-latest" | "message-write-v1-openai-gpt-mini-latest" | "people-email-iswork-v1-pipe0" | "people-email-validate-zerobounce-v1-zerobounce" | "people-email-validate-zerobounce-v2-zerobounce" | "people-identity-email-waterfall-v1-crustdata" | "people-identity-email-waterfall-v1-findymail" | "people-identity-email-waterfall-v1-hunter" | "people-match-role-waterfall-v1-leadmagic" | "people-mobilenumber-professionalprofile-waterfall-v1-leadmagic" | "people-mobilenumber-professionalprofile-waterfall-v1-prospeo" | "people-mobilenumber-workemail-waterfall-v1-leadmagic" | "people-name-split-v1-pipe0" | "people-personalemail-profile-waterfall-v1-clado" | "people-personalemail-profile-waterfall-v1-leadmagic" | "people-personalemail-profile-waterfall-v1-mixrank" | "people-phone-profile-waterfall-v1-amplemarket" | "people-phone-profile-waterfall-v1-clado" | "people-phone-profile-waterfall-v1-findymail" | "people-phone-profile-waterfall-v1-leadmagic" | "people-phone-profile-waterfall-v1-prospeo" | "people-phone-workemail-waterfall-v1-amplemarket" | "people-phone-workemail-waterfall-v1-leadmagic" | "people-professionalprofile-waterfall-v1-icypeas" | "people-professionalprofile-waterfall-v1-prospeo" | "people-professionalprofileurl-email-waterfall-v1-leadmagic" | "people-professionalprofileurl-name-v1-pipe0" | "people-profile-waterfall-v1-amplemarket" | "people-profile-waterfall-v1-clado" | "people-profile-waterfall-v1-icypeas" | "people-profile-waterfall-v1-prospeo" | "people-profile-workemail-crustdata-v1-crustdata" | "people-profiles-amplemarket-v1" | "people-profiles-amplemarket-v2" | "people-profiles-crustdata-v1" | "people-profiles-crustdata-v2" | "people-profileurl-email-waterfall-v1-leadmagic" | "people-validate-email-zerobounce-v1-zerobounce" | "people-workemail-profileurl-waterfall-v1-amplemarket" | "people-workemail-profileurl-waterfall-v1-clado" | "people-workemail-profileurl-waterfall-v1-crustdata" | "people-workemail-profileurl-waterfall-v1-findymail" | "people-workemail-profileurl-waterfall-v1-hunter" | "people-workemail-profileurl-waterfall-v1-leadmagic" | "people-workemail-waterfall-v1-amplemarket" | "people-workemail-waterfall-v1-findymail" | "people-workemail-waterfall-v1-hunter" | "people-workemail-waterfall-v1-icypeas" | "people-workemail-waterfall-v1-leadmagic" | "people-workemail-waterfall-v1-prospeo" | "person-email-validate-millionverifier-v1-millionverifier" | "person-identity-amplemarket-v1-amplemarket" | "person-identity-email-waterfall-v1-crustdata" | "person-identity-email-waterfall-v1-findymail" | "person-identity-email-waterfall-v1-hunter" | "person-match-amplemarket-v1-amplemarket" | "person-match-role-waterfall-v1-leadmagic" | "person-mobile-profileurl-waterfall-v1-amplemarket" | "person-mobile-profileurl-waterfall-v1-findymail" | "person-mobile-profileurl-waterfall-v1-leadmagic" | "person-mobile-profileurl-waterfall-v1-prospeo" | "person-mobile-workemail-waterfall-v1-amplemarket" | "person-mobile-workemail-waterfall-v1-leadmagic" | "person-devprofileurl-profileurl-waterfall-v1-crustdata" | "person-name-join-v1-pipe0" | "person-name-split-v1-pipe0" | "person-personalemail-profileurl-waterfall-v1-leadmagic" | "person-personalemail-profileurl-waterfall-v1-mixrank" | "person-posts-crustdata-v1-crustdata" | "person-profile-waterfall-v1-amplemarket" | "person-profile-waterfall-v1-icypeas" | "person-profile-waterfall-v1-prospeo" | "person-profile-workemail-crustdata-v1-crustdata" | "person-profileurl-email-waterfall-v1-leadmagic" | "person-profileurl-name-v1-pipe0" | "person-workemail-profileurl-waterfall-v1-amplemarket" | "person-workemail-profileurl-waterfall-v1-crustdata" | "person-workemail-profileurl-waterfall-v1-findymail" | "person-workemail-profileurl-waterfall-v1-hunter" | "person-workemail-profileurl-waterfall-v1-leadmagic" | "person-workemail-waterfall-v1-amplemarket" | "person-workemail-waterfall-v1-findymail" | "person-workemail-waterfall-v1-hunter" | "person-workemail-waterfall-v1-icypeas" | "person-workemail-waterfall-v1-leadmagic" | "person-workemail-waterfall-v1-prospeo" | "prompt-run-v1-gemini-flash-latest" | "prompt-run-v1-openai-gpt-latest" | "prompt-run-v1-openai-gpt-mini-latest" | "sheet-row-append-v1-pipe0" | "sheet-items-v1-pipe0" | "sheet-row-expandappend-v1-pipe0" | "template-fill-v1-pipe0" | "website-extract-firecrawl-v1-firecrawl" | "website-extract-parallel-v1-parallel" | "website-maplinks-firecrawl-v1-firecrawl" | "website-scrape-firecrawl-v1-firecrawl" | "website-scrapelist-firecrawl-v1-firecrawl";
|
|
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";
|
|
2971
3032
|
//#endregion
|
|
2972
3033
|
//#region src/fields/field-catalog.d.ts
|
|
2973
3034
|
type FieldEntry = {
|
|
@@ -12876,6 +12937,7 @@ declare const StoreOptionSchema: z.ZodObject<{
|
|
|
12876
12937
|
parallel: "parallel";
|
|
12877
12938
|
luma: "luma";
|
|
12878
12939
|
postgres: "postgres";
|
|
12940
|
+
databricks: "databricks";
|
|
12879
12941
|
}>;
|
|
12880
12942
|
}, z.core.$strip>>;
|
|
12881
12943
|
emoji: z.ZodOptional<z.ZodObject<{
|
|
@@ -12978,6 +13040,7 @@ declare const FormStoreSchema: z.ZodObject<{
|
|
|
12978
13040
|
parallel: "parallel";
|
|
12979
13041
|
luma: "luma";
|
|
12980
13042
|
postgres: "postgres";
|
|
13043
|
+
databricks: "databricks";
|
|
12981
13044
|
}>;
|
|
12982
13045
|
}, z.core.$strip>>;
|
|
12983
13046
|
emoji: z.ZodOptional<z.ZodObject<{
|
|
@@ -13235,7 +13298,7 @@ interface FormResolvers {
|
|
|
13235
13298
|
}
|
|
13236
13299
|
//#endregion
|
|
13237
13300
|
//#region src/search/schemas.d.ts
|
|
13238
|
-
declare const SEARCH_IDS: readonly ["companies:profiles:crustdata@1", "companies:profiles:crustdata@2", "companies:profiles:amplemarket@1", "companies:profiles:amplemarket@2", "people:profiles:crustdata@1", "people:profiles:crustdata@2", "people:profiles:amplemarket@1", "people:profiles:amplemarket@2", "companies:entitysearch:parallel@1", "people:entitysearch:parallel@1", "people:eventguests:luma@1", "sheet:rows@1", "query:postgres@1"];
|
|
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"];
|
|
13239
13302
|
declare const SearchIdSchema: z.ZodEnum<{
|
|
13240
13303
|
"companies:profiles:crustdata@1": "companies:profiles:crustdata@1";
|
|
13241
13304
|
"companies:profiles:crustdata@2": "companies:profiles:crustdata@2";
|
|
@@ -13250,6 +13313,7 @@ declare const SearchIdSchema: z.ZodEnum<{
|
|
|
13250
13313
|
"people:eventguests:luma@1": "people:eventguests:luma@1";
|
|
13251
13314
|
"sheet:rows@1": "sheet:rows@1";
|
|
13252
13315
|
"query:postgres@1": "query:postgres@1";
|
|
13316
|
+
"query:databricks@1": "query:databricks@1";
|
|
13253
13317
|
}>;
|
|
13254
13318
|
type SearchId = z.infer<typeof SearchIdSchema>;
|
|
13255
13319
|
//#endregion
|
|
@@ -14665,6 +14729,23 @@ declare const searchPayloadSchemaCatalog: {
|
|
|
14665
14729
|
page_number: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
14666
14730
|
}, z$1.core.$strip>;
|
|
14667
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>;
|
|
14668
14749
|
};
|
|
14669
14750
|
declare const searchCatalog: Record<SearchId, SearchDef<any>>;
|
|
14670
14751
|
type SearchCatalog = typeof searchCatalog;
|
|
@@ -16001,6 +16082,22 @@ declare const SearchRequestSchema: z$1.ZodObject<{
|
|
|
16001
16082
|
limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
16002
16083
|
page_number: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
16003
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>;
|
|
16004
16101
|
}, z$1.core.$strip>], string>;
|
|
16005
16102
|
}, z$1.core.$strip>;
|
|
16006
16103
|
declare const SearchErrorSchema: z$1.ZodObject<{
|
|
@@ -16179,6 +16276,7 @@ declare const SearchResultFieldSchema: z$1.ZodObject<{
|
|
|
16179
16276
|
parallel: "parallel";
|
|
16180
16277
|
luma: "luma";
|
|
16181
16278
|
postgres: "postgres";
|
|
16279
|
+
databricks: "databricks";
|
|
16182
16280
|
}>;
|
|
16183
16281
|
}, z$1.core.$strip>>;
|
|
16184
16282
|
available_providers: z$1.ZodArray<z$1.ZodEnum<{
|
|
@@ -16210,6 +16308,7 @@ declare const SearchResultFieldSchema: z$1.ZodObject<{
|
|
|
16210
16308
|
parallel: "parallel";
|
|
16211
16309
|
luma: "luma";
|
|
16212
16310
|
postgres: "postgres";
|
|
16311
|
+
databricks: "databricks";
|
|
16213
16312
|
}>>;
|
|
16214
16313
|
successful_provider: z$1.ZodOptional<z$1.ZodEnum<{
|
|
16215
16314
|
pipe0: "pipe0";
|
|
@@ -16240,6 +16339,7 @@ declare const SearchResultFieldSchema: z$1.ZodObject<{
|
|
|
16240
16339
|
parallel: "parallel";
|
|
16241
16340
|
luma: "luma";
|
|
16242
16341
|
postgres: "postgres";
|
|
16342
|
+
databricks: "databricks";
|
|
16243
16343
|
}>>;
|
|
16244
16344
|
}, z$1.core.$strip>>>;
|
|
16245
16345
|
icon: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -16436,6 +16536,7 @@ declare const SearchResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable<z
|
|
|
16436
16536
|
parallel: "parallel";
|
|
16437
16537
|
luma: "luma";
|
|
16438
16538
|
postgres: "postgres";
|
|
16539
|
+
databricks: "databricks";
|
|
16439
16540
|
}>;
|
|
16440
16541
|
}, z$1.core.$strip>>;
|
|
16441
16542
|
available_providers: z$1.ZodArray<z$1.ZodEnum<{
|
|
@@ -16467,6 +16568,7 @@ declare const SearchResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable<z
|
|
|
16467
16568
|
parallel: "parallel";
|
|
16468
16569
|
luma: "luma";
|
|
16469
16570
|
postgres: "postgres";
|
|
16571
|
+
databricks: "databricks";
|
|
16470
16572
|
}>>;
|
|
16471
16573
|
successful_provider: z$1.ZodOptional<z$1.ZodEnum<{
|
|
16472
16574
|
pipe0: "pipe0";
|
|
@@ -16497,6 +16599,7 @@ declare const SearchResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable<z
|
|
|
16497
16599
|
parallel: "parallel";
|
|
16498
16600
|
luma: "luma";
|
|
16499
16601
|
postgres: "postgres";
|
|
16602
|
+
databricks: "databricks";
|
|
16500
16603
|
}>>;
|
|
16501
16604
|
}, z$1.core.$strip>>>;
|
|
16502
16605
|
icon: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -17836,6 +17939,22 @@ declare function getSearchPayloadSchema(seachId: SearchId): z$1.ZodObject<{
|
|
|
17836
17939
|
limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
17837
17940
|
page_number: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
17838
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>;
|
|
17839
17958
|
}, z$1.core.$strip>;
|
|
17840
17959
|
declare const PaginationTypeSchema: z$1.ZodEnum<{
|
|
17841
17960
|
cursor: "cursor";
|
|
@@ -17864,6 +17983,7 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
17864
17983
|
"people:eventguests:luma@1": "people:eventguests:luma@1";
|
|
17865
17984
|
"sheet:rows@1": "sheet:rows@1";
|
|
17866
17985
|
"query:postgres@1": "query:postgres@1";
|
|
17986
|
+
"query:databricks@1": "query:databricks@1";
|
|
17867
17987
|
}>;
|
|
17868
17988
|
errors: z$1.ZodArray<z$1.ZodObject<{
|
|
17869
17989
|
code: z$1.ZodString;
|
|
@@ -18039,6 +18159,7 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
18039
18159
|
parallel: "parallel";
|
|
18040
18160
|
luma: "luma";
|
|
18041
18161
|
postgres: "postgres";
|
|
18162
|
+
databricks: "databricks";
|
|
18042
18163
|
}>;
|
|
18043
18164
|
}, z$1.core.$strip>>;
|
|
18044
18165
|
available_providers: z$1.ZodArray<z$1.ZodEnum<{
|
|
@@ -18070,6 +18191,7 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
18070
18191
|
parallel: "parallel";
|
|
18071
18192
|
luma: "luma";
|
|
18072
18193
|
postgres: "postgres";
|
|
18194
|
+
databricks: "databricks";
|
|
18073
18195
|
}>>;
|
|
18074
18196
|
successful_provider: z$1.ZodOptional<z$1.ZodEnum<{
|
|
18075
18197
|
pipe0: "pipe0";
|
|
@@ -18100,6 +18222,7 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
18100
18222
|
parallel: "parallel";
|
|
18101
18223
|
luma: "luma";
|
|
18102
18224
|
postgres: "postgres";
|
|
18225
|
+
databricks: "databricks";
|
|
18103
18226
|
}>>;
|
|
18104
18227
|
}, z$1.core.$strip>>>;
|
|
18105
18228
|
icon: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -19439,6 +19562,22 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
19439
19562
|
limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
19440
19563
|
page_number: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodCoercedNumber<unknown>>>>;
|
|
19441
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>;
|
|
19442
19581
|
}, z$1.core.$strip>], string>>;
|
|
19443
19582
|
pagination_type: z$1.ZodNullable<z$1.ZodEnum<{
|
|
19444
19583
|
cursor: "cursor";
|
|
@@ -19505,12 +19644,12 @@ declare function getSearchEntry(searchId: SearchId): SearchDef<any>;
|
|
|
19505
19644
|
declare function getInitialSearchTableData(category: SearchCategory | null): SearchCatalogTableData[];
|
|
19506
19645
|
declare function getDefaultSearchOutputFields(searchId: SearchId): string[];
|
|
19507
19646
|
declare function getSearchTableDataAggregates(initialTableData: SearchCatalogTableData[], category: SearchCategory | null): {
|
|
19508
|
-
searchIdsByOutputField: Record<string, ("companies:profiles:crustdata@1" | "companies:profiles:crustdata@2" | "companies:profiles:amplemarket@1" | "companies:profiles:amplemarket@2" | "people:profiles:crustdata@1" | "people:profiles:crustdata@2" | "people:profiles:amplemarket@1" | "people:profiles:amplemarket@2" | "companies:entitysearch:parallel@1" | "people:entitysearch:parallel@1" | "people:eventguests:luma@1" | "sheet:rows@1" | "query:postgres@1")[]>;
|
|
19509
|
-
searchIdsByTag: Record<string, ("companies:profiles:crustdata@1" | "companies:profiles:crustdata@2" | "companies:profiles:amplemarket@1" | "companies:profiles:amplemarket@2" | "people:profiles:crustdata@1" | "people:profiles:crustdata@2" | "people:profiles:amplemarket@1" | "people:profiles:amplemarket@2" | "companies:entitysearch:parallel@1" | "people:entitysearch:parallel@1" | "people:eventguests:luma@1" | "sheet:rows@1" | "query:postgres@1")[]>;
|
|
19510
|
-
searchIdsByProvider: Record<string, ("companies:profiles:crustdata@1" | "companies:profiles:crustdata@2" | "companies:profiles:amplemarket@1" | "companies:profiles:amplemarket@2" | "people:profiles:crustdata@1" | "people:profiles:crustdata@2" | "people:profiles:amplemarket@1" | "people:profiles:amplemarket@2" | "companies:entitysearch:parallel@1" | "people:entitysearch:parallel@1" | "people:eventguests:luma@1" | "sheet:rows@1" | "query:postgres@1")[]>;
|
|
19511
|
-
sortedTagEntries: [string, ("companies:profiles:crustdata@1" | "companies:profiles:crustdata@2" | "companies:profiles:amplemarket@1" | "companies:profiles:amplemarket@2" | "people:profiles:crustdata@1" | "people:profiles:crustdata@2" | "people:profiles:amplemarket@1" | "people:profiles:amplemarket@2" | "companies:entitysearch:parallel@1" | "people:entitysearch:parallel@1" | "people:eventguests:luma@1" | "sheet:rows@1" | "query:postgres@1")[]][];
|
|
19512
|
-
sortedOutputFieldEntries: [string, ("companies:profiles:crustdata@1" | "companies:profiles:crustdata@2" | "companies:profiles:amplemarket@1" | "companies:profiles:amplemarket@2" | "people:profiles:crustdata@1" | "people:profiles:crustdata@2" | "people:profiles:amplemarket@1" | "people:profiles:amplemarket@2" | "companies:entitysearch:parallel@1" | "people:entitysearch:parallel@1" | "people:eventguests:luma@1" | "sheet:rows@1" | "query:postgres@1")[]][];
|
|
19513
|
-
sortedProviderEntries: [string, ("companies:profiles:crustdata@1" | "companies:profiles:crustdata@2" | "companies:profiles:amplemarket@1" | "companies:profiles:amplemarket@2" | "people:profiles:crustdata@1" | "people:profiles:crustdata@2" | "people:profiles:amplemarket@1" | "people:profiles:amplemarket@2" | "companies:entitysearch:parallel@1" | "people:entitysearch:parallel@1" | "people:eventguests:luma@1" | "sheet:rows@1" | "query:postgres@1")[]][];
|
|
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")[]][];
|
|
19514
19653
|
searchEntriesByBaseSearch: Record<string, SearchMetaEntryWithId[]>;
|
|
19515
19654
|
};
|
|
19516
19655
|
declare function getStartingCostPerSearchProvider(search_id: SearchId): {
|
|
@@ -22081,6 +22220,7 @@ declare const SearchesResultFieldSchema: z$1.ZodObject<{
|
|
|
22081
22220
|
parallel: "parallel";
|
|
22082
22221
|
luma: "luma";
|
|
22083
22222
|
postgres: "postgres";
|
|
22223
|
+
databricks: "databricks";
|
|
22084
22224
|
}>;
|
|
22085
22225
|
}, z$1.core.$strip>>;
|
|
22086
22226
|
available_providers: z$1.ZodArray<z$1.ZodEnum<{
|
|
@@ -22112,6 +22252,7 @@ declare const SearchesResultFieldSchema: z$1.ZodObject<{
|
|
|
22112
22252
|
parallel: "parallel";
|
|
22113
22253
|
luma: "luma";
|
|
22114
22254
|
postgres: "postgres";
|
|
22255
|
+
databricks: "databricks";
|
|
22115
22256
|
}>>;
|
|
22116
22257
|
successful_provider: z$1.ZodOptional<z$1.ZodEnum<{
|
|
22117
22258
|
pipe0: "pipe0";
|
|
@@ -22142,6 +22283,7 @@ declare const SearchesResultFieldSchema: z$1.ZodObject<{
|
|
|
22142
22283
|
parallel: "parallel";
|
|
22143
22284
|
luma: "luma";
|
|
22144
22285
|
postgres: "postgres";
|
|
22286
|
+
databricks: "databricks";
|
|
22145
22287
|
}>>;
|
|
22146
22288
|
}, z$1.core.$strip>>>;
|
|
22147
22289
|
icon: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -22338,6 +22480,7 @@ declare const SearchesResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable
|
|
|
22338
22480
|
parallel: "parallel";
|
|
22339
22481
|
luma: "luma";
|
|
22340
22482
|
postgres: "postgres";
|
|
22483
|
+
databricks: "databricks";
|
|
22341
22484
|
}>;
|
|
22342
22485
|
}, z$1.core.$strip>>;
|
|
22343
22486
|
available_providers: z$1.ZodArray<z$1.ZodEnum<{
|
|
@@ -22369,6 +22512,7 @@ declare const SearchesResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable
|
|
|
22369
22512
|
parallel: "parallel";
|
|
22370
22513
|
luma: "luma";
|
|
22371
22514
|
postgres: "postgres";
|
|
22515
|
+
databricks: "databricks";
|
|
22372
22516
|
}>>;
|
|
22373
22517
|
successful_provider: z$1.ZodOptional<z$1.ZodEnum<{
|
|
22374
22518
|
pipe0: "pipe0";
|
|
@@ -22399,6 +22543,7 @@ declare const SearchesResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable
|
|
|
22399
22543
|
parallel: "parallel";
|
|
22400
22544
|
luma: "luma";
|
|
22401
22545
|
postgres: "postgres";
|
|
22546
|
+
databricks: "databricks";
|
|
22402
22547
|
}>>;
|
|
22403
22548
|
}, z$1.core.$strip>>>;
|
|
22404
22549
|
icon: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -22645,6 +22790,7 @@ declare const SearchesResponseSchema: z$1.ZodObject<{
|
|
|
22645
22790
|
parallel: "parallel";
|
|
22646
22791
|
luma: "luma";
|
|
22647
22792
|
postgres: "postgres";
|
|
22793
|
+
databricks: "databricks";
|
|
22648
22794
|
}>;
|
|
22649
22795
|
}, z$1.core.$strip>>;
|
|
22650
22796
|
available_providers: z$1.ZodArray<z$1.ZodEnum<{
|
|
@@ -22676,6 +22822,7 @@ declare const SearchesResponseSchema: z$1.ZodObject<{
|
|
|
22676
22822
|
parallel: "parallel";
|
|
22677
22823
|
luma: "luma";
|
|
22678
22824
|
postgres: "postgres";
|
|
22825
|
+
databricks: "databricks";
|
|
22679
22826
|
}>>;
|
|
22680
22827
|
successful_provider: z$1.ZodOptional<z$1.ZodEnum<{
|
|
22681
22828
|
pipe0: "pipe0";
|
|
@@ -22706,6 +22853,7 @@ declare const SearchesResponseSchema: z$1.ZodObject<{
|
|
|
22706
22853
|
parallel: "parallel";
|
|
22707
22854
|
luma: "luma";
|
|
22708
22855
|
postgres: "postgres";
|
|
22856
|
+
databricks: "databricks";
|
|
22709
22857
|
}>>;
|
|
22710
22858
|
}, z$1.core.$strip>>>;
|
|
22711
22859
|
icon: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -24093,10 +24241,12 @@ declare class FieldAnnotations {
|
|
|
24093
24241
|
getAnnotation(key: string): FieldAnnotationsType[string] | undefined;
|
|
24094
24242
|
static fromInput(input: Record<string, FieldValue>[], {
|
|
24095
24243
|
probeCount,
|
|
24096
|
-
inferCatalogFields
|
|
24244
|
+
inferCatalogFields,
|
|
24245
|
+
addIdColumn
|
|
24097
24246
|
}?: {
|
|
24098
24247
|
probeCount?: number;
|
|
24099
24248
|
inferCatalogFields?: boolean;
|
|
24249
|
+
addIdColumn?: boolean;
|
|
24100
24250
|
}): FieldAnnotations;
|
|
24101
24251
|
merge(source: FieldAnnotationsType | FieldAnnotations, overwrite?: boolean): FieldAnnotations;
|
|
24102
24252
|
deleteKey(fieldName: string): FieldAnnotations;
|
|
@@ -39832,6 +39982,7 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
39832
39982
|
parallel: "parallel";
|
|
39833
39983
|
luma: "luma";
|
|
39834
39984
|
postgres: "postgres";
|
|
39985
|
+
databricks: "databricks";
|
|
39835
39986
|
}>;
|
|
39836
39987
|
}, z.core.$strip>>;
|
|
39837
39988
|
available_providers: z.ZodArray<z.ZodEnum<{
|
|
@@ -39863,6 +40014,7 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
39863
40014
|
parallel: "parallel";
|
|
39864
40015
|
luma: "luma";
|
|
39865
40016
|
postgres: "postgres";
|
|
40017
|
+
databricks: "databricks";
|
|
39866
40018
|
}>>;
|
|
39867
40019
|
successful_provider: z.ZodOptional<z.ZodEnum<{
|
|
39868
40020
|
pipe0: "pipe0";
|
|
@@ -39893,6 +40045,7 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
39893
40045
|
parallel: "parallel";
|
|
39894
40046
|
luma: "luma";
|
|
39895
40047
|
postgres: "postgres";
|
|
40048
|
+
databricks: "databricks";
|
|
39896
40049
|
}>>;
|
|
39897
40050
|
}, z.core.$strip>>>;
|
|
39898
40051
|
icon: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -45881,6 +46034,7 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
45881
46034
|
parallel: "parallel";
|
|
45882
46035
|
luma: "luma";
|
|
45883
46036
|
postgres: "postgres";
|
|
46037
|
+
databricks: "databricks";
|
|
45884
46038
|
}>;
|
|
45885
46039
|
}, z.core.$strip>>;
|
|
45886
46040
|
available_providers: z.ZodArray<z.ZodEnum<{
|
|
@@ -45912,6 +46066,7 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
45912
46066
|
parallel: "parallel";
|
|
45913
46067
|
luma: "luma";
|
|
45914
46068
|
postgres: "postgres";
|
|
46069
|
+
databricks: "databricks";
|
|
45915
46070
|
}>>;
|
|
45916
46071
|
successful_provider: z.ZodOptional<z.ZodEnum<{
|
|
45917
46072
|
pipe0: "pipe0";
|
|
@@ -45942,6 +46097,7 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
45942
46097
|
parallel: "parallel";
|
|
45943
46098
|
luma: "luma";
|
|
45944
46099
|
postgres: "postgres";
|
|
46100
|
+
databricks: "databricks";
|
|
45945
46101
|
}>>;
|
|
45946
46102
|
}, z.core.$strip>>>;
|
|
45947
46103
|
icon: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -48871,10 +49027,10 @@ declare function markRecordFieldAsComplete({
|
|
|
48871
49027
|
} | undefined;
|
|
48872
49028
|
waterfall?: {
|
|
48873
49029
|
attempted_providers: {
|
|
48874
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
48875
49031
|
}[];
|
|
48876
|
-
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres")[];
|
|
48877
|
-
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | undefined;
|
|
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;
|
|
48878
49034
|
} | undefined;
|
|
48879
49035
|
icon?: {
|
|
48880
49036
|
key: "linkedin" | "job";
|
|
@@ -48935,10 +49091,10 @@ declare function markRecordFieldAsPending({
|
|
|
48935
49091
|
} | undefined;
|
|
48936
49092
|
waterfall?: {
|
|
48937
49093
|
attempted_providers: {
|
|
48938
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
48939
49095
|
}[];
|
|
48940
|
-
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres")[];
|
|
48941
|
-
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | undefined;
|
|
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;
|
|
48942
49098
|
} | undefined;
|
|
48943
49099
|
icon?: {
|
|
48944
49100
|
key: "linkedin" | "job";
|
|
@@ -49005,10 +49161,10 @@ declare function markRecordFieldAsNoResult({
|
|
|
49005
49161
|
} | undefined;
|
|
49006
49162
|
waterfall?: {
|
|
49007
49163
|
attempted_providers: {
|
|
49008
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
49009
49165
|
}[];
|
|
49010
|
-
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres")[];
|
|
49011
|
-
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | undefined;
|
|
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;
|
|
49012
49168
|
} | undefined;
|
|
49013
49169
|
icon?: {
|
|
49014
49170
|
key: "linkedin" | "job";
|
|
@@ -49065,10 +49221,10 @@ declare function markRecordFieldAsFailed(field: RecordField, reason: FieldReason
|
|
|
49065
49221
|
} | undefined;
|
|
49066
49222
|
waterfall?: {
|
|
49067
49223
|
attempted_providers: {
|
|
49068
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
49069
49225
|
}[];
|
|
49070
|
-
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres")[];
|
|
49071
|
-
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | undefined;
|
|
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;
|
|
49072
49228
|
} | undefined;
|
|
49073
49229
|
icon?: {
|
|
49074
49230
|
key: "linkedin" | "job";
|
|
@@ -49125,10 +49281,10 @@ declare function markRecordFieldAsSkipped(field: RecordField, reason: FieldReaso
|
|
|
49125
49281
|
} | undefined;
|
|
49126
49282
|
waterfall?: {
|
|
49127
49283
|
attempted_providers: {
|
|
49128
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
49129
49285
|
}[];
|
|
49130
|
-
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres")[];
|
|
49131
|
-
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | undefined;
|
|
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;
|
|
49132
49288
|
} | undefined;
|
|
49133
49289
|
icon?: {
|
|
49134
49290
|
key: "linkedin" | "job";
|
|
@@ -49185,10 +49341,10 @@ declare function markRecordFieldAsProcessing(field: RecordField): {
|
|
|
49185
49341
|
} | undefined;
|
|
49186
49342
|
waterfall?: {
|
|
49187
49343
|
attempted_providers: {
|
|
49188
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
49189
49345
|
}[];
|
|
49190
|
-
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres")[];
|
|
49191
|
-
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | undefined;
|
|
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;
|
|
49192
49348
|
} | undefined;
|
|
49193
49349
|
icon?: {
|
|
49194
49350
|
key: "linkedin" | "job";
|
|
@@ -49684,10 +49840,10 @@ declare function inputFromRecords(records: PipesInMemoryResponse["records"], con
|
|
|
49684
49840
|
} | undefined;
|
|
49685
49841
|
waterfall?: {
|
|
49686
49842
|
attempted_providers: {
|
|
49687
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
49688
49844
|
}[];
|
|
49689
|
-
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres")[];
|
|
49690
|
-
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | undefined;
|
|
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;
|
|
49691
49847
|
} | undefined;
|
|
49692
49848
|
icon?: {
|
|
49693
49849
|
key: "linkedin" | "job";
|
|
@@ -49744,10 +49900,10 @@ declare function inputFromRecords(records: PipesInMemoryResponse["records"], con
|
|
|
49744
49900
|
} | undefined;
|
|
49745
49901
|
waterfall?: {
|
|
49746
49902
|
attempted_providers: {
|
|
49747
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
49748
49904
|
}[];
|
|
49749
|
-
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres")[];
|
|
49750
|
-
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | undefined;
|
|
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;
|
|
49751
49907
|
} | undefined;
|
|
49752
49908
|
icon?: {
|
|
49753
49909
|
key: "linkedin" | "job";
|
|
@@ -49807,10 +49963,10 @@ declare function inputFromRecordArr(records: PipesRecord[], config?: Partial<Fie
|
|
|
49807
49963
|
} | undefined;
|
|
49808
49964
|
waterfall?: {
|
|
49809
49965
|
attempted_providers: {
|
|
49810
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
49811
49967
|
}[];
|
|
49812
|
-
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres")[];
|
|
49813
|
-
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | undefined;
|
|
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;
|
|
49814
49970
|
} | undefined;
|
|
49815
49971
|
icon?: {
|
|
49816
49972
|
key: "linkedin" | "job";
|
|
@@ -49867,10 +50023,10 @@ declare function inputFromRecordArr(records: PipesRecord[], config?: Partial<Fie
|
|
|
49867
50023
|
} | undefined;
|
|
49868
50024
|
waterfall?: {
|
|
49869
50025
|
attempted_providers: {
|
|
49870
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
49871
50027
|
}[];
|
|
49872
|
-
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres")[];
|
|
49873
|
-
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | undefined;
|
|
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;
|
|
49874
50030
|
} | undefined;
|
|
49875
50031
|
icon?: {
|
|
49876
50032
|
key: "linkedin" | "job";
|
|
@@ -49930,10 +50086,10 @@ declare function inputFromRecord(record: PipesRecord, config?: Partial<FieldsToO
|
|
|
49930
50086
|
} | undefined;
|
|
49931
50087
|
waterfall?: {
|
|
49932
50088
|
attempted_providers: {
|
|
49933
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
49934
50090
|
}[];
|
|
49935
|
-
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres")[];
|
|
49936
|
-
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | undefined;
|
|
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;
|
|
49937
50093
|
} | undefined;
|
|
49938
50094
|
icon?: {
|
|
49939
50095
|
key: "linkedin" | "job";
|
|
@@ -49990,10 +50146,10 @@ declare function inputFromRecord(record: PipesRecord, config?: Partial<FieldsToO
|
|
|
49990
50146
|
} | undefined;
|
|
49991
50147
|
waterfall?: {
|
|
49992
50148
|
attempted_providers: {
|
|
49993
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
49994
50150
|
}[];
|
|
49995
|
-
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres")[];
|
|
49996
|
-
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres" | undefined;
|
|
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;
|
|
49997
50153
|
} | undefined;
|
|
49998
50154
|
icon?: {
|
|
49999
50155
|
key: "linkedin" | "job";
|
|
@@ -50036,7 +50192,7 @@ type ProviderCatalogEntry = {
|
|
|
50036
50192
|
description: string;
|
|
50037
50193
|
public: boolean;
|
|
50038
50194
|
url: string;
|
|
50039
|
-
connectionType: "api_key" | "oauth_token" | "oauth_token_bundle" | "connection_string";
|
|
50195
|
+
connectionType: "api_key" | "oauth_token" | "oauth_token_bundle" | "connection_string" | "databricks";
|
|
50040
50196
|
hasManagedConnections: boolean;
|
|
50041
50197
|
allowsUserConnections: boolean;
|
|
50042
50198
|
oAuthConfig: object | null;
|
|
@@ -50490,11 +50646,27 @@ declare const providerCatalog: {
|
|
|
50490
50646
|
};
|
|
50491
50647
|
readonly oAuthConfig: null;
|
|
50492
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
|
+
};
|
|
50493
50665
|
};
|
|
50494
50666
|
//#endregion
|
|
50495
50667
|
//#region src/providers/provider-utils.d.ts
|
|
50496
50668
|
declare function getProviderEntry(providerName: ProviderName): {
|
|
50497
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
50498
50670
|
name: "pipe0";
|
|
50499
50671
|
label: "pipe0";
|
|
50500
50672
|
description: "A framework for lead and company data enrichment.";
|
|
@@ -50510,7 +50682,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50510
50682
|
};
|
|
50511
50683
|
oAuthConfig: null;
|
|
50512
50684
|
} | {
|
|
50513
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
50514
50686
|
name: "findymail";
|
|
50515
50687
|
label: "FindyMail";
|
|
50516
50688
|
description: "Find verified emails.";
|
|
@@ -50526,7 +50698,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50526
50698
|
readonly dark: "#143822";
|
|
50527
50699
|
};
|
|
50528
50700
|
} | {
|
|
50529
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
50530
50702
|
name: "hunter";
|
|
50531
50703
|
label: "HunterMail";
|
|
50532
50704
|
description: "Find email addresses and send cold emails";
|
|
@@ -50542,7 +50714,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50542
50714
|
readonly dark: "#3D1F0C";
|
|
50543
50715
|
};
|
|
50544
50716
|
} | {
|
|
50545
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
50546
50718
|
name: "zerobounce";
|
|
50547
50719
|
label: "ZeroBounce";
|
|
50548
50720
|
description: "Email validation tools and email list cleaning";
|
|
@@ -50558,7 +50730,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50558
50730
|
};
|
|
50559
50731
|
oAuthConfig: null;
|
|
50560
50732
|
} | {
|
|
50561
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
50562
50734
|
name: "googlemaps";
|
|
50563
50735
|
label: "Google Maps";
|
|
50564
50736
|
description: "A map service by Google";
|
|
@@ -50574,7 +50746,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50574
50746
|
};
|
|
50575
50747
|
oAuthConfig: null;
|
|
50576
50748
|
} | {
|
|
50577
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
50578
50750
|
name: "leadmagic";
|
|
50579
50751
|
label: "LeadMagic";
|
|
50580
50752
|
description: "Enrichment provider";
|
|
@@ -50590,7 +50762,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50590
50762
|
};
|
|
50591
50763
|
oAuthConfig: null;
|
|
50592
50764
|
} | {
|
|
50593
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
50594
50766
|
name: "builtwith";
|
|
50595
50767
|
label: "BuiltWith";
|
|
50596
50768
|
description: "BuiltWith tracks over 2500 eCommerce technologies across over 26 million eCommerce websites.";
|
|
@@ -50606,7 +50778,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50606
50778
|
};
|
|
50607
50779
|
oAuthConfig: null;
|
|
50608
50780
|
} | {
|
|
50609
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
50610
50782
|
name: "perplexity";
|
|
50611
50783
|
label: "Perplexity";
|
|
50612
50784
|
description: "AI search company";
|
|
@@ -50622,7 +50794,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50622
50794
|
};
|
|
50623
50795
|
oAuthConfig: null;
|
|
50624
50796
|
} | {
|
|
50625
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
50626
50798
|
name: "serper";
|
|
50627
50799
|
label: "Serper";
|
|
50628
50800
|
description: "The World's Fastest & Cheapest Google Search API";
|
|
@@ -50638,7 +50810,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50638
50810
|
};
|
|
50639
50811
|
oAuthConfig: null;
|
|
50640
50812
|
} | {
|
|
50641
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
50642
50814
|
name: "icypeas";
|
|
50643
50815
|
label: "Icypeas";
|
|
50644
50816
|
description: "A popular data catalog";
|
|
@@ -50654,7 +50826,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50654
50826
|
};
|
|
50655
50827
|
oAuthConfig: null;
|
|
50656
50828
|
} | {
|
|
50657
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
50658
50830
|
name: "prospeo";
|
|
50659
50831
|
label: "Prospeo";
|
|
50660
50832
|
description: "Find anyone’s contact data.";
|
|
@@ -50670,7 +50842,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50670
50842
|
};
|
|
50671
50843
|
oAuthConfig: null;
|
|
50672
50844
|
} | {
|
|
50673
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
50674
50846
|
name: "gemini";
|
|
50675
50847
|
label: "Gemini";
|
|
50676
50848
|
description: "Google's AI service";
|
|
@@ -50686,7 +50858,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50686
50858
|
};
|
|
50687
50859
|
oAuthConfig: null;
|
|
50688
50860
|
} | {
|
|
50689
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
50690
50862
|
name: "slack";
|
|
50691
50863
|
label: "Slack";
|
|
50692
50864
|
description: "A modern business chat application.";
|
|
@@ -50702,7 +50874,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50702
50874
|
};
|
|
50703
50875
|
oAuthConfig: {};
|
|
50704
50876
|
} | {
|
|
50705
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
50706
50878
|
name: "companyenrich";
|
|
50707
50879
|
label: "CompanyEnrich";
|
|
50708
50880
|
description: "A company enrichment service.";
|
|
@@ -50718,7 +50890,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50718
50890
|
};
|
|
50719
50891
|
oAuthConfig: {};
|
|
50720
50892
|
} | {
|
|
50721
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
50722
50894
|
name: "mixrank";
|
|
50723
50895
|
label: "MixRank";
|
|
50724
50896
|
description: "Ultra-high-frequency technographic and people data for your data teams.";
|
|
@@ -50734,7 +50906,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50734
50906
|
readonly dark: "#3A1D08";
|
|
50735
50907
|
};
|
|
50736
50908
|
} | {
|
|
50737
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
50738
50910
|
name: "clado";
|
|
50739
50911
|
label: "Clado";
|
|
50740
50912
|
description: "A data provider deploying 10^5 AI agents to find contact information.";
|
|
@@ -50750,7 +50922,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50750
50922
|
};
|
|
50751
50923
|
oAuthConfig: null;
|
|
50752
50924
|
} | {
|
|
50753
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
50754
50926
|
name: "gmail";
|
|
50755
50927
|
label: "Gmail";
|
|
50756
50928
|
description: "Google's email service";
|
|
@@ -50766,7 +50938,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50766
50938
|
};
|
|
50767
50939
|
oAuthConfig: {};
|
|
50768
50940
|
} | {
|
|
50769
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
50770
50942
|
name: "resend";
|
|
50771
50943
|
label: "Resend";
|
|
50772
50944
|
description: "An email platform built for developers.";
|
|
@@ -50782,7 +50954,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50782
50954
|
};
|
|
50783
50955
|
oAuthConfig: null;
|
|
50784
50956
|
} | {
|
|
50785
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
50786
50958
|
name: "firecrawl";
|
|
50787
50959
|
label: "Firecrawl";
|
|
50788
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.";
|
|
@@ -50798,7 +50970,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50798
50970
|
};
|
|
50799
50971
|
oAuthConfig: null;
|
|
50800
50972
|
} | {
|
|
50801
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
50802
50974
|
name: "exa";
|
|
50803
50975
|
label: "Exa";
|
|
50804
50976
|
description: "Exa is a search engine built for AI.";
|
|
@@ -50814,7 +50986,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50814
50986
|
};
|
|
50815
50987
|
oAuthConfig: null;
|
|
50816
50988
|
} | {
|
|
50817
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
50818
50990
|
name: "openai";
|
|
50819
50991
|
label: "OpenAI";
|
|
50820
50992
|
description: "Foundational AI company based out of San Francisco.";
|
|
@@ -50830,7 +51002,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50830
51002
|
};
|
|
50831
51003
|
oAuthConfig: null;
|
|
50832
51004
|
} | {
|
|
50833
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
50834
51006
|
name: "millionverifier";
|
|
50835
51007
|
label: "MillionVerifier";
|
|
50836
51008
|
description: "E-Mail validation service.";
|
|
@@ -50846,7 +51018,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50846
51018
|
};
|
|
50847
51019
|
oAuthConfig: null;
|
|
50848
51020
|
} | {
|
|
50849
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
50850
51022
|
name: "logodev";
|
|
50851
51023
|
label: "Logo.dev";
|
|
50852
51024
|
description: "Every company logo, one simple API.";
|
|
@@ -50862,7 +51034,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50862
51034
|
};
|
|
50863
51035
|
oAuthConfig: null;
|
|
50864
51036
|
} | {
|
|
50865
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
50866
51038
|
name: "crustdata";
|
|
50867
51039
|
label: "Crustdata";
|
|
50868
51040
|
description: "Real-time company & people data";
|
|
@@ -50878,7 +51050,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50878
51050
|
};
|
|
50879
51051
|
oAuthConfig: null;
|
|
50880
51052
|
} | {
|
|
50881
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
50882
51054
|
name: "amplemarket";
|
|
50883
51055
|
label: "Amplemarket";
|
|
50884
51056
|
description: "Sales data platform";
|
|
@@ -50894,7 +51066,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50894
51066
|
};
|
|
50895
51067
|
oAuthConfig: null;
|
|
50896
51068
|
} | {
|
|
50897
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
50898
51070
|
name: "parallel";
|
|
50899
51071
|
label: "Parallel";
|
|
50900
51072
|
description: "Agentic web search & research APIs purpose-built for AI agents.";
|
|
@@ -50910,7 +51082,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50910
51082
|
};
|
|
50911
51083
|
oAuthConfig: null;
|
|
50912
51084
|
} | {
|
|
50913
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
50914
51086
|
name: "luma";
|
|
50915
51087
|
label: "Luma";
|
|
50916
51088
|
description: "Delightful events, calendars, and ticketing for communities.";
|
|
@@ -50926,7 +51098,7 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50926
51098
|
};
|
|
50927
51099
|
oAuthConfig: null;
|
|
50928
51100
|
} | {
|
|
50929
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
50930
51102
|
name: "postgres";
|
|
50931
51103
|
label: "PostgreSQL";
|
|
50932
51104
|
description: "Connect your own PostgreSQL database and query it read-only.";
|
|
@@ -50941,6 +51113,22 @@ declare function getProviderEntry(providerName: ProviderName): {
|
|
|
50941
51113
|
readonly dark: "#0B2A45";
|
|
50942
51114
|
};
|
|
50943
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;
|
|
50944
51132
|
};
|
|
50945
51133
|
//#endregion
|
|
50946
51134
|
//#region src/sandbox.d.ts
|
|
@@ -51150,7 +51338,7 @@ declare function configDefaults<T extends Record<string, any> | null | undefined
|
|
|
51150
51338
|
//#endregion
|
|
51151
51339
|
//#region src/utils/connection-id.d.ts
|
|
51152
51340
|
declare function splitConnectionString(connection: string): {
|
|
51153
|
-
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "mixrank" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket" | "parallel" | "luma" | "postgres";
|
|
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";
|
|
51154
51342
|
id: string;
|
|
51155
51343
|
};
|
|
51156
51344
|
declare function joinConnectionString(connection: {
|
|
@@ -51506,4 +51694,4 @@ declare const ProfileFieldSchema: z.ZodObject<{
|
|
|
51506
51694
|
}, z.core.$strip>;
|
|
51507
51695
|
type ProfielField = z.infer<typeof ProfileFieldSchema>;
|
|
51508
51696
|
//#endregion
|
|
51509
|
-
export { AI_MODELS, AI_MODEL_CATALOG, type AiModelId, type AnalysisResult, AnyPipeConstructor, AppError, AsyncIncludeExcludeSelectMeta, AsyncMultiSelectMeta, type AutocompleteOption, type AutocompleteSourceKey, BillableOperation, BillableOperationDef, BillableOperations, BillingMode, BooleanMeta, type BuiltWithTechStackTransformedRespoonse as BuiltWithDomainStack, type BuiltWithTechStackTransformedRespoonse, type CatalogEntityFilter, type CatalogFilter, type CatalogPattern, CatalogSchemaRef, CatalogSchemaRefSchema, type CladoPersonMatch, type CladoPersonMatchV2, ConditionOperators, ConditionOperatorsSchema, ConfigField, ConnectorConnection, ConnectorMeta, type ConstantSuggestion, ContextSelectMeta, CursorPaginationMeta, DateRangeMeta, type DedupConfig, type DedupStrategy, type DependencyGraphRelation, DerivedInputFields, EmailValidationStatus, type EnabledIf, type EnabledResult, ExactRangeMeta, ExecutionMode, ExpandedFieldValue, ExpandedFieldValueSchema, ExternalProviderName, FIELD_PLACEHOLDERS, FieldAnnotation, FieldAnnotationSchema, FieldAnnotations, FieldAnnotationsSchema, FieldAnnotationsType, FieldCatalog, type FieldContextArgs, type FieldContextClient, type FieldContextSheetSummary, FieldEntry, FieldGroup, FieldMode, FieldName, FieldNameSchema, type FieldPlaceholderKey, FieldReason, FieldReasonSchema, FieldSchemaType, FieldValue, FieldValueMap, FieldValueSchema, FieldsSelectMeta, FieldsToObjectsConfig, type FormResolvers, FormSection, FormSectionMeta, type FormStore, FormStoreSchema, GeneratedFormInputType, GeneratedInputMeta, GeneratedInputMetaMap, type GetConnectionsArgs, type GetConstantsArgs, type GetSecretsArgs, GroupPathMatch, HIGH_VOLUME_PRICING_MIN_CREDITS, type HighVolumeEligibleOperation, HighVolumeLevel, type HighVolumeTier, type IconKey, IconWidgetKey, type IcypeasCompanyMatch, type IcypeasPersonMatch, IncludeExcludeMeta, IncludeExcludeSelectMeta, IntegerMeta, IntermediateFormSection, JSONExtractSchema, JSONExtraction, JSONExtractionMeta, JSONMeta, JSONMetaSchema, JSONSchemaMeta, JsonFieldType, KeyValueListMeta, LazyResolveContext, type LumaEventGuestMatch, ManagedCredits, MinMaxIntMeta, MultiCreateMeta, MultiSelectMeta, NamedFieldEntry, NoConnector, NoConnectorSchema, NullableBooleanMeta, NumberMeta, OptionalConnector, OptionalConnectorSchema, type OptionsDef, OrderedMultiCreateMeta, type OutputDecl, OutputFieldMeta, PIPE_IDS, PaginationType, PaginationTypeSchema, PersonWorkemailWaterfall1Entry, PersonWorkemailWaterfall1PayloadSchema, PersonWorkemailWaterfall1PipeClass, Pipe, Pipe0Error, PipeBaseConfig, PipeCatalog, PipeCatalogEntry, PipeCategory, PipeCategoryEntry, PipeConfigMapByExpecutionType, PipeConnectionRequirement, PipeDef, PipeEntryWithLatestVersion, type PipeFieldContextDef, PipeId, PipeIdSchema, PipeInputField, PipeModuleExport, PipeOutputField, PipePayload, PipePayloadInput, PipePayloadMap, PipePayloadSchema, PipePayloadSchemaCatalog, PipeRequestPayloadMap, PipeRunIf, PipeRunIfSchema, PipelineValidationError, type PipesEnvironment, PipesEnvironmentSchema, PipesError, PipesErrorSchema, PipesFieldDefinition, PipesFieldDefinitionSchema, PipesFieldDefinitionWithName, PipesFieldDefinitions, PipesFieldDefinitionsSchema, PipesInMemoryResponse, PipesInput, PipesInputSchema, PipesRecord, PipesRequest, PipesRequestConfig, PipesRequestConfigSchema, PipesRequestPayload, PipesRequestSchema, PipesResponse, PipesResponseSchema, PipesRunIfMeta, ProcessedPipePayloadSchema, ProcessedSearchPayloadSchema, ProcessedSearchesPayloadSchema, type ProfielField, PromptMeta, ProviderCatalogEntry, ProviderName, ProviderNameSchema, ProviderRateLimitOperation, ProvidersInputMeta, RECORD_FIELD_FORMATS, RECORD_FIELD_TYPES, RUN_IF_OPERATOR_LABELS, RUN_IF_STATUS_OPERATORS, RUN_IF_VALUE_OPERATORS, RangeMeta, RecordClaimedBy, RecordClaimedBySchema, RecordField, RecordFieldFormat, RecordFieldFormatSchema, RecordFieldSchema, RecordFieldStatus, RecordFieldStatusSchema, RecordFieldType, RecordFieldTypeSchema, RecordId, RecordIdSchema, RecordResolvedBy, RecordResolvedBySchema, RecordSchema, RequestValidationError, RequiredConnector, RequiredConnectorSchema, type Requirement, RequirementSatisfactionResult, type RichTextNode, RunIfStatusOperatorsSchema, RunIfStatusValueSchema, RunIfValueOperatorsSchema, SEARCHES_IDS, SEARCH_IDS, Search, SearchCatalog, SearchCatalogEntry, SearchCatalogTableData, SearchCategory, SearchCategoryEntry, SearchError, SearchErrorSchema, SearchId, SearchIdSchema, SearchMetaEntryWithId, SearchOutputField, SearchPayload, SearchPayloadCatalog, SearchPayloadInput, SearchPayloadMap, SearchPayloadSchema, SearchRequestPayload, SearchRequestPayloadMap, SearchRequestSchema, SearchRequestType, SearchResponse, SearchResponseSchema, SearchResult, SearchResultField, SearchResultFieldSchema, SearchResultSchema, SearchValidationResult, SearchesCatalog, SearchesCatalogEntry, SearchesCatalogTableData, SearchesCostPerResult, SearchesCostPerResultEntry, SearchesError, SearchesErrorSchema, SearchesId, SearchesIdSchema, SearchesMetaEntryWithId, SearchesPayload, SearchesPayloadCatalog, SearchesPayloadInput, SearchesPayloadMap, SearchesPayloadSchema, SearchesRequest, SearchesRequestBaseConfig, SearchesRequestBaseConfigSchema, SearchesRequestPayload, SearchesRequestPayloadMap, SearchesRequestSchema, SearchesResponse, SearchesResponseSchema, SearchesResult, SearchesResultField, SearchesResultFieldSchema, SearchesResultSchema, SearchesSearch, SearchesStatus, SearchesStatusSchema, SearchesValidationResult, type SecretSuggestion, SectionKeys, SectionMapDefinition, SelectMeta, type StoreOption, StoreOptionAutocompleteOption, StoreOptionsDef, SupportedTags, TYPES_TO_FORMATS, TaggedOrderedMultiCreateMeta, TaggedTextMeta, TemplateInputMeta, TextMeta, TextareaMeta, Tier, type TransformIntoResponseConfig, type UserConnection, ValidationContext, type Widget, Widgets, type StoreOptionWidget as WidgetsByKind, StoreOptionWidgetSchema as WidgetsByKindSchema, WidgetsSchema, all, analyzeLiquidTemplate, and, any, assertUniqueBillableOperations, autocomplete, buildAiModelBillableOperations, buildDependencyGraph, buildInputRequirementFromTemplates, catalogInput, cleanObject, cleanUrl, cleanWebsiteUrl, collectConstantReferencesFromTemplates, collectPipeContextSelectFields, collectRequirementFields, collectSearchContextSelectFields, collectSecretReferencesFromTemplates, compilePattern, configDefaults, convertIntermediateFieldsIntoGroups, defaultSectionMap, describeRequirement, entityLogoFavicon, entityLogoProfessionalProfileUrl, extractFormMetadata, field, fieldBehaviorCatalog, fieldCatalog, fieldNameStr, fieldTypeFromValue, fieldsToObject, filterPipeEntries, filterSearchEntries, filterSearchesEntries, getAiModelBillingKey, getAiModelConnectionRequirements, getAiModelProviders, getAllAiModelProviders, getBasePipeName, getDefaultOutputFields, getDefaultPipeProviders, getDefaultSearchOutputFields, getDefaultSearchesOutputFields, getDependentPipeNamesForInputProperty, getDependentPipeNamesForPipe, getDomain, getExpansionState, getFaviconUrlGoogle, getField, getFieldBehavior, getFieldDisplayLabel, getFieldWidgets, getInitialSearchTableData, getInitialSearchesTableData, getInitialTableData, getInputHash, getJsonMetaForFieldDef, getLoweestSearchCreditAmount, getLoweestSearchesCreditAmount, getLowestPipeCreditAmount, getOutputFieldInfoFromDef, getPipeBillableOperationDef, getPipeCategoryEntries, getPipeCategoryEntry, getPipeClass, getPipeConfigHash, getPipeDefaultPayload, getPipeDocsURI, getPipeEntry, getPipeInstances, getPipePayloadFormConfig, getPipePayloadSchema, getPipeVersion, getProviderBillableOperation, getProviderCreditsFromBillableOperations, getProviderEntry, getReadableFieldStatus, getSandboxConnections, getSandboxConnectionsForPipe, getSandboxConnectionsForSearch, getSandboxConnectionsForSearches, getSearchCategoryEntries, getSearchCategoryEntry, getSearchClass, getSearchDefaultPayload, getSearchEntry, getSearchFieldWidgets, getSearchInstance, getSearchPayloadFormConfig, getSearchPayloadSchema, getSearchTableDataAggregates, getSearchVersion, getSearchesClass, getSearchesDefaultPayload, getSearchesEntry, getSearchesFieldWidgets, getSearchesInstances, getSearchesPayloadSchema, getSearchesTableDataAggregates, getSearchesVersion, getStartingCostPerPipesProvider, getStartingCostPerSearchProvider, getStartingCostPerSearchesProvider, getTableDataAggregates, getTier, getUnexpandedValue, ifDefined, inputFields, inputFromRecord, inputFromRecordArr, inputFromRecords, inputGuards, isCatalogField, isEmptyValue, isFieldName, isHighVolumeEligible, isPipeAllowed, isProviderAllowed, isRequirementMet, isRequirementSatisfiedByRecord, isSearchAllowed, isSearchesAllowed, joinConnectionString, listHighVolumeEligibleOperations, listTiers, markRecordFieldAsComplete, markRecordFieldAsFailed, markRecordFieldAsNoResult, markRecordFieldAsPending, markRecordFieldAsProcessing, markRecordFieldAsSkipped, matchesAny, matchesPattern, mergeWidgets, noConnectorInput, optional, optionalConnectorInput, or, outputFields, parseLiquidTemplate, parseOutputTagArgs, parseRecordValueOrError, parseRichText, pipeCatalog, pipeCategoryCatalog, pipeClassCatalog, pipePayloadSchemaCatalog, pipesAsyncIncludeExcludeSelectInput, pipesContextSelectInput, pipesDateRangeInput, pipesFieldsSelectInput, pipesIncludeExcludeInput, pipesIncludeExcludeSelectInput, pipesInputField, pipesIntInput, pipesJsonExtractionInput, pipesJsonSchemaField, pipesKeyValueListInput, pipesLLMSelectInput, pipesMultiCreateInput, pipesMultiSelectInput, pipesNumberInput, pipesOptionalBooleanInput, pipesOrderedMultiCreateInput, pipesOutputField, pipesPayloadRegistry, pipesPromptInput, pipesProviderInput, pipesRangeInput, pipesRunIfInput, pipesSelectInput, pipesSnippetCatalog, pipesTaggedOrderedMultiCreateInput, pipesTaggedTextInput, pipesTemplateInput, pipesTextInput, pipesTextareaInput, placeholder, processInputObjects, providerCatalog, rateLimitRatioFallingProgression, renderLiquidTemplate, renderLiquidTemplateSync, requiredConnectorInput, requirementToInputFields, requirementUnmetMessage, requiresConnection, requiresField, searchCatalog, searchCategoryCatalog, searchClassCatalog, searchPayloadSchemaCatalog, searchSnippetCatalog, searchesAsyncIncludeExcludeSelectInput, searchesAsyncMultiSelectInput, searchesCatalog, searchesClassCatalog, searchesContextSelectInput, searchesDateRangeInput, searchesExactRangeInput, searchesIncludeExcludeInput, searchesIncludeExcludeSelectInput, searchesIntInput, searchesMinMaxIntInput, searchesMultiCreateInput, searchesMultiSelectInput, searchesNumberField, searchesOptionalBooleanInput, searchesOptionalConnectorInput, searchesOptionalNullableBooleanInput, searchesOrderedMultiCreateInput, searchesOutputField, searchesPayloadRegistry, searchesPayloadSchemaCatalog, searchesRangeInput, searchesRequiredConnectorInput, searchesSelectInput, searchesTextInput, searchesTextareaField, sortObjectKeys, sortPipeCatalogByBasePipe, sortSearchCatalogByBaseSearch, sortSearchesCatalogByBaseSearch, splitConnectionString, staticAutocomplete, staticOptions, stringify, testPrint, tierAtOrBelow, transformIntoResponse, validatePipesOrError, validateSearches, validationErrorMessages };
|
|
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 };
|