@pipe0/base 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/dist/index.d.mts +230 -230
- package/dist/index.mjs +2 -2
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -378,14 +378,14 @@ 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
|
-
text: "text";
|
|
383
383
|
input: "input";
|
|
384
|
+
text: "text";
|
|
384
385
|
code: "code";
|
|
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";
|
|
@@ -545,8 +545,8 @@ declare const RecordFieldTypeSchema: z.ZodEnum<{
|
|
|
545
545
|
string: "string";
|
|
546
546
|
number: "number";
|
|
547
547
|
boolean: "boolean";
|
|
548
|
-
json: "json";
|
|
549
548
|
unknown: "unknown";
|
|
549
|
+
json: "json";
|
|
550
550
|
}>;
|
|
551
551
|
type RecordFieldType = z.infer<typeof RecordFieldTypeSchema>;
|
|
552
552
|
type DerivedInputFields = Record<string, {
|
|
@@ -709,10 +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";
|
|
713
|
+
int: "int";
|
|
714
|
+
date: "date";
|
|
712
715
|
email: "email";
|
|
713
716
|
address_line_1: "address_line_1";
|
|
714
717
|
zip_code: "zip_code";
|
|
715
|
-
profile_url: "profile_url";
|
|
716
718
|
phone: "phone";
|
|
717
719
|
website_url: "website_url";
|
|
718
720
|
markdown: "markdown";
|
|
@@ -722,17 +724,17 @@ declare const RecordFieldFormatSchema: z.ZodEnum<{
|
|
|
722
724
|
url: "url";
|
|
723
725
|
datetime: "datetime";
|
|
724
726
|
currency: "currency";
|
|
725
|
-
date: "date";
|
|
726
727
|
text: "text";
|
|
727
|
-
int: "int";
|
|
728
728
|
decimal: "decimal";
|
|
729
729
|
percent: "percent";
|
|
730
730
|
}>;
|
|
731
731
|
declare const NullableRecordFieldFormatSchema: z.ZodNullable<z.ZodEnum<{
|
|
732
|
+
profile_url: "profile_url";
|
|
733
|
+
int: "int";
|
|
734
|
+
date: "date";
|
|
732
735
|
email: "email";
|
|
733
736
|
address_line_1: "address_line_1";
|
|
734
737
|
zip_code: "zip_code";
|
|
735
|
-
profile_url: "profile_url";
|
|
736
738
|
phone: "phone";
|
|
737
739
|
website_url: "website_url";
|
|
738
740
|
markdown: "markdown";
|
|
@@ -742,9 +744,7 @@ declare const NullableRecordFieldFormatSchema: z.ZodNullable<z.ZodEnum<{
|
|
|
742
744
|
url: "url";
|
|
743
745
|
datetime: "datetime";
|
|
744
746
|
currency: "currency";
|
|
745
|
-
date: "date";
|
|
746
747
|
text: "text";
|
|
747
|
-
int: "int";
|
|
748
748
|
decimal: "decimal";
|
|
749
749
|
percent: "percent";
|
|
750
750
|
}>>;
|
|
@@ -754,15 +754,17 @@ declare const FieldAnnotationSchema: z.ZodObject<{
|
|
|
754
754
|
string: "string";
|
|
755
755
|
number: "number";
|
|
756
756
|
boolean: "boolean";
|
|
757
|
-
json: "json";
|
|
758
757
|
unknown: "unknown";
|
|
758
|
+
json: "json";
|
|
759
759
|
}>;
|
|
760
760
|
label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
761
761
|
format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
762
|
+
profile_url: "profile_url";
|
|
763
|
+
int: "int";
|
|
764
|
+
date: "date";
|
|
762
765
|
email: "email";
|
|
763
766
|
address_line_1: "address_line_1";
|
|
764
767
|
zip_code: "zip_code";
|
|
765
|
-
profile_url: "profile_url";
|
|
766
768
|
phone: "phone";
|
|
767
769
|
website_url: "website_url";
|
|
768
770
|
markdown: "markdown";
|
|
@@ -772,9 +774,7 @@ declare const FieldAnnotationSchema: z.ZodObject<{
|
|
|
772
774
|
url: "url";
|
|
773
775
|
datetime: "datetime";
|
|
774
776
|
currency: "currency";
|
|
775
|
-
date: "date";
|
|
776
777
|
text: "text";
|
|
777
|
-
int: "int";
|
|
778
778
|
decimal: "decimal";
|
|
779
779
|
percent: "percent";
|
|
780
780
|
}>>>;
|
|
@@ -789,15 +789,17 @@ declare const FieldAnnotationsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
789
789
|
string: "string";
|
|
790
790
|
number: "number";
|
|
791
791
|
boolean: "boolean";
|
|
792
|
-
json: "json";
|
|
793
792
|
unknown: "unknown";
|
|
793
|
+
json: "json";
|
|
794
794
|
}>;
|
|
795
795
|
label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
796
796
|
format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
797
|
+
profile_url: "profile_url";
|
|
798
|
+
int: "int";
|
|
799
|
+
date: "date";
|
|
797
800
|
email: "email";
|
|
798
801
|
address_line_1: "address_line_1";
|
|
799
802
|
zip_code: "zip_code";
|
|
800
|
-
profile_url: "profile_url";
|
|
801
803
|
phone: "phone";
|
|
802
804
|
website_url: "website_url";
|
|
803
805
|
markdown: "markdown";
|
|
@@ -807,9 +809,7 @@ declare const FieldAnnotationsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
807
809
|
url: "url";
|
|
808
810
|
datetime: "datetime";
|
|
809
811
|
currency: "currency";
|
|
810
|
-
date: "date";
|
|
811
812
|
text: "text";
|
|
812
|
-
int: "int";
|
|
813
813
|
decimal: "decimal";
|
|
814
814
|
percent: "percent";
|
|
815
815
|
}>>>;
|
|
@@ -1002,8 +1002,8 @@ declare const RecordFieldSchema: z.ZodObject<{
|
|
|
1002
1002
|
string: "string";
|
|
1003
1003
|
number: "number";
|
|
1004
1004
|
boolean: "boolean";
|
|
1005
|
-
json: "json";
|
|
1006
1005
|
unknown: "unknown";
|
|
1006
|
+
json: "json";
|
|
1007
1007
|
}>;
|
|
1008
1008
|
reason: z.ZodNullable<z.ZodObject<{
|
|
1009
1009
|
code: z.ZodString;
|
|
@@ -1308,10 +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";
|
|
1312
|
+
int: "int";
|
|
1313
|
+
date: "date";
|
|
1311
1314
|
email: "email";
|
|
1312
1315
|
address_line_1: "address_line_1";
|
|
1313
1316
|
zip_code: "zip_code";
|
|
1314
|
-
profile_url: "profile_url";
|
|
1315
1317
|
phone: "phone";
|
|
1316
1318
|
website_url: "website_url";
|
|
1317
1319
|
markdown: "markdown";
|
|
@@ -1321,9 +1323,7 @@ declare const RecordFieldSchema: z.ZodObject<{
|
|
|
1321
1323
|
url: "url";
|
|
1322
1324
|
datetime: "datetime";
|
|
1323
1325
|
currency: "currency";
|
|
1324
|
-
date: "date";
|
|
1325
1326
|
text: "text";
|
|
1326
|
-
int: "int";
|
|
1327
1327
|
decimal: "decimal";
|
|
1328
1328
|
percent: "percent";
|
|
1329
1329
|
}>>;
|
|
@@ -1341,14 +1341,16 @@ declare const ExpandedFieldValueSchema: z.ZodObject<{
|
|
|
1341
1341
|
string: "string";
|
|
1342
1342
|
number: "number";
|
|
1343
1343
|
boolean: "boolean";
|
|
1344
|
-
json: "json";
|
|
1345
1344
|
unknown: "unknown";
|
|
1345
|
+
json: "json";
|
|
1346
1346
|
}>>;
|
|
1347
1347
|
format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
1348
|
+
profile_url: "profile_url";
|
|
1349
|
+
int: "int";
|
|
1350
|
+
date: "date";
|
|
1348
1351
|
email: "email";
|
|
1349
1352
|
address_line_1: "address_line_1";
|
|
1350
1353
|
zip_code: "zip_code";
|
|
1351
|
-
profile_url: "profile_url";
|
|
1352
1354
|
phone: "phone";
|
|
1353
1355
|
website_url: "website_url";
|
|
1354
1356
|
markdown: "markdown";
|
|
@@ -1358,9 +1360,7 @@ declare const ExpandedFieldValueSchema: z.ZodObject<{
|
|
|
1358
1360
|
url: "url";
|
|
1359
1361
|
datetime: "datetime";
|
|
1360
1362
|
currency: "currency";
|
|
1361
|
-
date: "date";
|
|
1362
1363
|
text: "text";
|
|
1363
|
-
int: "int";
|
|
1364
1364
|
decimal: "decimal";
|
|
1365
1365
|
percent: "percent";
|
|
1366
1366
|
}>>>;
|
|
@@ -1675,14 +1675,16 @@ declare const PipesInputSchema: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.
|
|
|
1675
1675
|
string: "string";
|
|
1676
1676
|
number: "number";
|
|
1677
1677
|
boolean: "boolean";
|
|
1678
|
-
json: "json";
|
|
1679
1678
|
unknown: "unknown";
|
|
1679
|
+
json: "json";
|
|
1680
1680
|
}>>;
|
|
1681
1681
|
format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
1682
|
+
profile_url: "profile_url";
|
|
1683
|
+
int: "int";
|
|
1684
|
+
date: "date";
|
|
1682
1685
|
email: "email";
|
|
1683
1686
|
address_line_1: "address_line_1";
|
|
1684
1687
|
zip_code: "zip_code";
|
|
1685
|
-
profile_url: "profile_url";
|
|
1686
1688
|
phone: "phone";
|
|
1687
1689
|
website_url: "website_url";
|
|
1688
1690
|
markdown: "markdown";
|
|
@@ -1692,9 +1694,7 @@ declare const PipesInputSchema: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.
|
|
|
1692
1694
|
url: "url";
|
|
1693
1695
|
datetime: "datetime";
|
|
1694
1696
|
currency: "currency";
|
|
1695
|
-
date: "date";
|
|
1696
1697
|
text: "text";
|
|
1697
|
-
int: "int";
|
|
1698
1698
|
decimal: "decimal";
|
|
1699
1699
|
percent: "percent";
|
|
1700
1700
|
}>>>;
|
|
@@ -2006,8 +2006,8 @@ declare const RecordSchema: z.ZodObject<{
|
|
|
2006
2006
|
string: "string";
|
|
2007
2007
|
number: "number";
|
|
2008
2008
|
boolean: "boolean";
|
|
2009
|
-
json: "json";
|
|
2010
2009
|
unknown: "unknown";
|
|
2010
|
+
json: "json";
|
|
2011
2011
|
}>;
|
|
2012
2012
|
reason: z.ZodNullable<z.ZodObject<{
|
|
2013
2013
|
code: z.ZodString;
|
|
@@ -2312,10 +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";
|
|
2316
|
+
int: "int";
|
|
2317
|
+
date: "date";
|
|
2315
2318
|
email: "email";
|
|
2316
2319
|
address_line_1: "address_line_1";
|
|
2317
2320
|
zip_code: "zip_code";
|
|
2318
|
-
profile_url: "profile_url";
|
|
2319
2321
|
phone: "phone";
|
|
2320
2322
|
website_url: "website_url";
|
|
2321
2323
|
markdown: "markdown";
|
|
@@ -2325,9 +2327,7 @@ declare const RecordSchema: z.ZodObject<{
|
|
|
2325
2327
|
url: "url";
|
|
2326
2328
|
datetime: "datetime";
|
|
2327
2329
|
currency: "currency";
|
|
2328
|
-
date: "date";
|
|
2329
2330
|
text: "text";
|
|
2330
|
-
int: "int";
|
|
2331
2331
|
decimal: "decimal";
|
|
2332
2332
|
percent: "percent";
|
|
2333
2333
|
}>>;
|
|
@@ -2344,8 +2344,8 @@ declare const PipesFieldDefinitionSchema: z.ZodObject<{
|
|
|
2344
2344
|
string: "string";
|
|
2345
2345
|
number: "number";
|
|
2346
2346
|
boolean: "boolean";
|
|
2347
|
-
json: "json";
|
|
2348
2347
|
unknown: "unknown";
|
|
2348
|
+
json: "json";
|
|
2349
2349
|
}>;
|
|
2350
2350
|
label: z.ZodString;
|
|
2351
2351
|
added_by: z.ZodObject<{
|
|
@@ -2433,10 +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";
|
|
2437
|
+
int: "int";
|
|
2438
|
+
date: "date";
|
|
2436
2439
|
email: "email";
|
|
2437
2440
|
address_line_1: "address_line_1";
|
|
2438
2441
|
zip_code: "zip_code";
|
|
2439
|
-
profile_url: "profile_url";
|
|
2440
2442
|
phone: "phone";
|
|
2441
2443
|
website_url: "website_url";
|
|
2442
2444
|
markdown: "markdown";
|
|
@@ -2446,9 +2448,7 @@ declare const PipesFieldDefinitionSchema: z.ZodObject<{
|
|
|
2446
2448
|
url: "url";
|
|
2447
2449
|
datetime: "datetime";
|
|
2448
2450
|
currency: "currency";
|
|
2449
|
-
date: "date";
|
|
2450
2451
|
text: "text";
|
|
2451
|
-
int: "int";
|
|
2452
2452
|
decimal: "decimal";
|
|
2453
2453
|
percent: "percent";
|
|
2454
2454
|
}>>;
|
|
@@ -2463,8 +2463,8 @@ declare const PipesFieldDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<
|
|
|
2463
2463
|
string: "string";
|
|
2464
2464
|
number: "number";
|
|
2465
2465
|
boolean: "boolean";
|
|
2466
|
-
json: "json";
|
|
2467
2466
|
unknown: "unknown";
|
|
2467
|
+
json: "json";
|
|
2468
2468
|
}>;
|
|
2469
2469
|
label: z.ZodString;
|
|
2470
2470
|
added_by: z.ZodObject<{
|
|
@@ -2552,10 +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";
|
|
2556
|
+
int: "int";
|
|
2557
|
+
date: "date";
|
|
2555
2558
|
email: "email";
|
|
2556
2559
|
address_line_1: "address_line_1";
|
|
2557
2560
|
zip_code: "zip_code";
|
|
2558
|
-
profile_url: "profile_url";
|
|
2559
2561
|
phone: "phone";
|
|
2560
2562
|
website_url: "website_url";
|
|
2561
2563
|
markdown: "markdown";
|
|
@@ -2565,9 +2567,7 @@ declare const PipesFieldDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<
|
|
|
2565
2567
|
url: "url";
|
|
2566
2568
|
datetime: "datetime";
|
|
2567
2569
|
currency: "currency";
|
|
2568
|
-
date: "date";
|
|
2569
2570
|
text: "text";
|
|
2570
|
-
int: "int";
|
|
2571
2571
|
decimal: "decimal";
|
|
2572
2572
|
percent: "percent";
|
|
2573
2573
|
}>>;
|
|
@@ -2581,10 +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";
|
|
2585
|
+
int: "int";
|
|
2586
|
+
date: "date";
|
|
2584
2587
|
email: "email";
|
|
2585
2588
|
address_line_1: "address_line_1";
|
|
2586
2589
|
zip_code: "zip_code";
|
|
2587
|
-
profile_url: "profile_url";
|
|
2588
2590
|
phone: "phone";
|
|
2589
2591
|
website_url: "website_url";
|
|
2590
2592
|
markdown: "markdown";
|
|
@@ -2594,9 +2596,7 @@ declare const JSONExtractSchema: z.ZodObject<{
|
|
|
2594
2596
|
url: "url";
|
|
2595
2597
|
datetime: "datetime";
|
|
2596
2598
|
currency: "currency";
|
|
2597
|
-
date: "date";
|
|
2598
2599
|
text: "text";
|
|
2599
|
-
int: "int";
|
|
2600
2600
|
decimal: "decimal";
|
|
2601
2601
|
percent: "percent";
|
|
2602
2602
|
}>>>;
|
|
@@ -2605,8 +2605,8 @@ declare const JSONExtractSchema: z.ZodObject<{
|
|
|
2605
2605
|
string: "string";
|
|
2606
2606
|
number: "number";
|
|
2607
2607
|
boolean: "boolean";
|
|
2608
|
-
json: "json";
|
|
2609
2608
|
unknown: "unknown";
|
|
2609
|
+
json: "json";
|
|
2610
2610
|
}>;
|
|
2611
2611
|
}, z.core.$strip>;
|
|
2612
2612
|
}, z.core.$strip>>;
|
|
@@ -2729,9 +2729,18 @@ 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
|
+
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";
|
|
2732
2742
|
company_description: "company_description";
|
|
2733
2743
|
cleaned_company_name: "cleaned_company_name";
|
|
2734
|
-
company_industry: "company_industry";
|
|
2735
2744
|
company_region: "company_region";
|
|
2736
2745
|
location_hint: "location_hint";
|
|
2737
2746
|
estimated_revenue: "estimated_revenue";
|
|
@@ -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,14 +12306,14 @@ 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
|
-
text: "text";
|
|
12311
12311
|
input: "input";
|
|
12312
|
+
text: "text";
|
|
12312
12313
|
code: "code";
|
|
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,14 +12405,14 @@ 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
|
-
text: "text";
|
|
12410
12410
|
input: "input";
|
|
12411
|
+
text: "text";
|
|
12411
12412
|
code: "code";
|
|
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";
|
|
@@ -14427,14 +14427,16 @@ declare const SearchResultFieldSchema: z$1.ZodObject<{
|
|
|
14427
14427
|
string: "string";
|
|
14428
14428
|
number: "number";
|
|
14429
14429
|
boolean: "boolean";
|
|
14430
|
-
json: "json";
|
|
14431
14430
|
unknown: "unknown";
|
|
14431
|
+
json: "json";
|
|
14432
14432
|
}>>;
|
|
14433
14433
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
14434
|
+
profile_url: "profile_url";
|
|
14435
|
+
int: "int";
|
|
14436
|
+
date: "date";
|
|
14434
14437
|
email: "email";
|
|
14435
14438
|
address_line_1: "address_line_1";
|
|
14436
14439
|
zip_code: "zip_code";
|
|
14437
|
-
profile_url: "profile_url";
|
|
14438
14440
|
phone: "phone";
|
|
14439
14441
|
website_url: "website_url";
|
|
14440
14442
|
markdown: "markdown";
|
|
@@ -14444,9 +14446,7 @@ declare const SearchResultFieldSchema: z$1.ZodObject<{
|
|
|
14444
14446
|
url: "url";
|
|
14445
14447
|
datetime: "datetime";
|
|
14446
14448
|
currency: "currency";
|
|
14447
|
-
date: "date";
|
|
14448
14449
|
text: "text";
|
|
14449
|
-
int: "int";
|
|
14450
14450
|
decimal: "decimal";
|
|
14451
14451
|
percent: "percent";
|
|
14452
14452
|
}>>>;
|
|
@@ -14672,14 +14672,16 @@ declare const SearchResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable<z
|
|
|
14672
14672
|
string: "string";
|
|
14673
14673
|
number: "number";
|
|
14674
14674
|
boolean: "boolean";
|
|
14675
|
-
json: "json";
|
|
14676
14675
|
unknown: "unknown";
|
|
14676
|
+
json: "json";
|
|
14677
14677
|
}>>;
|
|
14678
14678
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
14679
|
+
profile_url: "profile_url";
|
|
14680
|
+
int: "int";
|
|
14681
|
+
date: "date";
|
|
14679
14682
|
email: "email";
|
|
14680
14683
|
address_line_1: "address_line_1";
|
|
14681
14684
|
zip_code: "zip_code";
|
|
14682
|
-
profile_url: "profile_url";
|
|
14683
14685
|
phone: "phone";
|
|
14684
14686
|
website_url: "website_url";
|
|
14685
14687
|
markdown: "markdown";
|
|
@@ -14689,9 +14691,7 @@ declare const SearchResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable<z
|
|
|
14689
14691
|
url: "url";
|
|
14690
14692
|
datetime: "datetime";
|
|
14691
14693
|
currency: "currency";
|
|
14692
|
-
date: "date";
|
|
14693
14694
|
text: "text";
|
|
14694
|
-
int: "int";
|
|
14695
14695
|
decimal: "decimal";
|
|
14696
14696
|
percent: "percent";
|
|
14697
14697
|
}>>>;
|
|
@@ -15764,14 +15764,16 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
15764
15764
|
string: "string";
|
|
15765
15765
|
number: "number";
|
|
15766
15766
|
boolean: "boolean";
|
|
15767
|
-
json: "json";
|
|
15768
15767
|
unknown: "unknown";
|
|
15768
|
+
json: "json";
|
|
15769
15769
|
}>>;
|
|
15770
15770
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
15771
|
+
profile_url: "profile_url";
|
|
15772
|
+
int: "int";
|
|
15773
|
+
date: "date";
|
|
15771
15774
|
email: "email";
|
|
15772
15775
|
address_line_1: "address_line_1";
|
|
15773
15776
|
zip_code: "zip_code";
|
|
15774
|
-
profile_url: "profile_url";
|
|
15775
15777
|
phone: "phone";
|
|
15776
15778
|
website_url: "website_url";
|
|
15777
15779
|
markdown: "markdown";
|
|
@@ -15781,9 +15783,7 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
15781
15783
|
url: "url";
|
|
15782
15784
|
datetime: "datetime";
|
|
15783
15785
|
currency: "currency";
|
|
15784
|
-
date: "date";
|
|
15785
15786
|
text: "text";
|
|
15786
|
-
int: "int";
|
|
15787
15787
|
decimal: "decimal";
|
|
15788
15788
|
percent: "percent";
|
|
15789
15789
|
}>>>;
|
|
@@ -19100,14 +19100,16 @@ declare const SearchesResultFieldSchema: z$1.ZodObject<{
|
|
|
19100
19100
|
string: "string";
|
|
19101
19101
|
number: "number";
|
|
19102
19102
|
boolean: "boolean";
|
|
19103
|
-
json: "json";
|
|
19104
19103
|
unknown: "unknown";
|
|
19104
|
+
json: "json";
|
|
19105
19105
|
}>>;
|
|
19106
19106
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
19107
|
+
profile_url: "profile_url";
|
|
19108
|
+
int: "int";
|
|
19109
|
+
date: "date";
|
|
19107
19110
|
email: "email";
|
|
19108
19111
|
address_line_1: "address_line_1";
|
|
19109
19112
|
zip_code: "zip_code";
|
|
19110
|
-
profile_url: "profile_url";
|
|
19111
19113
|
phone: "phone";
|
|
19112
19114
|
website_url: "website_url";
|
|
19113
19115
|
markdown: "markdown";
|
|
@@ -19117,9 +19119,7 @@ declare const SearchesResultFieldSchema: z$1.ZodObject<{
|
|
|
19117
19119
|
url: "url";
|
|
19118
19120
|
datetime: "datetime";
|
|
19119
19121
|
currency: "currency";
|
|
19120
|
-
date: "date";
|
|
19121
19122
|
text: "text";
|
|
19122
|
-
int: "int";
|
|
19123
19123
|
decimal: "decimal";
|
|
19124
19124
|
percent: "percent";
|
|
19125
19125
|
}>>>;
|
|
@@ -19345,14 +19345,16 @@ declare const SearchesResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable
|
|
|
19345
19345
|
string: "string";
|
|
19346
19346
|
number: "number";
|
|
19347
19347
|
boolean: "boolean";
|
|
19348
|
-
json: "json";
|
|
19349
19348
|
unknown: "unknown";
|
|
19349
|
+
json: "json";
|
|
19350
19350
|
}>>;
|
|
19351
19351
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
19352
|
+
profile_url: "profile_url";
|
|
19353
|
+
int: "int";
|
|
19354
|
+
date: "date";
|
|
19352
19355
|
email: "email";
|
|
19353
19356
|
address_line_1: "address_line_1";
|
|
19354
19357
|
zip_code: "zip_code";
|
|
19355
|
-
profile_url: "profile_url";
|
|
19356
19358
|
phone: "phone";
|
|
19357
19359
|
website_url: "website_url";
|
|
19358
19360
|
markdown: "markdown";
|
|
@@ -19362,9 +19364,7 @@ declare const SearchesResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable
|
|
|
19362
19364
|
url: "url";
|
|
19363
19365
|
datetime: "datetime";
|
|
19364
19366
|
currency: "currency";
|
|
19365
|
-
date: "date";
|
|
19366
19367
|
text: "text";
|
|
19367
|
-
int: "int";
|
|
19368
19368
|
decimal: "decimal";
|
|
19369
19369
|
percent: "percent";
|
|
19370
19370
|
}>>>;
|
|
@@ -19640,14 +19640,16 @@ declare const SearchesResponseSchema: z$1.ZodObject<{
|
|
|
19640
19640
|
string: "string";
|
|
19641
19641
|
number: "number";
|
|
19642
19642
|
boolean: "boolean";
|
|
19643
|
-
json: "json";
|
|
19644
19643
|
unknown: "unknown";
|
|
19644
|
+
json: "json";
|
|
19645
19645
|
}>>;
|
|
19646
19646
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
19647
|
+
profile_url: "profile_url";
|
|
19648
|
+
int: "int";
|
|
19649
|
+
date: "date";
|
|
19647
19650
|
email: "email";
|
|
19648
19651
|
address_line_1: "address_line_1";
|
|
19649
19652
|
zip_code: "zip_code";
|
|
19650
|
-
profile_url: "profile_url";
|
|
19651
19653
|
phone: "phone";
|
|
19652
19654
|
website_url: "website_url";
|
|
19653
19655
|
markdown: "markdown";
|
|
@@ -19657,9 +19659,7 @@ declare const SearchesResponseSchema: z$1.ZodObject<{
|
|
|
19657
19659
|
url: "url";
|
|
19658
19660
|
datetime: "datetime";
|
|
19659
19661
|
currency: "currency";
|
|
19660
|
-
date: "date";
|
|
19661
19662
|
text: "text";
|
|
19662
|
-
int: "int";
|
|
19663
19663
|
decimal: "decimal";
|
|
19664
19664
|
percent: "percent";
|
|
19665
19665
|
}>>>;
|
|
@@ -21287,10 +21287,10 @@ declare abstract class Pipe<Payload extends {
|
|
|
21287
21287
|
resolveFormat?: (_lazyContext: LazyResolveContext) => RecordFieldFormat;
|
|
21288
21288
|
isPrimaryOutput?: boolean;
|
|
21289
21289
|
}): {
|
|
21290
|
-
name: "
|
|
21290
|
+
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";
|
|
21291
21291
|
enabled: boolean;
|
|
21292
|
-
type: "string" | "number" | "boolean" | "
|
|
21293
|
-
format: "
|
|
21292
|
+
type: "string" | "number" | "boolean" | "unknown" | "json" | ((_lazyContext: LazyResolveContext) => RecordFieldType);
|
|
21293
|
+
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;
|
|
21294
21294
|
resolvedName: any;
|
|
21295
21295
|
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).";
|
|
21296
21296
|
jsonMeta: {
|
|
@@ -26733,10 +26733,12 @@ declare const pipePayloadSchemaCatalog: {
|
|
|
26733
26733
|
output_field: z.ZodObject<{
|
|
26734
26734
|
name: z.ZodString;
|
|
26735
26735
|
format: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
26736
|
+
profile_url: "profile_url";
|
|
26737
|
+
int: "int";
|
|
26738
|
+
date: "date";
|
|
26736
26739
|
email: "email";
|
|
26737
26740
|
address_line_1: "address_line_1";
|
|
26738
26741
|
zip_code: "zip_code";
|
|
26739
|
-
profile_url: "profile_url";
|
|
26740
26742
|
phone: "phone";
|
|
26741
26743
|
website_url: "website_url";
|
|
26742
26744
|
markdown: "markdown";
|
|
@@ -26746,9 +26748,7 @@ declare const pipePayloadSchemaCatalog: {
|
|
|
26746
26748
|
url: "url";
|
|
26747
26749
|
datetime: "datetime";
|
|
26748
26750
|
currency: "currency";
|
|
26749
|
-
date: "date";
|
|
26750
26751
|
text: "text";
|
|
26751
|
-
int: "int";
|
|
26752
26752
|
decimal: "decimal";
|
|
26753
26753
|
percent: "percent";
|
|
26754
26754
|
}>>>;
|
|
@@ -26757,8 +26757,8 @@ declare const pipePayloadSchemaCatalog: {
|
|
|
26757
26757
|
string: "string";
|
|
26758
26758
|
number: "number";
|
|
26759
26759
|
boolean: "boolean";
|
|
26760
|
-
json: "json";
|
|
26761
26760
|
unknown: "unknown";
|
|
26761
|
+
json: "json";
|
|
26762
26762
|
}>;
|
|
26763
26763
|
}, z.core.$strip>;
|
|
26764
26764
|
}, z.core.$strip>>;
|
|
@@ -30506,90 +30506,6 @@ type PipePayloadMap = { [k in keyof PipePayloadSchemaCatalog]: z.infer<PipePaylo
|
|
|
30506
30506
|
type PipeRequestPayloadMap = { [k in keyof PipePayloadSchemaCatalog]: z.input<PipePayloadSchemaCatalog[k]> };
|
|
30507
30507
|
declare function getPipeDefaultPayload(pipeId: PipeId): any;
|
|
30508
30508
|
declare function getPipePayloadSchema(pipeId: PipeId): z.ZodObject<{
|
|
30509
|
-
pipe_id: z.ZodLiteral<"person:workemail:waterfall@1">;
|
|
30510
|
-
connector: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30511
|
-
strategy: z.ZodDefault<z.ZodEnum<{
|
|
30512
|
-
first: "first";
|
|
30513
|
-
}>>;
|
|
30514
|
-
connections: z.ZodArray<z.ZodObject<{
|
|
30515
|
-
type: z.ZodLiteral<"vault">;
|
|
30516
|
-
connection: z.ZodString;
|
|
30517
|
-
}, z.core.$strip>>;
|
|
30518
|
-
}, z.core.$strip>>>;
|
|
30519
|
-
run_if: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30520
|
-
action: z.ZodDefault<z.ZodEnum<{
|
|
30521
|
-
run: "run";
|
|
30522
|
-
}>>;
|
|
30523
|
-
when: z.ZodObject<{
|
|
30524
|
-
logic: z.ZodEnum<{
|
|
30525
|
-
and: "and";
|
|
30526
|
-
or: "or";
|
|
30527
|
-
}>;
|
|
30528
|
-
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
30529
|
-
property: z.ZodLiteral<"value">;
|
|
30530
|
-
field_name: z.ZodString;
|
|
30531
|
-
operator: z.ZodEnum<{
|
|
30532
|
-
eq: "eq";
|
|
30533
|
-
neq: "neq";
|
|
30534
|
-
gt: "gt";
|
|
30535
|
-
gte: "gte";
|
|
30536
|
-
lt: "lt";
|
|
30537
|
-
lte: "lte";
|
|
30538
|
-
contains: "contains";
|
|
30539
|
-
}>;
|
|
30540
|
-
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
30541
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
30542
|
-
property: z.ZodLiteral<"status">;
|
|
30543
|
-
field_name: z.ZodString;
|
|
30544
|
-
operator: z.ZodEnum<{
|
|
30545
|
-
eq: "eq";
|
|
30546
|
-
neq: "neq";
|
|
30547
|
-
}>;
|
|
30548
|
-
value: z.ZodEnum<{
|
|
30549
|
-
completed: "completed";
|
|
30550
|
-
failed: "failed";
|
|
30551
|
-
no_result: "no_result";
|
|
30552
|
-
skipped: "skipped";
|
|
30553
|
-
}>;
|
|
30554
|
-
}, z.core.$strip>], "property">>;
|
|
30555
|
-
}, z.core.$strip>;
|
|
30556
|
-
}, z.core.$strip>>>;
|
|
30557
|
-
config: z.ZodOptional<z.ZodObject<{
|
|
30558
|
-
providers: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
30559
|
-
provider: z.ZodEnum<{
|
|
30560
|
-
findymail: "findymail";
|
|
30561
|
-
hunter: "hunter";
|
|
30562
|
-
leadmagic: "leadmagic";
|
|
30563
|
-
icypeas: "icypeas";
|
|
30564
|
-
prospeo: "prospeo";
|
|
30565
|
-
amplemarket: "amplemarket";
|
|
30566
|
-
}>;
|
|
30567
|
-
}, z.core.$strip>>>;
|
|
30568
|
-
allow_catch_all_emails: z.ZodDefault<z.ZodBoolean>;
|
|
30569
|
-
allow_risky_emails: z.ZodDefault<z.ZodBoolean>;
|
|
30570
|
-
input_fields: z.ZodOptional<z.ZodObject<{
|
|
30571
|
-
name: z.ZodDefault<z.ZodObject<{
|
|
30572
|
-
alias: z.ZodString;
|
|
30573
|
-
}, z.core.$strip>>;
|
|
30574
|
-
company_domain: z.ZodDefault<z.ZodObject<{
|
|
30575
|
-
alias: z.ZodString;
|
|
30576
|
-
}, z.core.$strip>>;
|
|
30577
|
-
company_name: z.ZodDefault<z.ZodObject<{
|
|
30578
|
-
alias: z.ZodString;
|
|
30579
|
-
}, z.core.$strip>>;
|
|
30580
|
-
}, z.core.$strip>>;
|
|
30581
|
-
output_fields: z.ZodOptional<z.ZodObject<{
|
|
30582
|
-
work_email: z.ZodDefault<z.ZodObject<{
|
|
30583
|
-
alias: z.ZodDefault<z.ZodString>;
|
|
30584
|
-
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
30585
|
-
}, z.core.$strip>>;
|
|
30586
|
-
email_validation_status: z.ZodDefault<z.ZodObject<{
|
|
30587
|
-
alias: z.ZodDefault<z.ZodString>;
|
|
30588
|
-
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
30589
|
-
}, z.core.$strip>>;
|
|
30590
|
-
}, z.core.$strip>>;
|
|
30591
|
-
}, z.core.$strip>>;
|
|
30592
|
-
}, z.core.$strip> | z.ZodObject<{
|
|
30593
30509
|
pipe_id: z.ZodLiteral<"prompt:run@1">;
|
|
30594
30510
|
connector: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30595
30511
|
strategy: z.ZodDefault<z.ZodEnum<{
|
|
@@ -31283,6 +31199,90 @@ declare function getPipePayloadSchema(pipeId: PipeId): z.ZodObject<{
|
|
|
31283
31199
|
}, z.core.$strip>>;
|
|
31284
31200
|
}, z.core.$strip>>;
|
|
31285
31201
|
}, z.core.$strip>>;
|
|
31202
|
+
}, z.core.$strip> | z.ZodObject<{
|
|
31203
|
+
pipe_id: z.ZodLiteral<"person:workemail:waterfall@1">;
|
|
31204
|
+
connector: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
31205
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
31206
|
+
first: "first";
|
|
31207
|
+
}>>;
|
|
31208
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
31209
|
+
type: z.ZodLiteral<"vault">;
|
|
31210
|
+
connection: z.ZodString;
|
|
31211
|
+
}, z.core.$strip>>;
|
|
31212
|
+
}, z.core.$strip>>>;
|
|
31213
|
+
run_if: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
31214
|
+
action: z.ZodDefault<z.ZodEnum<{
|
|
31215
|
+
run: "run";
|
|
31216
|
+
}>>;
|
|
31217
|
+
when: z.ZodObject<{
|
|
31218
|
+
logic: z.ZodEnum<{
|
|
31219
|
+
and: "and";
|
|
31220
|
+
or: "or";
|
|
31221
|
+
}>;
|
|
31222
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
31223
|
+
property: z.ZodLiteral<"value">;
|
|
31224
|
+
field_name: z.ZodString;
|
|
31225
|
+
operator: z.ZodEnum<{
|
|
31226
|
+
eq: "eq";
|
|
31227
|
+
neq: "neq";
|
|
31228
|
+
gt: "gt";
|
|
31229
|
+
gte: "gte";
|
|
31230
|
+
lt: "lt";
|
|
31231
|
+
lte: "lte";
|
|
31232
|
+
contains: "contains";
|
|
31233
|
+
}>;
|
|
31234
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
31235
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
31236
|
+
property: z.ZodLiteral<"status">;
|
|
31237
|
+
field_name: z.ZodString;
|
|
31238
|
+
operator: z.ZodEnum<{
|
|
31239
|
+
eq: "eq";
|
|
31240
|
+
neq: "neq";
|
|
31241
|
+
}>;
|
|
31242
|
+
value: z.ZodEnum<{
|
|
31243
|
+
completed: "completed";
|
|
31244
|
+
failed: "failed";
|
|
31245
|
+
no_result: "no_result";
|
|
31246
|
+
skipped: "skipped";
|
|
31247
|
+
}>;
|
|
31248
|
+
}, z.core.$strip>], "property">>;
|
|
31249
|
+
}, z.core.$strip>;
|
|
31250
|
+
}, z.core.$strip>>>;
|
|
31251
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
31252
|
+
providers: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
31253
|
+
provider: z.ZodEnum<{
|
|
31254
|
+
findymail: "findymail";
|
|
31255
|
+
hunter: "hunter";
|
|
31256
|
+
leadmagic: "leadmagic";
|
|
31257
|
+
icypeas: "icypeas";
|
|
31258
|
+
prospeo: "prospeo";
|
|
31259
|
+
amplemarket: "amplemarket";
|
|
31260
|
+
}>;
|
|
31261
|
+
}, z.core.$strip>>>;
|
|
31262
|
+
allow_catch_all_emails: z.ZodDefault<z.ZodBoolean>;
|
|
31263
|
+
allow_risky_emails: z.ZodDefault<z.ZodBoolean>;
|
|
31264
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
31265
|
+
name: z.ZodDefault<z.ZodObject<{
|
|
31266
|
+
alias: z.ZodString;
|
|
31267
|
+
}, z.core.$strip>>;
|
|
31268
|
+
company_domain: z.ZodDefault<z.ZodObject<{
|
|
31269
|
+
alias: z.ZodString;
|
|
31270
|
+
}, z.core.$strip>>;
|
|
31271
|
+
company_name: z.ZodDefault<z.ZodObject<{
|
|
31272
|
+
alias: z.ZodString;
|
|
31273
|
+
}, z.core.$strip>>;
|
|
31274
|
+
}, z.core.$strip>>;
|
|
31275
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
31276
|
+
work_email: z.ZodDefault<z.ZodObject<{
|
|
31277
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
31278
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
31279
|
+
}, z.core.$strip>>;
|
|
31280
|
+
email_validation_status: z.ZodDefault<z.ZodObject<{
|
|
31281
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
31282
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
31283
|
+
}, z.core.$strip>>;
|
|
31284
|
+
}, z.core.$strip>>;
|
|
31285
|
+
}, z.core.$strip>>;
|
|
31286
31286
|
}, z.core.$strip> | z.ZodObject<{
|
|
31287
31287
|
pipe_id: z.ZodLiteral<"people:email:iswork@1">;
|
|
31288
31288
|
run_if: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -32188,10 +32188,12 @@ declare function getPipePayloadSchema(pipeId: PipeId): z.ZodObject<{
|
|
|
32188
32188
|
output_field: z.ZodObject<{
|
|
32189
32189
|
name: z.ZodString;
|
|
32190
32190
|
format: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
32191
|
+
profile_url: "profile_url";
|
|
32192
|
+
int: "int";
|
|
32193
|
+
date: "date";
|
|
32191
32194
|
email: "email";
|
|
32192
32195
|
address_line_1: "address_line_1";
|
|
32193
32196
|
zip_code: "zip_code";
|
|
32194
|
-
profile_url: "profile_url";
|
|
32195
32197
|
phone: "phone";
|
|
32196
32198
|
website_url: "website_url";
|
|
32197
32199
|
markdown: "markdown";
|
|
@@ -32201,9 +32203,7 @@ declare function getPipePayloadSchema(pipeId: PipeId): z.ZodObject<{
|
|
|
32201
32203
|
url: "url";
|
|
32202
32204
|
datetime: "datetime";
|
|
32203
32205
|
currency: "currency";
|
|
32204
|
-
date: "date";
|
|
32205
32206
|
text: "text";
|
|
32206
|
-
int: "int";
|
|
32207
32207
|
decimal: "decimal";
|
|
32208
32208
|
percent: "percent";
|
|
32209
32209
|
}>>>;
|
|
@@ -32212,8 +32212,8 @@ declare function getPipePayloadSchema(pipeId: PipeId): z.ZodObject<{
|
|
|
32212
32212
|
string: "string";
|
|
32213
32213
|
number: "number";
|
|
32214
32214
|
boolean: "boolean";
|
|
32215
|
-
json: "json";
|
|
32216
32215
|
unknown: "unknown";
|
|
32216
|
+
json: "json";
|
|
32217
32217
|
}>;
|
|
32218
32218
|
}, z.core.$strip>;
|
|
32219
32219
|
}, z.core.$strip>>;
|
|
@@ -35964,8 +35964,8 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
35964
35964
|
string: "string";
|
|
35965
35965
|
number: "number";
|
|
35966
35966
|
boolean: "boolean";
|
|
35967
|
-
json: "json";
|
|
35968
35967
|
unknown: "unknown";
|
|
35968
|
+
json: "json";
|
|
35969
35969
|
}>;
|
|
35970
35970
|
label: z.ZodString;
|
|
35971
35971
|
added_by: z.ZodObject<{
|
|
@@ -36053,10 +36053,12 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
36053
36053
|
pipe_index: z.ZodNullable<z.ZodNumber>;
|
|
36054
36054
|
}, z.core.$strip>;
|
|
36055
36055
|
format: z.ZodNullable<z.ZodEnum<{
|
|
36056
|
+
profile_url: "profile_url";
|
|
36057
|
+
int: "int";
|
|
36058
|
+
date: "date";
|
|
36056
36059
|
email: "email";
|
|
36057
36060
|
address_line_1: "address_line_1";
|
|
36058
36061
|
zip_code: "zip_code";
|
|
36059
|
-
profile_url: "profile_url";
|
|
36060
36062
|
phone: "phone";
|
|
36061
36063
|
website_url: "website_url";
|
|
36062
36064
|
markdown: "markdown";
|
|
@@ -36066,9 +36068,7 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
36066
36068
|
url: "url";
|
|
36067
36069
|
datetime: "datetime";
|
|
36068
36070
|
currency: "currency";
|
|
36069
|
-
date: "date";
|
|
36070
36071
|
text: "text";
|
|
36071
|
-
int: "int";
|
|
36072
36072
|
decimal: "decimal";
|
|
36073
36073
|
percent: "percent";
|
|
36074
36074
|
}>>;
|
|
@@ -36088,8 +36088,8 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
36088
36088
|
string: "string";
|
|
36089
36089
|
number: "number";
|
|
36090
36090
|
boolean: "boolean";
|
|
36091
|
-
json: "json";
|
|
36092
36091
|
unknown: "unknown";
|
|
36092
|
+
json: "json";
|
|
36093
36093
|
}>;
|
|
36094
36094
|
reason: z.ZodNullable<z.ZodObject<{
|
|
36095
36095
|
code: z.ZodString;
|
|
@@ -36394,10 +36394,12 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
36394
36394
|
}, z.core.$strip>>>;
|
|
36395
36395
|
}, z.core.$strip>>;
|
|
36396
36396
|
format: z.ZodNullable<z.ZodEnum<{
|
|
36397
|
+
profile_url: "profile_url";
|
|
36398
|
+
int: "int";
|
|
36399
|
+
date: "date";
|
|
36397
36400
|
email: "email";
|
|
36398
36401
|
address_line_1: "address_line_1";
|
|
36399
36402
|
zip_code: "zip_code";
|
|
36400
|
-
profile_url: "profile_url";
|
|
36401
36403
|
phone: "phone";
|
|
36402
36404
|
website_url: "website_url";
|
|
36403
36405
|
markdown: "markdown";
|
|
@@ -36407,9 +36409,7 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
36407
36409
|
url: "url";
|
|
36408
36410
|
datetime: "datetime";
|
|
36409
36411
|
currency: "currency";
|
|
36410
|
-
date: "date";
|
|
36411
36412
|
text: "text";
|
|
36412
|
-
int: "int";
|
|
36413
36413
|
decimal: "decimal";
|
|
36414
36414
|
percent: "percent";
|
|
36415
36415
|
}>>;
|
|
@@ -36473,15 +36473,17 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
36473
36473
|
string: "string";
|
|
36474
36474
|
number: "number";
|
|
36475
36475
|
boolean: "boolean";
|
|
36476
|
-
json: "json";
|
|
36477
36476
|
unknown: "unknown";
|
|
36477
|
+
json: "json";
|
|
36478
36478
|
}>;
|
|
36479
36479
|
label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
36480
36480
|
format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
36481
|
+
profile_url: "profile_url";
|
|
36482
|
+
int: "int";
|
|
36483
|
+
date: "date";
|
|
36481
36484
|
email: "email";
|
|
36482
36485
|
address_line_1: "address_line_1";
|
|
36483
36486
|
zip_code: "zip_code";
|
|
36484
|
-
profile_url: "profile_url";
|
|
36485
36487
|
phone: "phone";
|
|
36486
36488
|
website_url: "website_url";
|
|
36487
36489
|
markdown: "markdown";
|
|
@@ -36491,9 +36493,7 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
36491
36493
|
url: "url";
|
|
36492
36494
|
datetime: "datetime";
|
|
36493
36495
|
currency: "currency";
|
|
36494
|
-
date: "date";
|
|
36495
36496
|
text: "text";
|
|
36496
|
-
int: "int";
|
|
36497
36497
|
decimal: "decimal";
|
|
36498
36498
|
percent: "percent";
|
|
36499
36499
|
}>>>;
|
|
@@ -38185,10 +38185,12 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
38185
38185
|
output_field: z.ZodObject<{
|
|
38186
38186
|
name: z.ZodString;
|
|
38187
38187
|
format: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
38188
|
+
profile_url: "profile_url";
|
|
38189
|
+
int: "int";
|
|
38190
|
+
date: "date";
|
|
38188
38191
|
email: "email";
|
|
38189
38192
|
address_line_1: "address_line_1";
|
|
38190
38193
|
zip_code: "zip_code";
|
|
38191
|
-
profile_url: "profile_url";
|
|
38192
38194
|
phone: "phone";
|
|
38193
38195
|
website_url: "website_url";
|
|
38194
38196
|
markdown: "markdown";
|
|
@@ -38198,9 +38200,7 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
38198
38200
|
url: "url";
|
|
38199
38201
|
datetime: "datetime";
|
|
38200
38202
|
currency: "currency";
|
|
38201
|
-
date: "date";
|
|
38202
38203
|
text: "text";
|
|
38203
|
-
int: "int";
|
|
38204
38204
|
decimal: "decimal";
|
|
38205
38205
|
percent: "percent";
|
|
38206
38206
|
}>>>;
|
|
@@ -38209,8 +38209,8 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
38209
38209
|
string: "string";
|
|
38210
38210
|
number: "number";
|
|
38211
38211
|
boolean: "boolean";
|
|
38212
|
-
json: "json";
|
|
38213
38212
|
unknown: "unknown";
|
|
38213
|
+
json: "json";
|
|
38214
38214
|
}>;
|
|
38215
38215
|
}, z.core.$strip>;
|
|
38216
38216
|
}, z.core.$strip>>;
|
|
@@ -41906,14 +41906,16 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
41906
41906
|
string: "string";
|
|
41907
41907
|
number: "number";
|
|
41908
41908
|
boolean: "boolean";
|
|
41909
|
-
json: "json";
|
|
41910
41909
|
unknown: "unknown";
|
|
41910
|
+
json: "json";
|
|
41911
41911
|
}>>;
|
|
41912
41912
|
format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
41913
|
+
profile_url: "profile_url";
|
|
41914
|
+
int: "int";
|
|
41915
|
+
date: "date";
|
|
41913
41916
|
email: "email";
|
|
41914
41917
|
address_line_1: "address_line_1";
|
|
41915
41918
|
zip_code: "zip_code";
|
|
41916
|
-
profile_url: "profile_url";
|
|
41917
41919
|
phone: "phone";
|
|
41918
41920
|
website_url: "website_url";
|
|
41919
41921
|
markdown: "markdown";
|
|
@@ -41923,9 +41925,7 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
41923
41925
|
url: "url";
|
|
41924
41926
|
datetime: "datetime";
|
|
41925
41927
|
currency: "currency";
|
|
41926
|
-
date: "date";
|
|
41927
41928
|
text: "text";
|
|
41928
|
-
int: "int";
|
|
41929
41929
|
decimal: "decimal";
|
|
41930
41930
|
percent: "percent";
|
|
41931
41931
|
}>>>;
|
|
@@ -42809,10 +42809,12 @@ declare const pipesJsonExtractionInput: () => z.ZodObject<{
|
|
|
42809
42809
|
output_field: z.ZodObject<{
|
|
42810
42810
|
name: z.ZodString;
|
|
42811
42811
|
format: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
42812
|
+
profile_url: "profile_url";
|
|
42813
|
+
int: "int";
|
|
42814
|
+
date: "date";
|
|
42812
42815
|
email: "email";
|
|
42813
42816
|
address_line_1: "address_line_1";
|
|
42814
42817
|
zip_code: "zip_code";
|
|
42815
|
-
profile_url: "profile_url";
|
|
42816
42818
|
phone: "phone";
|
|
42817
42819
|
website_url: "website_url";
|
|
42818
42820
|
markdown: "markdown";
|
|
@@ -42822,9 +42824,7 @@ declare const pipesJsonExtractionInput: () => z.ZodObject<{
|
|
|
42822
42824
|
url: "url";
|
|
42823
42825
|
datetime: "datetime";
|
|
42824
42826
|
currency: "currency";
|
|
42825
|
-
date: "date";
|
|
42826
42827
|
text: "text";
|
|
42827
|
-
int: "int";
|
|
42828
42828
|
decimal: "decimal";
|
|
42829
42829
|
percent: "percent";
|
|
42830
42830
|
}>>>;
|
|
@@ -42833,8 +42833,8 @@ declare const pipesJsonExtractionInput: () => z.ZodObject<{
|
|
|
42833
42833
|
string: "string";
|
|
42834
42834
|
number: "number";
|
|
42835
42835
|
boolean: "boolean";
|
|
42836
|
-
json: "json";
|
|
42837
42836
|
unknown: "unknown";
|
|
42837
|
+
json: "json";
|
|
42838
42838
|
}>;
|
|
42839
42839
|
}, z.core.$strip>;
|
|
42840
42840
|
}, z.core.$strip>>;
|
|
@@ -44898,7 +44898,7 @@ declare function markRecordFieldAsComplete({
|
|
|
44898
44898
|
}): {
|
|
44899
44899
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
44900
44900
|
status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
|
|
44901
|
-
type: "string" | "number" | "boolean" | "
|
|
44901
|
+
type: "string" | "number" | "boolean" | "unknown" | "json";
|
|
44902
44902
|
reason: {
|
|
44903
44903
|
code: string;
|
|
44904
44904
|
summary: string;
|
|
@@ -44914,7 +44914,7 @@ declare function markRecordFieldAsComplete({
|
|
|
44914
44914
|
config_hash: string | null;
|
|
44915
44915
|
input_hash: string | null;
|
|
44916
44916
|
} | null;
|
|
44917
|
-
format: "
|
|
44917
|
+
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;
|
|
44918
44918
|
widgets?: {
|
|
44919
44919
|
display_value?: {
|
|
44920
44920
|
label?: string | undefined;
|
|
@@ -44962,7 +44962,7 @@ declare function markRecordFieldAsPending({
|
|
|
44962
44962
|
}): {
|
|
44963
44963
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
44964
44964
|
status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
|
|
44965
|
-
type: "string" | "number" | "boolean" | "
|
|
44965
|
+
type: "string" | "number" | "boolean" | "unknown" | "json";
|
|
44966
44966
|
reason: {
|
|
44967
44967
|
code: string;
|
|
44968
44968
|
summary: string;
|
|
@@ -44978,7 +44978,7 @@ declare function markRecordFieldAsPending({
|
|
|
44978
44978
|
config_hash: string | null;
|
|
44979
44979
|
input_hash: string | null;
|
|
44980
44980
|
} | null;
|
|
44981
|
-
format: "
|
|
44981
|
+
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;
|
|
44982
44982
|
widgets?: {
|
|
44983
44983
|
display_value?: {
|
|
44984
44984
|
label?: string | undefined;
|
|
@@ -45032,7 +45032,7 @@ declare function markRecordFieldAsNoResult({
|
|
|
45032
45032
|
}): {
|
|
45033
45033
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
45034
45034
|
status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
|
|
45035
|
-
type: "string" | "number" | "boolean" | "
|
|
45035
|
+
type: "string" | "number" | "boolean" | "unknown" | "json";
|
|
45036
45036
|
reason: {
|
|
45037
45037
|
code: string;
|
|
45038
45038
|
summary: string;
|
|
@@ -45048,7 +45048,7 @@ declare function markRecordFieldAsNoResult({
|
|
|
45048
45048
|
config_hash: string | null;
|
|
45049
45049
|
input_hash: string | null;
|
|
45050
45050
|
} | null;
|
|
45051
|
-
format: "
|
|
45051
|
+
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;
|
|
45052
45052
|
widgets?: {
|
|
45053
45053
|
display_value?: {
|
|
45054
45054
|
label?: string | undefined;
|
|
@@ -45092,7 +45092,7 @@ declare function markRecordFieldAsNoResult({
|
|
|
45092
45092
|
declare function markRecordFieldAsFailed(field: RecordField, reason: FieldReason, resolvedBy: RecordField["resolved_by"]): {
|
|
45093
45093
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
45094
45094
|
status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
|
|
45095
|
-
type: "string" | "number" | "boolean" | "
|
|
45095
|
+
type: "string" | "number" | "boolean" | "unknown" | "json";
|
|
45096
45096
|
reason: {
|
|
45097
45097
|
code: string;
|
|
45098
45098
|
summary: string;
|
|
@@ -45108,7 +45108,7 @@ declare function markRecordFieldAsFailed(field: RecordField, reason: FieldReason
|
|
|
45108
45108
|
config_hash: string | null;
|
|
45109
45109
|
input_hash: string | null;
|
|
45110
45110
|
} | null;
|
|
45111
|
-
format: "
|
|
45111
|
+
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;
|
|
45112
45112
|
widgets?: {
|
|
45113
45113
|
display_value?: {
|
|
45114
45114
|
label?: string | undefined;
|
|
@@ -45152,7 +45152,7 @@ declare function markRecordFieldAsFailed(field: RecordField, reason: FieldReason
|
|
|
45152
45152
|
declare function markRecordFieldAsSkipped(field: RecordField, reason: FieldReason): {
|
|
45153
45153
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
45154
45154
|
status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
|
|
45155
|
-
type: "string" | "number" | "boolean" | "
|
|
45155
|
+
type: "string" | "number" | "boolean" | "unknown" | "json";
|
|
45156
45156
|
reason: {
|
|
45157
45157
|
code: string;
|
|
45158
45158
|
summary: string;
|
|
@@ -45168,7 +45168,7 @@ declare function markRecordFieldAsSkipped(field: RecordField, reason: FieldReaso
|
|
|
45168
45168
|
config_hash: string | null;
|
|
45169
45169
|
input_hash: string | null;
|
|
45170
45170
|
} | null;
|
|
45171
|
-
format: "
|
|
45171
|
+
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;
|
|
45172
45172
|
widgets?: {
|
|
45173
45173
|
display_value?: {
|
|
45174
45174
|
label?: string | undefined;
|
|
@@ -45212,7 +45212,7 @@ declare function markRecordFieldAsSkipped(field: RecordField, reason: FieldReaso
|
|
|
45212
45212
|
declare function markRecordFieldAsProcessing(field: RecordField): {
|
|
45213
45213
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
45214
45214
|
status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
|
|
45215
|
-
type: "string" | "number" | "boolean" | "
|
|
45215
|
+
type: "string" | "number" | "boolean" | "unknown" | "json";
|
|
45216
45216
|
reason: {
|
|
45217
45217
|
code: string;
|
|
45218
45218
|
summary: string;
|
|
@@ -45228,7 +45228,7 @@ declare function markRecordFieldAsProcessing(field: RecordField): {
|
|
|
45228
45228
|
config_hash: string | null;
|
|
45229
45229
|
input_hash: string | null;
|
|
45230
45230
|
} | null;
|
|
45231
|
-
format: "
|
|
45231
|
+
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;
|
|
45232
45232
|
widgets?: {
|
|
45233
45233
|
display_value?: {
|
|
45234
45234
|
label?: string | undefined;
|
|
@@ -45276,12 +45276,12 @@ declare function catalogInput(field: NamedFieldEntry, config: {
|
|
|
45276
45276
|
alias?: string | undefined;
|
|
45277
45277
|
}> | undefined;
|
|
45278
45278
|
} | null | undefined): {
|
|
45279
|
-
name: "
|
|
45279
|
+
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";
|
|
45280
45280
|
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).";
|
|
45281
45281
|
resolvedName: string;
|
|
45282
|
-
type: "string" | "number" | "boolean" | "
|
|
45282
|
+
type: "string" | "number" | "boolean" | "unknown" | "json";
|
|
45283
45283
|
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";
|
|
45284
|
-
format: "
|
|
45284
|
+
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;
|
|
45285
45285
|
};
|
|
45286
45286
|
//#endregion
|
|
45287
45287
|
//#region src/pipes/catalog/utils/high-volume.d.ts
|
|
@@ -45727,7 +45727,7 @@ declare function stringify(v: unknown): unknown;
|
|
|
45727
45727
|
declare function rateLimitRatioFallingProgression(index: number): number;
|
|
45728
45728
|
declare function sortObjectKeys(obj: any): any;
|
|
45729
45729
|
declare const TYPES_TO_FORMATS: {
|
|
45730
|
-
string: ("
|
|
45730
|
+
string: ("profile_url" | "date" | "email" | "address_line_1" | "zip_code" | "phone" | "website_url" | "markdown" | "url" | "datetime" | "text")[];
|
|
45731
45731
|
json: ("json_object" | "json_list")[];
|
|
45732
45732
|
number: ("int" | "decimal")[];
|
|
45733
45733
|
boolean: never[];
|
|
@@ -45773,8 +45773,8 @@ declare function inputFromRecords(records: PipesInMemoryResponse["records"], con
|
|
|
45773
45773
|
summary: string;
|
|
45774
45774
|
message: string;
|
|
45775
45775
|
} | null | undefined;
|
|
45776
|
-
type?: "string" | "number" | "boolean" | "
|
|
45777
|
-
format?: "
|
|
45776
|
+
type?: "string" | "number" | "boolean" | "unknown" | "json" | undefined;
|
|
45777
|
+
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;
|
|
45778
45778
|
claimed_by?: {
|
|
45779
45779
|
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;
|
|
45780
45780
|
config_hash: string | null;
|
|
@@ -45833,8 +45833,8 @@ declare function inputFromRecords(records: PipesInMemoryResponse["records"], con
|
|
|
45833
45833
|
summary: string;
|
|
45834
45834
|
message: string;
|
|
45835
45835
|
} | null | undefined;
|
|
45836
|
-
type?: "string" | "number" | "boolean" | "
|
|
45837
|
-
format?: "
|
|
45836
|
+
type?: "string" | "number" | "boolean" | "unknown" | "json" | undefined;
|
|
45837
|
+
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;
|
|
45838
45838
|
claimed_by?: {
|
|
45839
45839
|
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;
|
|
45840
45840
|
config_hash: string | null;
|
|
@@ -45896,8 +45896,8 @@ declare function inputFromRecordArr(records: PipesRecord[], config?: Partial<Fie
|
|
|
45896
45896
|
summary: string;
|
|
45897
45897
|
message: string;
|
|
45898
45898
|
} | null | undefined;
|
|
45899
|
-
type?: "string" | "number" | "boolean" | "
|
|
45900
|
-
format?: "
|
|
45899
|
+
type?: "string" | "number" | "boolean" | "unknown" | "json" | undefined;
|
|
45900
|
+
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;
|
|
45901
45901
|
claimed_by?: {
|
|
45902
45902
|
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;
|
|
45903
45903
|
config_hash: string | null;
|
|
@@ -45956,8 +45956,8 @@ declare function inputFromRecordArr(records: PipesRecord[], config?: Partial<Fie
|
|
|
45956
45956
|
summary: string;
|
|
45957
45957
|
message: string;
|
|
45958
45958
|
} | null | undefined;
|
|
45959
|
-
type?: "string" | "number" | "boolean" | "
|
|
45960
|
-
format?: "
|
|
45959
|
+
type?: "string" | "number" | "boolean" | "unknown" | "json" | undefined;
|
|
45960
|
+
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;
|
|
45961
45961
|
claimed_by?: {
|
|
45962
45962
|
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;
|
|
45963
45963
|
config_hash: string | null;
|
|
@@ -46019,8 +46019,8 @@ declare function inputFromRecord(record: PipesRecord, config?: Partial<FieldsToO
|
|
|
46019
46019
|
summary: string;
|
|
46020
46020
|
message: string;
|
|
46021
46021
|
} | null | undefined;
|
|
46022
|
-
type?: "string" | "number" | "boolean" | "
|
|
46023
|
-
format?: "
|
|
46022
|
+
type?: "string" | "number" | "boolean" | "unknown" | "json" | undefined;
|
|
46023
|
+
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;
|
|
46024
46024
|
claimed_by?: {
|
|
46025
46025
|
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;
|
|
46026
46026
|
config_hash: string | null;
|
|
@@ -46079,8 +46079,8 @@ declare function inputFromRecord(record: PipesRecord, config?: Partial<FieldsToO
|
|
|
46079
46079
|
summary: string;
|
|
46080
46080
|
message: string;
|
|
46081
46081
|
} | null | undefined;
|
|
46082
|
-
type?: "string" | "number" | "boolean" | "
|
|
46083
|
-
format?: "
|
|
46082
|
+
type?: "string" | "number" | "boolean" | "unknown" | "json" | undefined;
|
|
46083
|
+
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;
|
|
46084
46084
|
claimed_by?: {
|
|
46085
46085
|
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;
|
|
46086
46086
|
config_hash: string | null;
|