@pipe0/base 0.0.6 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist/index.d.mts +148 -128
- package/dist/index.mjs +5 -5
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -379,8 +379,8 @@ declare const StoreOptionWidgetSchema: z.ZodObject<{
|
|
|
379
379
|
icon: z.ZodOptional<z.ZodObject<{
|
|
380
380
|
key: z.ZodEnum<{
|
|
381
381
|
output: "output";
|
|
382
|
-
text: "text";
|
|
383
382
|
input: "input";
|
|
383
|
+
text: "text";
|
|
384
384
|
code: "code";
|
|
385
385
|
filter: "filter";
|
|
386
386
|
search: "search";
|
|
@@ -545,8 +545,8 @@ declare const RecordFieldTypeSchema: z.ZodEnum<{
|
|
|
545
545
|
string: "string";
|
|
546
546
|
number: "number";
|
|
547
547
|
boolean: "boolean";
|
|
548
|
-
json: "json";
|
|
549
548
|
unknown: "unknown";
|
|
549
|
+
json: "json";
|
|
550
550
|
}>;
|
|
551
551
|
type RecordFieldType = z.infer<typeof RecordFieldTypeSchema>;
|
|
552
552
|
type DerivedInputFields = Record<string, {
|
|
@@ -709,6 +709,8 @@ declare const FieldReasonSchema: z.ZodObject<{
|
|
|
709
709
|
type FieldReason = z.infer<typeof FieldReasonSchema>;
|
|
710
710
|
declare const RECORD_FIELD_FORMATS: readonly ["json_object", "json_list", "json_list_string", "url", "website_url", "profile_url", "email", "datetime", "currency", "date", "phone", "markdown", "text", "int", "decimal", "address_line_1", "zip_code", "percent"];
|
|
711
711
|
declare const RecordFieldFormatSchema: z.ZodEnum<{
|
|
712
|
+
int: "int";
|
|
713
|
+
date: "date";
|
|
712
714
|
email: "email";
|
|
713
715
|
address_line_1: "address_line_1";
|
|
714
716
|
zip_code: "zip_code";
|
|
@@ -722,13 +724,13 @@ declare const RecordFieldFormatSchema: z.ZodEnum<{
|
|
|
722
724
|
url: "url";
|
|
723
725
|
datetime: "datetime";
|
|
724
726
|
currency: "currency";
|
|
725
|
-
date: "date";
|
|
726
727
|
text: "text";
|
|
727
|
-
int: "int";
|
|
728
728
|
decimal: "decimal";
|
|
729
729
|
percent: "percent";
|
|
730
730
|
}>;
|
|
731
731
|
declare const NullableRecordFieldFormatSchema: z.ZodNullable<z.ZodEnum<{
|
|
732
|
+
int: "int";
|
|
733
|
+
date: "date";
|
|
732
734
|
email: "email";
|
|
733
735
|
address_line_1: "address_line_1";
|
|
734
736
|
zip_code: "zip_code";
|
|
@@ -742,9 +744,7 @@ declare const NullableRecordFieldFormatSchema: z.ZodNullable<z.ZodEnum<{
|
|
|
742
744
|
url: "url";
|
|
743
745
|
datetime: "datetime";
|
|
744
746
|
currency: "currency";
|
|
745
|
-
date: "date";
|
|
746
747
|
text: "text";
|
|
747
|
-
int: "int";
|
|
748
748
|
decimal: "decimal";
|
|
749
749
|
percent: "percent";
|
|
750
750
|
}>>;
|
|
@@ -754,11 +754,13 @@ declare const FieldAnnotationSchema: z.ZodObject<{
|
|
|
754
754
|
string: "string";
|
|
755
755
|
number: "number";
|
|
756
756
|
boolean: "boolean";
|
|
757
|
-
json: "json";
|
|
758
757
|
unknown: "unknown";
|
|
758
|
+
json: "json";
|
|
759
759
|
}>;
|
|
760
760
|
label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
761
761
|
format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
762
|
+
int: "int";
|
|
763
|
+
date: "date";
|
|
762
764
|
email: "email";
|
|
763
765
|
address_line_1: "address_line_1";
|
|
764
766
|
zip_code: "zip_code";
|
|
@@ -772,9 +774,7 @@ declare const FieldAnnotationSchema: z.ZodObject<{
|
|
|
772
774
|
url: "url";
|
|
773
775
|
datetime: "datetime";
|
|
774
776
|
currency: "currency";
|
|
775
|
-
date: "date";
|
|
776
777
|
text: "text";
|
|
777
|
-
int: "int";
|
|
778
778
|
decimal: "decimal";
|
|
779
779
|
percent: "percent";
|
|
780
780
|
}>>>;
|
|
@@ -789,11 +789,13 @@ declare const FieldAnnotationsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
789
789
|
string: "string";
|
|
790
790
|
number: "number";
|
|
791
791
|
boolean: "boolean";
|
|
792
|
-
json: "json";
|
|
793
792
|
unknown: "unknown";
|
|
793
|
+
json: "json";
|
|
794
794
|
}>;
|
|
795
795
|
label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
796
796
|
format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
797
|
+
int: "int";
|
|
798
|
+
date: "date";
|
|
797
799
|
email: "email";
|
|
798
800
|
address_line_1: "address_line_1";
|
|
799
801
|
zip_code: "zip_code";
|
|
@@ -807,9 +809,7 @@ declare const FieldAnnotationsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
807
809
|
url: "url";
|
|
808
810
|
datetime: "datetime";
|
|
809
811
|
currency: "currency";
|
|
810
|
-
date: "date";
|
|
811
812
|
text: "text";
|
|
812
|
-
int: "int";
|
|
813
813
|
decimal: "decimal";
|
|
814
814
|
percent: "percent";
|
|
815
815
|
}>>>;
|
|
@@ -1002,8 +1002,8 @@ declare const RecordFieldSchema: z.ZodObject<{
|
|
|
1002
1002
|
string: "string";
|
|
1003
1003
|
number: "number";
|
|
1004
1004
|
boolean: "boolean";
|
|
1005
|
-
json: "json";
|
|
1006
1005
|
unknown: "unknown";
|
|
1006
|
+
json: "json";
|
|
1007
1007
|
}>;
|
|
1008
1008
|
reason: z.ZodNullable<z.ZodObject<{
|
|
1009
1009
|
code: z.ZodString;
|
|
@@ -1308,6 +1308,8 @@ declare const RecordFieldSchema: z.ZodObject<{
|
|
|
1308
1308
|
}, z.core.$strip>>>;
|
|
1309
1309
|
}, z.core.$strip>>;
|
|
1310
1310
|
format: z.ZodNullable<z.ZodEnum<{
|
|
1311
|
+
int: "int";
|
|
1312
|
+
date: "date";
|
|
1311
1313
|
email: "email";
|
|
1312
1314
|
address_line_1: "address_line_1";
|
|
1313
1315
|
zip_code: "zip_code";
|
|
@@ -1321,9 +1323,7 @@ declare const RecordFieldSchema: z.ZodObject<{
|
|
|
1321
1323
|
url: "url";
|
|
1322
1324
|
datetime: "datetime";
|
|
1323
1325
|
currency: "currency";
|
|
1324
|
-
date: "date";
|
|
1325
1326
|
text: "text";
|
|
1326
|
-
int: "int";
|
|
1327
1327
|
decimal: "decimal";
|
|
1328
1328
|
percent: "percent";
|
|
1329
1329
|
}>>;
|
|
@@ -1341,10 +1341,12 @@ declare const ExpandedFieldValueSchema: z.ZodObject<{
|
|
|
1341
1341
|
string: "string";
|
|
1342
1342
|
number: "number";
|
|
1343
1343
|
boolean: "boolean";
|
|
1344
|
-
json: "json";
|
|
1345
1344
|
unknown: "unknown";
|
|
1345
|
+
json: "json";
|
|
1346
1346
|
}>>;
|
|
1347
1347
|
format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
1348
|
+
int: "int";
|
|
1349
|
+
date: "date";
|
|
1348
1350
|
email: "email";
|
|
1349
1351
|
address_line_1: "address_line_1";
|
|
1350
1352
|
zip_code: "zip_code";
|
|
@@ -1358,9 +1360,7 @@ declare const ExpandedFieldValueSchema: z.ZodObject<{
|
|
|
1358
1360
|
url: "url";
|
|
1359
1361
|
datetime: "datetime";
|
|
1360
1362
|
currency: "currency";
|
|
1361
|
-
date: "date";
|
|
1362
1363
|
text: "text";
|
|
1363
|
-
int: "int";
|
|
1364
1364
|
decimal: "decimal";
|
|
1365
1365
|
percent: "percent";
|
|
1366
1366
|
}>>>;
|
|
@@ -1675,10 +1675,12 @@ declare const PipesInputSchema: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.
|
|
|
1675
1675
|
string: "string";
|
|
1676
1676
|
number: "number";
|
|
1677
1677
|
boolean: "boolean";
|
|
1678
|
-
json: "json";
|
|
1679
1678
|
unknown: "unknown";
|
|
1679
|
+
json: "json";
|
|
1680
1680
|
}>>;
|
|
1681
1681
|
format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
1682
|
+
int: "int";
|
|
1683
|
+
date: "date";
|
|
1682
1684
|
email: "email";
|
|
1683
1685
|
address_line_1: "address_line_1";
|
|
1684
1686
|
zip_code: "zip_code";
|
|
@@ -1692,9 +1694,7 @@ declare const PipesInputSchema: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.
|
|
|
1692
1694
|
url: "url";
|
|
1693
1695
|
datetime: "datetime";
|
|
1694
1696
|
currency: "currency";
|
|
1695
|
-
date: "date";
|
|
1696
1697
|
text: "text";
|
|
1697
|
-
int: "int";
|
|
1698
1698
|
decimal: "decimal";
|
|
1699
1699
|
percent: "percent";
|
|
1700
1700
|
}>>>;
|
|
@@ -2006,8 +2006,8 @@ declare const RecordSchema: z.ZodObject<{
|
|
|
2006
2006
|
string: "string";
|
|
2007
2007
|
number: "number";
|
|
2008
2008
|
boolean: "boolean";
|
|
2009
|
-
json: "json";
|
|
2010
2009
|
unknown: "unknown";
|
|
2010
|
+
json: "json";
|
|
2011
2011
|
}>;
|
|
2012
2012
|
reason: z.ZodNullable<z.ZodObject<{
|
|
2013
2013
|
code: z.ZodString;
|
|
@@ -2312,6 +2312,8 @@ declare const RecordSchema: z.ZodObject<{
|
|
|
2312
2312
|
}, z.core.$strip>>>;
|
|
2313
2313
|
}, z.core.$strip>>;
|
|
2314
2314
|
format: z.ZodNullable<z.ZodEnum<{
|
|
2315
|
+
int: "int";
|
|
2316
|
+
date: "date";
|
|
2315
2317
|
email: "email";
|
|
2316
2318
|
address_line_1: "address_line_1";
|
|
2317
2319
|
zip_code: "zip_code";
|
|
@@ -2325,9 +2327,7 @@ declare const RecordSchema: z.ZodObject<{
|
|
|
2325
2327
|
url: "url";
|
|
2326
2328
|
datetime: "datetime";
|
|
2327
2329
|
currency: "currency";
|
|
2328
|
-
date: "date";
|
|
2329
2330
|
text: "text";
|
|
2330
|
-
int: "int";
|
|
2331
2331
|
decimal: "decimal";
|
|
2332
2332
|
percent: "percent";
|
|
2333
2333
|
}>>;
|
|
@@ -2344,8 +2344,8 @@ declare const PipesFieldDefinitionSchema: z.ZodObject<{
|
|
|
2344
2344
|
string: "string";
|
|
2345
2345
|
number: "number";
|
|
2346
2346
|
boolean: "boolean";
|
|
2347
|
-
json: "json";
|
|
2348
2347
|
unknown: "unknown";
|
|
2348
|
+
json: "json";
|
|
2349
2349
|
}>;
|
|
2350
2350
|
label: z.ZodString;
|
|
2351
2351
|
added_by: z.ZodObject<{
|
|
@@ -2433,6 +2433,8 @@ declare const PipesFieldDefinitionSchema: z.ZodObject<{
|
|
|
2433
2433
|
pipe_index: z.ZodNullable<z.ZodNumber>;
|
|
2434
2434
|
}, z.core.$strip>;
|
|
2435
2435
|
format: z.ZodNullable<z.ZodEnum<{
|
|
2436
|
+
int: "int";
|
|
2437
|
+
date: "date";
|
|
2436
2438
|
email: "email";
|
|
2437
2439
|
address_line_1: "address_line_1";
|
|
2438
2440
|
zip_code: "zip_code";
|
|
@@ -2446,9 +2448,7 @@ declare const PipesFieldDefinitionSchema: z.ZodObject<{
|
|
|
2446
2448
|
url: "url";
|
|
2447
2449
|
datetime: "datetime";
|
|
2448
2450
|
currency: "currency";
|
|
2449
|
-
date: "date";
|
|
2450
2451
|
text: "text";
|
|
2451
|
-
int: "int";
|
|
2452
2452
|
decimal: "decimal";
|
|
2453
2453
|
percent: "percent";
|
|
2454
2454
|
}>>;
|
|
@@ -2463,8 +2463,8 @@ declare const PipesFieldDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<
|
|
|
2463
2463
|
string: "string";
|
|
2464
2464
|
number: "number";
|
|
2465
2465
|
boolean: "boolean";
|
|
2466
|
-
json: "json";
|
|
2467
2466
|
unknown: "unknown";
|
|
2467
|
+
json: "json";
|
|
2468
2468
|
}>;
|
|
2469
2469
|
label: z.ZodString;
|
|
2470
2470
|
added_by: z.ZodObject<{
|
|
@@ -2552,6 +2552,8 @@ declare const PipesFieldDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<
|
|
|
2552
2552
|
pipe_index: z.ZodNullable<z.ZodNumber>;
|
|
2553
2553
|
}, z.core.$strip>;
|
|
2554
2554
|
format: z.ZodNullable<z.ZodEnum<{
|
|
2555
|
+
int: "int";
|
|
2556
|
+
date: "date";
|
|
2555
2557
|
email: "email";
|
|
2556
2558
|
address_line_1: "address_line_1";
|
|
2557
2559
|
zip_code: "zip_code";
|
|
@@ -2565,9 +2567,7 @@ declare const PipesFieldDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<
|
|
|
2565
2567
|
url: "url";
|
|
2566
2568
|
datetime: "datetime";
|
|
2567
2569
|
currency: "currency";
|
|
2568
|
-
date: "date";
|
|
2569
2570
|
text: "text";
|
|
2570
|
-
int: "int";
|
|
2571
2571
|
decimal: "decimal";
|
|
2572
2572
|
percent: "percent";
|
|
2573
2573
|
}>>;
|
|
@@ -2581,6 +2581,8 @@ declare const JSONExtractSchema: z.ZodObject<{
|
|
|
2581
2581
|
output_field: z.ZodObject<{
|
|
2582
2582
|
name: z.ZodString;
|
|
2583
2583
|
format: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
2584
|
+
int: "int";
|
|
2585
|
+
date: "date";
|
|
2584
2586
|
email: "email";
|
|
2585
2587
|
address_line_1: "address_line_1";
|
|
2586
2588
|
zip_code: "zip_code";
|
|
@@ -2594,9 +2596,7 @@ declare const JSONExtractSchema: z.ZodObject<{
|
|
|
2594
2596
|
url: "url";
|
|
2595
2597
|
datetime: "datetime";
|
|
2596
2598
|
currency: "currency";
|
|
2597
|
-
date: "date";
|
|
2598
2599
|
text: "text";
|
|
2599
|
-
int: "int";
|
|
2600
2600
|
decimal: "decimal";
|
|
2601
2601
|
percent: "percent";
|
|
2602
2602
|
}>>>;
|
|
@@ -2605,8 +2605,8 @@ declare const JSONExtractSchema: z.ZodObject<{
|
|
|
2605
2605
|
string: "string";
|
|
2606
2606
|
number: "number";
|
|
2607
2607
|
boolean: "boolean";
|
|
2608
|
-
json: "json";
|
|
2609
2608
|
unknown: "unknown";
|
|
2609
|
+
json: "json";
|
|
2610
2610
|
}>;
|
|
2611
2611
|
}, z.core.$strip>;
|
|
2612
2612
|
}, z.core.$strip>>;
|
|
@@ -2729,6 +2729,8 @@ type PipeRunIf = z.infer<typeof PipeRunIfSchema>;
|
|
|
2729
2729
|
//#endregion
|
|
2730
2730
|
//#region src/utils/schemas.d.ts
|
|
2731
2731
|
declare const FieldNameSchema: z.ZodEnum<{
|
|
2732
|
+
spending_trend: "spending_trend";
|
|
2733
|
+
technology_list: "technology_list";
|
|
2732
2734
|
company_description: "company_description";
|
|
2733
2735
|
cleaned_company_name: "cleaned_company_name";
|
|
2734
2736
|
company_industry: "company_industry";
|
|
@@ -2736,8 +2738,6 @@ declare const FieldNameSchema: z.ZodEnum<{
|
|
|
2736
2738
|
location_hint: "location_hint";
|
|
2737
2739
|
estimated_revenue: "estimated_revenue";
|
|
2738
2740
|
founded_year: "founded_year";
|
|
2739
|
-
technology_list: "technology_list";
|
|
2740
|
-
spending_trend: "spending_trend";
|
|
2741
2741
|
technology_match_builtwith: "technology_match_builtwith";
|
|
2742
2742
|
number_of_social_followers: "number_of_social_followers";
|
|
2743
2743
|
email: "email";
|
|
@@ -2868,7 +2868,7 @@ declare const ProviderNameSchema: z.ZodEnum<{
|
|
|
2868
2868
|
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_25_flash_preview" | "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" | "openai_gpt-5" | "openai_gpt-5-mini" | "company_enrich_generic" | "logodev_describe" | "crustdata_company_db_search" | "crustdata_company_enrich" | "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";
|
|
2869
2869
|
type ProviderName = z.infer<typeof ProviderNameSchema>;
|
|
2870
2870
|
type ExternalProviderName = Exclude<ProviderName, "pipe0">;
|
|
2871
|
-
type BillableOperation = "
|
|
2871
|
+
type BillableOperation = "company-describe-logodev" | "company-domain-from-workemail-pipe0" | "company-enrich-crustdata" | "company-funding-leadmagic" | "company-identity-pipe0" | "company-news-summary-pipe0" | "company-overview-pipe0" | "company-search-amplemarket" | "contact-create-resend" | "email-lookup-amplemarket" | "email-send-gmail" | "email-send-resend" | "extract-json-pipe0" | "field-domainify-pipe0" | "field-or-pipe0" | "field-slugify-pipe0" | "financial-profile-builtwith" | "find-role-findymail" | "find-role-leadmagic" | "http-request-pipe0" | "is-workemail-pipe0" | "join-name-pipe0" | "list-url-scrape-firecrawl" | "lookalikes-companyenrich" | "message-send-slack" | "mobile-from-profile-clado" | "mobile-from-profile-findymail" | "mobile-from-profile-leadmagic" | "mobile-from-profile-prospeo" | "mobile-from-workemail-leadmagic" | "mobile-reveal-mixrank" | "people-search-amplemarket" | "person-identity-amplemarket" | "person-match-amplemarket" | "personal-email-from-profile-clado" | "personal-email-from-profile-leadmagic" | "personal-email-reveal-mixrank" | "phone-lookup-amplemarket" | "profile-from-workemail-crustdata" | "professional-profile-clado" | "professional-profile-icypeas" | "professional-profile-prospeo" | "profileurl-from-email-leadmagic" | "profileurl-from-name-pipe0" | "prompt-gemini-flash-latest" | "prompt-openai-gpt-latest" | "prompt-openai-gpt-mini-latest" | "reverse-email-lookup-crustdata" | "reverse-email-lookup-findymail" | "reverse-email-lookup-hunter" | "sheet-row-append-pipe0" | "sheet-row-appendexpand-pipe0" | "single-post-fetch-crustdata" | "split-name-pipe0" | "technology-stack-builtwith" | "template-fill-pipe0" | "validate-email-millionverifier" | "validate-email-zerobounce" | "website-extract-firecrawl" | "website-maplinks-firecrawl" | "website-scrape-firecrawl" | "work-email-findymail" | "work-email-hunter" | "work-email-icypeas" | "work-email-leadmagic" | "work-email-prospeo" | "work-email-reveal-mixrank" | "workemail-from-profileurl-clado" | "workemail-from-profileurl-crustdata" | "workemail-from-profileurl-findymail" | "workemail-from-profileurl-hunter" | "workemail-from-profileurl-leadmagic" | "write-email-gemini-flash-latest" | "write-email-openai-gpt-latest" | "write-email-openai-gpt-mini-latest" | "write-message-gemini-flash-latest" | "write-message-openai-gpt-latest" | "write-message-openai-gpt-mini-latest" | "companies-profiles-amplemarket" | "companies-profiles-crustdata" | "companies-profiles-exa" | "companies-profiles-icypeas" | "people-employees-leadmagic" | "people-profiles-amplemarket" | "people-profiles-clado" | "people-profiles-crustdata" | "people-profiles-exa" | "people-profiles-icypeas";
|
|
2872
2872
|
//#endregion
|
|
2873
2873
|
//#region src/fields/field-catalog.d.ts
|
|
2874
2874
|
type FieldEntry = {
|
|
@@ -12307,8 +12307,8 @@ declare const StoreOptionSchema: z.ZodObject<{
|
|
|
12307
12307
|
icon: z.ZodOptional<z.ZodObject<{
|
|
12308
12308
|
key: z.ZodEnum<{
|
|
12309
12309
|
output: "output";
|
|
12310
|
-
text: "text";
|
|
12311
12310
|
input: "input";
|
|
12311
|
+
text: "text";
|
|
12312
12312
|
code: "code";
|
|
12313
12313
|
filter: "filter";
|
|
12314
12314
|
search: "search";
|
|
@@ -12406,8 +12406,8 @@ declare const FormStoreSchema: z.ZodObject<{
|
|
|
12406
12406
|
icon: z.ZodOptional<z.ZodObject<{
|
|
12407
12407
|
key: z.ZodEnum<{
|
|
12408
12408
|
output: "output";
|
|
12409
|
-
text: "text";
|
|
12410
12409
|
input: "input";
|
|
12410
|
+
text: "text";
|
|
12411
12411
|
code: "code";
|
|
12412
12412
|
filter: "filter";
|
|
12413
12413
|
search: "search";
|
|
@@ -12738,6 +12738,7 @@ type SearchDef<PayloadSchema extends z.ZodType> = {
|
|
|
12738
12738
|
baseSearch: string;
|
|
12739
12739
|
paginationType: PaginationType;
|
|
12740
12740
|
provider: ProviderName;
|
|
12741
|
+
billableOperation: BillableOperation;
|
|
12741
12742
|
hasManagedConnection: boolean;
|
|
12742
12743
|
allowsUserConnection: boolean;
|
|
12743
12744
|
label: string;
|
|
@@ -14434,10 +14435,12 @@ declare const SearchResultFieldSchema: z$1.ZodObject<{
|
|
|
14434
14435
|
string: "string";
|
|
14435
14436
|
number: "number";
|
|
14436
14437
|
boolean: "boolean";
|
|
14437
|
-
json: "json";
|
|
14438
14438
|
unknown: "unknown";
|
|
14439
|
+
json: "json";
|
|
14439
14440
|
}>>;
|
|
14440
14441
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
14442
|
+
int: "int";
|
|
14443
|
+
date: "date";
|
|
14441
14444
|
email: "email";
|
|
14442
14445
|
address_line_1: "address_line_1";
|
|
14443
14446
|
zip_code: "zip_code";
|
|
@@ -14451,9 +14454,7 @@ declare const SearchResultFieldSchema: z$1.ZodObject<{
|
|
|
14451
14454
|
url: "url";
|
|
14452
14455
|
datetime: "datetime";
|
|
14453
14456
|
currency: "currency";
|
|
14454
|
-
date: "date";
|
|
14455
14457
|
text: "text";
|
|
14456
|
-
int: "int";
|
|
14457
14458
|
decimal: "decimal";
|
|
14458
14459
|
percent: "percent";
|
|
14459
14460
|
}>>>;
|
|
@@ -14679,10 +14680,12 @@ declare const SearchResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable<z
|
|
|
14679
14680
|
string: "string";
|
|
14680
14681
|
number: "number";
|
|
14681
14682
|
boolean: "boolean";
|
|
14682
|
-
json: "json";
|
|
14683
14683
|
unknown: "unknown";
|
|
14684
|
+
json: "json";
|
|
14684
14685
|
}>>;
|
|
14685
14686
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
14687
|
+
int: "int";
|
|
14688
|
+
date: "date";
|
|
14686
14689
|
email: "email";
|
|
14687
14690
|
address_line_1: "address_line_1";
|
|
14688
14691
|
zip_code: "zip_code";
|
|
@@ -14696,9 +14699,7 @@ declare const SearchResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable<z
|
|
|
14696
14699
|
url: "url";
|
|
14697
14700
|
datetime: "datetime";
|
|
14698
14701
|
currency: "currency";
|
|
14699
|
-
date: "date";
|
|
14700
14702
|
text: "text";
|
|
14701
|
-
int: "int";
|
|
14702
14703
|
decimal: "decimal";
|
|
14703
14704
|
percent: "percent";
|
|
14704
14705
|
}>>>;
|
|
@@ -15771,10 +15772,12 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
15771
15772
|
string: "string";
|
|
15772
15773
|
number: "number";
|
|
15773
15774
|
boolean: "boolean";
|
|
15774
|
-
json: "json";
|
|
15775
15775
|
unknown: "unknown";
|
|
15776
|
+
json: "json";
|
|
15776
15777
|
}>>;
|
|
15777
15778
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
15779
|
+
int: "int";
|
|
15780
|
+
date: "date";
|
|
15778
15781
|
email: "email";
|
|
15779
15782
|
address_line_1: "address_line_1";
|
|
15780
15783
|
zip_code: "zip_code";
|
|
@@ -15788,9 +15791,7 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
15788
15791
|
url: "url";
|
|
15789
15792
|
datetime: "datetime";
|
|
15790
15793
|
currency: "currency";
|
|
15791
|
-
date: "date";
|
|
15792
15794
|
text: "text";
|
|
15793
|
-
int: "int";
|
|
15794
15795
|
decimal: "decimal";
|
|
15795
15796
|
percent: "percent";
|
|
15796
15797
|
}>>>;
|
|
@@ -17482,6 +17483,7 @@ declare const searchesPayloadSchemaCatalog: {
|
|
|
17482
17483
|
declare const searchesCatalog: {
|
|
17483
17484
|
"people:profiles:crustdata@1": {
|
|
17484
17485
|
searchId: "people:profiles:crustdata@1";
|
|
17486
|
+
billableOperation: "people-profiles-crustdata";
|
|
17485
17487
|
baseSearch: string;
|
|
17486
17488
|
label: string;
|
|
17487
17489
|
categories: "people"[];
|
|
@@ -17563,6 +17565,7 @@ declare const searchesCatalog: {
|
|
|
17563
17565
|
};
|
|
17564
17566
|
"companies:profiles:crustdata@1": {
|
|
17565
17567
|
searchId: "companies:profiles:crustdata@1";
|
|
17568
|
+
billableOperation: "companies-profiles-crustdata";
|
|
17566
17569
|
baseSearch: string;
|
|
17567
17570
|
label: string;
|
|
17568
17571
|
categories: "companies"[];
|
|
@@ -17635,6 +17638,7 @@ declare const searchesCatalog: {
|
|
|
17635
17638
|
};
|
|
17636
17639
|
"companies:profiles:exa@1": {
|
|
17637
17640
|
searchId: "companies:profiles:exa@1";
|
|
17641
|
+
billableOperation: "companies-profiles-exa";
|
|
17638
17642
|
baseSearch: string;
|
|
17639
17643
|
label: string;
|
|
17640
17644
|
categories: "companies"[];
|
|
@@ -17688,6 +17692,7 @@ declare const searchesCatalog: {
|
|
|
17688
17692
|
};
|
|
17689
17693
|
"people:profiles:exa@1": {
|
|
17690
17694
|
searchId: "people:profiles:exa@1";
|
|
17695
|
+
billableOperation: "people-profiles-exa";
|
|
17691
17696
|
baseSearch: string;
|
|
17692
17697
|
label: string;
|
|
17693
17698
|
categories: "people"[];
|
|
@@ -17741,6 +17746,7 @@ declare const searchesCatalog: {
|
|
|
17741
17746
|
};
|
|
17742
17747
|
"people:profiles:icypeas@1": {
|
|
17743
17748
|
searchId: "people:profiles:icypeas@1";
|
|
17749
|
+
billableOperation: "people-profiles-icypeas";
|
|
17744
17750
|
provider: "icypeas";
|
|
17745
17751
|
baseSearch: string;
|
|
17746
17752
|
label: string;
|
|
@@ -17849,6 +17855,7 @@ declare const searchesCatalog: {
|
|
|
17849
17855
|
};
|
|
17850
17856
|
"companies:profiles:icypeas@1": {
|
|
17851
17857
|
searchId: "companies:profiles:icypeas@1";
|
|
17858
|
+
billableOperation: "companies-profiles-icypeas";
|
|
17852
17859
|
baseSearch: string;
|
|
17853
17860
|
label: string;
|
|
17854
17861
|
categories: "companies"[];
|
|
@@ -17934,6 +17941,7 @@ declare const searchesCatalog: {
|
|
|
17934
17941
|
};
|
|
17935
17942
|
"people:employees:leadmagic@1": {
|
|
17936
17943
|
searchId: "people:employees:leadmagic@1";
|
|
17944
|
+
billableOperation: "people-employees-leadmagic";
|
|
17937
17945
|
baseSearch: string;
|
|
17938
17946
|
label: string;
|
|
17939
17947
|
categories: "people"[];
|
|
@@ -17979,6 +17987,7 @@ declare const searchesCatalog: {
|
|
|
17979
17987
|
};
|
|
17980
17988
|
"people:profiles:clado@1": {
|
|
17981
17989
|
searchId: "people:profiles:clado@1";
|
|
17990
|
+
billableOperation: "people-profiles-clado";
|
|
17982
17991
|
baseSearch: string;
|
|
17983
17992
|
label: string;
|
|
17984
17993
|
categories: "people"[];
|
|
@@ -18035,6 +18044,7 @@ declare const searchesCatalog: {
|
|
|
18035
18044
|
};
|
|
18036
18045
|
"people:profiles:clado@2": {
|
|
18037
18046
|
searchId: "people:profiles:clado@2";
|
|
18047
|
+
billableOperation: "people-profiles-clado";
|
|
18038
18048
|
baseSearch: string;
|
|
18039
18049
|
label: string;
|
|
18040
18050
|
categories: "deprecated"[];
|
|
@@ -19098,10 +19108,12 @@ declare const SearchesResultFieldSchema: z$1.ZodObject<{
|
|
|
19098
19108
|
string: "string";
|
|
19099
19109
|
number: "number";
|
|
19100
19110
|
boolean: "boolean";
|
|
19101
|
-
json: "json";
|
|
19102
19111
|
unknown: "unknown";
|
|
19112
|
+
json: "json";
|
|
19103
19113
|
}>>;
|
|
19104
19114
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
19115
|
+
int: "int";
|
|
19116
|
+
date: "date";
|
|
19105
19117
|
email: "email";
|
|
19106
19118
|
address_line_1: "address_line_1";
|
|
19107
19119
|
zip_code: "zip_code";
|
|
@@ -19115,9 +19127,7 @@ declare const SearchesResultFieldSchema: z$1.ZodObject<{
|
|
|
19115
19127
|
url: "url";
|
|
19116
19128
|
datetime: "datetime";
|
|
19117
19129
|
currency: "currency";
|
|
19118
|
-
date: "date";
|
|
19119
19130
|
text: "text";
|
|
19120
|
-
int: "int";
|
|
19121
19131
|
decimal: "decimal";
|
|
19122
19132
|
percent: "percent";
|
|
19123
19133
|
}>>>;
|
|
@@ -19343,10 +19353,12 @@ declare const SearchesResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable
|
|
|
19343
19353
|
string: "string";
|
|
19344
19354
|
number: "number";
|
|
19345
19355
|
boolean: "boolean";
|
|
19346
|
-
json: "json";
|
|
19347
19356
|
unknown: "unknown";
|
|
19357
|
+
json: "json";
|
|
19348
19358
|
}>>;
|
|
19349
19359
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
19360
|
+
int: "int";
|
|
19361
|
+
date: "date";
|
|
19350
19362
|
email: "email";
|
|
19351
19363
|
address_line_1: "address_line_1";
|
|
19352
19364
|
zip_code: "zip_code";
|
|
@@ -19360,9 +19372,7 @@ declare const SearchesResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable
|
|
|
19360
19372
|
url: "url";
|
|
19361
19373
|
datetime: "datetime";
|
|
19362
19374
|
currency: "currency";
|
|
19363
|
-
date: "date";
|
|
19364
19375
|
text: "text";
|
|
19365
|
-
int: "int";
|
|
19366
19376
|
decimal: "decimal";
|
|
19367
19377
|
percent: "percent";
|
|
19368
19378
|
}>>>;
|
|
@@ -19638,10 +19648,12 @@ declare const SearchesResponseSchema: z$1.ZodObject<{
|
|
|
19638
19648
|
string: "string";
|
|
19639
19649
|
number: "number";
|
|
19640
19650
|
boolean: "boolean";
|
|
19641
|
-
json: "json";
|
|
19642
19651
|
unknown: "unknown";
|
|
19652
|
+
json: "json";
|
|
19643
19653
|
}>>;
|
|
19644
19654
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
19655
|
+
int: "int";
|
|
19656
|
+
date: "date";
|
|
19645
19657
|
email: "email";
|
|
19646
19658
|
address_line_1: "address_line_1";
|
|
19647
19659
|
zip_code: "zip_code";
|
|
@@ -19655,9 +19667,7 @@ declare const SearchesResponseSchema: z$1.ZodObject<{
|
|
|
19655
19667
|
url: "url";
|
|
19656
19668
|
datetime: "datetime";
|
|
19657
19669
|
currency: "currency";
|
|
19658
|
-
date: "date";
|
|
19659
19670
|
text: "text";
|
|
19660
|
-
int: "int";
|
|
19661
19671
|
decimal: "decimal";
|
|
19662
19672
|
percent: "percent";
|
|
19663
19673
|
}>>>;
|
|
@@ -20520,6 +20530,7 @@ declare function getSearchesTableDataAggregates(initialTableData: SearchesCatalo
|
|
|
20520
20530
|
};
|
|
20521
20531
|
declare function getSearchesEntry(searchId: SearchesId): {
|
|
20522
20532
|
searchId: "people:profiles:crustdata@1";
|
|
20533
|
+
billableOperation: "people-profiles-crustdata";
|
|
20523
20534
|
baseSearch: string;
|
|
20524
20535
|
label: string;
|
|
20525
20536
|
categories: "people"[];
|
|
@@ -20600,6 +20611,7 @@ declare function getSearchesEntry(searchId: SearchesId): {
|
|
|
20600
20611
|
};
|
|
20601
20612
|
} | {
|
|
20602
20613
|
searchId: "companies:profiles:crustdata@1";
|
|
20614
|
+
billableOperation: "companies-profiles-crustdata";
|
|
20603
20615
|
baseSearch: string;
|
|
20604
20616
|
label: string;
|
|
20605
20617
|
categories: "companies"[];
|
|
@@ -20671,6 +20683,7 @@ declare function getSearchesEntry(searchId: SearchesId): {
|
|
|
20671
20683
|
};
|
|
20672
20684
|
} | {
|
|
20673
20685
|
searchId: "companies:profiles:exa@1";
|
|
20686
|
+
billableOperation: "companies-profiles-exa";
|
|
20674
20687
|
baseSearch: string;
|
|
20675
20688
|
label: string;
|
|
20676
20689
|
categories: "companies"[];
|
|
@@ -20723,6 +20736,7 @@ declare function getSearchesEntry(searchId: SearchesId): {
|
|
|
20723
20736
|
};
|
|
20724
20737
|
} | {
|
|
20725
20738
|
searchId: "people:profiles:exa@1";
|
|
20739
|
+
billableOperation: "people-profiles-exa";
|
|
20726
20740
|
baseSearch: string;
|
|
20727
20741
|
label: string;
|
|
20728
20742
|
categories: "people"[];
|
|
@@ -20775,6 +20789,7 @@ declare function getSearchesEntry(searchId: SearchesId): {
|
|
|
20775
20789
|
};
|
|
20776
20790
|
} | {
|
|
20777
20791
|
searchId: "people:profiles:icypeas@1";
|
|
20792
|
+
billableOperation: "people-profiles-icypeas";
|
|
20778
20793
|
provider: "icypeas";
|
|
20779
20794
|
baseSearch: string;
|
|
20780
20795
|
label: string;
|
|
@@ -20882,6 +20897,7 @@ declare function getSearchesEntry(searchId: SearchesId): {
|
|
|
20882
20897
|
};
|
|
20883
20898
|
} | {
|
|
20884
20899
|
searchId: "companies:profiles:icypeas@1";
|
|
20900
|
+
billableOperation: "companies-profiles-icypeas";
|
|
20885
20901
|
baseSearch: string;
|
|
20886
20902
|
label: string;
|
|
20887
20903
|
categories: "companies"[];
|
|
@@ -20966,6 +20982,7 @@ declare function getSearchesEntry(searchId: SearchesId): {
|
|
|
20966
20982
|
};
|
|
20967
20983
|
} | {
|
|
20968
20984
|
searchId: "people:employees:leadmagic@1";
|
|
20985
|
+
billableOperation: "people-employees-leadmagic";
|
|
20969
20986
|
baseSearch: string;
|
|
20970
20987
|
label: string;
|
|
20971
20988
|
categories: "people"[];
|
|
@@ -21010,6 +21027,7 @@ declare function getSearchesEntry(searchId: SearchesId): {
|
|
|
21010
21027
|
};
|
|
21011
21028
|
} | {
|
|
21012
21029
|
searchId: "people:profiles:clado@1";
|
|
21030
|
+
billableOperation: "people-profiles-clado";
|
|
21013
21031
|
baseSearch: string;
|
|
21014
21032
|
label: string;
|
|
21015
21033
|
categories: "people"[];
|
|
@@ -21065,6 +21083,7 @@ declare function getSearchesEntry(searchId: SearchesId): {
|
|
|
21065
21083
|
};
|
|
21066
21084
|
} | {
|
|
21067
21085
|
searchId: "people:profiles:clado@2";
|
|
21086
|
+
billableOperation: "people-profiles-clado";
|
|
21068
21087
|
baseSearch: string;
|
|
21069
21088
|
label: string;
|
|
21070
21089
|
categories: "deprecated"[];
|
|
@@ -21276,10 +21295,10 @@ declare abstract class Pipe<Payload extends {
|
|
|
21276
21295
|
resolveFormat?: (_lazyContext: LazyResolveContext) => RecordFieldFormat;
|
|
21277
21296
|
isPrimaryOutput?: boolean;
|
|
21278
21297
|
}): {
|
|
21279
|
-
name: "
|
|
21298
|
+
name: "spending_trend" | "technology_list" | "company_description" | "cleaned_company_name" | "company_industry" | "company_region" | "location_hint" | "estimated_revenue" | "founded_year" | "technology_match_builtwith" | "number_of_social_followers" | "email" | "personal_email" | "alternate_personal_emails" | "company_news_summary" | "work_email" | "headcount" | "company_website_url" | "company_domain" | "company_name" | "first_name" | "addressee_name" | "address_line_1" | "address_line_2" | "job_title" | "job_description" | "profile_headline" | "address_city" | "address_country" | "address_state" | "zip_code" | "last_name" | "is_work_email" | "companyenrich_match" | "companyenrich_matches" | "name" | "ip_address" | "skills" | "avatar_url" | "estimated_salary" | "is_email_valid" | "profile_url" | "company_profile_url" | "profile_posts" | "clado_person_match" | "clado_person_match_v2" | "icypeas_person_match" | "icypeas_company_match" | "clado_person_profile" | "resend_email_success" | "email_body" | "email_subject" | "profile" | "mobile" | "landline" | "phone" | "message" | "slack_message_success" | "funding_history" | "funding_total_usd" | "template_output" | "gmail_email_success" | "zerobounce_validation_status" | "zerobounce_validation_match" | "leadmagic_competitor_list" | "leadmagic_acquisition_history" | "leadmagic_company_news_list" | "merge_result" | "mapped_links" | "website_markdown" | "website_html" | "website_url" | "urls" | "website_links" | "firecrawl_extract_result" | "exa_match_evaluation" | "email_validation_status" | "million_validation_match" | "scrape_list_response" | "resend_contact_id" | "sheet_record_id" | "sheet_record_ids" | "input_objects" | "role_finder_match" | "logodev_describe_match" | "logo_url" | "crustdata_company_match" | "crustdata_companyenrich_match" | "crustdata_person_match" | "post_list_string" | "crustdata_post_list" | "crustdata_profile_match_score" | "amplemarket_person_match" | "amplemarket_company_match" | "created_sheet" | "sheet" | "string_input" | "domain" | "url_input" | "slugified" | "http_response_status" | "http_response_body" | "http_response_headers" | "professional_profile_url" | "professional_profile" | "company_social_url" | "mobile_number";
|
|
21280
21299
|
enabled: boolean;
|
|
21281
|
-
type: "string" | "number" | "boolean" | "
|
|
21282
|
-
format: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "currency" | "text" | "
|
|
21300
|
+
type: "string" | "number" | "boolean" | "unknown" | "json" | ((_lazyContext: LazyResolveContext) => RecordFieldType);
|
|
21301
|
+
format: "int" | "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "currency" | "text" | "decimal" | "percent" | ((_lazyContext: LazyResolveContext) => RecordFieldFormat) | null;
|
|
21283
21302
|
resolvedName: any;
|
|
21284
21303
|
description: "A summary of the main business purpose and objectives." | "The standardized and cleaned version of the company name, ensuring consistency across different entries." | "Markdown-formatted scrape of a website." | "A list of website links." | "HTML-formatted scrape of a website." | "Generic URL of a website." | "List of URLs" | "List of URLs scraped from a website" | "Fully enriched people profile" | "The industry in which the company operates." | "The region corresponding to the company's country." | "An optional hint to help pinpoint a person's or company's location." | "A list of the top competitors for a given company as provided by LeadMagic" | "A list of acquisitions by a given company" | "A list of company news" | "The estimated annual revenue of the company." | "List of corporate funding rounds." | "Amount of total known funding" | "The year the company was founded." | "A flat list of technologies used by a company" | "Technology spending trend over the last 2 years. Average deviation between measuring points in %." | "A datastructure containing the technologies used by this company" | "Social followers (or zero if not found)." | "Mobile telephone number of a person." | "A generic field for phone numbers. Can be mobile or landline." | "A landline phone number" | "Current job title of a person" | "Description of current job" | "A union field that can contain both professional and personal email addresses." | "The personal email address of a prospect." | "The personal email addresses that are associated with a prospect but less likely to be the primary email address of a prospect." | "Latest company news." | "Email address of a person connection to their place of employment." | "Total number of people employed in a particular organization" | "Website URL of a related company." | "Bare domain of a related company. Example: stripe.com (no scheme, no path)." | "Name of a company." | "Object returned from a Clado people search." | "Object returned from a Icypeas people search" | "First name of a person." | "Recipient name in the format required by postal services." | "URL for profile picture" | "First line of an address (e.g. street address)" | "The formatted address of a company’s headquarters." | "Name of a city as needed for an address." | "Name of a country as needed for an address." | "Name of a state." | "A postal zip code. Usually a combination of numbers and letters." | "Last name of a person." | "Estimated total salary in USD." | "List of professional skills" | "Check if a given email is a work email." | "The full name of a person. Usually a combination of first and last name." | "IP Address of a person" | "Check if an email address is valid and can receive emails." | "A standardized format for returning LinkedIn profile data." | "A person's LinkedIn profile URL." | "List of recent LinkedIn posts in JSON format." | "Professional profile headline" | "Company LinkedIn URL." | "Result of email sending action using Resend" | "Id of a single resend contact" | "Name of a pipe0 sheet" | "Input field of type string" | "A domain field." | "Input field of type string and URL format" | "A value that has been stripped of characters not found in slugs." | "HTTP status code returned by the upstream endpoint." | "Parsed JSON body returned by the upstream endpoint." | "Response headers returned by the upstream endpoint as a flat key-value map." | "ID of sheet record" | "IDs sheet records" | "Result of email sending action using Gmail" | "Result of sending a message using Slack" | "The test of an email formatted as markdown" | "A markdown message that be send to any chat app." | "Subject line for email" | "Template value where the tags are replaces with real values" | "Email validation status. Allowed values are: 'valid', 'invalid', 'catch_all', 'unkown'" | "Validation status as returned from ZeroBounce single validation" | "Full validation object as returned by ZeroBounce" | "List of unstructured input objects" | "Reference to a created sheet" | "Result of a firecrawl extract operation" | "Exa search result." | "CompanyEnrich response object" | "Crustdata company match object" | "A number between 1 and 0 indicating the confidence that the profile belongs to the input email address." | "Crustdata company enrichment match." | "LinkedIn post list" | "Rich JSON post list" | "Result of a role finder operation" | "Person match object as returned by Amplemarket" | "Company match object as returned by Amplemarket" | "CompanyEnrich response list." | "Company or organization logo" | "Get company logos & brand data" | "Social Media URL for a given company (e.g. LinkedIn profile URL).";
|
|
21285
21304
|
jsonMeta: {
|
|
@@ -26711,6 +26730,8 @@ declare const pipePayloadSchemaCatalog: {
|
|
|
26711
26730
|
output_field: z.ZodObject<{
|
|
26712
26731
|
name: z.ZodString;
|
|
26713
26732
|
format: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
26733
|
+
int: "int";
|
|
26734
|
+
date: "date";
|
|
26714
26735
|
email: "email";
|
|
26715
26736
|
address_line_1: "address_line_1";
|
|
26716
26737
|
zip_code: "zip_code";
|
|
@@ -26724,9 +26745,7 @@ declare const pipePayloadSchemaCatalog: {
|
|
|
26724
26745
|
url: "url";
|
|
26725
26746
|
datetime: "datetime";
|
|
26726
26747
|
currency: "currency";
|
|
26727
|
-
date: "date";
|
|
26728
26748
|
text: "text";
|
|
26729
|
-
int: "int";
|
|
26730
26749
|
decimal: "decimal";
|
|
26731
26750
|
percent: "percent";
|
|
26732
26751
|
}>>>;
|
|
@@ -26735,8 +26754,8 @@ declare const pipePayloadSchemaCatalog: {
|
|
|
26735
26754
|
string: "string";
|
|
26736
26755
|
number: "number";
|
|
26737
26756
|
boolean: "boolean";
|
|
26738
|
-
json: "json";
|
|
26739
26757
|
unknown: "unknown";
|
|
26758
|
+
json: "json";
|
|
26740
26759
|
}>;
|
|
26741
26760
|
}, z.core.$strip>;
|
|
26742
26761
|
}, z.core.$strip>>;
|
|
@@ -32170,6 +32189,8 @@ declare function getPipePayloadSchema(pipeId: PipeId): z.ZodObject<{
|
|
|
32170
32189
|
output_field: z.ZodObject<{
|
|
32171
32190
|
name: z.ZodString;
|
|
32172
32191
|
format: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
32192
|
+
int: "int";
|
|
32193
|
+
date: "date";
|
|
32173
32194
|
email: "email";
|
|
32174
32195
|
address_line_1: "address_line_1";
|
|
32175
32196
|
zip_code: "zip_code";
|
|
@@ -32183,9 +32204,7 @@ declare function getPipePayloadSchema(pipeId: PipeId): z.ZodObject<{
|
|
|
32183
32204
|
url: "url";
|
|
32184
32205
|
datetime: "datetime";
|
|
32185
32206
|
currency: "currency";
|
|
32186
|
-
date: "date";
|
|
32187
32207
|
text: "text";
|
|
32188
|
-
int: "int";
|
|
32189
32208
|
decimal: "decimal";
|
|
32190
32209
|
percent: "percent";
|
|
32191
32210
|
}>>>;
|
|
@@ -32194,8 +32213,8 @@ declare function getPipePayloadSchema(pipeId: PipeId): z.ZodObject<{
|
|
|
32194
32213
|
string: "string";
|
|
32195
32214
|
number: "number";
|
|
32196
32215
|
boolean: "boolean";
|
|
32197
|
-
json: "json";
|
|
32198
32216
|
unknown: "unknown";
|
|
32217
|
+
json: "json";
|
|
32199
32218
|
}>;
|
|
32200
32219
|
}, z.core.$strip>;
|
|
32201
32220
|
}, z.core.$strip>>;
|
|
@@ -35933,8 +35952,8 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
35933
35952
|
string: "string";
|
|
35934
35953
|
number: "number";
|
|
35935
35954
|
boolean: "boolean";
|
|
35936
|
-
json: "json";
|
|
35937
35955
|
unknown: "unknown";
|
|
35956
|
+
json: "json";
|
|
35938
35957
|
}>;
|
|
35939
35958
|
label: z.ZodString;
|
|
35940
35959
|
added_by: z.ZodObject<{
|
|
@@ -36022,6 +36041,8 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
36022
36041
|
pipe_index: z.ZodNullable<z.ZodNumber>;
|
|
36023
36042
|
}, z.core.$strip>;
|
|
36024
36043
|
format: z.ZodNullable<z.ZodEnum<{
|
|
36044
|
+
int: "int";
|
|
36045
|
+
date: "date";
|
|
36025
36046
|
email: "email";
|
|
36026
36047
|
address_line_1: "address_line_1";
|
|
36027
36048
|
zip_code: "zip_code";
|
|
@@ -36035,9 +36056,7 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
36035
36056
|
url: "url";
|
|
36036
36057
|
datetime: "datetime";
|
|
36037
36058
|
currency: "currency";
|
|
36038
|
-
date: "date";
|
|
36039
36059
|
text: "text";
|
|
36040
|
-
int: "int";
|
|
36041
36060
|
decimal: "decimal";
|
|
36042
36061
|
percent: "percent";
|
|
36043
36062
|
}>>;
|
|
@@ -36057,8 +36076,8 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
36057
36076
|
string: "string";
|
|
36058
36077
|
number: "number";
|
|
36059
36078
|
boolean: "boolean";
|
|
36060
|
-
json: "json";
|
|
36061
36079
|
unknown: "unknown";
|
|
36080
|
+
json: "json";
|
|
36062
36081
|
}>;
|
|
36063
36082
|
reason: z.ZodNullable<z.ZodObject<{
|
|
36064
36083
|
code: z.ZodString;
|
|
@@ -36363,6 +36382,8 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
36363
36382
|
}, z.core.$strip>>>;
|
|
36364
36383
|
}, z.core.$strip>>;
|
|
36365
36384
|
format: z.ZodNullable<z.ZodEnum<{
|
|
36385
|
+
int: "int";
|
|
36386
|
+
date: "date";
|
|
36366
36387
|
email: "email";
|
|
36367
36388
|
address_line_1: "address_line_1";
|
|
36368
36389
|
zip_code: "zip_code";
|
|
@@ -36376,9 +36397,7 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
36376
36397
|
url: "url";
|
|
36377
36398
|
datetime: "datetime";
|
|
36378
36399
|
currency: "currency";
|
|
36379
|
-
date: "date";
|
|
36380
36400
|
text: "text";
|
|
36381
|
-
int: "int";
|
|
36382
36401
|
decimal: "decimal";
|
|
36383
36402
|
percent: "percent";
|
|
36384
36403
|
}>>;
|
|
@@ -36442,11 +36461,13 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
36442
36461
|
string: "string";
|
|
36443
36462
|
number: "number";
|
|
36444
36463
|
boolean: "boolean";
|
|
36445
|
-
json: "json";
|
|
36446
36464
|
unknown: "unknown";
|
|
36465
|
+
json: "json";
|
|
36447
36466
|
}>;
|
|
36448
36467
|
label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
36449
36468
|
format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
36469
|
+
int: "int";
|
|
36470
|
+
date: "date";
|
|
36450
36471
|
email: "email";
|
|
36451
36472
|
address_line_1: "address_line_1";
|
|
36452
36473
|
zip_code: "zip_code";
|
|
@@ -36460,9 +36481,7 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
36460
36481
|
url: "url";
|
|
36461
36482
|
datetime: "datetime";
|
|
36462
36483
|
currency: "currency";
|
|
36463
|
-
date: "date";
|
|
36464
36484
|
text: "text";
|
|
36465
|
-
int: "int";
|
|
36466
36485
|
decimal: "decimal";
|
|
36467
36486
|
percent: "percent";
|
|
36468
36487
|
}>>>;
|
|
@@ -38154,6 +38173,8 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
38154
38173
|
output_field: z.ZodObject<{
|
|
38155
38174
|
name: z.ZodString;
|
|
38156
38175
|
format: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
38176
|
+
int: "int";
|
|
38177
|
+
date: "date";
|
|
38157
38178
|
email: "email";
|
|
38158
38179
|
address_line_1: "address_line_1";
|
|
38159
38180
|
zip_code: "zip_code";
|
|
@@ -38167,9 +38188,7 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
38167
38188
|
url: "url";
|
|
38168
38189
|
datetime: "datetime";
|
|
38169
38190
|
currency: "currency";
|
|
38170
|
-
date: "date";
|
|
38171
38191
|
text: "text";
|
|
38172
|
-
int: "int";
|
|
38173
38192
|
decimal: "decimal";
|
|
38174
38193
|
percent: "percent";
|
|
38175
38194
|
}>>>;
|
|
@@ -38178,8 +38197,8 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
38178
38197
|
string: "string";
|
|
38179
38198
|
number: "number";
|
|
38180
38199
|
boolean: "boolean";
|
|
38181
|
-
json: "json";
|
|
38182
38200
|
unknown: "unknown";
|
|
38201
|
+
json: "json";
|
|
38183
38202
|
}>;
|
|
38184
38203
|
}, z.core.$strip>;
|
|
38185
38204
|
}, z.core.$strip>>;
|
|
@@ -41879,10 +41898,12 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
41879
41898
|
string: "string";
|
|
41880
41899
|
number: "number";
|
|
41881
41900
|
boolean: "boolean";
|
|
41882
|
-
json: "json";
|
|
41883
41901
|
unknown: "unknown";
|
|
41902
|
+
json: "json";
|
|
41884
41903
|
}>>;
|
|
41885
41904
|
format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
41905
|
+
int: "int";
|
|
41906
|
+
date: "date";
|
|
41886
41907
|
email: "email";
|
|
41887
41908
|
address_line_1: "address_line_1";
|
|
41888
41909
|
zip_code: "zip_code";
|
|
@@ -41896,9 +41917,7 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
41896
41917
|
url: "url";
|
|
41897
41918
|
datetime: "datetime";
|
|
41898
41919
|
currency: "currency";
|
|
41899
|
-
date: "date";
|
|
41900
41920
|
text: "text";
|
|
41901
|
-
int: "int";
|
|
41902
41921
|
decimal: "decimal";
|
|
41903
41922
|
percent: "percent";
|
|
41904
41923
|
}>>>;
|
|
@@ -42232,18 +42251,19 @@ type ManagedBillableOperationDef = {
|
|
|
42232
42251
|
credits: number;
|
|
42233
42252
|
};
|
|
42234
42253
|
/**
|
|
42235
|
-
* Build billable operations for all AI models with a given
|
|
42236
|
-
* Returns a record keyed by `${
|
|
42254
|
+
* Build billable operations for all AI models with a given action prefix.
|
|
42255
|
+
* Returns a record keyed by `${action}-${modelId}` (e.g. `prompt-gemini-flash-latest`).
|
|
42256
|
+
* Action-first matches the billable-operation convention (provider/model at end).
|
|
42237
42257
|
*/
|
|
42238
|
-
declare function buildAiModelBillableOperations<
|
|
42258
|
+
declare function buildAiModelBillableOperations<Action extends string>(action: Action, creditOverrides?: Partial<Record<AiModelId, number>>): { [M in AiModelId as `${Action}-${M}`]: ManagedBillableOperationDef };
|
|
42239
42259
|
/**
|
|
42240
42260
|
* Get the provider names for a given model.
|
|
42241
42261
|
*/
|
|
42242
42262
|
declare function getAiModelProviders(modelId: AiModelId): ProviderName[];
|
|
42243
42263
|
/**
|
|
42244
|
-
* Get the billing key for a given model and
|
|
42264
|
+
* Get the billing key for a given model and action. Format: `${action}-${modelId}`.
|
|
42245
42265
|
*/
|
|
42246
|
-
declare function getAiModelBillingKey<
|
|
42266
|
+
declare function getAiModelBillingKey<Action extends string>(modelId: AiModelId, action: Action): `${Action}-${AiModelId}`;
|
|
42247
42267
|
/**
|
|
42248
42268
|
* Get connection requirements for a given model.
|
|
42249
42269
|
*/
|
|
@@ -42740,6 +42760,8 @@ declare const pipesJsonExtractionInput: () => z.ZodObject<{
|
|
|
42740
42760
|
output_field: z.ZodObject<{
|
|
42741
42761
|
name: z.ZodString;
|
|
42742
42762
|
format: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
42763
|
+
int: "int";
|
|
42764
|
+
date: "date";
|
|
42743
42765
|
email: "email";
|
|
42744
42766
|
address_line_1: "address_line_1";
|
|
42745
42767
|
zip_code: "zip_code";
|
|
@@ -42753,9 +42775,7 @@ declare const pipesJsonExtractionInput: () => z.ZodObject<{
|
|
|
42753
42775
|
url: "url";
|
|
42754
42776
|
datetime: "datetime";
|
|
42755
42777
|
currency: "currency";
|
|
42756
|
-
date: "date";
|
|
42757
42778
|
text: "text";
|
|
42758
|
-
int: "int";
|
|
42759
42779
|
decimal: "decimal";
|
|
42760
42780
|
percent: "percent";
|
|
42761
42781
|
}>>>;
|
|
@@ -42764,8 +42784,8 @@ declare const pipesJsonExtractionInput: () => z.ZodObject<{
|
|
|
42764
42784
|
string: "string";
|
|
42765
42785
|
number: "number";
|
|
42766
42786
|
boolean: "boolean";
|
|
42767
|
-
json: "json";
|
|
42768
42787
|
unknown: "unknown";
|
|
42788
|
+
json: "json";
|
|
42769
42789
|
}>;
|
|
42770
42790
|
}, z.core.$strip>;
|
|
42771
42791
|
}, z.core.$strip>>;
|
|
@@ -43323,37 +43343,37 @@ declare class PipeClass extends Pipe<Payload> {
|
|
|
43323
43343
|
payload: Payload;
|
|
43324
43344
|
payloadSchema: ZodType;
|
|
43325
43345
|
billableOperations: {
|
|
43326
|
-
readonly "
|
|
43346
|
+
readonly "work-email-leadmagic": {
|
|
43327
43347
|
readonly provider: "leadmagic";
|
|
43328
43348
|
readonly allowManagedConnection: true;
|
|
43329
43349
|
readonly credits: 0.5;
|
|
43330
43350
|
readonly mode: "onSuccess";
|
|
43331
43351
|
};
|
|
43332
|
-
readonly "
|
|
43352
|
+
readonly "work-email-icypeas": {
|
|
43333
43353
|
readonly provider: "icypeas";
|
|
43334
43354
|
readonly allowManagedConnection: true;
|
|
43335
43355
|
readonly credits: 0.5;
|
|
43336
43356
|
readonly mode: "onSuccess";
|
|
43337
43357
|
};
|
|
43338
|
-
readonly "
|
|
43358
|
+
readonly "work-email-prospeo": {
|
|
43339
43359
|
readonly provider: "prospeo";
|
|
43340
43360
|
readonly allowManagedConnection: true;
|
|
43341
43361
|
readonly credits: 1;
|
|
43342
43362
|
readonly mode: "onSuccess";
|
|
43343
43363
|
};
|
|
43344
|
-
readonly "
|
|
43364
|
+
readonly "work-email-findymail": {
|
|
43345
43365
|
readonly provider: "findymail";
|
|
43346
43366
|
readonly allowManagedConnection: true;
|
|
43347
43367
|
readonly credits: 1;
|
|
43348
43368
|
readonly mode: "onSuccess";
|
|
43349
43369
|
};
|
|
43350
|
-
readonly "
|
|
43370
|
+
readonly "work-email-hunter": {
|
|
43351
43371
|
readonly provider: "hunter";
|
|
43352
43372
|
readonly allowManagedConnection: true;
|
|
43353
43373
|
readonly credits: 1;
|
|
43354
43374
|
readonly mode: "onSuccess";
|
|
43355
43375
|
};
|
|
43356
|
-
readonly "
|
|
43376
|
+
readonly "email-lookup-amplemarket": {
|
|
43357
43377
|
readonly provider: "amplemarket";
|
|
43358
43378
|
readonly allowManagedConnection: true;
|
|
43359
43379
|
readonly credits: 2.5;
|
|
@@ -43474,37 +43494,37 @@ declare const PersonWorkemailWaterfall1Entry: {
|
|
|
43474
43494
|
readonly inputFieldMode: "static";
|
|
43475
43495
|
readonly outputFieldMode: "static";
|
|
43476
43496
|
readonly billableOperations: {
|
|
43477
|
-
readonly "
|
|
43497
|
+
readonly "work-email-leadmagic": {
|
|
43478
43498
|
readonly provider: "leadmagic";
|
|
43479
43499
|
readonly allowManagedConnection: true;
|
|
43480
43500
|
readonly credits: 0.5;
|
|
43481
43501
|
readonly mode: "onSuccess";
|
|
43482
43502
|
};
|
|
43483
|
-
readonly "
|
|
43503
|
+
readonly "work-email-icypeas": {
|
|
43484
43504
|
readonly provider: "icypeas";
|
|
43485
43505
|
readonly allowManagedConnection: true;
|
|
43486
43506
|
readonly credits: 0.5;
|
|
43487
43507
|
readonly mode: "onSuccess";
|
|
43488
43508
|
};
|
|
43489
|
-
readonly "
|
|
43509
|
+
readonly "work-email-prospeo": {
|
|
43490
43510
|
readonly provider: "prospeo";
|
|
43491
43511
|
readonly allowManagedConnection: true;
|
|
43492
43512
|
readonly credits: 1;
|
|
43493
43513
|
readonly mode: "onSuccess";
|
|
43494
43514
|
};
|
|
43495
|
-
readonly "
|
|
43515
|
+
readonly "work-email-findymail": {
|
|
43496
43516
|
readonly provider: "findymail";
|
|
43497
43517
|
readonly allowManagedConnection: true;
|
|
43498
43518
|
readonly credits: 1;
|
|
43499
43519
|
readonly mode: "onSuccess";
|
|
43500
43520
|
};
|
|
43501
|
-
readonly "
|
|
43521
|
+
readonly "work-email-hunter": {
|
|
43502
43522
|
readonly provider: "hunter";
|
|
43503
43523
|
readonly allowManagedConnection: true;
|
|
43504
43524
|
readonly credits: 1;
|
|
43505
43525
|
readonly mode: "onSuccess";
|
|
43506
43526
|
};
|
|
43507
|
-
readonly "
|
|
43527
|
+
readonly "email-lookup-amplemarket": {
|
|
43508
43528
|
readonly provider: "amplemarket";
|
|
43509
43529
|
readonly allowManagedConnection: true;
|
|
43510
43530
|
readonly credits: 2.5;
|
|
@@ -44784,7 +44804,7 @@ declare function markRecordFieldAsComplete({
|
|
|
44784
44804
|
}): {
|
|
44785
44805
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
44786
44806
|
status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
|
|
44787
|
-
type: "string" | "number" | "boolean" | "
|
|
44807
|
+
type: "string" | "number" | "boolean" | "unknown" | "json";
|
|
44788
44808
|
reason: {
|
|
44789
44809
|
code: string;
|
|
44790
44810
|
summary: string;
|
|
@@ -44800,7 +44820,7 @@ declare function markRecordFieldAsComplete({
|
|
|
44800
44820
|
config_hash: string | null;
|
|
44801
44821
|
input_hash: string | null;
|
|
44802
44822
|
} | null;
|
|
44803
|
-
format: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "
|
|
44823
|
+
format: "int" | "date" | "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null;
|
|
44804
44824
|
widgets?: {
|
|
44805
44825
|
display_value?: {
|
|
44806
44826
|
label?: string | undefined;
|
|
@@ -44848,7 +44868,7 @@ declare function markRecordFieldAsPending({
|
|
|
44848
44868
|
}): {
|
|
44849
44869
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
44850
44870
|
status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
|
|
44851
|
-
type: "string" | "number" | "boolean" | "
|
|
44871
|
+
type: "string" | "number" | "boolean" | "unknown" | "json";
|
|
44852
44872
|
reason: {
|
|
44853
44873
|
code: string;
|
|
44854
44874
|
summary: string;
|
|
@@ -44864,7 +44884,7 @@ declare function markRecordFieldAsPending({
|
|
|
44864
44884
|
config_hash: string | null;
|
|
44865
44885
|
input_hash: string | null;
|
|
44866
44886
|
} | null;
|
|
44867
|
-
format: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "
|
|
44887
|
+
format: "int" | "date" | "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null;
|
|
44868
44888
|
widgets?: {
|
|
44869
44889
|
display_value?: {
|
|
44870
44890
|
label?: string | undefined;
|
|
@@ -44918,7 +44938,7 @@ declare function markRecordFieldAsNoResult({
|
|
|
44918
44938
|
}): {
|
|
44919
44939
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
44920
44940
|
status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
|
|
44921
|
-
type: "string" | "number" | "boolean" | "
|
|
44941
|
+
type: "string" | "number" | "boolean" | "unknown" | "json";
|
|
44922
44942
|
reason: {
|
|
44923
44943
|
code: string;
|
|
44924
44944
|
summary: string;
|
|
@@ -44934,7 +44954,7 @@ declare function markRecordFieldAsNoResult({
|
|
|
44934
44954
|
config_hash: string | null;
|
|
44935
44955
|
input_hash: string | null;
|
|
44936
44956
|
} | null;
|
|
44937
|
-
format: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "
|
|
44957
|
+
format: "int" | "date" | "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null;
|
|
44938
44958
|
widgets?: {
|
|
44939
44959
|
display_value?: {
|
|
44940
44960
|
label?: string | undefined;
|
|
@@ -44978,7 +44998,7 @@ declare function markRecordFieldAsNoResult({
|
|
|
44978
44998
|
declare function markRecordFieldAsFailed(field: RecordField, reason: FieldReason, resolvedBy: RecordField["resolved_by"]): {
|
|
44979
44999
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
44980
45000
|
status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
|
|
44981
|
-
type: "string" | "number" | "boolean" | "
|
|
45001
|
+
type: "string" | "number" | "boolean" | "unknown" | "json";
|
|
44982
45002
|
reason: {
|
|
44983
45003
|
code: string;
|
|
44984
45004
|
summary: string;
|
|
@@ -44994,7 +45014,7 @@ declare function markRecordFieldAsFailed(field: RecordField, reason: FieldReason
|
|
|
44994
45014
|
config_hash: string | null;
|
|
44995
45015
|
input_hash: string | null;
|
|
44996
45016
|
} | null;
|
|
44997
|
-
format: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "
|
|
45017
|
+
format: "int" | "date" | "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null;
|
|
44998
45018
|
widgets?: {
|
|
44999
45019
|
display_value?: {
|
|
45000
45020
|
label?: string | undefined;
|
|
@@ -45038,7 +45058,7 @@ declare function markRecordFieldAsFailed(field: RecordField, reason: FieldReason
|
|
|
45038
45058
|
declare function markRecordFieldAsSkipped(field: RecordField, reason: FieldReason): {
|
|
45039
45059
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
45040
45060
|
status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
|
|
45041
|
-
type: "string" | "number" | "boolean" | "
|
|
45061
|
+
type: "string" | "number" | "boolean" | "unknown" | "json";
|
|
45042
45062
|
reason: {
|
|
45043
45063
|
code: string;
|
|
45044
45064
|
summary: string;
|
|
@@ -45054,7 +45074,7 @@ declare function markRecordFieldAsSkipped(field: RecordField, reason: FieldReaso
|
|
|
45054
45074
|
config_hash: string | null;
|
|
45055
45075
|
input_hash: string | null;
|
|
45056
45076
|
} | null;
|
|
45057
|
-
format: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "
|
|
45077
|
+
format: "int" | "date" | "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null;
|
|
45058
45078
|
widgets?: {
|
|
45059
45079
|
display_value?: {
|
|
45060
45080
|
label?: string | undefined;
|
|
@@ -45098,7 +45118,7 @@ declare function markRecordFieldAsSkipped(field: RecordField, reason: FieldReaso
|
|
|
45098
45118
|
declare function markRecordFieldAsProcessing(field: RecordField): {
|
|
45099
45119
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
45100
45120
|
status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
|
|
45101
|
-
type: "string" | "number" | "boolean" | "
|
|
45121
|
+
type: "string" | "number" | "boolean" | "unknown" | "json";
|
|
45102
45122
|
reason: {
|
|
45103
45123
|
code: string;
|
|
45104
45124
|
summary: string;
|
|
@@ -45114,7 +45134,7 @@ declare function markRecordFieldAsProcessing(field: RecordField): {
|
|
|
45114
45134
|
config_hash: string | null;
|
|
45115
45135
|
input_hash: string | null;
|
|
45116
45136
|
} | null;
|
|
45117
|
-
format: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "
|
|
45137
|
+
format: "int" | "date" | "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null;
|
|
45118
45138
|
widgets?: {
|
|
45119
45139
|
display_value?: {
|
|
45120
45140
|
label?: string | undefined;
|
|
@@ -45162,12 +45182,12 @@ declare function catalogInput(field: NamedFieldEntry, config: {
|
|
|
45162
45182
|
alias?: string | undefined;
|
|
45163
45183
|
}> | undefined;
|
|
45164
45184
|
} | null | undefined): {
|
|
45165
|
-
name: "
|
|
45185
|
+
name: "spending_trend" | "technology_list" | "company_description" | "cleaned_company_name" | "company_industry" | "company_region" | "location_hint" | "estimated_revenue" | "founded_year" | "technology_match_builtwith" | "number_of_social_followers" | "email" | "personal_email" | "alternate_personal_emails" | "company_news_summary" | "work_email" | "headcount" | "company_website_url" | "company_domain" | "company_name" | "first_name" | "addressee_name" | "address_line_1" | "address_line_2" | "job_title" | "job_description" | "profile_headline" | "address_city" | "address_country" | "address_state" | "zip_code" | "last_name" | "is_work_email" | "companyenrich_match" | "companyenrich_matches" | "name" | "ip_address" | "skills" | "avatar_url" | "estimated_salary" | "is_email_valid" | "profile_url" | "company_profile_url" | "profile_posts" | "clado_person_match" | "clado_person_match_v2" | "icypeas_person_match" | "icypeas_company_match" | "clado_person_profile" | "resend_email_success" | "email_body" | "email_subject" | "profile" | "mobile" | "landline" | "phone" | "message" | "slack_message_success" | "funding_history" | "funding_total_usd" | "template_output" | "gmail_email_success" | "zerobounce_validation_status" | "zerobounce_validation_match" | "leadmagic_competitor_list" | "leadmagic_acquisition_history" | "leadmagic_company_news_list" | "merge_result" | "mapped_links" | "website_markdown" | "website_html" | "website_url" | "urls" | "website_links" | "firecrawl_extract_result" | "exa_match_evaluation" | "email_validation_status" | "million_validation_match" | "scrape_list_response" | "resend_contact_id" | "sheet_record_id" | "sheet_record_ids" | "input_objects" | "role_finder_match" | "logodev_describe_match" | "logo_url" | "crustdata_company_match" | "crustdata_companyenrich_match" | "crustdata_person_match" | "post_list_string" | "crustdata_post_list" | "crustdata_profile_match_score" | "amplemarket_person_match" | "amplemarket_company_match" | "created_sheet" | "sheet" | "string_input" | "domain" | "url_input" | "slugified" | "http_response_status" | "http_response_body" | "http_response_headers" | "professional_profile_url" | "professional_profile" | "company_social_url" | "mobile_number";
|
|
45166
45186
|
description: "A summary of the main business purpose and objectives." | "The standardized and cleaned version of the company name, ensuring consistency across different entries." | "Markdown-formatted scrape of a website." | "A list of website links." | "HTML-formatted scrape of a website." | "Generic URL of a website." | "List of URLs" | "List of URLs scraped from a website" | "Fully enriched people profile" | "The industry in which the company operates." | "The region corresponding to the company's country." | "An optional hint to help pinpoint a person's or company's location." | "A list of the top competitors for a given company as provided by LeadMagic" | "A list of acquisitions by a given company" | "A list of company news" | "The estimated annual revenue of the company." | "List of corporate funding rounds." | "Amount of total known funding" | "The year the company was founded." | "A flat list of technologies used by a company" | "Technology spending trend over the last 2 years. Average deviation between measuring points in %." | "A datastructure containing the technologies used by this company" | "Social followers (or zero if not found)." | "Mobile telephone number of a person." | "A generic field for phone numbers. Can be mobile or landline." | "A landline phone number" | "Current job title of a person" | "Description of current job" | "A union field that can contain both professional and personal email addresses." | "The personal email address of a prospect." | "The personal email addresses that are associated with a prospect but less likely to be the primary email address of a prospect." | "Latest company news." | "Email address of a person connection to their place of employment." | "Total number of people employed in a particular organization" | "Website URL of a related company." | "Bare domain of a related company. Example: stripe.com (no scheme, no path)." | "Name of a company." | "Object returned from a Clado people search." | "Object returned from a Icypeas people search" | "First name of a person." | "Recipient name in the format required by postal services." | "URL for profile picture" | "First line of an address (e.g. street address)" | "The formatted address of a company’s headquarters." | "Name of a city as needed for an address." | "Name of a country as needed for an address." | "Name of a state." | "A postal zip code. Usually a combination of numbers and letters." | "Last name of a person." | "Estimated total salary in USD." | "List of professional skills" | "Check if a given email is a work email." | "The full name of a person. Usually a combination of first and last name." | "IP Address of a person" | "Check if an email address is valid and can receive emails." | "A standardized format for returning LinkedIn profile data." | "A person's LinkedIn profile URL." | "List of recent LinkedIn posts in JSON format." | "Professional profile headline" | "Company LinkedIn URL." | "Result of email sending action using Resend" | "Id of a single resend contact" | "Name of a pipe0 sheet" | "Input field of type string" | "A domain field." | "Input field of type string and URL format" | "A value that has been stripped of characters not found in slugs." | "HTTP status code returned by the upstream endpoint." | "Parsed JSON body returned by the upstream endpoint." | "Response headers returned by the upstream endpoint as a flat key-value map." | "ID of sheet record" | "IDs sheet records" | "Result of email sending action using Gmail" | "Result of sending a message using Slack" | "The test of an email formatted as markdown" | "A markdown message that be send to any chat app." | "Subject line for email" | "Template value where the tags are replaces with real values" | "Email validation status. Allowed values are: 'valid', 'invalid', 'catch_all', 'unkown'" | "Validation status as returned from ZeroBounce single validation" | "Full validation object as returned by ZeroBounce" | "List of unstructured input objects" | "Reference to a created sheet" | "Result of a firecrawl extract operation" | "Exa search result." | "CompanyEnrich response object" | "Crustdata company match object" | "A number between 1 and 0 indicating the confidence that the profile belongs to the input email address." | "Crustdata company enrichment match." | "LinkedIn post list" | "Rich JSON post list" | "Result of a role finder operation" | "Person match object as returned by Amplemarket" | "Company match object as returned by Amplemarket" | "CompanyEnrich response list." | "Company or organization logo" | "Get company logos & brand data" | "Social Media URL for a given company (e.g. LinkedIn profile URL).";
|
|
45167
45187
|
resolvedName: string;
|
|
45168
|
-
type: "string" | "number" | "boolean" | "
|
|
45188
|
+
type: "string" | "number" | "boolean" | "unknown" | "json";
|
|
45169
45189
|
label: "Company description" | "Cleaned company name" | "Scrape result - Markdown" | "Website internal links" | "Scrape result - HTML" | "Website URL" | "URLs" | "Clado person profile" | "Full name" | "Profile headline" | "LinkedIn profile URL" | "Job title" | "Company industry" | "Company region" | "Location hint" | "Competitor list" | "Acquisition history" | "Company news list" | "Estimated Annual Revenue" | "Funding history" | "Total funding (USD)" | "Founding year" | "Technology list" | "Spending Trend" | "Builtwith technology response" | "Follower count" | "Mobile" | "Phone" | "Landline" | "Job description" | "Email address" | "Personal email" | "Alternate personal email" | "Latest news" | "Work email" | "Headcount" | "Company website URL" | "Company domain" | "Company name" | "Clado person match" | "Icypeas person match" | "Icypeas company match" | "First name" | "Addressee name" | "Avatar URL" | "Address line 1" | "Address line 2" | "Address city" | "Address country" | "State" | "Zip code" | "Last name" | "Estimated salary" | "Skills" | "Is work email result" | "IP address" | "Email validation" | "Professional profile" | "Recrent linkedIn posts" | "Company LinkedIn profile URL" | "Resend mail success" | "Resend contact id" | "Sheet name" | "String input" | "Domain" | "URL input" | "Slugified value" | "HTTP response status" | "HTTP response body" | "HTTP response headers" | "Record ID" | "Record IDs" | "Gmail e-mail success" | "Slack message success" | "A markdown email" | "Message" | "Subject Line" | "Template Output" | "Validation status" | "Million Verifier match" | "ZeroBounce Validation Status" | "ZeroBounce Validation Match" | "Input objects" | "Created sheet" | "Merge Result" | "Extract Result" | "Exa Match Evaluation" | "Company match" | "Person match" | "Match score" | "Company enrichment match" | "Post list" | "Crustdata Post list" | "Role finder match" | "CompanyEnrich matches" | "Logo URL" | "Company Social URL" | "Professional profile (LinkedIn)" | "LinkedIn Profile URL";
|
|
45170
|
-
format: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "currency" | "text" | "
|
|
45190
|
+
format: "int" | "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "currency" | "text" | "decimal" | "percent" | null;
|
|
45171
45191
|
};
|
|
45172
45192
|
//#endregion
|
|
45173
45193
|
//#region src/pipes/pipes-validator/get-output-field-info-from-dev.d.ts
|
|
@@ -45549,7 +45569,7 @@ declare function stringify(v: unknown): unknown;
|
|
|
45549
45569
|
declare function rateLimitRatioFallingProgression(index: number): number;
|
|
45550
45570
|
declare function sortObjectKeys(obj: any): any;
|
|
45551
45571
|
declare const TYPES_TO_FORMATS: {
|
|
45552
|
-
string: ("email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "url" | "datetime" | "
|
|
45572
|
+
string: ("date" | "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "url" | "datetime" | "text")[];
|
|
45553
45573
|
json: ("json_object" | "json_list")[];
|
|
45554
45574
|
number: ("int" | "decimal")[];
|
|
45555
45575
|
boolean: never[];
|
|
@@ -45595,8 +45615,8 @@ declare function inputFromRecords(records: PipesInMemoryResponse["records"], con
|
|
|
45595
45615
|
summary: string;
|
|
45596
45616
|
message: string;
|
|
45597
45617
|
} | null | undefined;
|
|
45598
|
-
type?: "string" | "number" | "boolean" | "
|
|
45599
|
-
format?: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "
|
|
45618
|
+
type?: "string" | "number" | "boolean" | "unknown" | "json" | undefined;
|
|
45619
|
+
format?: "int" | "date" | "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null | undefined;
|
|
45600
45620
|
claimed_by?: {
|
|
45601
45621
|
ref: "input" | "prompt:run@1" | "company:newssummary:website@1" | "company:newssummary:domain@1" | "company:techstack:builtwith@1" | "company:techstack:builtwith@2" | "company:websiteurl:email@1" | "company:domain:workemail@1" | "company:funding:leadmagic@1" | "company:funding:leadmagic@2" | "people:workemail:waterfall@1" | "person:workemail:waterfall@1" | "people:email:iswork@1" | "email:iswork@1" | "people:name:split@1" | "person:name:split@1" | "person:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "email:validate:zerobounce@1" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "company:overview@3" | "json:extract:multi@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "person:match:role:waterfall@1" | "person:identity:amplemarket@1" | "company:identity@2" | "company:identity@3" | "person:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "person:mobile:profileurl:waterfall@1" | "people:personalemail:profile:waterfall@1" | "person:personalemail:profileurl:waterfall@1" | "people:profile:waterfall@1" | "person:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "person:profileurl:email:waterfall@1" | "person:profileurl:name@1" | "people:email:validate:zerobounce@1" | "person:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "person:mobile:workemail:waterfall@1" | "fields:merge@1" | "field:slugify@1" | "field:domainify@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:row:append@1" | "sheet:row:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:lookalikes:companyenrich@2" | "company:match:logodev@1" | "company:match:logodev@2" | "person:posts:crustdata@1" | "company:match:crustdata@1" | "company:match:crustdata@2" | "people:profile:workemail:crustdata@1" | "person:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "person:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "person:identity:email:waterfall@1" | "http:request@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | null;
|
|
45602
45622
|
config_hash: string | null;
|
|
@@ -45655,8 +45675,8 @@ declare function inputFromRecords(records: PipesInMemoryResponse["records"], con
|
|
|
45655
45675
|
summary: string;
|
|
45656
45676
|
message: string;
|
|
45657
45677
|
} | null | undefined;
|
|
45658
|
-
type?: "string" | "number" | "boolean" | "
|
|
45659
|
-
format?: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "
|
|
45678
|
+
type?: "string" | "number" | "boolean" | "unknown" | "json" | undefined;
|
|
45679
|
+
format?: "int" | "date" | "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null | undefined;
|
|
45660
45680
|
claimed_by?: {
|
|
45661
45681
|
ref: "input" | "prompt:run@1" | "company:newssummary:website@1" | "company:newssummary:domain@1" | "company:techstack:builtwith@1" | "company:techstack:builtwith@2" | "company:websiteurl:email@1" | "company:domain:workemail@1" | "company:funding:leadmagic@1" | "company:funding:leadmagic@2" | "people:workemail:waterfall@1" | "person:workemail:waterfall@1" | "people:email:iswork@1" | "email:iswork@1" | "people:name:split@1" | "person:name:split@1" | "person:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "email:validate:zerobounce@1" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "company:overview@3" | "json:extract:multi@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "person:match:role:waterfall@1" | "person:identity:amplemarket@1" | "company:identity@2" | "company:identity@3" | "person:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "person:mobile:profileurl:waterfall@1" | "people:personalemail:profile:waterfall@1" | "person:personalemail:profileurl:waterfall@1" | "people:profile:waterfall@1" | "person:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "person:profileurl:email:waterfall@1" | "person:profileurl:name@1" | "people:email:validate:zerobounce@1" | "person:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "person:mobile:workemail:waterfall@1" | "fields:merge@1" | "field:slugify@1" | "field:domainify@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:row:append@1" | "sheet:row:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:lookalikes:companyenrich@2" | "company:match:logodev@1" | "company:match:logodev@2" | "person:posts:crustdata@1" | "company:match:crustdata@1" | "company:match:crustdata@2" | "people:profile:workemail:crustdata@1" | "person:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "person:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "person:identity:email:waterfall@1" | "http:request@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | null;
|
|
45662
45682
|
config_hash: string | null;
|
|
@@ -45718,8 +45738,8 @@ declare function inputFromRecordArr(records: PipesRecord[], config?: Partial<Fie
|
|
|
45718
45738
|
summary: string;
|
|
45719
45739
|
message: string;
|
|
45720
45740
|
} | null | undefined;
|
|
45721
|
-
type?: "string" | "number" | "boolean" | "
|
|
45722
|
-
format?: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "
|
|
45741
|
+
type?: "string" | "number" | "boolean" | "unknown" | "json" | undefined;
|
|
45742
|
+
format?: "int" | "date" | "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null | undefined;
|
|
45723
45743
|
claimed_by?: {
|
|
45724
45744
|
ref: "input" | "prompt:run@1" | "company:newssummary:website@1" | "company:newssummary:domain@1" | "company:techstack:builtwith@1" | "company:techstack:builtwith@2" | "company:websiteurl:email@1" | "company:domain:workemail@1" | "company:funding:leadmagic@1" | "company:funding:leadmagic@2" | "people:workemail:waterfall@1" | "person:workemail:waterfall@1" | "people:email:iswork@1" | "email:iswork@1" | "people:name:split@1" | "person:name:split@1" | "person:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "email:validate:zerobounce@1" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "company:overview@3" | "json:extract:multi@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "person:match:role:waterfall@1" | "person:identity:amplemarket@1" | "company:identity@2" | "company:identity@3" | "person:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "person:mobile:profileurl:waterfall@1" | "people:personalemail:profile:waterfall@1" | "person:personalemail:profileurl:waterfall@1" | "people:profile:waterfall@1" | "person:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "person:profileurl:email:waterfall@1" | "person:profileurl:name@1" | "people:email:validate:zerobounce@1" | "person:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "person:mobile:workemail:waterfall@1" | "fields:merge@1" | "field:slugify@1" | "field:domainify@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:row:append@1" | "sheet:row:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:lookalikes:companyenrich@2" | "company:match:logodev@1" | "company:match:logodev@2" | "person:posts:crustdata@1" | "company:match:crustdata@1" | "company:match:crustdata@2" | "people:profile:workemail:crustdata@1" | "person:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "person:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "person:identity:email:waterfall@1" | "http:request@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | null;
|
|
45725
45745
|
config_hash: string | null;
|
|
@@ -45778,8 +45798,8 @@ declare function inputFromRecordArr(records: PipesRecord[], config?: Partial<Fie
|
|
|
45778
45798
|
summary: string;
|
|
45779
45799
|
message: string;
|
|
45780
45800
|
} | null | undefined;
|
|
45781
|
-
type?: "string" | "number" | "boolean" | "
|
|
45782
|
-
format?: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "
|
|
45801
|
+
type?: "string" | "number" | "boolean" | "unknown" | "json" | undefined;
|
|
45802
|
+
format?: "int" | "date" | "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null | undefined;
|
|
45783
45803
|
claimed_by?: {
|
|
45784
45804
|
ref: "input" | "prompt:run@1" | "company:newssummary:website@1" | "company:newssummary:domain@1" | "company:techstack:builtwith@1" | "company:techstack:builtwith@2" | "company:websiteurl:email@1" | "company:domain:workemail@1" | "company:funding:leadmagic@1" | "company:funding:leadmagic@2" | "people:workemail:waterfall@1" | "person:workemail:waterfall@1" | "people:email:iswork@1" | "email:iswork@1" | "people:name:split@1" | "person:name:split@1" | "person:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "email:validate:zerobounce@1" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "company:overview@3" | "json:extract:multi@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "person:match:role:waterfall@1" | "person:identity:amplemarket@1" | "company:identity@2" | "company:identity@3" | "person:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "person:mobile:profileurl:waterfall@1" | "people:personalemail:profile:waterfall@1" | "person:personalemail:profileurl:waterfall@1" | "people:profile:waterfall@1" | "person:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "person:profileurl:email:waterfall@1" | "person:profileurl:name@1" | "people:email:validate:zerobounce@1" | "person:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "person:mobile:workemail:waterfall@1" | "fields:merge@1" | "field:slugify@1" | "field:domainify@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:row:append@1" | "sheet:row:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:lookalikes:companyenrich@2" | "company:match:logodev@1" | "company:match:logodev@2" | "person:posts:crustdata@1" | "company:match:crustdata@1" | "company:match:crustdata@2" | "people:profile:workemail:crustdata@1" | "person:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "person:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "person:identity:email:waterfall@1" | "http:request@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | null;
|
|
45785
45805
|
config_hash: string | null;
|
|
@@ -45841,8 +45861,8 @@ declare function inputFromRecord(record: PipesRecord, config?: Partial<FieldsToO
|
|
|
45841
45861
|
summary: string;
|
|
45842
45862
|
message: string;
|
|
45843
45863
|
} | null | undefined;
|
|
45844
|
-
type?: "string" | "number" | "boolean" | "
|
|
45845
|
-
format?: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "
|
|
45864
|
+
type?: "string" | "number" | "boolean" | "unknown" | "json" | undefined;
|
|
45865
|
+
format?: "int" | "date" | "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null | undefined;
|
|
45846
45866
|
claimed_by?: {
|
|
45847
45867
|
ref: "input" | "prompt:run@1" | "company:newssummary:website@1" | "company:newssummary:domain@1" | "company:techstack:builtwith@1" | "company:techstack:builtwith@2" | "company:websiteurl:email@1" | "company:domain:workemail@1" | "company:funding:leadmagic@1" | "company:funding:leadmagic@2" | "people:workemail:waterfall@1" | "person:workemail:waterfall@1" | "people:email:iswork@1" | "email:iswork@1" | "people:name:split@1" | "person:name:split@1" | "person:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "email:validate:zerobounce@1" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "company:overview@3" | "json:extract:multi@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "person:match:role:waterfall@1" | "person:identity:amplemarket@1" | "company:identity@2" | "company:identity@3" | "person:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "person:mobile:profileurl:waterfall@1" | "people:personalemail:profile:waterfall@1" | "person:personalemail:profileurl:waterfall@1" | "people:profile:waterfall@1" | "person:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "person:profileurl:email:waterfall@1" | "person:profileurl:name@1" | "people:email:validate:zerobounce@1" | "person:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "person:mobile:workemail:waterfall@1" | "fields:merge@1" | "field:slugify@1" | "field:domainify@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:row:append@1" | "sheet:row:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:lookalikes:companyenrich@2" | "company:match:logodev@1" | "company:match:logodev@2" | "person:posts:crustdata@1" | "company:match:crustdata@1" | "company:match:crustdata@2" | "people:profile:workemail:crustdata@1" | "person:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "person:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "person:identity:email:waterfall@1" | "http:request@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | null;
|
|
45848
45868
|
config_hash: string | null;
|
|
@@ -45901,8 +45921,8 @@ declare function inputFromRecord(record: PipesRecord, config?: Partial<FieldsToO
|
|
|
45901
45921
|
summary: string;
|
|
45902
45922
|
message: string;
|
|
45903
45923
|
} | null | undefined;
|
|
45904
|
-
type?: "string" | "number" | "boolean" | "
|
|
45905
|
-
format?: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "
|
|
45924
|
+
type?: "string" | "number" | "boolean" | "unknown" | "json" | undefined;
|
|
45925
|
+
format?: "int" | "date" | "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null | undefined;
|
|
45906
45926
|
claimed_by?: {
|
|
45907
45927
|
ref: "input" | "prompt:run@1" | "company:newssummary:website@1" | "company:newssummary:domain@1" | "company:techstack:builtwith@1" | "company:techstack:builtwith@2" | "company:websiteurl:email@1" | "company:domain:workemail@1" | "company:funding:leadmagic@1" | "company:funding:leadmagic@2" | "people:workemail:waterfall@1" | "person:workemail:waterfall@1" | "people:email:iswork@1" | "email:iswork@1" | "people:name:split@1" | "person:name:split@1" | "person:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "email:validate:zerobounce@1" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "company:overview@3" | "json:extract:multi@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "person:match:role:waterfall@1" | "person:identity:amplemarket@1" | "company:identity@2" | "company:identity@3" | "person:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "person:mobile:profileurl:waterfall@1" | "people:personalemail:profile:waterfall@1" | "person:personalemail:profileurl:waterfall@1" | "people:profile:waterfall@1" | "person:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "person:profileurl:email:waterfall@1" | "person:profileurl:name@1" | "people:email:validate:zerobounce@1" | "person:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "person:mobile:workemail:waterfall@1" | "fields:merge@1" | "field:slugify@1" | "field:domainify@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:row:append@1" | "sheet:row:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:lookalikes:companyenrich@2" | "company:match:logodev@1" | "company:match:logodev@2" | "person:posts:crustdata@1" | "company:match:crustdata@1" | "company:match:crustdata@2" | "people:profile:workemail:crustdata@1" | "person:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "person:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "person:identity:email:waterfall@1" | "http:request@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | null;
|
|
45908
45928
|
config_hash: string | null;
|