@pipe0/base 0.0.9 → 0.0.10
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 +6 -0
- package/dist/index.d.mts +110 -110
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -379,8 +379,8 @@ declare const StoreOptionWidgetSchema: z.ZodObject<{
|
|
|
379
379
|
icon: z.ZodOptional<z.ZodObject<{
|
|
380
380
|
key: z.ZodEnum<{
|
|
381
381
|
output: "output";
|
|
382
|
-
text: "text";
|
|
383
382
|
input: "input";
|
|
383
|
+
text: "text";
|
|
384
384
|
code: "code";
|
|
385
385
|
filter: "filter";
|
|
386
386
|
search: "search";
|
|
@@ -545,8 +545,8 @@ declare const RecordFieldTypeSchema: z.ZodEnum<{
|
|
|
545
545
|
string: "string";
|
|
546
546
|
number: "number";
|
|
547
547
|
boolean: "boolean";
|
|
548
|
-
json: "json";
|
|
549
548
|
unknown: "unknown";
|
|
549
|
+
json: "json";
|
|
550
550
|
}>;
|
|
551
551
|
type RecordFieldType = z.infer<typeof RecordFieldTypeSchema>;
|
|
552
552
|
type DerivedInputFields = Record<string, {
|
|
@@ -709,6 +709,8 @@ declare const FieldReasonSchema: z.ZodObject<{
|
|
|
709
709
|
type FieldReason = z.infer<typeof FieldReasonSchema>;
|
|
710
710
|
declare const RECORD_FIELD_FORMATS: readonly ["json_object", "json_list", "json_list_string", "url", "website_url", "profile_url", "email", "datetime", "currency", "date", "phone", "markdown", "text", "int", "decimal", "address_line_1", "zip_code", "percent"];
|
|
711
711
|
declare const RecordFieldFormatSchema: z.ZodEnum<{
|
|
712
|
+
int: "int";
|
|
713
|
+
date: "date";
|
|
712
714
|
email: "email";
|
|
713
715
|
address_line_1: "address_line_1";
|
|
714
716
|
zip_code: "zip_code";
|
|
@@ -722,13 +724,13 @@ declare const RecordFieldFormatSchema: z.ZodEnum<{
|
|
|
722
724
|
url: "url";
|
|
723
725
|
datetime: "datetime";
|
|
724
726
|
currency: "currency";
|
|
725
|
-
date: "date";
|
|
726
727
|
text: "text";
|
|
727
|
-
int: "int";
|
|
728
728
|
decimal: "decimal";
|
|
729
729
|
percent: "percent";
|
|
730
730
|
}>;
|
|
731
731
|
declare const NullableRecordFieldFormatSchema: z.ZodNullable<z.ZodEnum<{
|
|
732
|
+
int: "int";
|
|
733
|
+
date: "date";
|
|
732
734
|
email: "email";
|
|
733
735
|
address_line_1: "address_line_1";
|
|
734
736
|
zip_code: "zip_code";
|
|
@@ -742,9 +744,7 @@ declare const NullableRecordFieldFormatSchema: z.ZodNullable<z.ZodEnum<{
|
|
|
742
744
|
url: "url";
|
|
743
745
|
datetime: "datetime";
|
|
744
746
|
currency: "currency";
|
|
745
|
-
date: "date";
|
|
746
747
|
text: "text";
|
|
747
|
-
int: "int";
|
|
748
748
|
decimal: "decimal";
|
|
749
749
|
percent: "percent";
|
|
750
750
|
}>>;
|
|
@@ -754,11 +754,13 @@ declare const FieldAnnotationSchema: z.ZodObject<{
|
|
|
754
754
|
string: "string";
|
|
755
755
|
number: "number";
|
|
756
756
|
boolean: "boolean";
|
|
757
|
-
json: "json";
|
|
758
757
|
unknown: "unknown";
|
|
758
|
+
json: "json";
|
|
759
759
|
}>;
|
|
760
760
|
label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
761
761
|
format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
762
|
+
int: "int";
|
|
763
|
+
date: "date";
|
|
762
764
|
email: "email";
|
|
763
765
|
address_line_1: "address_line_1";
|
|
764
766
|
zip_code: "zip_code";
|
|
@@ -772,9 +774,7 @@ declare const FieldAnnotationSchema: z.ZodObject<{
|
|
|
772
774
|
url: "url";
|
|
773
775
|
datetime: "datetime";
|
|
774
776
|
currency: "currency";
|
|
775
|
-
date: "date";
|
|
776
777
|
text: "text";
|
|
777
|
-
int: "int";
|
|
778
778
|
decimal: "decimal";
|
|
779
779
|
percent: "percent";
|
|
780
780
|
}>>>;
|
|
@@ -789,11 +789,13 @@ declare const FieldAnnotationsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
789
789
|
string: "string";
|
|
790
790
|
number: "number";
|
|
791
791
|
boolean: "boolean";
|
|
792
|
-
json: "json";
|
|
793
792
|
unknown: "unknown";
|
|
793
|
+
json: "json";
|
|
794
794
|
}>;
|
|
795
795
|
label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
796
796
|
format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
797
|
+
int: "int";
|
|
798
|
+
date: "date";
|
|
797
799
|
email: "email";
|
|
798
800
|
address_line_1: "address_line_1";
|
|
799
801
|
zip_code: "zip_code";
|
|
@@ -807,9 +809,7 @@ declare const FieldAnnotationsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
807
809
|
url: "url";
|
|
808
810
|
datetime: "datetime";
|
|
809
811
|
currency: "currency";
|
|
810
|
-
date: "date";
|
|
811
812
|
text: "text";
|
|
812
|
-
int: "int";
|
|
813
813
|
decimal: "decimal";
|
|
814
814
|
percent: "percent";
|
|
815
815
|
}>>>;
|
|
@@ -1002,8 +1002,8 @@ declare const RecordFieldSchema: z.ZodObject<{
|
|
|
1002
1002
|
string: "string";
|
|
1003
1003
|
number: "number";
|
|
1004
1004
|
boolean: "boolean";
|
|
1005
|
-
json: "json";
|
|
1006
1005
|
unknown: "unknown";
|
|
1006
|
+
json: "json";
|
|
1007
1007
|
}>;
|
|
1008
1008
|
reason: z.ZodNullable<z.ZodObject<{
|
|
1009
1009
|
code: z.ZodString;
|
|
@@ -1308,6 +1308,8 @@ declare const RecordFieldSchema: z.ZodObject<{
|
|
|
1308
1308
|
}, z.core.$strip>>>;
|
|
1309
1309
|
}, z.core.$strip>>;
|
|
1310
1310
|
format: z.ZodNullable<z.ZodEnum<{
|
|
1311
|
+
int: "int";
|
|
1312
|
+
date: "date";
|
|
1311
1313
|
email: "email";
|
|
1312
1314
|
address_line_1: "address_line_1";
|
|
1313
1315
|
zip_code: "zip_code";
|
|
@@ -1321,9 +1323,7 @@ declare const RecordFieldSchema: z.ZodObject<{
|
|
|
1321
1323
|
url: "url";
|
|
1322
1324
|
datetime: "datetime";
|
|
1323
1325
|
currency: "currency";
|
|
1324
|
-
date: "date";
|
|
1325
1326
|
text: "text";
|
|
1326
|
-
int: "int";
|
|
1327
1327
|
decimal: "decimal";
|
|
1328
1328
|
percent: "percent";
|
|
1329
1329
|
}>>;
|
|
@@ -1341,10 +1341,12 @@ declare const ExpandedFieldValueSchema: z.ZodObject<{
|
|
|
1341
1341
|
string: "string";
|
|
1342
1342
|
number: "number";
|
|
1343
1343
|
boolean: "boolean";
|
|
1344
|
-
json: "json";
|
|
1345
1344
|
unknown: "unknown";
|
|
1345
|
+
json: "json";
|
|
1346
1346
|
}>>;
|
|
1347
1347
|
format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
1348
|
+
int: "int";
|
|
1349
|
+
date: "date";
|
|
1348
1350
|
email: "email";
|
|
1349
1351
|
address_line_1: "address_line_1";
|
|
1350
1352
|
zip_code: "zip_code";
|
|
@@ -1358,9 +1360,7 @@ declare const ExpandedFieldValueSchema: z.ZodObject<{
|
|
|
1358
1360
|
url: "url";
|
|
1359
1361
|
datetime: "datetime";
|
|
1360
1362
|
currency: "currency";
|
|
1361
|
-
date: "date";
|
|
1362
1363
|
text: "text";
|
|
1363
|
-
int: "int";
|
|
1364
1364
|
decimal: "decimal";
|
|
1365
1365
|
percent: "percent";
|
|
1366
1366
|
}>>>;
|
|
@@ -1675,10 +1675,12 @@ declare const PipesInputSchema: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.
|
|
|
1675
1675
|
string: "string";
|
|
1676
1676
|
number: "number";
|
|
1677
1677
|
boolean: "boolean";
|
|
1678
|
-
json: "json";
|
|
1679
1678
|
unknown: "unknown";
|
|
1679
|
+
json: "json";
|
|
1680
1680
|
}>>;
|
|
1681
1681
|
format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
1682
|
+
int: "int";
|
|
1683
|
+
date: "date";
|
|
1682
1684
|
email: "email";
|
|
1683
1685
|
address_line_1: "address_line_1";
|
|
1684
1686
|
zip_code: "zip_code";
|
|
@@ -1692,9 +1694,7 @@ declare const PipesInputSchema: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.
|
|
|
1692
1694
|
url: "url";
|
|
1693
1695
|
datetime: "datetime";
|
|
1694
1696
|
currency: "currency";
|
|
1695
|
-
date: "date";
|
|
1696
1697
|
text: "text";
|
|
1697
|
-
int: "int";
|
|
1698
1698
|
decimal: "decimal";
|
|
1699
1699
|
percent: "percent";
|
|
1700
1700
|
}>>>;
|
|
@@ -2006,8 +2006,8 @@ declare const RecordSchema: z.ZodObject<{
|
|
|
2006
2006
|
string: "string";
|
|
2007
2007
|
number: "number";
|
|
2008
2008
|
boolean: "boolean";
|
|
2009
|
-
json: "json";
|
|
2010
2009
|
unknown: "unknown";
|
|
2010
|
+
json: "json";
|
|
2011
2011
|
}>;
|
|
2012
2012
|
reason: z.ZodNullable<z.ZodObject<{
|
|
2013
2013
|
code: z.ZodString;
|
|
@@ -2312,6 +2312,8 @@ declare const RecordSchema: z.ZodObject<{
|
|
|
2312
2312
|
}, z.core.$strip>>>;
|
|
2313
2313
|
}, z.core.$strip>>;
|
|
2314
2314
|
format: z.ZodNullable<z.ZodEnum<{
|
|
2315
|
+
int: "int";
|
|
2316
|
+
date: "date";
|
|
2315
2317
|
email: "email";
|
|
2316
2318
|
address_line_1: "address_line_1";
|
|
2317
2319
|
zip_code: "zip_code";
|
|
@@ -2325,9 +2327,7 @@ declare const RecordSchema: z.ZodObject<{
|
|
|
2325
2327
|
url: "url";
|
|
2326
2328
|
datetime: "datetime";
|
|
2327
2329
|
currency: "currency";
|
|
2328
|
-
date: "date";
|
|
2329
2330
|
text: "text";
|
|
2330
|
-
int: "int";
|
|
2331
2331
|
decimal: "decimal";
|
|
2332
2332
|
percent: "percent";
|
|
2333
2333
|
}>>;
|
|
@@ -2344,8 +2344,8 @@ declare const PipesFieldDefinitionSchema: z.ZodObject<{
|
|
|
2344
2344
|
string: "string";
|
|
2345
2345
|
number: "number";
|
|
2346
2346
|
boolean: "boolean";
|
|
2347
|
-
json: "json";
|
|
2348
2347
|
unknown: "unknown";
|
|
2348
|
+
json: "json";
|
|
2349
2349
|
}>;
|
|
2350
2350
|
label: z.ZodString;
|
|
2351
2351
|
added_by: z.ZodObject<{
|
|
@@ -2433,6 +2433,8 @@ declare const PipesFieldDefinitionSchema: z.ZodObject<{
|
|
|
2433
2433
|
pipe_index: z.ZodNullable<z.ZodNumber>;
|
|
2434
2434
|
}, z.core.$strip>;
|
|
2435
2435
|
format: z.ZodNullable<z.ZodEnum<{
|
|
2436
|
+
int: "int";
|
|
2437
|
+
date: "date";
|
|
2436
2438
|
email: "email";
|
|
2437
2439
|
address_line_1: "address_line_1";
|
|
2438
2440
|
zip_code: "zip_code";
|
|
@@ -2446,9 +2448,7 @@ declare const PipesFieldDefinitionSchema: z.ZodObject<{
|
|
|
2446
2448
|
url: "url";
|
|
2447
2449
|
datetime: "datetime";
|
|
2448
2450
|
currency: "currency";
|
|
2449
|
-
date: "date";
|
|
2450
2451
|
text: "text";
|
|
2451
|
-
int: "int";
|
|
2452
2452
|
decimal: "decimal";
|
|
2453
2453
|
percent: "percent";
|
|
2454
2454
|
}>>;
|
|
@@ -2463,8 +2463,8 @@ declare const PipesFieldDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<
|
|
|
2463
2463
|
string: "string";
|
|
2464
2464
|
number: "number";
|
|
2465
2465
|
boolean: "boolean";
|
|
2466
|
-
json: "json";
|
|
2467
2466
|
unknown: "unknown";
|
|
2467
|
+
json: "json";
|
|
2468
2468
|
}>;
|
|
2469
2469
|
label: z.ZodString;
|
|
2470
2470
|
added_by: z.ZodObject<{
|
|
@@ -2552,6 +2552,8 @@ declare const PipesFieldDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<
|
|
|
2552
2552
|
pipe_index: z.ZodNullable<z.ZodNumber>;
|
|
2553
2553
|
}, z.core.$strip>;
|
|
2554
2554
|
format: z.ZodNullable<z.ZodEnum<{
|
|
2555
|
+
int: "int";
|
|
2556
|
+
date: "date";
|
|
2555
2557
|
email: "email";
|
|
2556
2558
|
address_line_1: "address_line_1";
|
|
2557
2559
|
zip_code: "zip_code";
|
|
@@ -2565,9 +2567,7 @@ declare const PipesFieldDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<
|
|
|
2565
2567
|
url: "url";
|
|
2566
2568
|
datetime: "datetime";
|
|
2567
2569
|
currency: "currency";
|
|
2568
|
-
date: "date";
|
|
2569
2570
|
text: "text";
|
|
2570
|
-
int: "int";
|
|
2571
2571
|
decimal: "decimal";
|
|
2572
2572
|
percent: "percent";
|
|
2573
2573
|
}>>;
|
|
@@ -2581,6 +2581,8 @@ declare const JSONExtractSchema: z.ZodObject<{
|
|
|
2581
2581
|
output_field: z.ZodObject<{
|
|
2582
2582
|
name: z.ZodString;
|
|
2583
2583
|
format: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
2584
|
+
int: "int";
|
|
2585
|
+
date: "date";
|
|
2584
2586
|
email: "email";
|
|
2585
2587
|
address_line_1: "address_line_1";
|
|
2586
2588
|
zip_code: "zip_code";
|
|
@@ -2594,9 +2596,7 @@ declare const JSONExtractSchema: z.ZodObject<{
|
|
|
2594
2596
|
url: "url";
|
|
2595
2597
|
datetime: "datetime";
|
|
2596
2598
|
currency: "currency";
|
|
2597
|
-
date: "date";
|
|
2598
2599
|
text: "text";
|
|
2599
|
-
int: "int";
|
|
2600
2600
|
decimal: "decimal";
|
|
2601
2601
|
percent: "percent";
|
|
2602
2602
|
}>>>;
|
|
@@ -2605,8 +2605,8 @@ declare const JSONExtractSchema: z.ZodObject<{
|
|
|
2605
2605
|
string: "string";
|
|
2606
2606
|
number: "number";
|
|
2607
2607
|
boolean: "boolean";
|
|
2608
|
-
json: "json";
|
|
2609
2608
|
unknown: "unknown";
|
|
2609
|
+
json: "json";
|
|
2610
2610
|
}>;
|
|
2611
2611
|
}, z.core.$strip>;
|
|
2612
2612
|
}, z.core.$strip>>;
|
|
@@ -2729,6 +2729,8 @@ type PipeRunIf = z.infer<typeof PipeRunIfSchema>;
|
|
|
2729
2729
|
//#endregion
|
|
2730
2730
|
//#region src/utils/schemas.d.ts
|
|
2731
2731
|
declare const FieldNameSchema: z.ZodEnum<{
|
|
2732
|
+
spending_trend: "spending_trend";
|
|
2733
|
+
technology_list: "technology_list";
|
|
2732
2734
|
company_description: "company_description";
|
|
2733
2735
|
cleaned_company_name: "cleaned_company_name";
|
|
2734
2736
|
company_industry: "company_industry";
|
|
@@ -2736,8 +2738,6 @@ declare const FieldNameSchema: z.ZodEnum<{
|
|
|
2736
2738
|
location_hint: "location_hint";
|
|
2737
2739
|
estimated_revenue: "estimated_revenue";
|
|
2738
2740
|
founded_year: "founded_year";
|
|
2739
|
-
technology_list: "technology_list";
|
|
2740
|
-
spending_trend: "spending_trend";
|
|
2741
2741
|
technology_match_builtwith: "technology_match_builtwith";
|
|
2742
2742
|
number_of_social_followers: "number_of_social_followers";
|
|
2743
2743
|
email: "email";
|
|
@@ -12307,8 +12307,8 @@ declare const StoreOptionSchema: z.ZodObject<{
|
|
|
12307
12307
|
icon: z.ZodOptional<z.ZodObject<{
|
|
12308
12308
|
key: z.ZodEnum<{
|
|
12309
12309
|
output: "output";
|
|
12310
|
-
text: "text";
|
|
12311
12310
|
input: "input";
|
|
12311
|
+
text: "text";
|
|
12312
12312
|
code: "code";
|
|
12313
12313
|
filter: "filter";
|
|
12314
12314
|
search: "search";
|
|
@@ -12406,8 +12406,8 @@ declare const FormStoreSchema: z.ZodObject<{
|
|
|
12406
12406
|
icon: z.ZodOptional<z.ZodObject<{
|
|
12407
12407
|
key: z.ZodEnum<{
|
|
12408
12408
|
output: "output";
|
|
12409
|
-
text: "text";
|
|
12410
12409
|
input: "input";
|
|
12410
|
+
text: "text";
|
|
12411
12411
|
code: "code";
|
|
12412
12412
|
filter: "filter";
|
|
12413
12413
|
search: "search";
|
|
@@ -14435,10 +14435,12 @@ declare const SearchResultFieldSchema: z$1.ZodObject<{
|
|
|
14435
14435
|
string: "string";
|
|
14436
14436
|
number: "number";
|
|
14437
14437
|
boolean: "boolean";
|
|
14438
|
-
json: "json";
|
|
14439
14438
|
unknown: "unknown";
|
|
14439
|
+
json: "json";
|
|
14440
14440
|
}>>;
|
|
14441
14441
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
14442
|
+
int: "int";
|
|
14443
|
+
date: "date";
|
|
14442
14444
|
email: "email";
|
|
14443
14445
|
address_line_1: "address_line_1";
|
|
14444
14446
|
zip_code: "zip_code";
|
|
@@ -14452,9 +14454,7 @@ declare const SearchResultFieldSchema: z$1.ZodObject<{
|
|
|
14452
14454
|
url: "url";
|
|
14453
14455
|
datetime: "datetime";
|
|
14454
14456
|
currency: "currency";
|
|
14455
|
-
date: "date";
|
|
14456
14457
|
text: "text";
|
|
14457
|
-
int: "int";
|
|
14458
14458
|
decimal: "decimal";
|
|
14459
14459
|
percent: "percent";
|
|
14460
14460
|
}>>>;
|
|
@@ -14680,10 +14680,12 @@ declare const SearchResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable<z
|
|
|
14680
14680
|
string: "string";
|
|
14681
14681
|
number: "number";
|
|
14682
14682
|
boolean: "boolean";
|
|
14683
|
-
json: "json";
|
|
14684
14683
|
unknown: "unknown";
|
|
14684
|
+
json: "json";
|
|
14685
14685
|
}>>;
|
|
14686
14686
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
14687
|
+
int: "int";
|
|
14688
|
+
date: "date";
|
|
14687
14689
|
email: "email";
|
|
14688
14690
|
address_line_1: "address_line_1";
|
|
14689
14691
|
zip_code: "zip_code";
|
|
@@ -14697,9 +14699,7 @@ declare const SearchResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable<z
|
|
|
14697
14699
|
url: "url";
|
|
14698
14700
|
datetime: "datetime";
|
|
14699
14701
|
currency: "currency";
|
|
14700
|
-
date: "date";
|
|
14701
14702
|
text: "text";
|
|
14702
|
-
int: "int";
|
|
14703
14703
|
decimal: "decimal";
|
|
14704
14704
|
percent: "percent";
|
|
14705
14705
|
}>>>;
|
|
@@ -15772,10 +15772,12 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
15772
15772
|
string: "string";
|
|
15773
15773
|
number: "number";
|
|
15774
15774
|
boolean: "boolean";
|
|
15775
|
-
json: "json";
|
|
15776
15775
|
unknown: "unknown";
|
|
15776
|
+
json: "json";
|
|
15777
15777
|
}>>;
|
|
15778
15778
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
15779
|
+
int: "int";
|
|
15780
|
+
date: "date";
|
|
15779
15781
|
email: "email";
|
|
15780
15782
|
address_line_1: "address_line_1";
|
|
15781
15783
|
zip_code: "zip_code";
|
|
@@ -15789,9 +15791,7 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
15789
15791
|
url: "url";
|
|
15790
15792
|
datetime: "datetime";
|
|
15791
15793
|
currency: "currency";
|
|
15792
|
-
date: "date";
|
|
15793
15794
|
text: "text";
|
|
15794
|
-
int: "int";
|
|
15795
15795
|
decimal: "decimal";
|
|
15796
15796
|
percent: "percent";
|
|
15797
15797
|
}>>>;
|
|
@@ -19108,10 +19108,12 @@ declare const SearchesResultFieldSchema: z$1.ZodObject<{
|
|
|
19108
19108
|
string: "string";
|
|
19109
19109
|
number: "number";
|
|
19110
19110
|
boolean: "boolean";
|
|
19111
|
-
json: "json";
|
|
19112
19111
|
unknown: "unknown";
|
|
19112
|
+
json: "json";
|
|
19113
19113
|
}>>;
|
|
19114
19114
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
19115
|
+
int: "int";
|
|
19116
|
+
date: "date";
|
|
19115
19117
|
email: "email";
|
|
19116
19118
|
address_line_1: "address_line_1";
|
|
19117
19119
|
zip_code: "zip_code";
|
|
@@ -19125,9 +19127,7 @@ declare const SearchesResultFieldSchema: z$1.ZodObject<{
|
|
|
19125
19127
|
url: "url";
|
|
19126
19128
|
datetime: "datetime";
|
|
19127
19129
|
currency: "currency";
|
|
19128
|
-
date: "date";
|
|
19129
19130
|
text: "text";
|
|
19130
|
-
int: "int";
|
|
19131
19131
|
decimal: "decimal";
|
|
19132
19132
|
percent: "percent";
|
|
19133
19133
|
}>>>;
|
|
@@ -19353,10 +19353,12 @@ declare const SearchesResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable
|
|
|
19353
19353
|
string: "string";
|
|
19354
19354
|
number: "number";
|
|
19355
19355
|
boolean: "boolean";
|
|
19356
|
-
json: "json";
|
|
19357
19356
|
unknown: "unknown";
|
|
19357
|
+
json: "json";
|
|
19358
19358
|
}>>;
|
|
19359
19359
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
19360
|
+
int: "int";
|
|
19361
|
+
date: "date";
|
|
19360
19362
|
email: "email";
|
|
19361
19363
|
address_line_1: "address_line_1";
|
|
19362
19364
|
zip_code: "zip_code";
|
|
@@ -19370,9 +19372,7 @@ declare const SearchesResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable
|
|
|
19370
19372
|
url: "url";
|
|
19371
19373
|
datetime: "datetime";
|
|
19372
19374
|
currency: "currency";
|
|
19373
|
-
date: "date";
|
|
19374
19375
|
text: "text";
|
|
19375
|
-
int: "int";
|
|
19376
19376
|
decimal: "decimal";
|
|
19377
19377
|
percent: "percent";
|
|
19378
19378
|
}>>>;
|
|
@@ -19648,10 +19648,12 @@ declare const SearchesResponseSchema: z$1.ZodObject<{
|
|
|
19648
19648
|
string: "string";
|
|
19649
19649
|
number: "number";
|
|
19650
19650
|
boolean: "boolean";
|
|
19651
|
-
json: "json";
|
|
19652
19651
|
unknown: "unknown";
|
|
19652
|
+
json: "json";
|
|
19653
19653
|
}>>;
|
|
19654
19654
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
19655
|
+
int: "int";
|
|
19656
|
+
date: "date";
|
|
19655
19657
|
email: "email";
|
|
19656
19658
|
address_line_1: "address_line_1";
|
|
19657
19659
|
zip_code: "zip_code";
|
|
@@ -19665,9 +19667,7 @@ declare const SearchesResponseSchema: z$1.ZodObject<{
|
|
|
19665
19667
|
url: "url";
|
|
19666
19668
|
datetime: "datetime";
|
|
19667
19669
|
currency: "currency";
|
|
19668
|
-
date: "date";
|
|
19669
19670
|
text: "text";
|
|
19670
|
-
int: "int";
|
|
19671
19671
|
decimal: "decimal";
|
|
19672
19672
|
percent: "percent";
|
|
19673
19673
|
}>>>;
|
|
@@ -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: "spending_trend" | "technology_list" | "company_description" | "cleaned_company_name" | "company_industry" | "company_region" | "location_hint" | "estimated_revenue" | "founded_year" | "technology_match_builtwith" | "number_of_social_followers" | "email" | "personal_email" | "alternate_personal_emails" | "company_news_summary" | "work_email" | "headcount" | "company_website_url" | "company_domain" | "company_name" | "first_name" | "addressee_name" | "address_line_1" | "address_line_2" | "job_title" | "job_description" | "profile_headline" | "address_city" | "address_country" | "address_state" | "zip_code" | "last_name" | "is_work_email" | "companyenrich_match" | "companyenrich_matches" | "name" | "ip_address" | "skills" | "avatar_url" | "estimated_salary" | "is_email_valid" | "profile_url" | "company_profile_url" | "profile_posts" | "clado_person_match" | "clado_person_match_v2" | "icypeas_person_match" | "icypeas_company_match" | "clado_person_profile" | "resend_email_success" | "email_body" | "email_subject" | "profile" | "mobile" | "landline" | "phone" | "message" | "slack_message_success" | "funding_history" | "funding_total_usd" | "template_output" | "gmail_email_success" | "zerobounce_validation_status" | "zerobounce_validation_match" | "leadmagic_competitor_list" | "leadmagic_acquisition_history" | "leadmagic_company_news_list" | "merge_result" | "mapped_links" | "website_markdown" | "website_html" | "website_url" | "urls" | "website_links" | "firecrawl_extract_result" | "exa_match_evaluation" | "email_validation_status" | "million_validation_match" | "scrape_list_response" | "resend_contact_id" | "sheet_record_id" | "sheet_record_ids" | "input_objects" | "role_finder_match" | "logodev_describe_match" | "logo_url" | "crustdata_company_match" | "crustdata_companyenrich_match" | "crustdata_person_match" | "post_list_string" | "crustdata_post_list" | "crustdata_profile_match_score" | "amplemarket_person_match" | "amplemarket_company_match" | "created_sheet" | "sheet" | "string_input" | "domain" | "url_input" | "slugified" | "http_response_status" | "http_response_body" | "http_response_headers" | "professional_profile_url" | "professional_profile" | "company_social_url" | "mobile_number";
|
|
21299
21299
|
enabled: boolean;
|
|
21300
|
-
type: "string" | "number" | "boolean" | "
|
|
21301
|
-
format: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "currency" | "text" | "
|
|
21300
|
+
type: "string" | "number" | "boolean" | "unknown" | "json" | ((_lazyContext: LazyResolveContext) => RecordFieldType);
|
|
21301
|
+
format: "int" | "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "currency" | "text" | "decimal" | "percent" | ((_lazyContext: LazyResolveContext) => RecordFieldFormat) | null;
|
|
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,6 +26730,8 @@ declare const pipePayloadSchemaCatalog: {
|
|
|
26730
26730
|
output_field: z.ZodObject<{
|
|
26731
26731
|
name: z.ZodString;
|
|
26732
26732
|
format: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
26733
|
+
int: "int";
|
|
26734
|
+
date: "date";
|
|
26733
26735
|
email: "email";
|
|
26734
26736
|
address_line_1: "address_line_1";
|
|
26735
26737
|
zip_code: "zip_code";
|
|
@@ -26743,9 +26745,7 @@ declare const pipePayloadSchemaCatalog: {
|
|
|
26743
26745
|
url: "url";
|
|
26744
26746
|
datetime: "datetime";
|
|
26745
26747
|
currency: "currency";
|
|
26746
|
-
date: "date";
|
|
26747
26748
|
text: "text";
|
|
26748
|
-
int: "int";
|
|
26749
26749
|
decimal: "decimal";
|
|
26750
26750
|
percent: "percent";
|
|
26751
26751
|
}>>>;
|
|
@@ -26754,8 +26754,8 @@ declare const pipePayloadSchemaCatalog: {
|
|
|
26754
26754
|
string: "string";
|
|
26755
26755
|
number: "number";
|
|
26756
26756
|
boolean: "boolean";
|
|
26757
|
-
json: "json";
|
|
26758
26757
|
unknown: "unknown";
|
|
26758
|
+
json: "json";
|
|
26759
26759
|
}>;
|
|
26760
26760
|
}, z.core.$strip>;
|
|
26761
26761
|
}, z.core.$strip>>;
|
|
@@ -32189,6 +32189,8 @@ declare function getPipePayloadSchema(pipeId: PipeId): z.ZodObject<{
|
|
|
32189
32189
|
output_field: z.ZodObject<{
|
|
32190
32190
|
name: z.ZodString;
|
|
32191
32191
|
format: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
32192
|
+
int: "int";
|
|
32193
|
+
date: "date";
|
|
32192
32194
|
email: "email";
|
|
32193
32195
|
address_line_1: "address_line_1";
|
|
32194
32196
|
zip_code: "zip_code";
|
|
@@ -32202,9 +32204,7 @@ declare function getPipePayloadSchema(pipeId: PipeId): z.ZodObject<{
|
|
|
32202
32204
|
url: "url";
|
|
32203
32205
|
datetime: "datetime";
|
|
32204
32206
|
currency: "currency";
|
|
32205
|
-
date: "date";
|
|
32206
32207
|
text: "text";
|
|
32207
|
-
int: "int";
|
|
32208
32208
|
decimal: "decimal";
|
|
32209
32209
|
percent: "percent";
|
|
32210
32210
|
}>>>;
|
|
@@ -32213,8 +32213,8 @@ declare function getPipePayloadSchema(pipeId: PipeId): z.ZodObject<{
|
|
|
32213
32213
|
string: "string";
|
|
32214
32214
|
number: "number";
|
|
32215
32215
|
boolean: "boolean";
|
|
32216
|
-
json: "json";
|
|
32217
32216
|
unknown: "unknown";
|
|
32217
|
+
json: "json";
|
|
32218
32218
|
}>;
|
|
32219
32219
|
}, z.core.$strip>;
|
|
32220
32220
|
}, z.core.$strip>>;
|
|
@@ -35952,8 +35952,8 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
35952
35952
|
string: "string";
|
|
35953
35953
|
number: "number";
|
|
35954
35954
|
boolean: "boolean";
|
|
35955
|
-
json: "json";
|
|
35956
35955
|
unknown: "unknown";
|
|
35956
|
+
json: "json";
|
|
35957
35957
|
}>;
|
|
35958
35958
|
label: z.ZodString;
|
|
35959
35959
|
added_by: z.ZodObject<{
|
|
@@ -36041,6 +36041,8 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
36041
36041
|
pipe_index: z.ZodNullable<z.ZodNumber>;
|
|
36042
36042
|
}, z.core.$strip>;
|
|
36043
36043
|
format: z.ZodNullable<z.ZodEnum<{
|
|
36044
|
+
int: "int";
|
|
36045
|
+
date: "date";
|
|
36044
36046
|
email: "email";
|
|
36045
36047
|
address_line_1: "address_line_1";
|
|
36046
36048
|
zip_code: "zip_code";
|
|
@@ -36054,9 +36056,7 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
36054
36056
|
url: "url";
|
|
36055
36057
|
datetime: "datetime";
|
|
36056
36058
|
currency: "currency";
|
|
36057
|
-
date: "date";
|
|
36058
36059
|
text: "text";
|
|
36059
|
-
int: "int";
|
|
36060
36060
|
decimal: "decimal";
|
|
36061
36061
|
percent: "percent";
|
|
36062
36062
|
}>>;
|
|
@@ -36076,8 +36076,8 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
36076
36076
|
string: "string";
|
|
36077
36077
|
number: "number";
|
|
36078
36078
|
boolean: "boolean";
|
|
36079
|
-
json: "json";
|
|
36080
36079
|
unknown: "unknown";
|
|
36080
|
+
json: "json";
|
|
36081
36081
|
}>;
|
|
36082
36082
|
reason: z.ZodNullable<z.ZodObject<{
|
|
36083
36083
|
code: z.ZodString;
|
|
@@ -36382,6 +36382,8 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
36382
36382
|
}, z.core.$strip>>>;
|
|
36383
36383
|
}, z.core.$strip>>;
|
|
36384
36384
|
format: z.ZodNullable<z.ZodEnum<{
|
|
36385
|
+
int: "int";
|
|
36386
|
+
date: "date";
|
|
36385
36387
|
email: "email";
|
|
36386
36388
|
address_line_1: "address_line_1";
|
|
36387
36389
|
zip_code: "zip_code";
|
|
@@ -36395,9 +36397,7 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
36395
36397
|
url: "url";
|
|
36396
36398
|
datetime: "datetime";
|
|
36397
36399
|
currency: "currency";
|
|
36398
|
-
date: "date";
|
|
36399
36400
|
text: "text";
|
|
36400
|
-
int: "int";
|
|
36401
36401
|
decimal: "decimal";
|
|
36402
36402
|
percent: "percent";
|
|
36403
36403
|
}>>;
|
|
@@ -36461,11 +36461,13 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
36461
36461
|
string: "string";
|
|
36462
36462
|
number: "number";
|
|
36463
36463
|
boolean: "boolean";
|
|
36464
|
-
json: "json";
|
|
36465
36464
|
unknown: "unknown";
|
|
36465
|
+
json: "json";
|
|
36466
36466
|
}>;
|
|
36467
36467
|
label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
36468
36468
|
format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
36469
|
+
int: "int";
|
|
36470
|
+
date: "date";
|
|
36469
36471
|
email: "email";
|
|
36470
36472
|
address_line_1: "address_line_1";
|
|
36471
36473
|
zip_code: "zip_code";
|
|
@@ -36479,9 +36481,7 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
36479
36481
|
url: "url";
|
|
36480
36482
|
datetime: "datetime";
|
|
36481
36483
|
currency: "currency";
|
|
36482
|
-
date: "date";
|
|
36483
36484
|
text: "text";
|
|
36484
|
-
int: "int";
|
|
36485
36485
|
decimal: "decimal";
|
|
36486
36486
|
percent: "percent";
|
|
36487
36487
|
}>>>;
|
|
@@ -38173,6 +38173,8 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
38173
38173
|
output_field: z.ZodObject<{
|
|
38174
38174
|
name: z.ZodString;
|
|
38175
38175
|
format: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
38176
|
+
int: "int";
|
|
38177
|
+
date: "date";
|
|
38176
38178
|
email: "email";
|
|
38177
38179
|
address_line_1: "address_line_1";
|
|
38178
38180
|
zip_code: "zip_code";
|
|
@@ -38186,9 +38188,7 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
38186
38188
|
url: "url";
|
|
38187
38189
|
datetime: "datetime";
|
|
38188
38190
|
currency: "currency";
|
|
38189
|
-
date: "date";
|
|
38190
38191
|
text: "text";
|
|
38191
|
-
int: "int";
|
|
38192
38192
|
decimal: "decimal";
|
|
38193
38193
|
percent: "percent";
|
|
38194
38194
|
}>>>;
|
|
@@ -38197,8 +38197,8 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
38197
38197
|
string: "string";
|
|
38198
38198
|
number: "number";
|
|
38199
38199
|
boolean: "boolean";
|
|
38200
|
-
json: "json";
|
|
38201
38200
|
unknown: "unknown";
|
|
38201
|
+
json: "json";
|
|
38202
38202
|
}>;
|
|
38203
38203
|
}, z.core.$strip>;
|
|
38204
38204
|
}, z.core.$strip>>;
|
|
@@ -41898,10 +41898,12 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
41898
41898
|
string: "string";
|
|
41899
41899
|
number: "number";
|
|
41900
41900
|
boolean: "boolean";
|
|
41901
|
-
json: "json";
|
|
41902
41901
|
unknown: "unknown";
|
|
41902
|
+
json: "json";
|
|
41903
41903
|
}>>;
|
|
41904
41904
|
format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
41905
|
+
int: "int";
|
|
41906
|
+
date: "date";
|
|
41905
41907
|
email: "email";
|
|
41906
41908
|
address_line_1: "address_line_1";
|
|
41907
41909
|
zip_code: "zip_code";
|
|
@@ -41915,9 +41917,7 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
41915
41917
|
url: "url";
|
|
41916
41918
|
datetime: "datetime";
|
|
41917
41919
|
currency: "currency";
|
|
41918
|
-
date: "date";
|
|
41919
41920
|
text: "text";
|
|
41920
|
-
int: "int";
|
|
41921
41921
|
decimal: "decimal";
|
|
41922
41922
|
percent: "percent";
|
|
41923
41923
|
}>>>;
|
|
@@ -42760,6 +42760,8 @@ declare const pipesJsonExtractionInput: () => z.ZodObject<{
|
|
|
42760
42760
|
output_field: z.ZodObject<{
|
|
42761
42761
|
name: z.ZodString;
|
|
42762
42762
|
format: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
42763
|
+
int: "int";
|
|
42764
|
+
date: "date";
|
|
42763
42765
|
email: "email";
|
|
42764
42766
|
address_line_1: "address_line_1";
|
|
42765
42767
|
zip_code: "zip_code";
|
|
@@ -42773,9 +42775,7 @@ declare const pipesJsonExtractionInput: () => z.ZodObject<{
|
|
|
42773
42775
|
url: "url";
|
|
42774
42776
|
datetime: "datetime";
|
|
42775
42777
|
currency: "currency";
|
|
42776
|
-
date: "date";
|
|
42777
42778
|
text: "text";
|
|
42778
|
-
int: "int";
|
|
42779
42779
|
decimal: "decimal";
|
|
42780
42780
|
percent: "percent";
|
|
42781
42781
|
}>>>;
|
|
@@ -42784,8 +42784,8 @@ declare const pipesJsonExtractionInput: () => z.ZodObject<{
|
|
|
42784
42784
|
string: "string";
|
|
42785
42785
|
number: "number";
|
|
42786
42786
|
boolean: "boolean";
|
|
42787
|
-
json: "json";
|
|
42788
42787
|
unknown: "unknown";
|
|
42788
|
+
json: "json";
|
|
42789
42789
|
}>;
|
|
42790
42790
|
}, z.core.$strip>;
|
|
42791
42791
|
}, z.core.$strip>>;
|
|
@@ -44804,7 +44804,7 @@ declare function markRecordFieldAsComplete({
|
|
|
44804
44804
|
}): {
|
|
44805
44805
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
44806
44806
|
status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
|
|
44807
|
-
type: "string" | "number" | "boolean" | "
|
|
44807
|
+
type: "string" | "number" | "boolean" | "unknown" | "json";
|
|
44808
44808
|
reason: {
|
|
44809
44809
|
code: string;
|
|
44810
44810
|
summary: string;
|
|
@@ -44820,7 +44820,7 @@ declare function markRecordFieldAsComplete({
|
|
|
44820
44820
|
config_hash: string | null;
|
|
44821
44821
|
input_hash: string | null;
|
|
44822
44822
|
} | null;
|
|
44823
|
-
format: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "
|
|
44823
|
+
format: "int" | "date" | "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null;
|
|
44824
44824
|
widgets?: {
|
|
44825
44825
|
display_value?: {
|
|
44826
44826
|
label?: string | undefined;
|
|
@@ -44868,7 +44868,7 @@ declare function markRecordFieldAsPending({
|
|
|
44868
44868
|
}): {
|
|
44869
44869
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
44870
44870
|
status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
|
|
44871
|
-
type: "string" | "number" | "boolean" | "
|
|
44871
|
+
type: "string" | "number" | "boolean" | "unknown" | "json";
|
|
44872
44872
|
reason: {
|
|
44873
44873
|
code: string;
|
|
44874
44874
|
summary: string;
|
|
@@ -44884,7 +44884,7 @@ declare function markRecordFieldAsPending({
|
|
|
44884
44884
|
config_hash: string | null;
|
|
44885
44885
|
input_hash: string | null;
|
|
44886
44886
|
} | null;
|
|
44887
|
-
format: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "
|
|
44887
|
+
format: "int" | "date" | "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null;
|
|
44888
44888
|
widgets?: {
|
|
44889
44889
|
display_value?: {
|
|
44890
44890
|
label?: string | undefined;
|
|
@@ -44938,7 +44938,7 @@ declare function markRecordFieldAsNoResult({
|
|
|
44938
44938
|
}): {
|
|
44939
44939
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
44940
44940
|
status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
|
|
44941
|
-
type: "string" | "number" | "boolean" | "
|
|
44941
|
+
type: "string" | "number" | "boolean" | "unknown" | "json";
|
|
44942
44942
|
reason: {
|
|
44943
44943
|
code: string;
|
|
44944
44944
|
summary: string;
|
|
@@ -44954,7 +44954,7 @@ declare function markRecordFieldAsNoResult({
|
|
|
44954
44954
|
config_hash: string | null;
|
|
44955
44955
|
input_hash: string | null;
|
|
44956
44956
|
} | null;
|
|
44957
|
-
format: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "
|
|
44957
|
+
format: "int" | "date" | "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null;
|
|
44958
44958
|
widgets?: {
|
|
44959
44959
|
display_value?: {
|
|
44960
44960
|
label?: string | undefined;
|
|
@@ -44998,7 +44998,7 @@ declare function markRecordFieldAsNoResult({
|
|
|
44998
44998
|
declare function markRecordFieldAsFailed(field: RecordField, reason: FieldReason, resolvedBy: RecordField["resolved_by"]): {
|
|
44999
44999
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
45000
45000
|
status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
|
|
45001
|
-
type: "string" | "number" | "boolean" | "
|
|
45001
|
+
type: "string" | "number" | "boolean" | "unknown" | "json";
|
|
45002
45002
|
reason: {
|
|
45003
45003
|
code: string;
|
|
45004
45004
|
summary: string;
|
|
@@ -45014,7 +45014,7 @@ declare function markRecordFieldAsFailed(field: RecordField, reason: FieldReason
|
|
|
45014
45014
|
config_hash: string | null;
|
|
45015
45015
|
input_hash: string | null;
|
|
45016
45016
|
} | null;
|
|
45017
|
-
format: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "
|
|
45017
|
+
format: "int" | "date" | "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null;
|
|
45018
45018
|
widgets?: {
|
|
45019
45019
|
display_value?: {
|
|
45020
45020
|
label?: string | undefined;
|
|
@@ -45058,7 +45058,7 @@ declare function markRecordFieldAsFailed(field: RecordField, reason: FieldReason
|
|
|
45058
45058
|
declare function markRecordFieldAsSkipped(field: RecordField, reason: FieldReason): {
|
|
45059
45059
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
45060
45060
|
status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
|
|
45061
|
-
type: "string" | "number" | "boolean" | "
|
|
45061
|
+
type: "string" | "number" | "boolean" | "unknown" | "json";
|
|
45062
45062
|
reason: {
|
|
45063
45063
|
code: string;
|
|
45064
45064
|
summary: string;
|
|
@@ -45074,7 +45074,7 @@ declare function markRecordFieldAsSkipped(field: RecordField, reason: FieldReaso
|
|
|
45074
45074
|
config_hash: string | null;
|
|
45075
45075
|
input_hash: string | null;
|
|
45076
45076
|
} | null;
|
|
45077
|
-
format: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "
|
|
45077
|
+
format: "int" | "date" | "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null;
|
|
45078
45078
|
widgets?: {
|
|
45079
45079
|
display_value?: {
|
|
45080
45080
|
label?: string | undefined;
|
|
@@ -45118,7 +45118,7 @@ declare function markRecordFieldAsSkipped(field: RecordField, reason: FieldReaso
|
|
|
45118
45118
|
declare function markRecordFieldAsProcessing(field: RecordField): {
|
|
45119
45119
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
45120
45120
|
status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
|
|
45121
|
-
type: "string" | "number" | "boolean" | "
|
|
45121
|
+
type: "string" | "number" | "boolean" | "unknown" | "json";
|
|
45122
45122
|
reason: {
|
|
45123
45123
|
code: string;
|
|
45124
45124
|
summary: string;
|
|
@@ -45134,7 +45134,7 @@ declare function markRecordFieldAsProcessing(field: RecordField): {
|
|
|
45134
45134
|
config_hash: string | null;
|
|
45135
45135
|
input_hash: string | null;
|
|
45136
45136
|
} | null;
|
|
45137
|
-
format: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "
|
|
45137
|
+
format: "int" | "date" | "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null;
|
|
45138
45138
|
widgets?: {
|
|
45139
45139
|
display_value?: {
|
|
45140
45140
|
label?: string | undefined;
|
|
@@ -45182,12 +45182,12 @@ declare function catalogInput(field: NamedFieldEntry, config: {
|
|
|
45182
45182
|
alias?: string | undefined;
|
|
45183
45183
|
}> | undefined;
|
|
45184
45184
|
} | null | undefined): {
|
|
45185
|
-
name: "
|
|
45185
|
+
name: "spending_trend" | "technology_list" | "company_description" | "cleaned_company_name" | "company_industry" | "company_region" | "location_hint" | "estimated_revenue" | "founded_year" | "technology_match_builtwith" | "number_of_social_followers" | "email" | "personal_email" | "alternate_personal_emails" | "company_news_summary" | "work_email" | "headcount" | "company_website_url" | "company_domain" | "company_name" | "first_name" | "addressee_name" | "address_line_1" | "address_line_2" | "job_title" | "job_description" | "profile_headline" | "address_city" | "address_country" | "address_state" | "zip_code" | "last_name" | "is_work_email" | "companyenrich_match" | "companyenrich_matches" | "name" | "ip_address" | "skills" | "avatar_url" | "estimated_salary" | "is_email_valid" | "profile_url" | "company_profile_url" | "profile_posts" | "clado_person_match" | "clado_person_match_v2" | "icypeas_person_match" | "icypeas_company_match" | "clado_person_profile" | "resend_email_success" | "email_body" | "email_subject" | "profile" | "mobile" | "landline" | "phone" | "message" | "slack_message_success" | "funding_history" | "funding_total_usd" | "template_output" | "gmail_email_success" | "zerobounce_validation_status" | "zerobounce_validation_match" | "leadmagic_competitor_list" | "leadmagic_acquisition_history" | "leadmagic_company_news_list" | "merge_result" | "mapped_links" | "website_markdown" | "website_html" | "website_url" | "urls" | "website_links" | "firecrawl_extract_result" | "exa_match_evaluation" | "email_validation_status" | "million_validation_match" | "scrape_list_response" | "resend_contact_id" | "sheet_record_id" | "sheet_record_ids" | "input_objects" | "role_finder_match" | "logodev_describe_match" | "logo_url" | "crustdata_company_match" | "crustdata_companyenrich_match" | "crustdata_person_match" | "post_list_string" | "crustdata_post_list" | "crustdata_profile_match_score" | "amplemarket_person_match" | "amplemarket_company_match" | "created_sheet" | "sheet" | "string_input" | "domain" | "url_input" | "slugified" | "http_response_status" | "http_response_body" | "http_response_headers" | "professional_profile_url" | "professional_profile" | "company_social_url" | "mobile_number";
|
|
45186
45186
|
description: "A summary of the main business purpose and objectives." | "The standardized and cleaned version of the company name, ensuring consistency across different entries." | "Markdown-formatted scrape of a website." | "A list of website links." | "HTML-formatted scrape of a website." | "Generic URL of a website." | "List of URLs" | "List of URLs scraped from a website" | "Fully enriched people profile" | "The industry in which the company operates." | "The region corresponding to the company's country." | "An optional hint to help pinpoint a person's or company's location." | "A list of the top competitors for a given company as provided by LeadMagic" | "A list of acquisitions by a given company" | "A list of company news" | "The estimated annual revenue of the company." | "List of corporate funding rounds." | "Amount of total known funding" | "The year the company was founded." | "A flat list of technologies used by a company" | "Technology spending trend over the last 2 years. Average deviation between measuring points in %." | "A datastructure containing the technologies used by this company" | "Social followers (or zero if not found)." | "Mobile telephone number of a person." | "A generic field for phone numbers. Can be mobile or landline." | "A landline phone number" | "Current job title of a person" | "Description of current job" | "A union field that can contain both professional and personal email addresses." | "The personal email address of a prospect." | "The personal email addresses that are associated with a prospect but less likely to be the primary email address of a prospect." | "Latest company news." | "Email address of a person connection to their place of employment." | "Total number of people employed in a particular organization" | "Website URL of a related company." | "Bare domain of a related company. Example: stripe.com (no scheme, no path)." | "Name of a company." | "Object returned from a Clado people search." | "Object returned from a Icypeas people search" | "First name of a person." | "Recipient name in the format required by postal services." | "URL for profile picture" | "First line of an address (e.g. street address)" | "The formatted address of a company’s headquarters." | "Name of a city as needed for an address." | "Name of a country as needed for an address." | "Name of a state." | "A postal zip code. Usually a combination of numbers and letters." | "Last name of a person." | "Estimated total salary in USD." | "List of professional skills" | "Check if a given email is a work email." | "The full name of a person. Usually a combination of first and last name." | "IP Address of a person" | "Check if an email address is valid and can receive emails." | "A standardized format for returning LinkedIn profile data." | "A person's LinkedIn profile URL." | "List of recent LinkedIn posts in JSON format." | "Professional profile headline" | "Company LinkedIn URL." | "Result of email sending action using Resend" | "Id of a single resend contact" | "Name of a pipe0 sheet" | "Input field of type string" | "A domain field." | "Input field of type string and URL format" | "A value that has been stripped of characters not found in slugs." | "HTTP status code returned by the upstream endpoint." | "Parsed JSON body returned by the upstream endpoint." | "Response headers returned by the upstream endpoint as a flat key-value map." | "ID of sheet record" | "IDs sheet records" | "Result of email sending action using Gmail" | "Result of sending a message using Slack" | "The test of an email formatted as markdown" | "A markdown message that be send to any chat app." | "Subject line for email" | "Template value where the tags are replaces with real values" | "Email validation status. Allowed values are: 'valid', 'invalid', 'catch_all', 'unkown'" | "Validation status as returned from ZeroBounce single validation" | "Full validation object as returned by ZeroBounce" | "List of unstructured input objects" | "Reference to a created sheet" | "Result of a firecrawl extract operation" | "Exa search result." | "CompanyEnrich response object" | "Crustdata company match object" | "A number between 1 and 0 indicating the confidence that the profile belongs to the input email address." | "Crustdata company enrichment match." | "LinkedIn post list" | "Rich JSON post list" | "Result of a role finder operation" | "Person match object as returned by Amplemarket" | "Company match object as returned by Amplemarket" | "CompanyEnrich response list." | "Company or organization logo" | "Get company logos & brand data" | "Social Media URL for a given company (e.g. LinkedIn profile URL).";
|
|
45187
45187
|
resolvedName: string;
|
|
45188
|
-
type: "string" | "number" | "boolean" | "
|
|
45188
|
+
type: "string" | "number" | "boolean" | "unknown" | "json";
|
|
45189
45189
|
label: "Company description" | "Cleaned company name" | "Scrape result - Markdown" | "Website internal links" | "Scrape result - HTML" | "Website URL" | "URLs" | "Clado person profile" | "Full name" | "Profile headline" | "LinkedIn profile URL" | "Job title" | "Company industry" | "Company region" | "Location hint" | "Competitor list" | "Acquisition history" | "Company news list" | "Estimated Annual Revenue" | "Funding history" | "Total funding (USD)" | "Founding year" | "Technology list" | "Spending Trend" | "Builtwith technology response" | "Follower count" | "Mobile" | "Phone" | "Landline" | "Job description" | "Email address" | "Personal email" | "Alternate personal email" | "Latest news" | "Work email" | "Headcount" | "Company website URL" | "Company domain" | "Company name" | "Clado person match" | "Icypeas person match" | "Icypeas company match" | "First name" | "Addressee name" | "Avatar URL" | "Address line 1" | "Address line 2" | "Address city" | "Address country" | "State" | "Zip code" | "Last name" | "Estimated salary" | "Skills" | "Is work email result" | "IP address" | "Email validation" | "Professional profile" | "Recrent linkedIn posts" | "Company LinkedIn profile URL" | "Resend mail success" | "Resend contact id" | "Sheet name" | "String input" | "Domain" | "URL input" | "Slugified value" | "HTTP response status" | "HTTP response body" | "HTTP response headers" | "Record ID" | "Record IDs" | "Gmail e-mail success" | "Slack message success" | "A markdown email" | "Message" | "Subject Line" | "Template Output" | "Validation status" | "Million Verifier match" | "ZeroBounce Validation Status" | "ZeroBounce Validation Match" | "Input objects" | "Created sheet" | "Merge Result" | "Extract Result" | "Exa Match Evaluation" | "Company match" | "Person match" | "Match score" | "Company enrichment match" | "Post list" | "Crustdata Post list" | "Role finder match" | "CompanyEnrich matches" | "Logo URL" | "Company Social URL" | "Professional profile (LinkedIn)" | "LinkedIn Profile URL";
|
|
45190
|
-
format: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "currency" | "text" | "
|
|
45190
|
+
format: "int" | "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "currency" | "text" | "decimal" | "percent" | null;
|
|
45191
45191
|
};
|
|
45192
45192
|
//#endregion
|
|
45193
45193
|
//#region src/pipes/pipes-validator/get-output-field-info-from-dev.d.ts
|
|
@@ -45569,7 +45569,7 @@ declare function stringify(v: unknown): unknown;
|
|
|
45569
45569
|
declare function rateLimitRatioFallingProgression(index: number): number;
|
|
45570
45570
|
declare function sortObjectKeys(obj: any): any;
|
|
45571
45571
|
declare const TYPES_TO_FORMATS: {
|
|
45572
|
-
string: ("email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "url" | "datetime" | "
|
|
45572
|
+
string: ("date" | "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "url" | "datetime" | "text")[];
|
|
45573
45573
|
json: ("json_object" | "json_list")[];
|
|
45574
45574
|
number: ("int" | "decimal")[];
|
|
45575
45575
|
boolean: never[];
|
|
@@ -45615,8 +45615,8 @@ declare function inputFromRecords(records: PipesInMemoryResponse["records"], con
|
|
|
45615
45615
|
summary: string;
|
|
45616
45616
|
message: string;
|
|
45617
45617
|
} | null | undefined;
|
|
45618
|
-
type?: "string" | "number" | "boolean" | "
|
|
45619
|
-
format?: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "
|
|
45618
|
+
type?: "string" | "number" | "boolean" | "unknown" | "json" | undefined;
|
|
45619
|
+
format?: "int" | "date" | "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null | undefined;
|
|
45620
45620
|
claimed_by?: {
|
|
45621
45621
|
ref: "input" | "prompt:run@1" | "company:newssummary:website@1" | "company:newssummary:domain@1" | "company:techstack:builtwith@1" | "company:techstack:builtwith@2" | "company:websiteurl:email@1" | "company:domain:workemail@1" | "company:funding:leadmagic@1" | "company:funding:leadmagic@2" | "people:workemail:waterfall@1" | "person:workemail:waterfall@1" | "people:email:iswork@1" | "email:iswork@1" | "people:name:split@1" | "person:name:split@1" | "person:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "email:validate:zerobounce@1" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "company:overview@3" | "json:extract:multi@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "person:match:role:waterfall@1" | "person:identity:amplemarket@1" | "company:identity@2" | "company:identity@3" | "person:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "person:mobile:profileurl:waterfall@1" | "people:personalemail:profile:waterfall@1" | "person:personalemail:profileurl:waterfall@1" | "people:profile:waterfall@1" | "person:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "person:profileurl:email:waterfall@1" | "person:profileurl:name@1" | "people:email:validate:zerobounce@1" | "person:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "person:mobile:workemail:waterfall@1" | "fields:merge@1" | "field:slugify@1" | "field:domainify@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:row:append@1" | "sheet:row:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:lookalikes:companyenrich@2" | "company:match:logodev@1" | "company:match:logodev@2" | "person:posts:crustdata@1" | "company:match:crustdata@1" | "company:match:crustdata@2" | "people:profile:workemail:crustdata@1" | "person:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "person:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "person:identity:email:waterfall@1" | "http:request@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | null;
|
|
45622
45622
|
config_hash: string | null;
|
|
@@ -45675,8 +45675,8 @@ declare function inputFromRecords(records: PipesInMemoryResponse["records"], con
|
|
|
45675
45675
|
summary: string;
|
|
45676
45676
|
message: string;
|
|
45677
45677
|
} | null | undefined;
|
|
45678
|
-
type?: "string" | "number" | "boolean" | "
|
|
45679
|
-
format?: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "
|
|
45678
|
+
type?: "string" | "number" | "boolean" | "unknown" | "json" | undefined;
|
|
45679
|
+
format?: "int" | "date" | "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null | undefined;
|
|
45680
45680
|
claimed_by?: {
|
|
45681
45681
|
ref: "input" | "prompt:run@1" | "company:newssummary:website@1" | "company:newssummary:domain@1" | "company:techstack:builtwith@1" | "company:techstack:builtwith@2" | "company:websiteurl:email@1" | "company:domain:workemail@1" | "company:funding:leadmagic@1" | "company:funding:leadmagic@2" | "people:workemail:waterfall@1" | "person:workemail:waterfall@1" | "people:email:iswork@1" | "email:iswork@1" | "people:name:split@1" | "person:name:split@1" | "person:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "email:validate:zerobounce@1" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "company:overview@3" | "json:extract:multi@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "person:match:role:waterfall@1" | "person:identity:amplemarket@1" | "company:identity@2" | "company:identity@3" | "person:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "person:mobile:profileurl:waterfall@1" | "people:personalemail:profile:waterfall@1" | "person:personalemail:profileurl:waterfall@1" | "people:profile:waterfall@1" | "person:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "person:profileurl:email:waterfall@1" | "person:profileurl:name@1" | "people:email:validate:zerobounce@1" | "person:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "person:mobile:workemail:waterfall@1" | "fields:merge@1" | "field:slugify@1" | "field:domainify@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:row:append@1" | "sheet:row:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:lookalikes:companyenrich@2" | "company:match:logodev@1" | "company:match:logodev@2" | "person:posts:crustdata@1" | "company:match:crustdata@1" | "company:match:crustdata@2" | "people:profile:workemail:crustdata@1" | "person:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "person:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "person:identity:email:waterfall@1" | "http:request@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | null;
|
|
45682
45682
|
config_hash: string | null;
|
|
@@ -45738,8 +45738,8 @@ declare function inputFromRecordArr(records: PipesRecord[], config?: Partial<Fie
|
|
|
45738
45738
|
summary: string;
|
|
45739
45739
|
message: string;
|
|
45740
45740
|
} | null | undefined;
|
|
45741
|
-
type?: "string" | "number" | "boolean" | "
|
|
45742
|
-
format?: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "
|
|
45741
|
+
type?: "string" | "number" | "boolean" | "unknown" | "json" | undefined;
|
|
45742
|
+
format?: "int" | "date" | "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null | undefined;
|
|
45743
45743
|
claimed_by?: {
|
|
45744
45744
|
ref: "input" | "prompt:run@1" | "company:newssummary:website@1" | "company:newssummary:domain@1" | "company:techstack:builtwith@1" | "company:techstack:builtwith@2" | "company:websiteurl:email@1" | "company:domain:workemail@1" | "company:funding:leadmagic@1" | "company:funding:leadmagic@2" | "people:workemail:waterfall@1" | "person:workemail:waterfall@1" | "people:email:iswork@1" | "email:iswork@1" | "people:name:split@1" | "person:name:split@1" | "person:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "email:validate:zerobounce@1" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "company:overview@3" | "json:extract:multi@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "person:match:role:waterfall@1" | "person:identity:amplemarket@1" | "company:identity@2" | "company:identity@3" | "person:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "person:mobile:profileurl:waterfall@1" | "people:personalemail:profile:waterfall@1" | "person:personalemail:profileurl:waterfall@1" | "people:profile:waterfall@1" | "person:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "person:profileurl:email:waterfall@1" | "person:profileurl:name@1" | "people:email:validate:zerobounce@1" | "person:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "person:mobile:workemail:waterfall@1" | "fields:merge@1" | "field:slugify@1" | "field:domainify@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:row:append@1" | "sheet:row:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:lookalikes:companyenrich@2" | "company:match:logodev@1" | "company:match:logodev@2" | "person:posts:crustdata@1" | "company:match:crustdata@1" | "company:match:crustdata@2" | "people:profile:workemail:crustdata@1" | "person:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "person:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "person:identity:email:waterfall@1" | "http:request@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | null;
|
|
45745
45745
|
config_hash: string | null;
|
|
@@ -45798,8 +45798,8 @@ declare function inputFromRecordArr(records: PipesRecord[], config?: Partial<Fie
|
|
|
45798
45798
|
summary: string;
|
|
45799
45799
|
message: string;
|
|
45800
45800
|
} | null | undefined;
|
|
45801
|
-
type?: "string" | "number" | "boolean" | "
|
|
45802
|
-
format?: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "
|
|
45801
|
+
type?: "string" | "number" | "boolean" | "unknown" | "json" | undefined;
|
|
45802
|
+
format?: "int" | "date" | "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null | undefined;
|
|
45803
45803
|
claimed_by?: {
|
|
45804
45804
|
ref: "input" | "prompt:run@1" | "company:newssummary:website@1" | "company:newssummary:domain@1" | "company:techstack:builtwith@1" | "company:techstack:builtwith@2" | "company:websiteurl:email@1" | "company:domain:workemail@1" | "company:funding:leadmagic@1" | "company:funding:leadmagic@2" | "people:workemail:waterfall@1" | "person:workemail:waterfall@1" | "people:email:iswork@1" | "email:iswork@1" | "people:name:split@1" | "person:name:split@1" | "person:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "email:validate:zerobounce@1" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "company:overview@3" | "json:extract:multi@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "person:match:role:waterfall@1" | "person:identity:amplemarket@1" | "company:identity@2" | "company:identity@3" | "person:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "person:mobile:profileurl:waterfall@1" | "people:personalemail:profile:waterfall@1" | "person:personalemail:profileurl:waterfall@1" | "people:profile:waterfall@1" | "person:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "person:profileurl:email:waterfall@1" | "person:profileurl:name@1" | "people:email:validate:zerobounce@1" | "person:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "person:mobile:workemail:waterfall@1" | "fields:merge@1" | "field:slugify@1" | "field:domainify@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:row:append@1" | "sheet:row:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:lookalikes:companyenrich@2" | "company:match:logodev@1" | "company:match:logodev@2" | "person:posts:crustdata@1" | "company:match:crustdata@1" | "company:match:crustdata@2" | "people:profile:workemail:crustdata@1" | "person:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "person:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "person:identity:email:waterfall@1" | "http:request@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | null;
|
|
45805
45805
|
config_hash: string | null;
|
|
@@ -45861,8 +45861,8 @@ declare function inputFromRecord(record: PipesRecord, config?: Partial<FieldsToO
|
|
|
45861
45861
|
summary: string;
|
|
45862
45862
|
message: string;
|
|
45863
45863
|
} | null | undefined;
|
|
45864
|
-
type?: "string" | "number" | "boolean" | "
|
|
45865
|
-
format?: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "
|
|
45864
|
+
type?: "string" | "number" | "boolean" | "unknown" | "json" | undefined;
|
|
45865
|
+
format?: "int" | "date" | "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null | undefined;
|
|
45866
45866
|
claimed_by?: {
|
|
45867
45867
|
ref: "input" | "prompt:run@1" | "company:newssummary:website@1" | "company:newssummary:domain@1" | "company:techstack:builtwith@1" | "company:techstack:builtwith@2" | "company:websiteurl:email@1" | "company:domain:workemail@1" | "company:funding:leadmagic@1" | "company:funding:leadmagic@2" | "people:workemail:waterfall@1" | "person:workemail:waterfall@1" | "people:email:iswork@1" | "email:iswork@1" | "people:name:split@1" | "person:name:split@1" | "person:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "email:validate:zerobounce@1" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "company:overview@3" | "json:extract:multi@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "person:match:role:waterfall@1" | "person:identity:amplemarket@1" | "company:identity@2" | "company:identity@3" | "person:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "person:mobile:profileurl:waterfall@1" | "people:personalemail:profile:waterfall@1" | "person:personalemail:profileurl:waterfall@1" | "people:profile:waterfall@1" | "person:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "person:profileurl:email:waterfall@1" | "person:profileurl:name@1" | "people:email:validate:zerobounce@1" | "person:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "person:mobile:workemail:waterfall@1" | "fields:merge@1" | "field:slugify@1" | "field:domainify@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:row:append@1" | "sheet:row:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:lookalikes:companyenrich@2" | "company:match:logodev@1" | "company:match:logodev@2" | "person:posts:crustdata@1" | "company:match:crustdata@1" | "company:match:crustdata@2" | "people:profile:workemail:crustdata@1" | "person:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "person:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "person:identity:email:waterfall@1" | "http:request@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | null;
|
|
45868
45868
|
config_hash: string | null;
|
|
@@ -45921,8 +45921,8 @@ declare function inputFromRecord(record: PipesRecord, config?: Partial<FieldsToO
|
|
|
45921
45921
|
summary: string;
|
|
45922
45922
|
message: string;
|
|
45923
45923
|
} | null | undefined;
|
|
45924
|
-
type?: "string" | "number" | "boolean" | "
|
|
45925
|
-
format?: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "
|
|
45924
|
+
type?: "string" | "number" | "boolean" | "unknown" | "json" | undefined;
|
|
45925
|
+
format?: "int" | "date" | "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null | undefined;
|
|
45926
45926
|
claimed_by?: {
|
|
45927
45927
|
ref: "input" | "prompt:run@1" | "company:newssummary:website@1" | "company:newssummary:domain@1" | "company:techstack:builtwith@1" | "company:techstack:builtwith@2" | "company:websiteurl:email@1" | "company:domain:workemail@1" | "company:funding:leadmagic@1" | "company:funding:leadmagic@2" | "people:workemail:waterfall@1" | "person:workemail:waterfall@1" | "people:email:iswork@1" | "email:iswork@1" | "people:name:split@1" | "person:name:split@1" | "person:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "email:validate:zerobounce@1" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "company:overview@3" | "json:extract:multi@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "person:match:role:waterfall@1" | "person:identity:amplemarket@1" | "company:identity@2" | "company:identity@3" | "person:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "person:mobile:profileurl:waterfall@1" | "people:personalemail:profile:waterfall@1" | "person:personalemail:profileurl:waterfall@1" | "people:profile:waterfall@1" | "person:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "person:profileurl:email:waterfall@1" | "person:profileurl:name@1" | "people:email:validate:zerobounce@1" | "person:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "person:mobile:workemail:waterfall@1" | "fields:merge@1" | "field:slugify@1" | "field:domainify@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:row:append@1" | "sheet:row:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:lookalikes:companyenrich@2" | "company:match:logodev@1" | "company:match:logodev@2" | "person:posts:crustdata@1" | "company:match:crustdata@1" | "company:match:crustdata@2" | "people:profile:workemail:crustdata@1" | "person:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "person:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "person:identity:email:waterfall@1" | "http:request@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | null;
|
|
45928
45928
|
config_hash: string | null;
|