@pipe0/base 0.0.10 → 0.0.12
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 +100 -104
- package/dist/index.mjs +21 -21
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -378,6 +378,7 @@ declare const StoreOptionWidgetSchema: z.ZodObject<{
|
|
|
378
378
|
}, z.core.$strip>>;
|
|
379
379
|
icon: z.ZodOptional<z.ZodObject<{
|
|
380
380
|
key: z.ZodEnum<{
|
|
381
|
+
language: "language";
|
|
381
382
|
output: "output";
|
|
382
383
|
input: "input";
|
|
383
384
|
text: "text";
|
|
@@ -385,7 +386,6 @@ declare const StoreOptionWidgetSchema: z.ZodObject<{
|
|
|
385
386
|
filter: "filter";
|
|
386
387
|
search: "search";
|
|
387
388
|
location: "location";
|
|
388
|
-
language: "language";
|
|
389
389
|
workflow: "workflow";
|
|
390
390
|
activity: "activity";
|
|
391
391
|
linkedin: "linkedin";
|
|
@@ -709,12 +709,12 @@ 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
|
+
profile_url: "profile_url";
|
|
712
713
|
int: "int";
|
|
713
714
|
date: "date";
|
|
714
715
|
email: "email";
|
|
715
716
|
address_line_1: "address_line_1";
|
|
716
717
|
zip_code: "zip_code";
|
|
717
|
-
profile_url: "profile_url";
|
|
718
718
|
phone: "phone";
|
|
719
719
|
website_url: "website_url";
|
|
720
720
|
markdown: "markdown";
|
|
@@ -729,12 +729,12 @@ declare const RecordFieldFormatSchema: z.ZodEnum<{
|
|
|
729
729
|
percent: "percent";
|
|
730
730
|
}>;
|
|
731
731
|
declare const NullableRecordFieldFormatSchema: z.ZodNullable<z.ZodEnum<{
|
|
732
|
+
profile_url: "profile_url";
|
|
732
733
|
int: "int";
|
|
733
734
|
date: "date";
|
|
734
735
|
email: "email";
|
|
735
736
|
address_line_1: "address_line_1";
|
|
736
737
|
zip_code: "zip_code";
|
|
737
|
-
profile_url: "profile_url";
|
|
738
738
|
phone: "phone";
|
|
739
739
|
website_url: "website_url";
|
|
740
740
|
markdown: "markdown";
|
|
@@ -759,12 +759,12 @@ declare const FieldAnnotationSchema: z.ZodObject<{
|
|
|
759
759
|
}>;
|
|
760
760
|
label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
761
761
|
format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
762
|
+
profile_url: "profile_url";
|
|
762
763
|
int: "int";
|
|
763
764
|
date: "date";
|
|
764
765
|
email: "email";
|
|
765
766
|
address_line_1: "address_line_1";
|
|
766
767
|
zip_code: "zip_code";
|
|
767
|
-
profile_url: "profile_url";
|
|
768
768
|
phone: "phone";
|
|
769
769
|
website_url: "website_url";
|
|
770
770
|
markdown: "markdown";
|
|
@@ -794,12 +794,12 @@ declare const FieldAnnotationsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
794
794
|
}>;
|
|
795
795
|
label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
796
796
|
format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
797
|
+
profile_url: "profile_url";
|
|
797
798
|
int: "int";
|
|
798
799
|
date: "date";
|
|
799
800
|
email: "email";
|
|
800
801
|
address_line_1: "address_line_1";
|
|
801
802
|
zip_code: "zip_code";
|
|
802
|
-
profile_url: "profile_url";
|
|
803
803
|
phone: "phone";
|
|
804
804
|
website_url: "website_url";
|
|
805
805
|
markdown: "markdown";
|
|
@@ -1308,12 +1308,12 @@ declare const RecordFieldSchema: z.ZodObject<{
|
|
|
1308
1308
|
}, z.core.$strip>>>;
|
|
1309
1309
|
}, z.core.$strip>>;
|
|
1310
1310
|
format: z.ZodNullable<z.ZodEnum<{
|
|
1311
|
+
profile_url: "profile_url";
|
|
1311
1312
|
int: "int";
|
|
1312
1313
|
date: "date";
|
|
1313
1314
|
email: "email";
|
|
1314
1315
|
address_line_1: "address_line_1";
|
|
1315
1316
|
zip_code: "zip_code";
|
|
1316
|
-
profile_url: "profile_url";
|
|
1317
1317
|
phone: "phone";
|
|
1318
1318
|
website_url: "website_url";
|
|
1319
1319
|
markdown: "markdown";
|
|
@@ -1345,12 +1345,12 @@ declare const ExpandedFieldValueSchema: z.ZodObject<{
|
|
|
1345
1345
|
json: "json";
|
|
1346
1346
|
}>>;
|
|
1347
1347
|
format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
1348
|
+
profile_url: "profile_url";
|
|
1348
1349
|
int: "int";
|
|
1349
1350
|
date: "date";
|
|
1350
1351
|
email: "email";
|
|
1351
1352
|
address_line_1: "address_line_1";
|
|
1352
1353
|
zip_code: "zip_code";
|
|
1353
|
-
profile_url: "profile_url";
|
|
1354
1354
|
phone: "phone";
|
|
1355
1355
|
website_url: "website_url";
|
|
1356
1356
|
markdown: "markdown";
|
|
@@ -1679,12 +1679,12 @@ declare const PipesInputSchema: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.
|
|
|
1679
1679
|
json: "json";
|
|
1680
1680
|
}>>;
|
|
1681
1681
|
format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
1682
|
+
profile_url: "profile_url";
|
|
1682
1683
|
int: "int";
|
|
1683
1684
|
date: "date";
|
|
1684
1685
|
email: "email";
|
|
1685
1686
|
address_line_1: "address_line_1";
|
|
1686
1687
|
zip_code: "zip_code";
|
|
1687
|
-
profile_url: "profile_url";
|
|
1688
1688
|
phone: "phone";
|
|
1689
1689
|
website_url: "website_url";
|
|
1690
1690
|
markdown: "markdown";
|
|
@@ -2312,12 +2312,12 @@ declare const RecordSchema: z.ZodObject<{
|
|
|
2312
2312
|
}, z.core.$strip>>>;
|
|
2313
2313
|
}, z.core.$strip>>;
|
|
2314
2314
|
format: z.ZodNullable<z.ZodEnum<{
|
|
2315
|
+
profile_url: "profile_url";
|
|
2315
2316
|
int: "int";
|
|
2316
2317
|
date: "date";
|
|
2317
2318
|
email: "email";
|
|
2318
2319
|
address_line_1: "address_line_1";
|
|
2319
2320
|
zip_code: "zip_code";
|
|
2320
|
-
profile_url: "profile_url";
|
|
2321
2321
|
phone: "phone";
|
|
2322
2322
|
website_url: "website_url";
|
|
2323
2323
|
markdown: "markdown";
|
|
@@ -2433,12 +2433,12 @@ 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
|
+
profile_url: "profile_url";
|
|
2436
2437
|
int: "int";
|
|
2437
2438
|
date: "date";
|
|
2438
2439
|
email: "email";
|
|
2439
2440
|
address_line_1: "address_line_1";
|
|
2440
2441
|
zip_code: "zip_code";
|
|
2441
|
-
profile_url: "profile_url";
|
|
2442
2442
|
phone: "phone";
|
|
2443
2443
|
website_url: "website_url";
|
|
2444
2444
|
markdown: "markdown";
|
|
@@ -2552,12 +2552,12 @@ 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
|
+
profile_url: "profile_url";
|
|
2555
2556
|
int: "int";
|
|
2556
2557
|
date: "date";
|
|
2557
2558
|
email: "email";
|
|
2558
2559
|
address_line_1: "address_line_1";
|
|
2559
2560
|
zip_code: "zip_code";
|
|
2560
|
-
profile_url: "profile_url";
|
|
2561
2561
|
phone: "phone";
|
|
2562
2562
|
website_url: "website_url";
|
|
2563
2563
|
markdown: "markdown";
|
|
@@ -2581,12 +2581,12 @@ 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
|
+
profile_url: "profile_url";
|
|
2584
2585
|
int: "int";
|
|
2585
2586
|
date: "date";
|
|
2586
2587
|
email: "email";
|
|
2587
2588
|
address_line_1: "address_line_1";
|
|
2588
2589
|
zip_code: "zip_code";
|
|
2589
|
-
profile_url: "profile_url";
|
|
2590
2590
|
phone: "phone";
|
|
2591
2591
|
website_url: "website_url";
|
|
2592
2592
|
markdown: "markdown";
|
|
@@ -2729,15 +2729,24 @@ 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
|
-
|
|
2733
|
-
|
|
2732
|
+
name: "name";
|
|
2733
|
+
profile_url: "profile_url";
|
|
2734
|
+
skills: "skills";
|
|
2735
|
+
job_title: "job_title";
|
|
2736
|
+
company_name: "company_name";
|
|
2737
|
+
company_social_url: "company_social_url";
|
|
2738
|
+
job_description: "job_description";
|
|
2739
|
+
headcount: "headcount";
|
|
2740
|
+
company_industry: "company_industry";
|
|
2741
|
+
message: "message";
|
|
2734
2742
|
company_description: "company_description";
|
|
2735
2743
|
cleaned_company_name: "cleaned_company_name";
|
|
2736
|
-
company_industry: "company_industry";
|
|
2737
2744
|
company_region: "company_region";
|
|
2738
2745
|
location_hint: "location_hint";
|
|
2739
2746
|
estimated_revenue: "estimated_revenue";
|
|
2740
2747
|
founded_year: "founded_year";
|
|
2748
|
+
technology_list: "technology_list";
|
|
2749
|
+
spending_trend: "spending_trend";
|
|
2741
2750
|
technology_match_builtwith: "technology_match_builtwith";
|
|
2742
2751
|
number_of_social_followers: "number_of_social_followers";
|
|
2743
2752
|
email: "email";
|
|
@@ -2745,16 +2754,12 @@ declare const FieldNameSchema: z.ZodEnum<{
|
|
|
2745
2754
|
alternate_personal_emails: "alternate_personal_emails";
|
|
2746
2755
|
company_news_summary: "company_news_summary";
|
|
2747
2756
|
work_email: "work_email";
|
|
2748
|
-
headcount: "headcount";
|
|
2749
2757
|
company_website_url: "company_website_url";
|
|
2750
2758
|
company_domain: "company_domain";
|
|
2751
|
-
company_name: "company_name";
|
|
2752
2759
|
first_name: "first_name";
|
|
2753
2760
|
addressee_name: "addressee_name";
|
|
2754
2761
|
address_line_1: "address_line_1";
|
|
2755
2762
|
address_line_2: "address_line_2";
|
|
2756
|
-
job_title: "job_title";
|
|
2757
|
-
job_description: "job_description";
|
|
2758
2763
|
profile_headline: "profile_headline";
|
|
2759
2764
|
address_city: "address_city";
|
|
2760
2765
|
address_country: "address_country";
|
|
@@ -2764,13 +2769,10 @@ declare const FieldNameSchema: z.ZodEnum<{
|
|
|
2764
2769
|
is_work_email: "is_work_email";
|
|
2765
2770
|
companyenrich_match: "companyenrich_match";
|
|
2766
2771
|
companyenrich_matches: "companyenrich_matches";
|
|
2767
|
-
name: "name";
|
|
2768
2772
|
ip_address: "ip_address";
|
|
2769
|
-
skills: "skills";
|
|
2770
2773
|
avatar_url: "avatar_url";
|
|
2771
2774
|
estimated_salary: "estimated_salary";
|
|
2772
2775
|
is_email_valid: "is_email_valid";
|
|
2773
|
-
profile_url: "profile_url";
|
|
2774
2776
|
company_profile_url: "company_profile_url";
|
|
2775
2777
|
profile_posts: "profile_posts";
|
|
2776
2778
|
clado_person_match: "clado_person_match";
|
|
@@ -2785,7 +2787,6 @@ declare const FieldNameSchema: z.ZodEnum<{
|
|
|
2785
2787
|
mobile: "mobile";
|
|
2786
2788
|
landline: "landline";
|
|
2787
2789
|
phone: "phone";
|
|
2788
|
-
message: "message";
|
|
2789
2790
|
slack_message_success: "slack_message_success";
|
|
2790
2791
|
funding_history: "funding_history";
|
|
2791
2792
|
funding_total_usd: "funding_total_usd";
|
|
@@ -2834,7 +2835,6 @@ declare const FieldNameSchema: z.ZodEnum<{
|
|
|
2834
2835
|
http_response_headers: "http_response_headers";
|
|
2835
2836
|
professional_profile_url: "professional_profile_url";
|
|
2836
2837
|
professional_profile: "professional_profile";
|
|
2837
|
-
company_social_url: "company_social_url";
|
|
2838
2838
|
mobile_number: "mobile_number";
|
|
2839
2839
|
}>;
|
|
2840
2840
|
type FieldName = z.infer<typeof FieldNameSchema>;
|
|
@@ -12306,6 +12306,7 @@ declare const StoreOptionSchema: z.ZodObject<{
|
|
|
12306
12306
|
}, z.core.$strip>>;
|
|
12307
12307
|
icon: z.ZodOptional<z.ZodObject<{
|
|
12308
12308
|
key: z.ZodEnum<{
|
|
12309
|
+
language: "language";
|
|
12309
12310
|
output: "output";
|
|
12310
12311
|
input: "input";
|
|
12311
12312
|
text: "text";
|
|
@@ -12313,7 +12314,6 @@ declare const StoreOptionSchema: z.ZodObject<{
|
|
|
12313
12314
|
filter: "filter";
|
|
12314
12315
|
search: "search";
|
|
12315
12316
|
location: "location";
|
|
12316
|
-
language: "language";
|
|
12317
12317
|
workflow: "workflow";
|
|
12318
12318
|
activity: "activity";
|
|
12319
12319
|
linkedin: "linkedin";
|
|
@@ -12405,6 +12405,7 @@ declare const FormStoreSchema: z.ZodObject<{
|
|
|
12405
12405
|
}, z.core.$strip>>;
|
|
12406
12406
|
icon: z.ZodOptional<z.ZodObject<{
|
|
12407
12407
|
key: z.ZodEnum<{
|
|
12408
|
+
language: "language";
|
|
12408
12409
|
output: "output";
|
|
12409
12410
|
input: "input";
|
|
12410
12411
|
text: "text";
|
|
@@ -12412,7 +12413,6 @@ declare const FormStoreSchema: z.ZodObject<{
|
|
|
12412
12413
|
filter: "filter";
|
|
12413
12414
|
search: "search";
|
|
12414
12415
|
location: "location";
|
|
12415
|
-
language: "language";
|
|
12416
12416
|
workflow: "workflow";
|
|
12417
12417
|
activity: "activity";
|
|
12418
12418
|
linkedin: "linkedin";
|
|
@@ -14439,12 +14439,12 @@ declare const SearchResultFieldSchema: z$1.ZodObject<{
|
|
|
14439
14439
|
json: "json";
|
|
14440
14440
|
}>>;
|
|
14441
14441
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
14442
|
+
profile_url: "profile_url";
|
|
14442
14443
|
int: "int";
|
|
14443
14444
|
date: "date";
|
|
14444
14445
|
email: "email";
|
|
14445
14446
|
address_line_1: "address_line_1";
|
|
14446
14447
|
zip_code: "zip_code";
|
|
14447
|
-
profile_url: "profile_url";
|
|
14448
14448
|
phone: "phone";
|
|
14449
14449
|
website_url: "website_url";
|
|
14450
14450
|
markdown: "markdown";
|
|
@@ -14684,12 +14684,12 @@ declare const SearchResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable<z
|
|
|
14684
14684
|
json: "json";
|
|
14685
14685
|
}>>;
|
|
14686
14686
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
14687
|
+
profile_url: "profile_url";
|
|
14687
14688
|
int: "int";
|
|
14688
14689
|
date: "date";
|
|
14689
14690
|
email: "email";
|
|
14690
14691
|
address_line_1: "address_line_1";
|
|
14691
14692
|
zip_code: "zip_code";
|
|
14692
|
-
profile_url: "profile_url";
|
|
14693
14693
|
phone: "phone";
|
|
14694
14694
|
website_url: "website_url";
|
|
14695
14695
|
markdown: "markdown";
|
|
@@ -15776,12 +15776,12 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
15776
15776
|
json: "json";
|
|
15777
15777
|
}>>;
|
|
15778
15778
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
15779
|
+
profile_url: "profile_url";
|
|
15779
15780
|
int: "int";
|
|
15780
15781
|
date: "date";
|
|
15781
15782
|
email: "email";
|
|
15782
15783
|
address_line_1: "address_line_1";
|
|
15783
15784
|
zip_code: "zip_code";
|
|
15784
|
-
profile_url: "profile_url";
|
|
15785
15785
|
phone: "phone";
|
|
15786
15786
|
website_url: "website_url";
|
|
15787
15787
|
markdown: "markdown";
|
|
@@ -19112,12 +19112,12 @@ declare const SearchesResultFieldSchema: z$1.ZodObject<{
|
|
|
19112
19112
|
json: "json";
|
|
19113
19113
|
}>>;
|
|
19114
19114
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
19115
|
+
profile_url: "profile_url";
|
|
19115
19116
|
int: "int";
|
|
19116
19117
|
date: "date";
|
|
19117
19118
|
email: "email";
|
|
19118
19119
|
address_line_1: "address_line_1";
|
|
19119
19120
|
zip_code: "zip_code";
|
|
19120
|
-
profile_url: "profile_url";
|
|
19121
19121
|
phone: "phone";
|
|
19122
19122
|
website_url: "website_url";
|
|
19123
19123
|
markdown: "markdown";
|
|
@@ -19357,12 +19357,12 @@ declare const SearchesResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable
|
|
|
19357
19357
|
json: "json";
|
|
19358
19358
|
}>>;
|
|
19359
19359
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
19360
|
+
profile_url: "profile_url";
|
|
19360
19361
|
int: "int";
|
|
19361
19362
|
date: "date";
|
|
19362
19363
|
email: "email";
|
|
19363
19364
|
address_line_1: "address_line_1";
|
|
19364
19365
|
zip_code: "zip_code";
|
|
19365
|
-
profile_url: "profile_url";
|
|
19366
19366
|
phone: "phone";
|
|
19367
19367
|
website_url: "website_url";
|
|
19368
19368
|
markdown: "markdown";
|
|
@@ -19652,12 +19652,12 @@ declare const SearchesResponseSchema: z$1.ZodObject<{
|
|
|
19652
19652
|
json: "json";
|
|
19653
19653
|
}>>;
|
|
19654
19654
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
19655
|
+
profile_url: "profile_url";
|
|
19655
19656
|
int: "int";
|
|
19656
19657
|
date: "date";
|
|
19657
19658
|
email: "email";
|
|
19658
19659
|
address_line_1: "address_line_1";
|
|
19659
19660
|
zip_code: "zip_code";
|
|
19660
|
-
profile_url: "profile_url";
|
|
19661
19661
|
phone: "phone";
|
|
19662
19662
|
website_url: "website_url";
|
|
19663
19663
|
markdown: "markdown";
|
|
@@ -21295,10 +21295,10 @@ declare abstract class Pipe<Payload extends {
|
|
|
21295
21295
|
resolveFormat?: (_lazyContext: LazyResolveContext) => RecordFieldFormat;
|
|
21296
21296
|
isPrimaryOutput?: boolean;
|
|
21297
21297
|
}): {
|
|
21298
|
-
name: "
|
|
21298
|
+
name: "name" | "profile_url" | "skills" | "job_title" | "company_name" | "company_social_url" | "job_description" | "headcount" | "company_industry" | "message" | "company_description" | "cleaned_company_name" | "company_region" | "location_hint" | "estimated_revenue" | "founded_year" | "technology_list" | "spending_trend" | "technology_match_builtwith" | "number_of_social_followers" | "email" | "personal_email" | "alternate_personal_emails" | "company_news_summary" | "work_email" | "company_website_url" | "company_domain" | "first_name" | "addressee_name" | "address_line_1" | "address_line_2" | "profile_headline" | "address_city" | "address_country" | "address_state" | "zip_code" | "last_name" | "is_work_email" | "companyenrich_match" | "companyenrich_matches" | "ip_address" | "avatar_url" | "estimated_salary" | "is_email_valid" | "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" | "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" | "mobile_number";
|
|
21299
21299
|
enabled: boolean;
|
|
21300
21300
|
type: "string" | "number" | "boolean" | "unknown" | "json" | ((_lazyContext: LazyResolveContext) => RecordFieldType);
|
|
21301
|
-
format: "
|
|
21301
|
+
format: "profile_url" | "int" | "email" | "address_line_1" | "zip_code" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "currency" | "text" | "decimal" | "percent" | ((_lazyContext: LazyResolveContext) => RecordFieldFormat) | null;
|
|
21302
21302
|
resolvedName: any;
|
|
21303
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).";
|
|
21304
21304
|
jsonMeta: {
|
|
@@ -26730,12 +26730,12 @@ declare const pipePayloadSchemaCatalog: {
|
|
|
26730
26730
|
output_field: z.ZodObject<{
|
|
26731
26731
|
name: z.ZodString;
|
|
26732
26732
|
format: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
26733
|
+
profile_url: "profile_url";
|
|
26733
26734
|
int: "int";
|
|
26734
26735
|
date: "date";
|
|
26735
26736
|
email: "email";
|
|
26736
26737
|
address_line_1: "address_line_1";
|
|
26737
26738
|
zip_code: "zip_code";
|
|
26738
|
-
profile_url: "profile_url";
|
|
26739
26739
|
phone: "phone";
|
|
26740
26740
|
website_url: "website_url";
|
|
26741
26741
|
markdown: "markdown";
|
|
@@ -29141,7 +29141,6 @@ declare const pipePayloadSchemaCatalog: {
|
|
|
29141
29141
|
findymail: "findymail";
|
|
29142
29142
|
leadmagic: "leadmagic";
|
|
29143
29143
|
prospeo: "prospeo";
|
|
29144
|
-
clado: "clado";
|
|
29145
29144
|
amplemarket: "amplemarket";
|
|
29146
29145
|
}>;
|
|
29147
29146
|
}, z.core.$strip>>>;
|
|
@@ -29286,7 +29285,6 @@ declare const pipePayloadSchemaCatalog: {
|
|
|
29286
29285
|
provider: z.ZodEnum<{
|
|
29287
29286
|
leadmagic: "leadmagic";
|
|
29288
29287
|
mixrank: "mixrank";
|
|
29289
|
-
clado: "clado";
|
|
29290
29288
|
}>;
|
|
29291
29289
|
}, z.core.$strip>>>;
|
|
29292
29290
|
input_fields: z.ZodOptional<z.ZodObject<{
|
|
@@ -29431,7 +29429,6 @@ declare const pipePayloadSchemaCatalog: {
|
|
|
29431
29429
|
provider: z.ZodEnum<{
|
|
29432
29430
|
icypeas: "icypeas";
|
|
29433
29431
|
prospeo: "prospeo";
|
|
29434
|
-
clado: "clado";
|
|
29435
29432
|
amplemarket: "amplemarket";
|
|
29436
29433
|
}>;
|
|
29437
29434
|
}, z.core.$strip>>>;
|
|
@@ -30062,7 +30059,6 @@ declare const pipePayloadSchemaCatalog: {
|
|
|
30062
30059
|
crustdata: "crustdata";
|
|
30063
30060
|
hunter: "hunter";
|
|
30064
30061
|
leadmagic: "leadmagic";
|
|
30065
|
-
clado: "clado";
|
|
30066
30062
|
amplemarket: "amplemarket";
|
|
30067
30063
|
}>;
|
|
30068
30064
|
}, z.core.$strip>>>;
|
|
@@ -32189,12 +32185,12 @@ declare function getPipePayloadSchema(pipeId: PipeId): z.ZodObject<{
|
|
|
32189
32185
|
output_field: z.ZodObject<{
|
|
32190
32186
|
name: z.ZodString;
|
|
32191
32187
|
format: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
32188
|
+
profile_url: "profile_url";
|
|
32192
32189
|
int: "int";
|
|
32193
32190
|
date: "date";
|
|
32194
32191
|
email: "email";
|
|
32195
32192
|
address_line_1: "address_line_1";
|
|
32196
32193
|
zip_code: "zip_code";
|
|
32197
|
-
profile_url: "profile_url";
|
|
32198
32194
|
phone: "phone";
|
|
32199
32195
|
website_url: "website_url";
|
|
32200
32196
|
markdown: "markdown";
|
|
@@ -34565,7 +34561,6 @@ declare function getPipePayloadSchema(pipeId: PipeId): z.ZodObject<{
|
|
|
34565
34561
|
findymail: "findymail";
|
|
34566
34562
|
leadmagic: "leadmagic";
|
|
34567
34563
|
prospeo: "prospeo";
|
|
34568
|
-
clado: "clado";
|
|
34569
34564
|
amplemarket: "amplemarket";
|
|
34570
34565
|
}>;
|
|
34571
34566
|
}, z.core.$strip>>>;
|
|
@@ -34708,7 +34703,6 @@ declare function getPipePayloadSchema(pipeId: PipeId): z.ZodObject<{
|
|
|
34708
34703
|
provider: z.ZodEnum<{
|
|
34709
34704
|
leadmagic: "leadmagic";
|
|
34710
34705
|
mixrank: "mixrank";
|
|
34711
|
-
clado: "clado";
|
|
34712
34706
|
}>;
|
|
34713
34707
|
}, z.core.$strip>>>;
|
|
34714
34708
|
input_fields: z.ZodOptional<z.ZodObject<{
|
|
@@ -34851,7 +34845,6 @@ declare function getPipePayloadSchema(pipeId: PipeId): z.ZodObject<{
|
|
|
34851
34845
|
provider: z.ZodEnum<{
|
|
34852
34846
|
icypeas: "icypeas";
|
|
34853
34847
|
prospeo: "prospeo";
|
|
34854
|
-
clado: "clado";
|
|
34855
34848
|
amplemarket: "amplemarket";
|
|
34856
34849
|
}>;
|
|
34857
34850
|
}, z.core.$strip>>>;
|
|
@@ -35473,7 +35466,6 @@ declare function getPipePayloadSchema(pipeId: PipeId): z.ZodObject<{
|
|
|
35473
35466
|
crustdata: "crustdata";
|
|
35474
35467
|
hunter: "hunter";
|
|
35475
35468
|
leadmagic: "leadmagic";
|
|
35476
|
-
clado: "clado";
|
|
35477
35469
|
amplemarket: "amplemarket";
|
|
35478
35470
|
}>;
|
|
35479
35471
|
}, z.core.$strip>>>;
|
|
@@ -36041,12 +36033,12 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
36041
36033
|
pipe_index: z.ZodNullable<z.ZodNumber>;
|
|
36042
36034
|
}, z.core.$strip>;
|
|
36043
36035
|
format: z.ZodNullable<z.ZodEnum<{
|
|
36036
|
+
profile_url: "profile_url";
|
|
36044
36037
|
int: "int";
|
|
36045
36038
|
date: "date";
|
|
36046
36039
|
email: "email";
|
|
36047
36040
|
address_line_1: "address_line_1";
|
|
36048
36041
|
zip_code: "zip_code";
|
|
36049
|
-
profile_url: "profile_url";
|
|
36050
36042
|
phone: "phone";
|
|
36051
36043
|
website_url: "website_url";
|
|
36052
36044
|
markdown: "markdown";
|
|
@@ -36382,12 +36374,12 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
36382
36374
|
}, z.core.$strip>>>;
|
|
36383
36375
|
}, z.core.$strip>>;
|
|
36384
36376
|
format: z.ZodNullable<z.ZodEnum<{
|
|
36377
|
+
profile_url: "profile_url";
|
|
36385
36378
|
int: "int";
|
|
36386
36379
|
date: "date";
|
|
36387
36380
|
email: "email";
|
|
36388
36381
|
address_line_1: "address_line_1";
|
|
36389
36382
|
zip_code: "zip_code";
|
|
36390
|
-
profile_url: "profile_url";
|
|
36391
36383
|
phone: "phone";
|
|
36392
36384
|
website_url: "website_url";
|
|
36393
36385
|
markdown: "markdown";
|
|
@@ -36466,12 +36458,12 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
36466
36458
|
}>;
|
|
36467
36459
|
label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
36468
36460
|
format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
36461
|
+
profile_url: "profile_url";
|
|
36469
36462
|
int: "int";
|
|
36470
36463
|
date: "date";
|
|
36471
36464
|
email: "email";
|
|
36472
36465
|
address_line_1: "address_line_1";
|
|
36473
36466
|
zip_code: "zip_code";
|
|
36474
|
-
profile_url: "profile_url";
|
|
36475
36467
|
phone: "phone";
|
|
36476
36468
|
website_url: "website_url";
|
|
36477
36469
|
markdown: "markdown";
|
|
@@ -38173,12 +38165,12 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
38173
38165
|
output_field: z.ZodObject<{
|
|
38174
38166
|
name: z.ZodString;
|
|
38175
38167
|
format: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
38168
|
+
profile_url: "profile_url";
|
|
38176
38169
|
int: "int";
|
|
38177
38170
|
date: "date";
|
|
38178
38171
|
email: "email";
|
|
38179
38172
|
address_line_1: "address_line_1";
|
|
38180
38173
|
zip_code: "zip_code";
|
|
38181
|
-
profile_url: "profile_url";
|
|
38182
38174
|
phone: "phone";
|
|
38183
38175
|
website_url: "website_url";
|
|
38184
38176
|
markdown: "markdown";
|
|
@@ -39169,7 +39161,6 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
39169
39161
|
findymail: "findymail";
|
|
39170
39162
|
leadmagic: "leadmagic";
|
|
39171
39163
|
prospeo: "prospeo";
|
|
39172
|
-
clado: "clado";
|
|
39173
39164
|
amplemarket: "amplemarket";
|
|
39174
39165
|
}>;
|
|
39175
39166
|
}, z.core.$strip>>>;
|
|
@@ -39312,7 +39303,6 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
39312
39303
|
provider: z.ZodEnum<{
|
|
39313
39304
|
leadmagic: "leadmagic";
|
|
39314
39305
|
mixrank: "mixrank";
|
|
39315
|
-
clado: "clado";
|
|
39316
39306
|
}>;
|
|
39317
39307
|
}, z.core.$strip>>>;
|
|
39318
39308
|
input_fields: z.ZodOptional<z.ZodObject<{
|
|
@@ -39455,7 +39445,6 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
39455
39445
|
provider: z.ZodEnum<{
|
|
39456
39446
|
icypeas: "icypeas";
|
|
39457
39447
|
prospeo: "prospeo";
|
|
39458
|
-
clado: "clado";
|
|
39459
39448
|
amplemarket: "amplemarket";
|
|
39460
39449
|
}>;
|
|
39461
39450
|
}, z.core.$strip>>>;
|
|
@@ -41264,7 +41253,6 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
41264
41253
|
crustdata: "crustdata";
|
|
41265
41254
|
hunter: "hunter";
|
|
41266
41255
|
leadmagic: "leadmagic";
|
|
41267
|
-
clado: "clado";
|
|
41268
41256
|
amplemarket: "amplemarket";
|
|
41269
41257
|
}>;
|
|
41270
41258
|
}, z.core.$strip>>>;
|
|
@@ -41902,12 +41890,12 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
41902
41890
|
json: "json";
|
|
41903
41891
|
}>>;
|
|
41904
41892
|
format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
41893
|
+
profile_url: "profile_url";
|
|
41905
41894
|
int: "int";
|
|
41906
41895
|
date: "date";
|
|
41907
41896
|
email: "email";
|
|
41908
41897
|
address_line_1: "address_line_1";
|
|
41909
41898
|
zip_code: "zip_code";
|
|
41910
|
-
profile_url: "profile_url";
|
|
41911
41899
|
phone: "phone";
|
|
41912
41900
|
website_url: "website_url";
|
|
41913
41901
|
markdown: "markdown";
|
|
@@ -42293,7 +42281,7 @@ type PipesPayloadRegistry = typeof pipesPayloadRegistry;
|
|
|
42293
42281
|
declare const searchesPayloadRegistry: z.core.$ZodRegistry<GeneratedInputMeta, z.core.$ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
42294
42282
|
type SearchesPayloadRegistry = typeof searchesPayloadRegistry;
|
|
42295
42283
|
type Registry = PipesPayloadRegistry | SearchesPayloadRegistry;
|
|
42296
|
-
type SectionKeys = "
|
|
42284
|
+
type SectionKeys = "general" | "pagination" | "config.filters" | "pipe_io";
|
|
42297
42285
|
interface ConfigField {
|
|
42298
42286
|
path: string;
|
|
42299
42287
|
groupPath: string;
|
|
@@ -42362,6 +42350,33 @@ interface OrderedMultiCreateMeta extends ConfigField {
|
|
|
42362
42350
|
type: "static";
|
|
42363
42351
|
} | OptionsDef;
|
|
42364
42352
|
}
|
|
42353
|
+
/**
|
|
42354
|
+
* Ordered list where each entry is EITHER plain text OR a single field
|
|
42355
|
+
* reference like `{{ company_domain }}` — no concatenation. The constraint
|
|
42356
|
+
* lets the UI render each entry as one of two chip kinds (text vs field)
|
|
42357
|
+
* without needing a tiptap editor per row.
|
|
42358
|
+
*
|
|
42359
|
+
* Payload is `string[]`: text entries stored as-is, field references stored
|
|
42360
|
+
* as the literal `{{ name }}` Liquid template (so the existing runner
|
|
42361
|
+
* `renderLiquidTemplate` call handles substitution without any changes).
|
|
42362
|
+
*/
|
|
42363
|
+
interface TaggedOrderedMultiCreateMeta extends ConfigField {
|
|
42364
|
+
type: "tagged_ordered_multi_create_input";
|
|
42365
|
+
maxItems?: number;
|
|
42366
|
+
minItems?: number;
|
|
42367
|
+
/** Free-text suggestions list (e.g. autocomplete("titles")). */
|
|
42368
|
+
suggestionsDef?: {
|
|
42369
|
+
options: {
|
|
42370
|
+
value: string;
|
|
42371
|
+
label: string;
|
|
42372
|
+
}[];
|
|
42373
|
+
type: "static";
|
|
42374
|
+
} | OptionsDef;
|
|
42375
|
+
/** Filters the field-reference picker by upstream field type. */
|
|
42376
|
+
expectedTagType?: RecordFieldType;
|
|
42377
|
+
/** Populated at registration time from validationContext.fieldDefinitions. */
|
|
42378
|
+
inputFields?: PipesFieldDefinitionWithName[];
|
|
42379
|
+
}
|
|
42365
42380
|
/**
|
|
42366
42381
|
* List of key/value text rows. Both sides accept literal text plus
|
|
42367
42382
|
* `{{ <field_name> }}` references (resolved per-record) and
|
|
@@ -42650,6 +42665,7 @@ type GeneratedInputMetaMap = {
|
|
|
42650
42665
|
async_multi_select_input: AsyncMultiSelectMeta;
|
|
42651
42666
|
async_include_exclude_select_input: AsyncIncludeExcludeSelectMeta;
|
|
42652
42667
|
ordered_multi_create_input: OrderedMultiCreateMeta;
|
|
42668
|
+
tagged_ordered_multi_create_input: TaggedOrderedMultiCreateMeta;
|
|
42653
42669
|
key_value_list_input: KeyValueListMeta;
|
|
42654
42670
|
cursor_pagination_metadata: CursorPaginationMeta;
|
|
42655
42671
|
min_max_int_input: MinMaxIntMeta;
|
|
@@ -42714,6 +42730,7 @@ declare const baseSchemas: {
|
|
|
42714
42730
|
date_range_input: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
42715
42731
|
multi_create_input: z.ZodArray<z.ZodString>;
|
|
42716
42732
|
ordered_multi_create_input: z.ZodArray<z.ZodString>;
|
|
42733
|
+
tagged_ordered_multi_create_input: z.ZodArray<z.ZodString>;
|
|
42717
42734
|
key_value_list_input: z.ZodArray<z.ZodObject<{
|
|
42718
42735
|
key: z.ZodString;
|
|
42719
42736
|
value: z.ZodString;
|
|
@@ -42745,6 +42762,14 @@ declare const baseSchemas: {
|
|
|
42745
42762
|
type FieldValueMap = { [K in GeneratedFormInputType]: z.infer<(typeof baseSchemas)[K]> };
|
|
42746
42763
|
declare const multiCreateInput: (metadata: Pick<MultiCreateMeta, "maxItems" | "minItems" | "sectionKey" | "enabledIf" | "info" | "path" | "suggestionsDef" | "label" | "groupPath" | "placeholder" | "order" | "description">, registry: Registry) => z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
42747
42764
|
declare const orderedMultiCreateInput: (metadata: Pick<OrderedMultiCreateMeta, "maxItems" | "minItems" | "sectionKey" | "enabledIf" | "info" | "path" | "suggestionsDef" | "label" | "groupPath" | "placeholder" | "order" | "description">, registry: Registry) => z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
42765
|
+
/**
|
|
42766
|
+
* Ordered list whose items are individually constrained to "pure text" or
|
|
42767
|
+
* "single field reference". Mixed content (e.g. `"Head of {{ company }}"`)
|
|
42768
|
+
* is rejected. The constraint mirrors the UI: each chip carries exactly one
|
|
42769
|
+
* kind, so the React adapter can render two visual variants without parsing
|
|
42770
|
+
* mixed inline content.
|
|
42771
|
+
*/
|
|
42772
|
+
declare const taggedOrderedMultiCreateInput: (metadata: Pick<TaggedOrderedMultiCreateMeta, "maxItems" | "minItems" | "sectionKey" | "enabledIf" | "info" | "path" | "suggestionsDef" | "label" | "groupPath" | "placeholder" | "order" | "description" | "expectedTagType">, registry: Registry) => z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
42748
42773
|
declare const keyValueListInput: (metadata: Pick<KeyValueListMeta, "maxItems" | "keyLabel" | "valueLabel" | "keyPlaceholder" | "valuePlaceholder" | "sectionKey" | "enabledIf" | "info" | "path" | "label" | "groupPath" | "placeholder" | "order" | "description">, registry: Registry) => z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
42749
42774
|
key: z.ZodString;
|
|
42750
42775
|
value: z.ZodString;
|
|
@@ -42760,12 +42785,12 @@ declare const pipesJsonExtractionInput: () => z.ZodObject<{
|
|
|
42760
42785
|
output_field: z.ZodObject<{
|
|
42761
42786
|
name: z.ZodString;
|
|
42762
42787
|
format: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
42788
|
+
profile_url: "profile_url";
|
|
42763
42789
|
int: "int";
|
|
42764
42790
|
date: "date";
|
|
42765
42791
|
email: "email";
|
|
42766
42792
|
address_line_1: "address_line_1";
|
|
42767
42793
|
zip_code: "zip_code";
|
|
42768
|
-
profile_url: "profile_url";
|
|
42769
42794
|
phone: "phone";
|
|
42770
42795
|
website_url: "website_url";
|
|
42771
42796
|
markdown: "markdown";
|
|
@@ -42913,44 +42938,12 @@ declare const pipesRunIfInput: () => z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
|
42913
42938
|
* ("Behavior", "I/O & conditions", etc.) match the form's mental model.
|
|
42914
42939
|
*/
|
|
42915
42940
|
declare const defaultSectionMap: {
|
|
42916
|
-
|
|
42917
|
-
type: "form_section";
|
|
42918
|
-
label: string;
|
|
42919
|
-
description: string;
|
|
42920
|
-
path: string;
|
|
42921
|
-
};
|
|
42922
|
-
"config.input_fields": {
|
|
42923
|
-
type: "form_section";
|
|
42924
|
-
label: string;
|
|
42925
|
-
description: string;
|
|
42926
|
-
path: string;
|
|
42927
|
-
};
|
|
42928
|
-
"config.output_fields": {
|
|
42941
|
+
pipe_io: {
|
|
42929
42942
|
type: "form_section";
|
|
42930
42943
|
label: string;
|
|
42931
42944
|
description: string;
|
|
42932
42945
|
path: string;
|
|
42933
42946
|
};
|
|
42934
|
-
"config.extractions": {
|
|
42935
|
-
type: "form_section";
|
|
42936
|
-
label: string;
|
|
42937
|
-
description: string;
|
|
42938
|
-
path: string;
|
|
42939
|
-
};
|
|
42940
|
-
conditions: {
|
|
42941
|
-
type: "form_section";
|
|
42942
|
-
path: string;
|
|
42943
|
-
label: string;
|
|
42944
|
-
description: string;
|
|
42945
|
-
mode: string;
|
|
42946
|
-
};
|
|
42947
|
-
connector: {
|
|
42948
|
-
type: "form_section";
|
|
42949
|
-
path: string;
|
|
42950
|
-
label: string;
|
|
42951
|
-
description: string;
|
|
42952
|
-
mode: string;
|
|
42953
|
-
};
|
|
42954
42947
|
"config.filters": {
|
|
42955
42948
|
type: "form_section";
|
|
42956
42949
|
label: string;
|
|
@@ -42960,6 +42953,7 @@ declare const defaultSectionMap: {
|
|
|
42960
42953
|
general: {
|
|
42961
42954
|
type: "form_section";
|
|
42962
42955
|
path: string;
|
|
42956
|
+
label: string;
|
|
42963
42957
|
};
|
|
42964
42958
|
pagination: {
|
|
42965
42959
|
type: "form_section";
|
|
@@ -43056,6 +43050,7 @@ declare const pipesIncludeExcludeInput: (metadata: Metadata<typeof includeExclud
|
|
|
43056
43050
|
}, z.core.$strip>>;
|
|
43057
43051
|
declare const pipesMultiCreateInput: (metadata: Metadata<typeof multiCreateInput>) => z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
43058
43052
|
declare const pipesOrderedMultiCreateInput: (metadata: Metadata<typeof orderedMultiCreateInput>) => z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
43053
|
+
declare const pipesTaggedOrderedMultiCreateInput: (metadata: Metadata<typeof taggedOrderedMultiCreateInput>) => z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
43059
43054
|
declare const pipesKeyValueListInput: (metadata: Metadata<typeof keyValueListInput>) => z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
43060
43055
|
key: z.ZodString;
|
|
43061
43056
|
value: z.ZodString;
|
|
@@ -43207,6 +43202,7 @@ declare const inputGuards: {
|
|
|
43207
43202
|
async_multi_select_input: (input: GeneratedInputMeta) => input is GeneratedInputMetaMap["async_multi_select_input"];
|
|
43208
43203
|
async_include_exclude_select_input: (input: GeneratedInputMeta) => input is GeneratedInputMetaMap["async_include_exclude_select_input"];
|
|
43209
43204
|
ordered_multi_create_input: (input: GeneratedInputMeta) => input is GeneratedInputMetaMap["ordered_multi_create_input"];
|
|
43205
|
+
tagged_ordered_multi_create_input: (input: GeneratedInputMeta) => input is GeneratedInputMetaMap["tagged_ordered_multi_create_input"];
|
|
43210
43206
|
key_value_list_input: (input: GeneratedInputMeta) => input is GeneratedInputMetaMap["key_value_list_input"];
|
|
43211
43207
|
cursor_pagination_metadata: (input: GeneratedInputMeta) => input is GeneratedInputMetaMap["cursor_pagination_metadata"];
|
|
43212
43208
|
min_max_int_input: (input: GeneratedInputMeta) => input is GeneratedInputMetaMap["min_max_int_input"];
|
|
@@ -44820,7 +44816,7 @@ declare function markRecordFieldAsComplete({
|
|
|
44820
44816
|
config_hash: string | null;
|
|
44821
44817
|
input_hash: string | null;
|
|
44822
44818
|
} | null;
|
|
44823
|
-
format: "int" | "date" | "email" | "address_line_1" | "zip_code" | "
|
|
44819
|
+
format: "profile_url" | "int" | "date" | "email" | "address_line_1" | "zip_code" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null;
|
|
44824
44820
|
widgets?: {
|
|
44825
44821
|
display_value?: {
|
|
44826
44822
|
label?: string | undefined;
|
|
@@ -44884,7 +44880,7 @@ declare function markRecordFieldAsPending({
|
|
|
44884
44880
|
config_hash: string | null;
|
|
44885
44881
|
input_hash: string | null;
|
|
44886
44882
|
} | null;
|
|
44887
|
-
format: "int" | "date" | "email" | "address_line_1" | "zip_code" | "
|
|
44883
|
+
format: "profile_url" | "int" | "date" | "email" | "address_line_1" | "zip_code" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null;
|
|
44888
44884
|
widgets?: {
|
|
44889
44885
|
display_value?: {
|
|
44890
44886
|
label?: string | undefined;
|
|
@@ -44954,7 +44950,7 @@ declare function markRecordFieldAsNoResult({
|
|
|
44954
44950
|
config_hash: string | null;
|
|
44955
44951
|
input_hash: string | null;
|
|
44956
44952
|
} | null;
|
|
44957
|
-
format: "int" | "date" | "email" | "address_line_1" | "zip_code" | "
|
|
44953
|
+
format: "profile_url" | "int" | "date" | "email" | "address_line_1" | "zip_code" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null;
|
|
44958
44954
|
widgets?: {
|
|
44959
44955
|
display_value?: {
|
|
44960
44956
|
label?: string | undefined;
|
|
@@ -45014,7 +45010,7 @@ declare function markRecordFieldAsFailed(field: RecordField, reason: FieldReason
|
|
|
45014
45010
|
config_hash: string | null;
|
|
45015
45011
|
input_hash: string | null;
|
|
45016
45012
|
} | null;
|
|
45017
|
-
format: "int" | "date" | "email" | "address_line_1" | "zip_code" | "
|
|
45013
|
+
format: "profile_url" | "int" | "date" | "email" | "address_line_1" | "zip_code" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null;
|
|
45018
45014
|
widgets?: {
|
|
45019
45015
|
display_value?: {
|
|
45020
45016
|
label?: string | undefined;
|
|
@@ -45074,7 +45070,7 @@ declare function markRecordFieldAsSkipped(field: RecordField, reason: FieldReaso
|
|
|
45074
45070
|
config_hash: string | null;
|
|
45075
45071
|
input_hash: string | null;
|
|
45076
45072
|
} | null;
|
|
45077
|
-
format: "int" | "date" | "email" | "address_line_1" | "zip_code" | "
|
|
45073
|
+
format: "profile_url" | "int" | "date" | "email" | "address_line_1" | "zip_code" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null;
|
|
45078
45074
|
widgets?: {
|
|
45079
45075
|
display_value?: {
|
|
45080
45076
|
label?: string | undefined;
|
|
@@ -45134,7 +45130,7 @@ declare function markRecordFieldAsProcessing(field: RecordField): {
|
|
|
45134
45130
|
config_hash: string | null;
|
|
45135
45131
|
input_hash: string | null;
|
|
45136
45132
|
} | null;
|
|
45137
|
-
format: "int" | "date" | "email" | "address_line_1" | "zip_code" | "
|
|
45133
|
+
format: "profile_url" | "int" | "date" | "email" | "address_line_1" | "zip_code" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null;
|
|
45138
45134
|
widgets?: {
|
|
45139
45135
|
display_value?: {
|
|
45140
45136
|
label?: string | undefined;
|
|
@@ -45182,12 +45178,12 @@ declare function catalogInput(field: NamedFieldEntry, config: {
|
|
|
45182
45178
|
alias?: string | undefined;
|
|
45183
45179
|
}> | undefined;
|
|
45184
45180
|
} | null | undefined): {
|
|
45185
|
-
name: "
|
|
45181
|
+
name: "name" | "profile_url" | "skills" | "job_title" | "company_name" | "company_social_url" | "job_description" | "headcount" | "company_industry" | "message" | "company_description" | "cleaned_company_name" | "company_region" | "location_hint" | "estimated_revenue" | "founded_year" | "technology_list" | "spending_trend" | "technology_match_builtwith" | "number_of_social_followers" | "email" | "personal_email" | "alternate_personal_emails" | "company_news_summary" | "work_email" | "company_website_url" | "company_domain" | "first_name" | "addressee_name" | "address_line_1" | "address_line_2" | "profile_headline" | "address_city" | "address_country" | "address_state" | "zip_code" | "last_name" | "is_work_email" | "companyenrich_match" | "companyenrich_matches" | "ip_address" | "avatar_url" | "estimated_salary" | "is_email_valid" | "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" | "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" | "mobile_number";
|
|
45186
45182
|
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).";
|
|
45187
45183
|
resolvedName: string;
|
|
45188
45184
|
type: "string" | "number" | "boolean" | "unknown" | "json";
|
|
45189
45185
|
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";
|
|
45190
|
-
format: "
|
|
45186
|
+
format: "profile_url" | "int" | "email" | "address_line_1" | "zip_code" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "currency" | "text" | "decimal" | "percent" | null;
|
|
45191
45187
|
};
|
|
45192
45188
|
//#endregion
|
|
45193
45189
|
//#region src/pipes/pipes-validator/get-output-field-info-from-dev.d.ts
|
|
@@ -45569,7 +45565,7 @@ declare function stringify(v: unknown): unknown;
|
|
|
45569
45565
|
declare function rateLimitRatioFallingProgression(index: number): number;
|
|
45570
45566
|
declare function sortObjectKeys(obj: any): any;
|
|
45571
45567
|
declare const TYPES_TO_FORMATS: {
|
|
45572
|
-
string: ("
|
|
45568
|
+
string: ("profile_url" | "date" | "email" | "address_line_1" | "zip_code" | "phone" | "website_url" | "markdown" | "url" | "datetime" | "text")[];
|
|
45573
45569
|
json: ("json_object" | "json_list")[];
|
|
45574
45570
|
number: ("int" | "decimal")[];
|
|
45575
45571
|
boolean: never[];
|
|
@@ -45616,7 +45612,7 @@ declare function inputFromRecords(records: PipesInMemoryResponse["records"], con
|
|
|
45616
45612
|
message: string;
|
|
45617
45613
|
} | null | undefined;
|
|
45618
45614
|
type?: "string" | "number" | "boolean" | "unknown" | "json" | undefined;
|
|
45619
|
-
format?: "int" | "date" | "email" | "address_line_1" | "zip_code" | "
|
|
45615
|
+
format?: "profile_url" | "int" | "date" | "email" | "address_line_1" | "zip_code" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null | undefined;
|
|
45620
45616
|
claimed_by?: {
|
|
45621
45617
|
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;
|
|
45622
45618
|
config_hash: string | null;
|
|
@@ -45676,7 +45672,7 @@ declare function inputFromRecords(records: PipesInMemoryResponse["records"], con
|
|
|
45676
45672
|
message: string;
|
|
45677
45673
|
} | null | undefined;
|
|
45678
45674
|
type?: "string" | "number" | "boolean" | "unknown" | "json" | undefined;
|
|
45679
|
-
format?: "int" | "date" | "email" | "address_line_1" | "zip_code" | "
|
|
45675
|
+
format?: "profile_url" | "int" | "date" | "email" | "address_line_1" | "zip_code" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null | undefined;
|
|
45680
45676
|
claimed_by?: {
|
|
45681
45677
|
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;
|
|
45682
45678
|
config_hash: string | null;
|
|
@@ -45739,7 +45735,7 @@ declare function inputFromRecordArr(records: PipesRecord[], config?: Partial<Fie
|
|
|
45739
45735
|
message: string;
|
|
45740
45736
|
} | null | undefined;
|
|
45741
45737
|
type?: "string" | "number" | "boolean" | "unknown" | "json" | undefined;
|
|
45742
|
-
format?: "int" | "date" | "email" | "address_line_1" | "zip_code" | "
|
|
45738
|
+
format?: "profile_url" | "int" | "date" | "email" | "address_line_1" | "zip_code" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null | undefined;
|
|
45743
45739
|
claimed_by?: {
|
|
45744
45740
|
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;
|
|
45745
45741
|
config_hash: string | null;
|
|
@@ -45799,7 +45795,7 @@ declare function inputFromRecordArr(records: PipesRecord[], config?: Partial<Fie
|
|
|
45799
45795
|
message: string;
|
|
45800
45796
|
} | null | undefined;
|
|
45801
45797
|
type?: "string" | "number" | "boolean" | "unknown" | "json" | undefined;
|
|
45802
|
-
format?: "int" | "date" | "email" | "address_line_1" | "zip_code" | "
|
|
45798
|
+
format?: "profile_url" | "int" | "date" | "email" | "address_line_1" | "zip_code" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null | undefined;
|
|
45803
45799
|
claimed_by?: {
|
|
45804
45800
|
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;
|
|
45805
45801
|
config_hash: string | null;
|
|
@@ -45862,7 +45858,7 @@ declare function inputFromRecord(record: PipesRecord, config?: Partial<FieldsToO
|
|
|
45862
45858
|
message: string;
|
|
45863
45859
|
} | null | undefined;
|
|
45864
45860
|
type?: "string" | "number" | "boolean" | "unknown" | "json" | undefined;
|
|
45865
|
-
format?: "int" | "date" | "email" | "address_line_1" | "zip_code" | "
|
|
45861
|
+
format?: "profile_url" | "int" | "date" | "email" | "address_line_1" | "zip_code" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null | undefined;
|
|
45866
45862
|
claimed_by?: {
|
|
45867
45863
|
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;
|
|
45868
45864
|
config_hash: string | null;
|
|
@@ -45922,7 +45918,7 @@ declare function inputFromRecord(record: PipesRecord, config?: Partial<FieldsToO
|
|
|
45922
45918
|
message: string;
|
|
45923
45919
|
} | null | undefined;
|
|
45924
45920
|
type?: "string" | "number" | "boolean" | "unknown" | "json" | undefined;
|
|
45925
|
-
format?: "int" | "date" | "email" | "address_line_1" | "zip_code" | "
|
|
45921
|
+
format?: "profile_url" | "int" | "date" | "email" | "address_line_1" | "zip_code" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null | undefined;
|
|
45926
45922
|
claimed_by?: {
|
|
45927
45923
|
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;
|
|
45928
45924
|
config_hash: string | null;
|
|
@@ -47330,4 +47326,4 @@ declare const ProfileFieldSchema: z.ZodObject<{
|
|
|
47330
47326
|
}, z.core.$strip>;
|
|
47331
47327
|
type ProfielField = z.infer<typeof ProfileFieldSchema>;
|
|
47332
47328
|
//#endregion
|
|
47333
|
-
export { AI_MODELS, AI_MODEL_CATALOG, type AiModelId, type AnalysisResult, AnyPipeConstructor, AppError, AsyncIncludeExcludeSelectMeta, AsyncMultiSelectMeta, type AutocompleteOption, type AutocompleteSourceKey, BillableOperation, BillableOperationDef, BillableOperations, BillingMode, BooleanMeta, type BuiltWithTechStackTransformedRespoonse as BuiltWithDomainStack, type BuiltWithTechStackTransformedRespoonse, type CatalogEntityFilter, type CatalogFilter, type CatalogPattern, CatalogSchemaRef, CatalogSchemaRefSchema, type CladoPersonMatch, type CladoPersonMatchV2, ConditionOperators, ConditionOperatorsSchema, ConfigField, ConnectorConnection, ConnectorMeta, type ConstantSuggestion, ContextSelectMeta, CursorPaginationMeta, DateRangeMeta, type DedupConfig, type DedupStrategy, type DependencyGraphRelation, DerivedInputFields, EmailValidationStatus, type EnabledIf, type EnabledResult, ExactRangeMeta, ExecutionMode, ExpandedFieldValue, ExpandedFieldValueSchema, ExternalProviderName, FIELD_PLACEHOLDERS, FieldAnnotation, FieldAnnotationSchema, FieldAnnotations, FieldAnnotationsSchema, FieldAnnotationsType, FieldCatalog, type FieldContextArgs, type FieldContextClient, type FieldContextSheetSummary, FieldEntry, FieldGroup, FieldMode, FieldName, FieldNameSchema, type FieldPlaceholderKey, FieldReason, FieldReasonSchema, FieldSchemaType, FieldValue, FieldValueMap, FieldValueSchema, FieldsSelectMeta, FieldsToObjectsConfig, type FormResolvers, FormSection, FormSectionMeta, type FormStore, FormStoreSchema, GeneratedFormInputType, GeneratedInputMeta, GeneratedInputMetaMap, type GetConnectionsArgs, type GetConstantsArgs, type GetSecretsArgs, GroupPathMatch, type IconKey, IconWidgetKey, type IcypeasCompanyMatch, type IcypeasPersonMatch, IncludeExcludeMeta, IncludeExcludeSelectMeta, IntegerMeta, IntermediateFormSection, JSONExtractSchema, JSONExtraction, JSONExtractionMeta, JSONMeta, JSONMetaSchema, JSONSchemaMeta, JsonFieldType, KeyValueListMeta, LazyResolveContext, MinMaxIntMeta, MultiCreateMeta, MultiSelectMeta, NamedFieldEntry, NoConnector, NoConnectorSchema, NullableBooleanMeta, NumberMeta, OptionalConnector, OptionalConnectorSchema, type OptionsDef, OrderedMultiCreateMeta, type OutputDecl, OutputFieldMeta, PIPE_IDS, PaginationType, PaginationTypeSchema, PersonWorkemailWaterfall1Entry, PersonWorkemailWaterfall1PayloadSchema, PersonWorkemailWaterfall1PipeClass, Pipe, Pipe0Error, PipeBaseConfig, PipeCatalog, PipeCatalogEntry, PipeCategory, PipeCategoryEntry, PipeConfigMapByExpecutionType, PipeConnectionRequirement, PipeDef, PipeEntryWithLatestVersion, type PipeFieldContextDef, PipeId, PipeIdSchema, PipeInputField, PipeModuleExport, PipeOutputField, PipePayload, PipePayloadInput, PipePayloadMap, PipePayloadSchema, PipePayloadSchemaCatalog, PipeRequestPayloadMap, PipeRunIf, PipeRunIfSchema, PipelineValidationError, type PipesEnvironment, PipesEnvironmentSchema, PipesError, PipesErrorSchema, PipesFieldDefinition, PipesFieldDefinitionSchema, PipesFieldDefinitionWithName, PipesFieldDefinitions, PipesFieldDefinitionsSchema, PipesInMemoryResponse, PipesInput, PipesInputSchema, PipesRecord, PipesRequest, PipesRequestConfig, PipesRequestConfigSchema, PipesRequestPayload, PipesRequestSchema, PipesResponse, PipesResponseSchema, PipesRunIfMeta, ProcessedPipePayloadSchema, ProcessedSearchPayloadSchema, ProcessedSearchesPayloadSchema, type ProfielField, PromptMeta, ProviderCatalogEntry, ProviderName, ProviderNameSchema, ProviderRateLimitOperation, ProvidersInputMeta, RECORD_FIELD_FORMATS, RECORD_FIELD_TYPES, RUN_IF_OPERATOR_LABELS, RUN_IF_STATUS_OPERATORS, RUN_IF_VALUE_OPERATORS, RangeMeta, RecordClaimedBy, RecordClaimedBySchema, RecordField, RecordFieldFormat, RecordFieldFormatSchema, RecordFieldSchema, RecordFieldStatus, RecordFieldStatusSchema, RecordFieldType, RecordFieldTypeSchema, RecordId, RecordIdSchema, RecordResolvedBy, RecordResolvedBySchema, RecordSchema, RequestValidationError, RequiredConnector, RequiredConnectorSchema, type Requirement, RequirementSatisfactionResult, type RichTextNode, RunIfStatusOperatorsSchema, RunIfStatusValueSchema, RunIfValueOperatorsSchema, SEARCHES_IDS, SEARCH_IDS, Search, SearchCatalog, SearchCatalogEntry, SearchCatalogTableData, SearchCategory, SearchCategoryEntry, SearchError, SearchErrorSchema, SearchId, SearchIdSchema, SearchMetaEntryWithId, SearchOutputField, SearchPayload, SearchPayloadCatalog, SearchPayloadInput, SearchPayloadMap, SearchPayloadSchema, SearchRequestPayload, SearchRequestPayloadMap, SearchRequestSchema, SearchRequestType, SearchResponse, SearchResponseSchema, SearchResult, SearchResultField, SearchResultFieldSchema, SearchResultSchema, SearchValidationResult, SearchesCatalog, SearchesCatalogEntry, SearchesCatalogTableData, SearchesCostPerResult, SearchesCostPerResultEntry, SearchesError, SearchesErrorSchema, SearchesId, SearchesIdSchema, SearchesMetaEntryWithId, SearchesPayload, SearchesPayloadCatalog, SearchesPayloadInput, SearchesPayloadMap, SearchesPayloadSchema, SearchesRequest, SearchesRequestBaseConfig, SearchesRequestBaseConfigSchema, SearchesRequestPayload, SearchesRequestPayloadMap, SearchesRequestSchema, SearchesResponse, SearchesResponseSchema, SearchesResult, SearchesResultField, SearchesResultFieldSchema, SearchesResultSchema, SearchesSearch, SearchesStatus, SearchesStatusSchema, SearchesValidationResult, type SecretSuggestion, SectionKeys, SectionMapDefinition, SelectMeta, type StoreOption, StoreOptionAutocompleteOption, StoreOptionsDef, SupportedTags, TYPES_TO_FORMATS, TaggedTextMeta, TemplateInputMeta, TextMeta, TextareaMeta, type TransformIntoResponseConfig, type UserConnection, ValidationContext, type Widget, Widgets, type StoreOptionWidget as WidgetsByKind, StoreOptionWidgetSchema as WidgetsByKindSchema, WidgetsSchema, all, analyzeLiquidTemplate, and, any, autocomplete, buildAiModelBillableOperations, buildDependencyGraph, buildInputRequirementFromTemplates, catalogInput, cleanObject, cleanUrl, cleanWebsiteUrl, collectConstantReferencesFromTemplates, collectPipeContextSelectFields, collectRequirementFields, collectSecretReferencesFromTemplates, compilePattern, configDefaults, convertIntermediateFieldsIntoGroups, defaultSectionMap, describeRequirement, entityLogoFavicon, entityLogoProfessionalProfileUrl, extractFormMetadata, field, fieldBehaviorCatalog, fieldCatalog, fieldNameStr, fieldTypeFromValue, fieldsToObject, filterPipeEntries, filterSearchEntries, filterSearchesEntries, getAiModelBillingKey, getAiModelConnectionRequirements, getAiModelProviders, getAllAiModelProviders, getBasePipeName, getDefaultOutputFields, getDefaultPipeProviders, getDefaultSearchOutputFields, getDefaultSearchesOutputFields, getDependentPipeNamesForInputProperty, getDependentPipeNamesForPipe, getDomain, getExpansionState, getFaviconUrlGoogle, getField, getFieldBehavior, getFieldDisplayLabel, getFieldWidgets, getInitialSearchTableData, getInitialSearchesTableData, getInitialTableData, getInputHash, getJsonMetaForFieldDef, getLoweestSearchCreditAmount, getLoweestSearchesCreditAmount, getLowestPipeCreditAmount, getOutputFieldInfoFromDef, getPipeBillableOperationDef, getPipeCategoryEntries, getPipeCategoryEntry, getPipeClass, getPipeConfigHash, getPipeDefaultPayload, getPipeDocsURI, getPipeEntry, getPipeInstances, getPipePayloadFormConfig, getPipePayloadSchema, getPipeVersion, getProviderBillableOperation, getProviderCreditsFromBillableOperations, getProviderEntry, getReadableFieldStatus, getSandboxConnections, getSandboxConnectionsForPipe, getSandboxConnectionsForSearch, getSandboxConnectionsForSearches, getSearchCategoryEntries, getSearchCategoryEntry, getSearchClass, getSearchDefaultPayload, getSearchEntry, getSearchFieldWidgets, getSearchInstance, getSearchPayloadFormConfig, getSearchPayloadSchema, getSearchTableDataAggregates, getSearchVersion, getSearchesClass, getSearchesDefaultPayload, getSearchesEntry, getSearchesFieldWidgets, getSearchesInstances, getSearchesPayloadSchema, getSearchesTableDataAggregates, getSearchesVersion, getStartingCostPerPipesProvider, getStartingCostPerSearchProvider, getStartingCostPerSearchesProvider, getTableDataAggregates, getUnexpandedValue, ifDefined, inputFields, inputFromRecord, inputFromRecordArr, inputFromRecords, inputGuards, isCatalogField, isEmptyValue, isFieldName, isPipeAllowed, isProviderAllowed, isRequirementMet, isRequirementSatisfiedByRecord, isSearchAllowed, isSearchesAllowed, joinConnectionString, markRecordFieldAsComplete, markRecordFieldAsFailed, markRecordFieldAsNoResult, markRecordFieldAsPending, markRecordFieldAsProcessing, markRecordFieldAsSkipped, matchesAny, matchesPattern, mergeWidgets, noConnectorInput, optional, optionalConnectorInput, or, outputFields, parseLiquidTemplate, parseOutputTagArgs, parseRecordValueOrError, parseRichText, pipeCatalog, pipeCategoryCatalog, pipeClassCatalog, pipePayloadSchemaCatalog, pipesAsyncIncludeExcludeSelectInput, pipesContextSelectInput, pipesDateRangeInput, pipesFieldsSelectInput, pipesIncludeExcludeInput, pipesIncludeExcludeSelectInput, pipesInputField, pipesIntInput, pipesJsonExtractionInput, pipesJsonSchemaField, pipesKeyValueListInput, pipesLLMSelectInput, pipesMultiCreateInput, pipesMultiSelectInput, pipesNumberInput, pipesOptionalBooleanInput, pipesOrderedMultiCreateInput, pipesOutputField, pipesPayloadRegistry, pipesPromptInput, pipesProviderInput, pipesRangeInput, pipesRunIfInput, pipesSelectInput, pipesSnippetCatalog, pipesTaggedTextInput, pipesTemplateInput, pipesTextInput, pipesTextareaInput, placeholder, processInputObjects, providerCatalog, rateLimitRatioFallingProgression, renderLiquidTemplate, renderLiquidTemplateSync, requiredConnectorInput, requirementToInputFields, requirementUnmetMessage, requiresConnection, requiresField, searchCatalog, searchCategoryCatalog, searchClassCatalog, searchPayloadSchemaCatalog, searchSnippetCatalog, searchesAsyncIncludeExcludeSelectInput, searchesAsyncMultiSelectInput, searchesCatalog, searchesClassCatalog, searchesDateRangeInput, searchesExactRangeInput, searchesIncludeExcludeInput, searchesIncludeExcludeSelectInput, searchesIntInput, searchesMinMaxIntInput, searchesMultiCreateInput, searchesMultiSelectInput, searchesNumberField, searchesOptionalBooleanInput, searchesOptionalNullableBooleanInput, searchesOrderedMultiCreateInput, searchesOutputField, searchesPayloadRegistry, searchesPayloadSchemaCatalog, searchesRangeInput, searchesSelectInput, searchesTextInput, searchesTextareaField, sortObjectKeys, sortPipeCatalogByBasePipe, sortSearchCatalogByBaseSearch, sortSearchesCatalogByBaseSearch, splitConnectionString, staticAutocomplete, staticOptions, stringify, testPrint, transformIntoResponse, validatePipesOrError, validateSearches, validationErrorMessages };
|
|
47329
|
+
export { AI_MODELS, AI_MODEL_CATALOG, type AiModelId, type AnalysisResult, AnyPipeConstructor, AppError, AsyncIncludeExcludeSelectMeta, AsyncMultiSelectMeta, type AutocompleteOption, type AutocompleteSourceKey, BillableOperation, BillableOperationDef, BillableOperations, BillingMode, BooleanMeta, type BuiltWithTechStackTransformedRespoonse as BuiltWithDomainStack, type BuiltWithTechStackTransformedRespoonse, type CatalogEntityFilter, type CatalogFilter, type CatalogPattern, CatalogSchemaRef, CatalogSchemaRefSchema, type CladoPersonMatch, type CladoPersonMatchV2, ConditionOperators, ConditionOperatorsSchema, ConfigField, ConnectorConnection, ConnectorMeta, type ConstantSuggestion, ContextSelectMeta, CursorPaginationMeta, DateRangeMeta, type DedupConfig, type DedupStrategy, type DependencyGraphRelation, DerivedInputFields, EmailValidationStatus, type EnabledIf, type EnabledResult, ExactRangeMeta, ExecutionMode, ExpandedFieldValue, ExpandedFieldValueSchema, ExternalProviderName, FIELD_PLACEHOLDERS, FieldAnnotation, FieldAnnotationSchema, FieldAnnotations, FieldAnnotationsSchema, FieldAnnotationsType, FieldCatalog, type FieldContextArgs, type FieldContextClient, type FieldContextSheetSummary, FieldEntry, FieldGroup, FieldMode, FieldName, FieldNameSchema, type FieldPlaceholderKey, FieldReason, FieldReasonSchema, FieldSchemaType, FieldValue, FieldValueMap, FieldValueSchema, FieldsSelectMeta, FieldsToObjectsConfig, type FormResolvers, FormSection, FormSectionMeta, type FormStore, FormStoreSchema, GeneratedFormInputType, GeneratedInputMeta, GeneratedInputMetaMap, type GetConnectionsArgs, type GetConstantsArgs, type GetSecretsArgs, GroupPathMatch, type IconKey, IconWidgetKey, type IcypeasCompanyMatch, type IcypeasPersonMatch, IncludeExcludeMeta, IncludeExcludeSelectMeta, IntegerMeta, IntermediateFormSection, JSONExtractSchema, JSONExtraction, JSONExtractionMeta, JSONMeta, JSONMetaSchema, JSONSchemaMeta, JsonFieldType, KeyValueListMeta, LazyResolveContext, MinMaxIntMeta, MultiCreateMeta, MultiSelectMeta, NamedFieldEntry, NoConnector, NoConnectorSchema, NullableBooleanMeta, NumberMeta, OptionalConnector, OptionalConnectorSchema, type OptionsDef, OrderedMultiCreateMeta, type OutputDecl, OutputFieldMeta, PIPE_IDS, PaginationType, PaginationTypeSchema, PersonWorkemailWaterfall1Entry, PersonWorkemailWaterfall1PayloadSchema, PersonWorkemailWaterfall1PipeClass, Pipe, Pipe0Error, PipeBaseConfig, PipeCatalog, PipeCatalogEntry, PipeCategory, PipeCategoryEntry, PipeConfigMapByExpecutionType, PipeConnectionRequirement, PipeDef, PipeEntryWithLatestVersion, type PipeFieldContextDef, PipeId, PipeIdSchema, PipeInputField, PipeModuleExport, PipeOutputField, PipePayload, PipePayloadInput, PipePayloadMap, PipePayloadSchema, PipePayloadSchemaCatalog, PipeRequestPayloadMap, PipeRunIf, PipeRunIfSchema, PipelineValidationError, type PipesEnvironment, PipesEnvironmentSchema, PipesError, PipesErrorSchema, PipesFieldDefinition, PipesFieldDefinitionSchema, PipesFieldDefinitionWithName, PipesFieldDefinitions, PipesFieldDefinitionsSchema, PipesInMemoryResponse, PipesInput, PipesInputSchema, PipesRecord, PipesRequest, PipesRequestConfig, PipesRequestConfigSchema, PipesRequestPayload, PipesRequestSchema, PipesResponse, PipesResponseSchema, PipesRunIfMeta, ProcessedPipePayloadSchema, ProcessedSearchPayloadSchema, ProcessedSearchesPayloadSchema, type ProfielField, PromptMeta, ProviderCatalogEntry, ProviderName, ProviderNameSchema, ProviderRateLimitOperation, ProvidersInputMeta, RECORD_FIELD_FORMATS, RECORD_FIELD_TYPES, RUN_IF_OPERATOR_LABELS, RUN_IF_STATUS_OPERATORS, RUN_IF_VALUE_OPERATORS, RangeMeta, RecordClaimedBy, RecordClaimedBySchema, RecordField, RecordFieldFormat, RecordFieldFormatSchema, RecordFieldSchema, RecordFieldStatus, RecordFieldStatusSchema, RecordFieldType, RecordFieldTypeSchema, RecordId, RecordIdSchema, RecordResolvedBy, RecordResolvedBySchema, RecordSchema, RequestValidationError, RequiredConnector, RequiredConnectorSchema, type Requirement, RequirementSatisfactionResult, type RichTextNode, RunIfStatusOperatorsSchema, RunIfStatusValueSchema, RunIfValueOperatorsSchema, SEARCHES_IDS, SEARCH_IDS, Search, SearchCatalog, SearchCatalogEntry, SearchCatalogTableData, SearchCategory, SearchCategoryEntry, SearchError, SearchErrorSchema, SearchId, SearchIdSchema, SearchMetaEntryWithId, SearchOutputField, SearchPayload, SearchPayloadCatalog, SearchPayloadInput, SearchPayloadMap, SearchPayloadSchema, SearchRequestPayload, SearchRequestPayloadMap, SearchRequestSchema, SearchRequestType, SearchResponse, SearchResponseSchema, SearchResult, SearchResultField, SearchResultFieldSchema, SearchResultSchema, SearchValidationResult, SearchesCatalog, SearchesCatalogEntry, SearchesCatalogTableData, SearchesCostPerResult, SearchesCostPerResultEntry, SearchesError, SearchesErrorSchema, SearchesId, SearchesIdSchema, SearchesMetaEntryWithId, SearchesPayload, SearchesPayloadCatalog, SearchesPayloadInput, SearchesPayloadMap, SearchesPayloadSchema, SearchesRequest, SearchesRequestBaseConfig, SearchesRequestBaseConfigSchema, SearchesRequestPayload, SearchesRequestPayloadMap, SearchesRequestSchema, SearchesResponse, SearchesResponseSchema, SearchesResult, SearchesResultField, SearchesResultFieldSchema, SearchesResultSchema, SearchesSearch, SearchesStatus, SearchesStatusSchema, SearchesValidationResult, type SecretSuggestion, SectionKeys, SectionMapDefinition, SelectMeta, type StoreOption, StoreOptionAutocompleteOption, StoreOptionsDef, SupportedTags, TYPES_TO_FORMATS, TaggedOrderedMultiCreateMeta, TaggedTextMeta, TemplateInputMeta, TextMeta, TextareaMeta, type TransformIntoResponseConfig, type UserConnection, ValidationContext, type Widget, Widgets, type StoreOptionWidget as WidgetsByKind, StoreOptionWidgetSchema as WidgetsByKindSchema, WidgetsSchema, all, analyzeLiquidTemplate, and, any, autocomplete, buildAiModelBillableOperations, buildDependencyGraph, buildInputRequirementFromTemplates, catalogInput, cleanObject, cleanUrl, cleanWebsiteUrl, collectConstantReferencesFromTemplates, collectPipeContextSelectFields, collectRequirementFields, collectSecretReferencesFromTemplates, compilePattern, configDefaults, convertIntermediateFieldsIntoGroups, defaultSectionMap, describeRequirement, entityLogoFavicon, entityLogoProfessionalProfileUrl, extractFormMetadata, field, fieldBehaviorCatalog, fieldCatalog, fieldNameStr, fieldTypeFromValue, fieldsToObject, filterPipeEntries, filterSearchEntries, filterSearchesEntries, getAiModelBillingKey, getAiModelConnectionRequirements, getAiModelProviders, getAllAiModelProviders, getBasePipeName, getDefaultOutputFields, getDefaultPipeProviders, getDefaultSearchOutputFields, getDefaultSearchesOutputFields, getDependentPipeNamesForInputProperty, getDependentPipeNamesForPipe, getDomain, getExpansionState, getFaviconUrlGoogle, getField, getFieldBehavior, getFieldDisplayLabel, getFieldWidgets, getInitialSearchTableData, getInitialSearchesTableData, getInitialTableData, getInputHash, getJsonMetaForFieldDef, getLoweestSearchCreditAmount, getLoweestSearchesCreditAmount, getLowestPipeCreditAmount, getOutputFieldInfoFromDef, getPipeBillableOperationDef, getPipeCategoryEntries, getPipeCategoryEntry, getPipeClass, getPipeConfigHash, getPipeDefaultPayload, getPipeDocsURI, getPipeEntry, getPipeInstances, getPipePayloadFormConfig, getPipePayloadSchema, getPipeVersion, getProviderBillableOperation, getProviderCreditsFromBillableOperations, getProviderEntry, getReadableFieldStatus, getSandboxConnections, getSandboxConnectionsForPipe, getSandboxConnectionsForSearch, getSandboxConnectionsForSearches, getSearchCategoryEntries, getSearchCategoryEntry, getSearchClass, getSearchDefaultPayload, getSearchEntry, getSearchFieldWidgets, getSearchInstance, getSearchPayloadFormConfig, getSearchPayloadSchema, getSearchTableDataAggregates, getSearchVersion, getSearchesClass, getSearchesDefaultPayload, getSearchesEntry, getSearchesFieldWidgets, getSearchesInstances, getSearchesPayloadSchema, getSearchesTableDataAggregates, getSearchesVersion, getStartingCostPerPipesProvider, getStartingCostPerSearchProvider, getStartingCostPerSearchesProvider, getTableDataAggregates, getUnexpandedValue, ifDefined, inputFields, inputFromRecord, inputFromRecordArr, inputFromRecords, inputGuards, isCatalogField, isEmptyValue, isFieldName, isPipeAllowed, isProviderAllowed, isRequirementMet, isRequirementSatisfiedByRecord, isSearchAllowed, isSearchesAllowed, joinConnectionString, markRecordFieldAsComplete, markRecordFieldAsFailed, markRecordFieldAsNoResult, markRecordFieldAsPending, markRecordFieldAsProcessing, markRecordFieldAsSkipped, matchesAny, matchesPattern, mergeWidgets, noConnectorInput, optional, optionalConnectorInput, or, outputFields, parseLiquidTemplate, parseOutputTagArgs, parseRecordValueOrError, parseRichText, pipeCatalog, pipeCategoryCatalog, pipeClassCatalog, pipePayloadSchemaCatalog, pipesAsyncIncludeExcludeSelectInput, pipesContextSelectInput, pipesDateRangeInput, pipesFieldsSelectInput, pipesIncludeExcludeInput, pipesIncludeExcludeSelectInput, pipesInputField, pipesIntInput, pipesJsonExtractionInput, pipesJsonSchemaField, pipesKeyValueListInput, pipesLLMSelectInput, pipesMultiCreateInput, pipesMultiSelectInput, pipesNumberInput, pipesOptionalBooleanInput, pipesOrderedMultiCreateInput, pipesOutputField, pipesPayloadRegistry, pipesPromptInput, pipesProviderInput, pipesRangeInput, pipesRunIfInput, pipesSelectInput, pipesSnippetCatalog, pipesTaggedOrderedMultiCreateInput, pipesTaggedTextInput, pipesTemplateInput, pipesTextInput, pipesTextareaInput, placeholder, processInputObjects, providerCatalog, rateLimitRatioFallingProgression, renderLiquidTemplate, renderLiquidTemplateSync, requiredConnectorInput, requirementToInputFields, requirementUnmetMessage, requiresConnection, requiresField, searchCatalog, searchCategoryCatalog, searchClassCatalog, searchPayloadSchemaCatalog, searchSnippetCatalog, searchesAsyncIncludeExcludeSelectInput, searchesAsyncMultiSelectInput, searchesCatalog, searchesClassCatalog, searchesDateRangeInput, searchesExactRangeInput, searchesIncludeExcludeInput, searchesIncludeExcludeSelectInput, searchesIntInput, searchesMinMaxIntInput, searchesMultiCreateInput, searchesMultiSelectInput, searchesNumberField, searchesOptionalBooleanInput, searchesOptionalNullableBooleanInput, searchesOrderedMultiCreateInput, searchesOutputField, searchesPayloadRegistry, searchesPayloadSchemaCatalog, searchesRangeInput, searchesSelectInput, searchesTextInput, searchesTextareaField, sortObjectKeys, sortPipeCatalogByBasePipe, sortSearchCatalogByBaseSearch, sortSearchesCatalogByBaseSearch, splitConnectionString, staticAutocomplete, staticOptions, stringify, testPrint, transformIntoResponse, validatePipesOrError, validateSearches, validationErrorMessages };
|