@pipe0/base 0.0.10 → 0.0.11
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 +165 -169
- package/dist/index.mjs +9 -9
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -379,8 +379,8 @@ declare const StoreOptionWidgetSchema: z.ZodObject<{
|
|
|
379
379
|
icon: z.ZodOptional<z.ZodObject<{
|
|
380
380
|
key: z.ZodEnum<{
|
|
381
381
|
output: "output";
|
|
382
|
-
input: "input";
|
|
383
382
|
text: "text";
|
|
383
|
+
input: "input";
|
|
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
|
-
unknown: "unknown";
|
|
549
548
|
json: "json";
|
|
549
|
+
unknown: "unknown";
|
|
550
550
|
}>;
|
|
551
551
|
type RecordFieldType = z.infer<typeof RecordFieldTypeSchema>;
|
|
552
552
|
type DerivedInputFields = Record<string, {
|
|
@@ -709,8 +709,6 @@ 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";
|
|
714
712
|
email: "email";
|
|
715
713
|
address_line_1: "address_line_1";
|
|
716
714
|
zip_code: "zip_code";
|
|
@@ -724,13 +722,13 @@ declare const RecordFieldFormatSchema: z.ZodEnum<{
|
|
|
724
722
|
url: "url";
|
|
725
723
|
datetime: "datetime";
|
|
726
724
|
currency: "currency";
|
|
725
|
+
date: "date";
|
|
727
726
|
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";
|
|
734
732
|
email: "email";
|
|
735
733
|
address_line_1: "address_line_1";
|
|
736
734
|
zip_code: "zip_code";
|
|
@@ -744,7 +742,9 @@ declare const NullableRecordFieldFormatSchema: z.ZodNullable<z.ZodEnum<{
|
|
|
744
742
|
url: "url";
|
|
745
743
|
datetime: "datetime";
|
|
746
744
|
currency: "currency";
|
|
745
|
+
date: "date";
|
|
747
746
|
text: "text";
|
|
747
|
+
int: "int";
|
|
748
748
|
decimal: "decimal";
|
|
749
749
|
percent: "percent";
|
|
750
750
|
}>>;
|
|
@@ -754,13 +754,11 @@ declare const FieldAnnotationSchema: z.ZodObject<{
|
|
|
754
754
|
string: "string";
|
|
755
755
|
number: "number";
|
|
756
756
|
boolean: "boolean";
|
|
757
|
-
unknown: "unknown";
|
|
758
757
|
json: "json";
|
|
758
|
+
unknown: "unknown";
|
|
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";
|
|
764
762
|
email: "email";
|
|
765
763
|
address_line_1: "address_line_1";
|
|
766
764
|
zip_code: "zip_code";
|
|
@@ -774,7 +772,9 @@ declare const FieldAnnotationSchema: z.ZodObject<{
|
|
|
774
772
|
url: "url";
|
|
775
773
|
datetime: "datetime";
|
|
776
774
|
currency: "currency";
|
|
775
|
+
date: "date";
|
|
777
776
|
text: "text";
|
|
777
|
+
int: "int";
|
|
778
778
|
decimal: "decimal";
|
|
779
779
|
percent: "percent";
|
|
780
780
|
}>>>;
|
|
@@ -789,13 +789,11 @@ declare const FieldAnnotationsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
789
789
|
string: "string";
|
|
790
790
|
number: "number";
|
|
791
791
|
boolean: "boolean";
|
|
792
|
-
unknown: "unknown";
|
|
793
792
|
json: "json";
|
|
793
|
+
unknown: "unknown";
|
|
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";
|
|
799
797
|
email: "email";
|
|
800
798
|
address_line_1: "address_line_1";
|
|
801
799
|
zip_code: "zip_code";
|
|
@@ -809,7 +807,9 @@ declare const FieldAnnotationsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
809
807
|
url: "url";
|
|
810
808
|
datetime: "datetime";
|
|
811
809
|
currency: "currency";
|
|
810
|
+
date: "date";
|
|
812
811
|
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
|
-
unknown: "unknown";
|
|
1006
1005
|
json: "json";
|
|
1006
|
+
unknown: "unknown";
|
|
1007
1007
|
}>;
|
|
1008
1008
|
reason: z.ZodNullable<z.ZodObject<{
|
|
1009
1009
|
code: z.ZodString;
|
|
@@ -1308,8 +1308,6 @@ 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";
|
|
1313
1311
|
email: "email";
|
|
1314
1312
|
address_line_1: "address_line_1";
|
|
1315
1313
|
zip_code: "zip_code";
|
|
@@ -1323,7 +1321,9 @@ declare const RecordFieldSchema: z.ZodObject<{
|
|
|
1323
1321
|
url: "url";
|
|
1324
1322
|
datetime: "datetime";
|
|
1325
1323
|
currency: "currency";
|
|
1324
|
+
date: "date";
|
|
1326
1325
|
text: "text";
|
|
1326
|
+
int: "int";
|
|
1327
1327
|
decimal: "decimal";
|
|
1328
1328
|
percent: "percent";
|
|
1329
1329
|
}>>;
|
|
@@ -1341,12 +1341,10 @@ declare const ExpandedFieldValueSchema: z.ZodObject<{
|
|
|
1341
1341
|
string: "string";
|
|
1342
1342
|
number: "number";
|
|
1343
1343
|
boolean: "boolean";
|
|
1344
|
-
unknown: "unknown";
|
|
1345
1344
|
json: "json";
|
|
1345
|
+
unknown: "unknown";
|
|
1346
1346
|
}>>;
|
|
1347
1347
|
format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
1348
|
-
int: "int";
|
|
1349
|
-
date: "date";
|
|
1350
1348
|
email: "email";
|
|
1351
1349
|
address_line_1: "address_line_1";
|
|
1352
1350
|
zip_code: "zip_code";
|
|
@@ -1360,7 +1358,9 @@ declare const ExpandedFieldValueSchema: z.ZodObject<{
|
|
|
1360
1358
|
url: "url";
|
|
1361
1359
|
datetime: "datetime";
|
|
1362
1360
|
currency: "currency";
|
|
1361
|
+
date: "date";
|
|
1363
1362
|
text: "text";
|
|
1363
|
+
int: "int";
|
|
1364
1364
|
decimal: "decimal";
|
|
1365
1365
|
percent: "percent";
|
|
1366
1366
|
}>>>;
|
|
@@ -1675,12 +1675,10 @@ declare const PipesInputSchema: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.
|
|
|
1675
1675
|
string: "string";
|
|
1676
1676
|
number: "number";
|
|
1677
1677
|
boolean: "boolean";
|
|
1678
|
-
unknown: "unknown";
|
|
1679
1678
|
json: "json";
|
|
1679
|
+
unknown: "unknown";
|
|
1680
1680
|
}>>;
|
|
1681
1681
|
format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
1682
|
-
int: "int";
|
|
1683
|
-
date: "date";
|
|
1684
1682
|
email: "email";
|
|
1685
1683
|
address_line_1: "address_line_1";
|
|
1686
1684
|
zip_code: "zip_code";
|
|
@@ -1694,7 +1692,9 @@ declare const PipesInputSchema: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.
|
|
|
1694
1692
|
url: "url";
|
|
1695
1693
|
datetime: "datetime";
|
|
1696
1694
|
currency: "currency";
|
|
1695
|
+
date: "date";
|
|
1697
1696
|
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
|
-
unknown: "unknown";
|
|
2010
2009
|
json: "json";
|
|
2010
|
+
unknown: "unknown";
|
|
2011
2011
|
}>;
|
|
2012
2012
|
reason: z.ZodNullable<z.ZodObject<{
|
|
2013
2013
|
code: z.ZodString;
|
|
@@ -2312,8 +2312,6 @@ 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";
|
|
2317
2315
|
email: "email";
|
|
2318
2316
|
address_line_1: "address_line_1";
|
|
2319
2317
|
zip_code: "zip_code";
|
|
@@ -2327,7 +2325,9 @@ declare const RecordSchema: z.ZodObject<{
|
|
|
2327
2325
|
url: "url";
|
|
2328
2326
|
datetime: "datetime";
|
|
2329
2327
|
currency: "currency";
|
|
2328
|
+
date: "date";
|
|
2330
2329
|
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
|
-
unknown: "unknown";
|
|
2348
2347
|
json: "json";
|
|
2348
|
+
unknown: "unknown";
|
|
2349
2349
|
}>;
|
|
2350
2350
|
label: z.ZodString;
|
|
2351
2351
|
added_by: z.ZodObject<{
|
|
@@ -2433,8 +2433,6 @@ 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";
|
|
2438
2436
|
email: "email";
|
|
2439
2437
|
address_line_1: "address_line_1";
|
|
2440
2438
|
zip_code: "zip_code";
|
|
@@ -2448,7 +2446,9 @@ declare const PipesFieldDefinitionSchema: z.ZodObject<{
|
|
|
2448
2446
|
url: "url";
|
|
2449
2447
|
datetime: "datetime";
|
|
2450
2448
|
currency: "currency";
|
|
2449
|
+
date: "date";
|
|
2451
2450
|
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
|
-
unknown: "unknown";
|
|
2467
2466
|
json: "json";
|
|
2467
|
+
unknown: "unknown";
|
|
2468
2468
|
}>;
|
|
2469
2469
|
label: z.ZodString;
|
|
2470
2470
|
added_by: z.ZodObject<{
|
|
@@ -2552,8 +2552,6 @@ 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";
|
|
2557
2555
|
email: "email";
|
|
2558
2556
|
address_line_1: "address_line_1";
|
|
2559
2557
|
zip_code: "zip_code";
|
|
@@ -2567,7 +2565,9 @@ declare const PipesFieldDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<
|
|
|
2567
2565
|
url: "url";
|
|
2568
2566
|
datetime: "datetime";
|
|
2569
2567
|
currency: "currency";
|
|
2568
|
+
date: "date";
|
|
2570
2569
|
text: "text";
|
|
2570
|
+
int: "int";
|
|
2571
2571
|
decimal: "decimal";
|
|
2572
2572
|
percent: "percent";
|
|
2573
2573
|
}>>;
|
|
@@ -2581,8 +2581,6 @@ 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";
|
|
2586
2584
|
email: "email";
|
|
2587
2585
|
address_line_1: "address_line_1";
|
|
2588
2586
|
zip_code: "zip_code";
|
|
@@ -2596,7 +2594,9 @@ declare const JSONExtractSchema: z.ZodObject<{
|
|
|
2596
2594
|
url: "url";
|
|
2597
2595
|
datetime: "datetime";
|
|
2598
2596
|
currency: "currency";
|
|
2597
|
+
date: "date";
|
|
2599
2598
|
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
|
-
unknown: "unknown";
|
|
2609
2608
|
json: "json";
|
|
2609
|
+
unknown: "unknown";
|
|
2610
2610
|
}>;
|
|
2611
2611
|
}, z.core.$strip>;
|
|
2612
2612
|
}, z.core.$strip>>;
|
|
@@ -2729,8 +2729,6 @@ 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";
|
|
2734
2732
|
company_description: "company_description";
|
|
2735
2733
|
cleaned_company_name: "cleaned_company_name";
|
|
2736
2734
|
company_industry: "company_industry";
|
|
@@ -2738,6 +2736,8 @@ declare const FieldNameSchema: z.ZodEnum<{
|
|
|
2738
2736
|
location_hint: "location_hint";
|
|
2739
2737
|
estimated_revenue: "estimated_revenue";
|
|
2740
2738
|
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
|
-
input: "input";
|
|
12311
12310
|
text: "text";
|
|
12311
|
+
input: "input";
|
|
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
|
-
input: "input";
|
|
12410
12409
|
text: "text";
|
|
12410
|
+
input: "input";
|
|
12411
12411
|
code: "code";
|
|
12412
12412
|
filter: "filter";
|
|
12413
12413
|
search: "search";
|
|
@@ -14435,12 +14435,10 @@ declare const SearchResultFieldSchema: z$1.ZodObject<{
|
|
|
14435
14435
|
string: "string";
|
|
14436
14436
|
number: "number";
|
|
14437
14437
|
boolean: "boolean";
|
|
14438
|
-
unknown: "unknown";
|
|
14439
14438
|
json: "json";
|
|
14439
|
+
unknown: "unknown";
|
|
14440
14440
|
}>>;
|
|
14441
14441
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
14442
|
-
int: "int";
|
|
14443
|
-
date: "date";
|
|
14444
14442
|
email: "email";
|
|
14445
14443
|
address_line_1: "address_line_1";
|
|
14446
14444
|
zip_code: "zip_code";
|
|
@@ -14454,7 +14452,9 @@ declare const SearchResultFieldSchema: z$1.ZodObject<{
|
|
|
14454
14452
|
url: "url";
|
|
14455
14453
|
datetime: "datetime";
|
|
14456
14454
|
currency: "currency";
|
|
14455
|
+
date: "date";
|
|
14457
14456
|
text: "text";
|
|
14457
|
+
int: "int";
|
|
14458
14458
|
decimal: "decimal";
|
|
14459
14459
|
percent: "percent";
|
|
14460
14460
|
}>>>;
|
|
@@ -14680,12 +14680,10 @@ 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
|
-
unknown: "unknown";
|
|
14684
14683
|
json: "json";
|
|
14684
|
+
unknown: "unknown";
|
|
14685
14685
|
}>>;
|
|
14686
14686
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
14687
|
-
int: "int";
|
|
14688
|
-
date: "date";
|
|
14689
14687
|
email: "email";
|
|
14690
14688
|
address_line_1: "address_line_1";
|
|
14691
14689
|
zip_code: "zip_code";
|
|
@@ -14699,7 +14697,9 @@ declare const SearchResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable<z
|
|
|
14699
14697
|
url: "url";
|
|
14700
14698
|
datetime: "datetime";
|
|
14701
14699
|
currency: "currency";
|
|
14700
|
+
date: "date";
|
|
14702
14701
|
text: "text";
|
|
14702
|
+
int: "int";
|
|
14703
14703
|
decimal: "decimal";
|
|
14704
14704
|
percent: "percent";
|
|
14705
14705
|
}>>>;
|
|
@@ -15772,12 +15772,10 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
15772
15772
|
string: "string";
|
|
15773
15773
|
number: "number";
|
|
15774
15774
|
boolean: "boolean";
|
|
15775
|
-
unknown: "unknown";
|
|
15776
15775
|
json: "json";
|
|
15776
|
+
unknown: "unknown";
|
|
15777
15777
|
}>>;
|
|
15778
15778
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
15779
|
-
int: "int";
|
|
15780
|
-
date: "date";
|
|
15781
15779
|
email: "email";
|
|
15782
15780
|
address_line_1: "address_line_1";
|
|
15783
15781
|
zip_code: "zip_code";
|
|
@@ -15791,7 +15789,9 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
15791
15789
|
url: "url";
|
|
15792
15790
|
datetime: "datetime";
|
|
15793
15791
|
currency: "currency";
|
|
15792
|
+
date: "date";
|
|
15794
15793
|
text: "text";
|
|
15794
|
+
int: "int";
|
|
15795
15795
|
decimal: "decimal";
|
|
15796
15796
|
percent: "percent";
|
|
15797
15797
|
}>>>;
|
|
@@ -19108,12 +19108,10 @@ declare const SearchesResultFieldSchema: z$1.ZodObject<{
|
|
|
19108
19108
|
string: "string";
|
|
19109
19109
|
number: "number";
|
|
19110
19110
|
boolean: "boolean";
|
|
19111
|
-
unknown: "unknown";
|
|
19112
19111
|
json: "json";
|
|
19112
|
+
unknown: "unknown";
|
|
19113
19113
|
}>>;
|
|
19114
19114
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
19115
|
-
int: "int";
|
|
19116
|
-
date: "date";
|
|
19117
19115
|
email: "email";
|
|
19118
19116
|
address_line_1: "address_line_1";
|
|
19119
19117
|
zip_code: "zip_code";
|
|
@@ -19127,7 +19125,9 @@ declare const SearchesResultFieldSchema: z$1.ZodObject<{
|
|
|
19127
19125
|
url: "url";
|
|
19128
19126
|
datetime: "datetime";
|
|
19129
19127
|
currency: "currency";
|
|
19128
|
+
date: "date";
|
|
19130
19129
|
text: "text";
|
|
19130
|
+
int: "int";
|
|
19131
19131
|
decimal: "decimal";
|
|
19132
19132
|
percent: "percent";
|
|
19133
19133
|
}>>>;
|
|
@@ -19353,12 +19353,10 @@ 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
|
-
unknown: "unknown";
|
|
19357
19356
|
json: "json";
|
|
19357
|
+
unknown: "unknown";
|
|
19358
19358
|
}>>;
|
|
19359
19359
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
19360
|
-
int: "int";
|
|
19361
|
-
date: "date";
|
|
19362
19360
|
email: "email";
|
|
19363
19361
|
address_line_1: "address_line_1";
|
|
19364
19362
|
zip_code: "zip_code";
|
|
@@ -19372,7 +19370,9 @@ declare const SearchesResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable
|
|
|
19372
19370
|
url: "url";
|
|
19373
19371
|
datetime: "datetime";
|
|
19374
19372
|
currency: "currency";
|
|
19373
|
+
date: "date";
|
|
19375
19374
|
text: "text";
|
|
19375
|
+
int: "int";
|
|
19376
19376
|
decimal: "decimal";
|
|
19377
19377
|
percent: "percent";
|
|
19378
19378
|
}>>>;
|
|
@@ -19648,12 +19648,10 @@ declare const SearchesResponseSchema: z$1.ZodObject<{
|
|
|
19648
19648
|
string: "string";
|
|
19649
19649
|
number: "number";
|
|
19650
19650
|
boolean: "boolean";
|
|
19651
|
-
unknown: "unknown";
|
|
19652
19651
|
json: "json";
|
|
19652
|
+
unknown: "unknown";
|
|
19653
19653
|
}>>;
|
|
19654
19654
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
19655
|
-
int: "int";
|
|
19656
|
-
date: "date";
|
|
19657
19655
|
email: "email";
|
|
19658
19656
|
address_line_1: "address_line_1";
|
|
19659
19657
|
zip_code: "zip_code";
|
|
@@ -19667,7 +19665,9 @@ declare const SearchesResponseSchema: z$1.ZodObject<{
|
|
|
19667
19665
|
url: "url";
|
|
19668
19666
|
datetime: "datetime";
|
|
19669
19667
|
currency: "currency";
|
|
19668
|
+
date: "date";
|
|
19670
19669
|
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: "company_description" | "cleaned_company_name" | "company_industry" | "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" | "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: "
|
|
21300
|
+
type: "string" | "number" | "boolean" | "json" | "unknown" | ((_lazyContext: LazyResolveContext) => RecordFieldType);
|
|
21301
|
+
format: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "currency" | "text" | "int" | "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,8 +26730,6 @@ 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";
|
|
26735
26733
|
email: "email";
|
|
26736
26734
|
address_line_1: "address_line_1";
|
|
26737
26735
|
zip_code: "zip_code";
|
|
@@ -26745,7 +26743,9 @@ declare const pipePayloadSchemaCatalog: {
|
|
|
26745
26743
|
url: "url";
|
|
26746
26744
|
datetime: "datetime";
|
|
26747
26745
|
currency: "currency";
|
|
26746
|
+
date: "date";
|
|
26748
26747
|
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
|
-
unknown: "unknown";
|
|
26758
26757
|
json: "json";
|
|
26758
|
+
unknown: "unknown";
|
|
26759
26759
|
}>;
|
|
26760
26760
|
}, z.core.$strip>;
|
|
26761
26761
|
}, z.core.$strip>>;
|
|
@@ -29141,7 +29141,6 @@ declare const pipePayloadSchemaCatalog: {
|
|
|
29141
29141
|
findymail: "findymail";
|
|
29142
29142
|
leadmagic: "leadmagic";
|
|
29143
29143
|
prospeo: "prospeo";
|
|
29144
|
-
clado: "clado";
|
|
29145
29144
|
amplemarket: "amplemarket";
|
|
29146
29145
|
}>;
|
|
29147
29146
|
}, z.core.$strip>>>;
|
|
@@ -29286,7 +29285,6 @@ declare const pipePayloadSchemaCatalog: {
|
|
|
29286
29285
|
provider: z.ZodEnum<{
|
|
29287
29286
|
leadmagic: "leadmagic";
|
|
29288
29287
|
mixrank: "mixrank";
|
|
29289
|
-
clado: "clado";
|
|
29290
29288
|
}>;
|
|
29291
29289
|
}, z.core.$strip>>>;
|
|
29292
29290
|
input_fields: z.ZodOptional<z.ZodObject<{
|
|
@@ -29431,7 +29429,6 @@ declare const pipePayloadSchemaCatalog: {
|
|
|
29431
29429
|
provider: z.ZodEnum<{
|
|
29432
29430
|
icypeas: "icypeas";
|
|
29433
29431
|
prospeo: "prospeo";
|
|
29434
|
-
clado: "clado";
|
|
29435
29432
|
amplemarket: "amplemarket";
|
|
29436
29433
|
}>;
|
|
29437
29434
|
}, z.core.$strip>>>;
|
|
@@ -30062,7 +30059,6 @@ declare const pipePayloadSchemaCatalog: {
|
|
|
30062
30059
|
crustdata: "crustdata";
|
|
30063
30060
|
hunter: "hunter";
|
|
30064
30061
|
leadmagic: "leadmagic";
|
|
30065
|
-
clado: "clado";
|
|
30066
30062
|
amplemarket: "amplemarket";
|
|
30067
30063
|
}>;
|
|
30068
30064
|
}, z.core.$strip>>>;
|
|
@@ -32189,8 +32185,6 @@ declare function getPipePayloadSchema(pipeId: PipeId): z.ZodObject<{
|
|
|
32189
32185
|
output_field: z.ZodObject<{
|
|
32190
32186
|
name: z.ZodString;
|
|
32191
32187
|
format: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
32192
|
-
int: "int";
|
|
32193
|
-
date: "date";
|
|
32194
32188
|
email: "email";
|
|
32195
32189
|
address_line_1: "address_line_1";
|
|
32196
32190
|
zip_code: "zip_code";
|
|
@@ -32204,7 +32198,9 @@ declare function getPipePayloadSchema(pipeId: PipeId): z.ZodObject<{
|
|
|
32204
32198
|
url: "url";
|
|
32205
32199
|
datetime: "datetime";
|
|
32206
32200
|
currency: "currency";
|
|
32201
|
+
date: "date";
|
|
32207
32202
|
text: "text";
|
|
32203
|
+
int: "int";
|
|
32208
32204
|
decimal: "decimal";
|
|
32209
32205
|
percent: "percent";
|
|
32210
32206
|
}>>>;
|
|
@@ -32213,8 +32209,8 @@ declare function getPipePayloadSchema(pipeId: PipeId): z.ZodObject<{
|
|
|
32213
32209
|
string: "string";
|
|
32214
32210
|
number: "number";
|
|
32215
32211
|
boolean: "boolean";
|
|
32216
|
-
unknown: "unknown";
|
|
32217
32212
|
json: "json";
|
|
32213
|
+
unknown: "unknown";
|
|
32218
32214
|
}>;
|
|
32219
32215
|
}, z.core.$strip>;
|
|
32220
32216
|
}, z.core.$strip>>;
|
|
@@ -34565,7 +34561,6 @@ declare function getPipePayloadSchema(pipeId: PipeId): z.ZodObject<{
|
|
|
34565
34561
|
findymail: "findymail";
|
|
34566
34562
|
leadmagic: "leadmagic";
|
|
34567
34563
|
prospeo: "prospeo";
|
|
34568
|
-
clado: "clado";
|
|
34569
34564
|
amplemarket: "amplemarket";
|
|
34570
34565
|
}>;
|
|
34571
34566
|
}, z.core.$strip>>>;
|
|
@@ -34708,7 +34703,6 @@ declare function getPipePayloadSchema(pipeId: PipeId): z.ZodObject<{
|
|
|
34708
34703
|
provider: z.ZodEnum<{
|
|
34709
34704
|
leadmagic: "leadmagic";
|
|
34710
34705
|
mixrank: "mixrank";
|
|
34711
|
-
clado: "clado";
|
|
34712
34706
|
}>;
|
|
34713
34707
|
}, z.core.$strip>>>;
|
|
34714
34708
|
input_fields: z.ZodOptional<z.ZodObject<{
|
|
@@ -34851,7 +34845,6 @@ declare function getPipePayloadSchema(pipeId: PipeId): z.ZodObject<{
|
|
|
34851
34845
|
provider: z.ZodEnum<{
|
|
34852
34846
|
icypeas: "icypeas";
|
|
34853
34847
|
prospeo: "prospeo";
|
|
34854
|
-
clado: "clado";
|
|
34855
34848
|
amplemarket: "amplemarket";
|
|
34856
34849
|
}>;
|
|
34857
34850
|
}, z.core.$strip>>>;
|
|
@@ -35473,7 +35466,6 @@ declare function getPipePayloadSchema(pipeId: PipeId): z.ZodObject<{
|
|
|
35473
35466
|
crustdata: "crustdata";
|
|
35474
35467
|
hunter: "hunter";
|
|
35475
35468
|
leadmagic: "leadmagic";
|
|
35476
|
-
clado: "clado";
|
|
35477
35469
|
amplemarket: "amplemarket";
|
|
35478
35470
|
}>;
|
|
35479
35471
|
}, z.core.$strip>>>;
|
|
@@ -35952,8 +35944,8 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
35952
35944
|
string: "string";
|
|
35953
35945
|
number: "number";
|
|
35954
35946
|
boolean: "boolean";
|
|
35955
|
-
unknown: "unknown";
|
|
35956
35947
|
json: "json";
|
|
35948
|
+
unknown: "unknown";
|
|
35957
35949
|
}>;
|
|
35958
35950
|
label: z.ZodString;
|
|
35959
35951
|
added_by: z.ZodObject<{
|
|
@@ -36041,8 +36033,6 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
36041
36033
|
pipe_index: z.ZodNullable<z.ZodNumber>;
|
|
36042
36034
|
}, z.core.$strip>;
|
|
36043
36035
|
format: z.ZodNullable<z.ZodEnum<{
|
|
36044
|
-
int: "int";
|
|
36045
|
-
date: "date";
|
|
36046
36036
|
email: "email";
|
|
36047
36037
|
address_line_1: "address_line_1";
|
|
36048
36038
|
zip_code: "zip_code";
|
|
@@ -36056,7 +36046,9 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
36056
36046
|
url: "url";
|
|
36057
36047
|
datetime: "datetime";
|
|
36058
36048
|
currency: "currency";
|
|
36049
|
+
date: "date";
|
|
36059
36050
|
text: "text";
|
|
36051
|
+
int: "int";
|
|
36060
36052
|
decimal: "decimal";
|
|
36061
36053
|
percent: "percent";
|
|
36062
36054
|
}>>;
|
|
@@ -36076,8 +36068,8 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
36076
36068
|
string: "string";
|
|
36077
36069
|
number: "number";
|
|
36078
36070
|
boolean: "boolean";
|
|
36079
|
-
unknown: "unknown";
|
|
36080
36071
|
json: "json";
|
|
36072
|
+
unknown: "unknown";
|
|
36081
36073
|
}>;
|
|
36082
36074
|
reason: z.ZodNullable<z.ZodObject<{
|
|
36083
36075
|
code: z.ZodString;
|
|
@@ -36382,8 +36374,6 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
36382
36374
|
}, z.core.$strip>>>;
|
|
36383
36375
|
}, z.core.$strip>>;
|
|
36384
36376
|
format: z.ZodNullable<z.ZodEnum<{
|
|
36385
|
-
int: "int";
|
|
36386
|
-
date: "date";
|
|
36387
36377
|
email: "email";
|
|
36388
36378
|
address_line_1: "address_line_1";
|
|
36389
36379
|
zip_code: "zip_code";
|
|
@@ -36397,7 +36387,9 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
36397
36387
|
url: "url";
|
|
36398
36388
|
datetime: "datetime";
|
|
36399
36389
|
currency: "currency";
|
|
36390
|
+
date: "date";
|
|
36400
36391
|
text: "text";
|
|
36392
|
+
int: "int";
|
|
36401
36393
|
decimal: "decimal";
|
|
36402
36394
|
percent: "percent";
|
|
36403
36395
|
}>>;
|
|
@@ -36461,13 +36453,11 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
36461
36453
|
string: "string";
|
|
36462
36454
|
number: "number";
|
|
36463
36455
|
boolean: "boolean";
|
|
36464
|
-
unknown: "unknown";
|
|
36465
36456
|
json: "json";
|
|
36457
|
+
unknown: "unknown";
|
|
36466
36458
|
}>;
|
|
36467
36459
|
label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
36468
36460
|
format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
36469
|
-
int: "int";
|
|
36470
|
-
date: "date";
|
|
36471
36461
|
email: "email";
|
|
36472
36462
|
address_line_1: "address_line_1";
|
|
36473
36463
|
zip_code: "zip_code";
|
|
@@ -36481,7 +36471,9 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
36481
36471
|
url: "url";
|
|
36482
36472
|
datetime: "datetime";
|
|
36483
36473
|
currency: "currency";
|
|
36474
|
+
date: "date";
|
|
36484
36475
|
text: "text";
|
|
36476
|
+
int: "int";
|
|
36485
36477
|
decimal: "decimal";
|
|
36486
36478
|
percent: "percent";
|
|
36487
36479
|
}>>>;
|
|
@@ -38173,8 +38165,6 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
38173
38165
|
output_field: z.ZodObject<{
|
|
38174
38166
|
name: z.ZodString;
|
|
38175
38167
|
format: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
38176
|
-
int: "int";
|
|
38177
|
-
date: "date";
|
|
38178
38168
|
email: "email";
|
|
38179
38169
|
address_line_1: "address_line_1";
|
|
38180
38170
|
zip_code: "zip_code";
|
|
@@ -38188,7 +38178,9 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
38188
38178
|
url: "url";
|
|
38189
38179
|
datetime: "datetime";
|
|
38190
38180
|
currency: "currency";
|
|
38181
|
+
date: "date";
|
|
38191
38182
|
text: "text";
|
|
38183
|
+
int: "int";
|
|
38192
38184
|
decimal: "decimal";
|
|
38193
38185
|
percent: "percent";
|
|
38194
38186
|
}>>>;
|
|
@@ -38197,8 +38189,8 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
38197
38189
|
string: "string";
|
|
38198
38190
|
number: "number";
|
|
38199
38191
|
boolean: "boolean";
|
|
38200
|
-
unknown: "unknown";
|
|
38201
38192
|
json: "json";
|
|
38193
|
+
unknown: "unknown";
|
|
38202
38194
|
}>;
|
|
38203
38195
|
}, z.core.$strip>;
|
|
38204
38196
|
}, z.core.$strip>>;
|
|
@@ -39169,7 +39161,6 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
39169
39161
|
findymail: "findymail";
|
|
39170
39162
|
leadmagic: "leadmagic";
|
|
39171
39163
|
prospeo: "prospeo";
|
|
39172
|
-
clado: "clado";
|
|
39173
39164
|
amplemarket: "amplemarket";
|
|
39174
39165
|
}>;
|
|
39175
39166
|
}, z.core.$strip>>>;
|
|
@@ -39312,7 +39303,6 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
39312
39303
|
provider: z.ZodEnum<{
|
|
39313
39304
|
leadmagic: "leadmagic";
|
|
39314
39305
|
mixrank: "mixrank";
|
|
39315
|
-
clado: "clado";
|
|
39316
39306
|
}>;
|
|
39317
39307
|
}, z.core.$strip>>>;
|
|
39318
39308
|
input_fields: z.ZodOptional<z.ZodObject<{
|
|
@@ -39455,7 +39445,6 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
39455
39445
|
provider: z.ZodEnum<{
|
|
39456
39446
|
icypeas: "icypeas";
|
|
39457
39447
|
prospeo: "prospeo";
|
|
39458
|
-
clado: "clado";
|
|
39459
39448
|
amplemarket: "amplemarket";
|
|
39460
39449
|
}>;
|
|
39461
39450
|
}, z.core.$strip>>>;
|
|
@@ -41264,7 +41253,6 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
41264
41253
|
crustdata: "crustdata";
|
|
41265
41254
|
hunter: "hunter";
|
|
41266
41255
|
leadmagic: "leadmagic";
|
|
41267
|
-
clado: "clado";
|
|
41268
41256
|
amplemarket: "amplemarket";
|
|
41269
41257
|
}>;
|
|
41270
41258
|
}, z.core.$strip>>>;
|
|
@@ -41898,12 +41886,10 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
41898
41886
|
string: "string";
|
|
41899
41887
|
number: "number";
|
|
41900
41888
|
boolean: "boolean";
|
|
41901
|
-
unknown: "unknown";
|
|
41902
41889
|
json: "json";
|
|
41890
|
+
unknown: "unknown";
|
|
41903
41891
|
}>>;
|
|
41904
41892
|
format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
41905
|
-
int: "int";
|
|
41906
|
-
date: "date";
|
|
41907
41893
|
email: "email";
|
|
41908
41894
|
address_line_1: "address_line_1";
|
|
41909
41895
|
zip_code: "zip_code";
|
|
@@ -41917,7 +41903,9 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
41917
41903
|
url: "url";
|
|
41918
41904
|
datetime: "datetime";
|
|
41919
41905
|
currency: "currency";
|
|
41906
|
+
date: "date";
|
|
41920
41907
|
text: "text";
|
|
41908
|
+
int: "int";
|
|
41921
41909
|
decimal: "decimal";
|
|
41922
41910
|
percent: "percent";
|
|
41923
41911
|
}>>>;
|
|
@@ -42293,7 +42281,7 @@ type PipesPayloadRegistry = typeof pipesPayloadRegistry;
|
|
|
42293
42281
|
declare const searchesPayloadRegistry: z.core.$ZodRegistry<GeneratedInputMeta, z.core.$ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
42294
42282
|
type SearchesPayloadRegistry = typeof searchesPayloadRegistry;
|
|
42295
42283
|
type Registry = PipesPayloadRegistry | SearchesPayloadRegistry;
|
|
42296
|
-
type SectionKeys = "
|
|
42284
|
+
type SectionKeys = "general" | "pagination" | "config.filters" | "pipe_io";
|
|
42297
42285
|
interface ConfigField {
|
|
42298
42286
|
path: string;
|
|
42299
42287
|
groupPath: string;
|
|
@@ -42362,6 +42350,33 @@ interface OrderedMultiCreateMeta extends ConfigField {
|
|
|
42362
42350
|
type: "static";
|
|
42363
42351
|
} | OptionsDef;
|
|
42364
42352
|
}
|
|
42353
|
+
/**
|
|
42354
|
+
* Ordered list where each entry is EITHER plain text OR a single field
|
|
42355
|
+
* reference like `{{ company_domain }}` — no concatenation. The constraint
|
|
42356
|
+
* lets the UI render each entry as one of two chip kinds (text vs field)
|
|
42357
|
+
* without needing a tiptap editor per row.
|
|
42358
|
+
*
|
|
42359
|
+
* Payload is `string[]`: text entries stored as-is, field references stored
|
|
42360
|
+
* as the literal `{{ name }}` Liquid template (so the existing runner
|
|
42361
|
+
* `renderLiquidTemplate` call handles substitution without any changes).
|
|
42362
|
+
*/
|
|
42363
|
+
interface TaggedOrderedMultiCreateMeta extends ConfigField {
|
|
42364
|
+
type: "tagged_ordered_multi_create_input";
|
|
42365
|
+
maxItems?: number;
|
|
42366
|
+
minItems?: number;
|
|
42367
|
+
/** Free-text suggestions list (e.g. autocomplete("titles")). */
|
|
42368
|
+
suggestionsDef?: {
|
|
42369
|
+
options: {
|
|
42370
|
+
value: string;
|
|
42371
|
+
label: string;
|
|
42372
|
+
}[];
|
|
42373
|
+
type: "static";
|
|
42374
|
+
} | OptionsDef;
|
|
42375
|
+
/** Filters the field-reference picker by upstream field type. */
|
|
42376
|
+
expectedTagType?: RecordFieldType;
|
|
42377
|
+
/** Populated at registration time from validationContext.fieldDefinitions. */
|
|
42378
|
+
inputFields?: PipesFieldDefinitionWithName[];
|
|
42379
|
+
}
|
|
42365
42380
|
/**
|
|
42366
42381
|
* List of key/value text rows. Both sides accept literal text plus
|
|
42367
42382
|
* `{{ <field_name> }}` references (resolved per-record) and
|
|
@@ -42650,6 +42665,7 @@ type GeneratedInputMetaMap = {
|
|
|
42650
42665
|
async_multi_select_input: AsyncMultiSelectMeta;
|
|
42651
42666
|
async_include_exclude_select_input: AsyncIncludeExcludeSelectMeta;
|
|
42652
42667
|
ordered_multi_create_input: OrderedMultiCreateMeta;
|
|
42668
|
+
tagged_ordered_multi_create_input: TaggedOrderedMultiCreateMeta;
|
|
42653
42669
|
key_value_list_input: KeyValueListMeta;
|
|
42654
42670
|
cursor_pagination_metadata: CursorPaginationMeta;
|
|
42655
42671
|
min_max_int_input: MinMaxIntMeta;
|
|
@@ -42714,6 +42730,7 @@ declare const baseSchemas: {
|
|
|
42714
42730
|
date_range_input: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
42715
42731
|
multi_create_input: z.ZodArray<z.ZodString>;
|
|
42716
42732
|
ordered_multi_create_input: z.ZodArray<z.ZodString>;
|
|
42733
|
+
tagged_ordered_multi_create_input: z.ZodArray<z.ZodString>;
|
|
42717
42734
|
key_value_list_input: z.ZodArray<z.ZodObject<{
|
|
42718
42735
|
key: z.ZodString;
|
|
42719
42736
|
value: z.ZodString;
|
|
@@ -42745,6 +42762,14 @@ declare const baseSchemas: {
|
|
|
42745
42762
|
type FieldValueMap = { [K in GeneratedFormInputType]: z.infer<(typeof baseSchemas)[K]> };
|
|
42746
42763
|
declare const multiCreateInput: (metadata: Pick<MultiCreateMeta, "maxItems" | "minItems" | "sectionKey" | "enabledIf" | "info" | "path" | "suggestionsDef" | "label" | "groupPath" | "placeholder" | "order" | "description">, registry: Registry) => z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
42747
42764
|
declare const orderedMultiCreateInput: (metadata: Pick<OrderedMultiCreateMeta, "maxItems" | "minItems" | "sectionKey" | "enabledIf" | "info" | "path" | "suggestionsDef" | "label" | "groupPath" | "placeholder" | "order" | "description">, registry: Registry) => z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
42765
|
+
/**
|
|
42766
|
+
* Ordered list whose items are individually constrained to "pure text" or
|
|
42767
|
+
* "single field reference". Mixed content (e.g. `"Head of {{ company }}"`)
|
|
42768
|
+
* is rejected. The constraint mirrors the UI: each chip carries exactly one
|
|
42769
|
+
* kind, so the React adapter can render two visual variants without parsing
|
|
42770
|
+
* mixed inline content.
|
|
42771
|
+
*/
|
|
42772
|
+
declare const taggedOrderedMultiCreateInput: (metadata: Pick<TaggedOrderedMultiCreateMeta, "maxItems" | "minItems" | "sectionKey" | "enabledIf" | "info" | "path" | "suggestionsDef" | "label" | "groupPath" | "placeholder" | "order" | "description" | "expectedTagType">, registry: Registry) => z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
42748
42773
|
declare const keyValueListInput: (metadata: Pick<KeyValueListMeta, "maxItems" | "keyLabel" | "valueLabel" | "keyPlaceholder" | "valuePlaceholder" | "sectionKey" | "enabledIf" | "info" | "path" | "label" | "groupPath" | "placeholder" | "order" | "description">, registry: Registry) => z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
42749
42774
|
key: z.ZodString;
|
|
42750
42775
|
value: z.ZodString;
|
|
@@ -42760,8 +42785,6 @@ declare const pipesJsonExtractionInput: () => z.ZodObject<{
|
|
|
42760
42785
|
output_field: z.ZodObject<{
|
|
42761
42786
|
name: z.ZodString;
|
|
42762
42787
|
format: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
42763
|
-
int: "int";
|
|
42764
|
-
date: "date";
|
|
42765
42788
|
email: "email";
|
|
42766
42789
|
address_line_1: "address_line_1";
|
|
42767
42790
|
zip_code: "zip_code";
|
|
@@ -42775,7 +42798,9 @@ declare const pipesJsonExtractionInput: () => z.ZodObject<{
|
|
|
42775
42798
|
url: "url";
|
|
42776
42799
|
datetime: "datetime";
|
|
42777
42800
|
currency: "currency";
|
|
42801
|
+
date: "date";
|
|
42778
42802
|
text: "text";
|
|
42803
|
+
int: "int";
|
|
42779
42804
|
decimal: "decimal";
|
|
42780
42805
|
percent: "percent";
|
|
42781
42806
|
}>>>;
|
|
@@ -42784,8 +42809,8 @@ declare const pipesJsonExtractionInput: () => z.ZodObject<{
|
|
|
42784
42809
|
string: "string";
|
|
42785
42810
|
number: "number";
|
|
42786
42811
|
boolean: "boolean";
|
|
42787
|
-
unknown: "unknown";
|
|
42788
42812
|
json: "json";
|
|
42813
|
+
unknown: "unknown";
|
|
42789
42814
|
}>;
|
|
42790
42815
|
}, z.core.$strip>;
|
|
42791
42816
|
}, z.core.$strip>>;
|
|
@@ -42913,44 +42938,12 @@ declare const pipesRunIfInput: () => z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
|
42913
42938
|
* ("Behavior", "I/O & conditions", etc.) match the form's mental model.
|
|
42914
42939
|
*/
|
|
42915
42940
|
declare const defaultSectionMap: {
|
|
42916
|
-
|
|
42941
|
+
pipe_io: {
|
|
42917
42942
|
type: "form_section";
|
|
42918
42943
|
label: string;
|
|
42919
42944
|
description: string;
|
|
42920
42945
|
path: string;
|
|
42921
42946
|
};
|
|
42922
|
-
"config.input_fields": {
|
|
42923
|
-
type: "form_section";
|
|
42924
|
-
label: string;
|
|
42925
|
-
description: string;
|
|
42926
|
-
path: string;
|
|
42927
|
-
};
|
|
42928
|
-
"config.output_fields": {
|
|
42929
|
-
type: "form_section";
|
|
42930
|
-
label: string;
|
|
42931
|
-
description: string;
|
|
42932
|
-
path: string;
|
|
42933
|
-
};
|
|
42934
|
-
"config.extractions": {
|
|
42935
|
-
type: "form_section";
|
|
42936
|
-
label: string;
|
|
42937
|
-
description: string;
|
|
42938
|
-
path: string;
|
|
42939
|
-
};
|
|
42940
|
-
conditions: {
|
|
42941
|
-
type: "form_section";
|
|
42942
|
-
path: string;
|
|
42943
|
-
label: string;
|
|
42944
|
-
description: string;
|
|
42945
|
-
mode: string;
|
|
42946
|
-
};
|
|
42947
|
-
connector: {
|
|
42948
|
-
type: "form_section";
|
|
42949
|
-
path: string;
|
|
42950
|
-
label: string;
|
|
42951
|
-
description: string;
|
|
42952
|
-
mode: string;
|
|
42953
|
-
};
|
|
42954
42947
|
"config.filters": {
|
|
42955
42948
|
type: "form_section";
|
|
42956
42949
|
label: string;
|
|
@@ -42960,6 +42953,7 @@ declare const defaultSectionMap: {
|
|
|
42960
42953
|
general: {
|
|
42961
42954
|
type: "form_section";
|
|
42962
42955
|
path: string;
|
|
42956
|
+
label: string;
|
|
42963
42957
|
};
|
|
42964
42958
|
pagination: {
|
|
42965
42959
|
type: "form_section";
|
|
@@ -43056,6 +43050,7 @@ declare const pipesIncludeExcludeInput: (metadata: Metadata<typeof includeExclud
|
|
|
43056
43050
|
}, z.core.$strip>>;
|
|
43057
43051
|
declare const pipesMultiCreateInput: (metadata: Metadata<typeof multiCreateInput>) => z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
43058
43052
|
declare const pipesOrderedMultiCreateInput: (metadata: Metadata<typeof orderedMultiCreateInput>) => z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
43053
|
+
declare const pipesTaggedOrderedMultiCreateInput: (metadata: Metadata<typeof taggedOrderedMultiCreateInput>) => z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
43059
43054
|
declare const pipesKeyValueListInput: (metadata: Metadata<typeof keyValueListInput>) => z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
43060
43055
|
key: z.ZodString;
|
|
43061
43056
|
value: z.ZodString;
|
|
@@ -43207,6 +43202,7 @@ declare const inputGuards: {
|
|
|
43207
43202
|
async_multi_select_input: (input: GeneratedInputMeta) => input is GeneratedInputMetaMap["async_multi_select_input"];
|
|
43208
43203
|
async_include_exclude_select_input: (input: GeneratedInputMeta) => input is GeneratedInputMetaMap["async_include_exclude_select_input"];
|
|
43209
43204
|
ordered_multi_create_input: (input: GeneratedInputMeta) => input is GeneratedInputMetaMap["ordered_multi_create_input"];
|
|
43205
|
+
tagged_ordered_multi_create_input: (input: GeneratedInputMeta) => input is GeneratedInputMetaMap["tagged_ordered_multi_create_input"];
|
|
43210
43206
|
key_value_list_input: (input: GeneratedInputMeta) => input is GeneratedInputMetaMap["key_value_list_input"];
|
|
43211
43207
|
cursor_pagination_metadata: (input: GeneratedInputMeta) => input is GeneratedInputMetaMap["cursor_pagination_metadata"];
|
|
43212
43208
|
min_max_int_input: (input: GeneratedInputMeta) => input is GeneratedInputMetaMap["min_max_int_input"];
|
|
@@ -44803,8 +44799,8 @@ declare function markRecordFieldAsComplete({
|
|
|
44803
44799
|
widgets?: Widgets;
|
|
44804
44800
|
}): {
|
|
44805
44801
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
44806
|
-
status: "completed" | "failed" | "
|
|
44807
|
-
type: "string" | "number" | "boolean" | "
|
|
44802
|
+
status: "completed" | "failed" | "no_result" | "skipped" | "pending" | "queued" | "processing";
|
|
44803
|
+
type: "string" | "number" | "boolean" | "json" | "unknown";
|
|
44808
44804
|
reason: {
|
|
44809
44805
|
code: string;
|
|
44810
44806
|
summary: string;
|
|
@@ -44820,7 +44816,7 @@ declare function markRecordFieldAsComplete({
|
|
|
44820
44816
|
config_hash: string | null;
|
|
44821
44817
|
input_hash: string | null;
|
|
44822
44818
|
} | null;
|
|
44823
|
-
format: "
|
|
44819
|
+
format: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "date" | "text" | "int" | "decimal" | "percent" | null;
|
|
44824
44820
|
widgets?: {
|
|
44825
44821
|
display_value?: {
|
|
44826
44822
|
label?: string | undefined;
|
|
@@ -44867,8 +44863,8 @@ declare function markRecordFieldAsPending({
|
|
|
44867
44863
|
recordField: RecordField;
|
|
44868
44864
|
}): {
|
|
44869
44865
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
44870
|
-
status: "completed" | "failed" | "
|
|
44871
|
-
type: "string" | "number" | "boolean" | "
|
|
44866
|
+
status: "completed" | "failed" | "no_result" | "skipped" | "pending" | "queued" | "processing";
|
|
44867
|
+
type: "string" | "number" | "boolean" | "json" | "unknown";
|
|
44872
44868
|
reason: {
|
|
44873
44869
|
code: string;
|
|
44874
44870
|
summary: string;
|
|
@@ -44884,7 +44880,7 @@ declare function markRecordFieldAsPending({
|
|
|
44884
44880
|
config_hash: string | null;
|
|
44885
44881
|
input_hash: string | null;
|
|
44886
44882
|
} | null;
|
|
44887
|
-
format: "
|
|
44883
|
+
format: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "date" | "text" | "int" | "decimal" | "percent" | null;
|
|
44888
44884
|
widgets?: {
|
|
44889
44885
|
display_value?: {
|
|
44890
44886
|
label?: string | undefined;
|
|
@@ -44937,8 +44933,8 @@ declare function markRecordFieldAsNoResult({
|
|
|
44937
44933
|
widgets?: Widgets;
|
|
44938
44934
|
}): {
|
|
44939
44935
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
44940
|
-
status: "completed" | "failed" | "
|
|
44941
|
-
type: "string" | "number" | "boolean" | "
|
|
44936
|
+
status: "completed" | "failed" | "no_result" | "skipped" | "pending" | "queued" | "processing";
|
|
44937
|
+
type: "string" | "number" | "boolean" | "json" | "unknown";
|
|
44942
44938
|
reason: {
|
|
44943
44939
|
code: string;
|
|
44944
44940
|
summary: string;
|
|
@@ -44954,7 +44950,7 @@ declare function markRecordFieldAsNoResult({
|
|
|
44954
44950
|
config_hash: string | null;
|
|
44955
44951
|
input_hash: string | null;
|
|
44956
44952
|
} | null;
|
|
44957
|
-
format: "
|
|
44953
|
+
format: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "date" | "text" | "int" | "decimal" | "percent" | null;
|
|
44958
44954
|
widgets?: {
|
|
44959
44955
|
display_value?: {
|
|
44960
44956
|
label?: string | undefined;
|
|
@@ -44997,8 +44993,8 @@ declare function markRecordFieldAsNoResult({
|
|
|
44997
44993
|
};
|
|
44998
44994
|
declare function markRecordFieldAsFailed(field: RecordField, reason: FieldReason, resolvedBy: RecordField["resolved_by"]): {
|
|
44999
44995
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
45000
|
-
status: "completed" | "failed" | "
|
|
45001
|
-
type: "string" | "number" | "boolean" | "
|
|
44996
|
+
status: "completed" | "failed" | "no_result" | "skipped" | "pending" | "queued" | "processing";
|
|
44997
|
+
type: "string" | "number" | "boolean" | "json" | "unknown";
|
|
45002
44998
|
reason: {
|
|
45003
44999
|
code: string;
|
|
45004
45000
|
summary: string;
|
|
@@ -45014,7 +45010,7 @@ declare function markRecordFieldAsFailed(field: RecordField, reason: FieldReason
|
|
|
45014
45010
|
config_hash: string | null;
|
|
45015
45011
|
input_hash: string | null;
|
|
45016
45012
|
} | null;
|
|
45017
|
-
format: "
|
|
45013
|
+
format: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "date" | "text" | "int" | "decimal" | "percent" | null;
|
|
45018
45014
|
widgets?: {
|
|
45019
45015
|
display_value?: {
|
|
45020
45016
|
label?: string | undefined;
|
|
@@ -45057,8 +45053,8 @@ declare function markRecordFieldAsFailed(field: RecordField, reason: FieldReason
|
|
|
45057
45053
|
};
|
|
45058
45054
|
declare function markRecordFieldAsSkipped(field: RecordField, reason: FieldReason): {
|
|
45059
45055
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
45060
|
-
status: "completed" | "failed" | "
|
|
45061
|
-
type: "string" | "number" | "boolean" | "
|
|
45056
|
+
status: "completed" | "failed" | "no_result" | "skipped" | "pending" | "queued" | "processing";
|
|
45057
|
+
type: "string" | "number" | "boolean" | "json" | "unknown";
|
|
45062
45058
|
reason: {
|
|
45063
45059
|
code: string;
|
|
45064
45060
|
summary: string;
|
|
@@ -45074,7 +45070,7 @@ declare function markRecordFieldAsSkipped(field: RecordField, reason: FieldReaso
|
|
|
45074
45070
|
config_hash: string | null;
|
|
45075
45071
|
input_hash: string | null;
|
|
45076
45072
|
} | null;
|
|
45077
|
-
format: "
|
|
45073
|
+
format: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "date" | "text" | "int" | "decimal" | "percent" | null;
|
|
45078
45074
|
widgets?: {
|
|
45079
45075
|
display_value?: {
|
|
45080
45076
|
label?: string | undefined;
|
|
@@ -45117,8 +45113,8 @@ declare function markRecordFieldAsSkipped(field: RecordField, reason: FieldReaso
|
|
|
45117
45113
|
};
|
|
45118
45114
|
declare function markRecordFieldAsProcessing(field: RecordField): {
|
|
45119
45115
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
45120
|
-
status: "completed" | "failed" | "
|
|
45121
|
-
type: "string" | "number" | "boolean" | "
|
|
45116
|
+
status: "completed" | "failed" | "no_result" | "skipped" | "pending" | "queued" | "processing";
|
|
45117
|
+
type: "string" | "number" | "boolean" | "json" | "unknown";
|
|
45122
45118
|
reason: {
|
|
45123
45119
|
code: string;
|
|
45124
45120
|
summary: string;
|
|
@@ -45134,7 +45130,7 @@ declare function markRecordFieldAsProcessing(field: RecordField): {
|
|
|
45134
45130
|
config_hash: string | null;
|
|
45135
45131
|
input_hash: string | null;
|
|
45136
45132
|
} | null;
|
|
45137
|
-
format: "
|
|
45133
|
+
format: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "date" | "text" | "int" | "decimal" | "percent" | null;
|
|
45138
45134
|
widgets?: {
|
|
45139
45135
|
display_value?: {
|
|
45140
45136
|
label?: string | undefined;
|
|
@@ -45182,12 +45178,12 @@ declare function catalogInput(field: NamedFieldEntry, config: {
|
|
|
45182
45178
|
alias?: string | undefined;
|
|
45183
45179
|
}> | undefined;
|
|
45184
45180
|
} | null | undefined): {
|
|
45185
|
-
name: "
|
|
45181
|
+
name: "company_description" | "cleaned_company_name" | "company_industry" | "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" | "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
45182
|
description: "A summary of the main business purpose and objectives." | "The standardized and cleaned version of the company name, ensuring consistency across different entries." | "Markdown-formatted scrape of a website." | "A list of website links." | "HTML-formatted scrape of a website." | "Generic URL of a website." | "List of URLs" | "List of URLs scraped from a website" | "Fully enriched people profile" | "The industry in which the company operates." | "The region corresponding to the company's country." | "An optional hint to help pinpoint a person's or company's location." | "A list of the top competitors for a given company as provided by LeadMagic" | "A list of acquisitions by a given company" | "A list of company news" | "The estimated annual revenue of the company." | "List of corporate funding rounds." | "Amount of total known funding" | "The year the company was founded." | "A flat list of technologies used by a company" | "Technology spending trend over the last 2 years. Average deviation between measuring points in %." | "A datastructure containing the technologies used by this company" | "Social followers (or zero if not found)." | "Mobile telephone number of a person." | "A generic field for phone numbers. Can be mobile or landline." | "A landline phone number" | "Current job title of a person" | "Description of current job" | "A union field that can contain both professional and personal email addresses." | "The personal email address of a prospect." | "The personal email addresses that are associated with a prospect but less likely to be the primary email address of a prospect." | "Latest company news." | "Email address of a person connection to their place of employment." | "Total number of people employed in a particular organization" | "Website URL of a related company." | "Bare domain of a related company. Example: stripe.com (no scheme, no path)." | "Name of a company." | "Object returned from a Clado people search." | "Object returned from a Icypeas people search" | "First name of a person." | "Recipient name in the format required by postal services." | "URL for profile picture" | "First line of an address (e.g. street address)" | "The formatted address of a company’s headquarters." | "Name of a city as needed for an address." | "Name of a country as needed for an address." | "Name of a state." | "A postal zip code. Usually a combination of numbers and letters." | "Last name of a person." | "Estimated total salary in USD." | "List of professional skills" | "Check if a given email is a work email." | "The full name of a person. Usually a combination of first and last name." | "IP Address of a person" | "Check if an email address is valid and can receive emails." | "A standardized format for returning LinkedIn profile data." | "A person's LinkedIn profile URL." | "List of recent LinkedIn posts in JSON format." | "Professional profile headline" | "Company LinkedIn URL." | "Result of email sending action using Resend" | "Id of a single resend contact" | "Name of a pipe0 sheet" | "Input field of type string" | "A domain field." | "Input field of type string and URL format" | "A value that has been stripped of characters not found in slugs." | "HTTP status code returned by the upstream endpoint." | "Parsed JSON body returned by the upstream endpoint." | "Response headers returned by the upstream endpoint as a flat key-value map." | "ID of sheet record" | "IDs sheet records" | "Result of email sending action using Gmail" | "Result of sending a message using Slack" | "The test of an email formatted as markdown" | "A markdown message that be send to any chat app." | "Subject line for email" | "Template value where the tags are replaces with real values" | "Email validation status. Allowed values are: 'valid', 'invalid', 'catch_all', 'unkown'" | "Validation status as returned from ZeroBounce single validation" | "Full validation object as returned by ZeroBounce" | "List of unstructured input objects" | "Reference to a created sheet" | "Result of a firecrawl extract operation" | "Exa search result." | "CompanyEnrich response object" | "Crustdata company match object" | "A number between 1 and 0 indicating the confidence that the profile belongs to the input email address." | "Crustdata company enrichment match." | "LinkedIn post list" | "Rich JSON post list" | "Result of a role finder operation" | "Person match object as returned by Amplemarket" | "Company match object as returned by Amplemarket" | "CompanyEnrich response list." | "Company or organization logo" | "Get company logos & brand data" | "Social Media URL for a given company (e.g. LinkedIn profile URL).";
|
|
45187
45183
|
resolvedName: string;
|
|
45188
|
-
type: "string" | "number" | "boolean" | "
|
|
45184
|
+
type: "string" | "number" | "boolean" | "json" | "unknown";
|
|
45189
45185
|
label: "Company description" | "Cleaned company name" | "Scrape result - Markdown" | "Website internal links" | "Scrape result - HTML" | "Website URL" | "URLs" | "Clado person profile" | "Full name" | "Profile headline" | "LinkedIn profile URL" | "Job title" | "Company industry" | "Company region" | "Location hint" | "Competitor list" | "Acquisition history" | "Company news list" | "Estimated Annual Revenue" | "Funding history" | "Total funding (USD)" | "Founding year" | "Technology list" | "Spending Trend" | "Builtwith technology response" | "Follower count" | "Mobile" | "Phone" | "Landline" | "Job description" | "Email address" | "Personal email" | "Alternate personal email" | "Latest news" | "Work email" | "Headcount" | "Company website URL" | "Company domain" | "Company name" | "Clado person match" | "Icypeas person match" | "Icypeas company match" | "First name" | "Addressee name" | "Avatar URL" | "Address line 1" | "Address line 2" | "Address city" | "Address country" | "State" | "Zip code" | "Last name" | "Estimated salary" | "Skills" | "Is work email result" | "IP address" | "Email validation" | "Professional profile" | "Recrent linkedIn posts" | "Company LinkedIn profile URL" | "Resend mail success" | "Resend contact id" | "Sheet name" | "String input" | "Domain" | "URL input" | "Slugified value" | "HTTP response status" | "HTTP response body" | "HTTP response headers" | "Record ID" | "Record IDs" | "Gmail e-mail success" | "Slack message success" | "A markdown email" | "Message" | "Subject Line" | "Template Output" | "Validation status" | "Million Verifier match" | "ZeroBounce Validation Status" | "ZeroBounce Validation Match" | "Input objects" | "Created sheet" | "Merge Result" | "Extract Result" | "Exa Match Evaluation" | "Company match" | "Person match" | "Match score" | "Company enrichment match" | "Post list" | "Crustdata Post list" | "Role finder match" | "CompanyEnrich matches" | "Logo URL" | "Company Social URL" | "Professional profile (LinkedIn)" | "LinkedIn Profile URL";
|
|
45190
|
-
format: "
|
|
45186
|
+
format: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "currency" | "text" | "int" | "decimal" | "percent" | null;
|
|
45191
45187
|
};
|
|
45192
45188
|
//#endregion
|
|
45193
45189
|
//#region src/pipes/pipes-validator/get-output-field-info-from-dev.d.ts
|
|
@@ -45569,7 +45565,7 @@ declare function stringify(v: unknown): unknown;
|
|
|
45569
45565
|
declare function rateLimitRatioFallingProgression(index: number): number;
|
|
45570
45566
|
declare function sortObjectKeys(obj: any): any;
|
|
45571
45567
|
declare const TYPES_TO_FORMATS: {
|
|
45572
|
-
string: ("
|
|
45568
|
+
string: ("email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "url" | "datetime" | "date" | "text")[];
|
|
45573
45569
|
json: ("json_object" | "json_list")[];
|
|
45574
45570
|
number: ("int" | "decimal")[];
|
|
45575
45571
|
boolean: never[];
|
|
@@ -45609,14 +45605,14 @@ declare function fieldsToObject(fields: PipesRecord["fields"], cfg?: Partial<Fie
|
|
|
45609
45605
|
declare function inputFromRecords(records: PipesInMemoryResponse["records"], config?: Partial<FieldsToObjectsConfig>): {
|
|
45610
45606
|
[k: string]: string | number | boolean | Record<string, unknown> | unknown[] | {
|
|
45611
45607
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
45612
|
-
status: "completed" | "failed" | "
|
|
45608
|
+
status: "completed" | "failed" | "no_result" | "skipped" | "pending" | "queued" | "processing";
|
|
45613
45609
|
reason?: {
|
|
45614
45610
|
code: string;
|
|
45615
45611
|
summary: string;
|
|
45616
45612
|
message: string;
|
|
45617
45613
|
} | null | undefined;
|
|
45618
|
-
type?: "string" | "number" | "boolean" | "
|
|
45619
|
-
format?: "
|
|
45614
|
+
type?: "string" | "number" | "boolean" | "json" | "unknown" | undefined;
|
|
45615
|
+
format?: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "date" | "text" | "int" | "decimal" | "percent" | null | undefined;
|
|
45620
45616
|
claimed_by?: {
|
|
45621
45617
|
ref: "input" | "prompt:run@1" | "company:newssummary:website@1" | "company:newssummary:domain@1" | "company:techstack:builtwith@1" | "company:techstack:builtwith@2" | "company:websiteurl:email@1" | "company:domain:workemail@1" | "company:funding:leadmagic@1" | "company:funding:leadmagic@2" | "people:workemail:waterfall@1" | "person:workemail:waterfall@1" | "people:email:iswork@1" | "email:iswork@1" | "people:name:split@1" | "person:name:split@1" | "person:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "email:validate:zerobounce@1" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "company:overview@3" | "json:extract:multi@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "person:match:role:waterfall@1" | "person:identity:amplemarket@1" | "company:identity@2" | "company:identity@3" | "person:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "person:mobile:profileurl:waterfall@1" | "people:personalemail:profile:waterfall@1" | "person:personalemail:profileurl:waterfall@1" | "people:profile:waterfall@1" | "person:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "person:profileurl:email:waterfall@1" | "person:profileurl:name@1" | "people:email:validate:zerobounce@1" | "person:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "person:mobile:workemail:waterfall@1" | "fields:merge@1" | "field:slugify@1" | "field:domainify@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:row:append@1" | "sheet:row:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:lookalikes:companyenrich@2" | "company:match:logodev@1" | "company:match:logodev@2" | "person:posts:crustdata@1" | "company:match:crustdata@1" | "company:match:crustdata@2" | "people:profile:workemail:crustdata@1" | "person:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "person:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "person:identity:email:waterfall@1" | "http:request@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | null;
|
|
45622
45618
|
config_hash: string | null;
|
|
@@ -45669,14 +45665,14 @@ declare function inputFromRecords(records: PipesInMemoryResponse["records"], con
|
|
|
45669
45665
|
} | null;
|
|
45670
45666
|
[k: number]: string | number | boolean | Record<string, unknown> | unknown[] | {
|
|
45671
45667
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
45672
|
-
status: "completed" | "failed" | "
|
|
45668
|
+
status: "completed" | "failed" | "no_result" | "skipped" | "pending" | "queued" | "processing";
|
|
45673
45669
|
reason?: {
|
|
45674
45670
|
code: string;
|
|
45675
45671
|
summary: string;
|
|
45676
45672
|
message: string;
|
|
45677
45673
|
} | null | undefined;
|
|
45678
|
-
type?: "string" | "number" | "boolean" | "
|
|
45679
|
-
format?: "
|
|
45674
|
+
type?: "string" | "number" | "boolean" | "json" | "unknown" | undefined;
|
|
45675
|
+
format?: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "date" | "text" | "int" | "decimal" | "percent" | null | undefined;
|
|
45680
45676
|
claimed_by?: {
|
|
45681
45677
|
ref: "input" | "prompt:run@1" | "company:newssummary:website@1" | "company:newssummary:domain@1" | "company:techstack:builtwith@1" | "company:techstack:builtwith@2" | "company:websiteurl:email@1" | "company:domain:workemail@1" | "company:funding:leadmagic@1" | "company:funding:leadmagic@2" | "people:workemail:waterfall@1" | "person:workemail:waterfall@1" | "people:email:iswork@1" | "email:iswork@1" | "people:name:split@1" | "person:name:split@1" | "person:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "email:validate:zerobounce@1" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "company:overview@3" | "json:extract:multi@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "person:match:role:waterfall@1" | "person:identity:amplemarket@1" | "company:identity@2" | "company:identity@3" | "person:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "person:mobile:profileurl:waterfall@1" | "people:personalemail:profile:waterfall@1" | "person:personalemail:profileurl:waterfall@1" | "people:profile:waterfall@1" | "person:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "person:profileurl:email:waterfall@1" | "person:profileurl:name@1" | "people:email:validate:zerobounce@1" | "person:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "person:mobile:workemail:waterfall@1" | "fields:merge@1" | "field:slugify@1" | "field:domainify@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:row:append@1" | "sheet:row:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:lookalikes:companyenrich@2" | "company:match:logodev@1" | "company:match:logodev@2" | "person:posts:crustdata@1" | "company:match:crustdata@1" | "company:match:crustdata@2" | "people:profile:workemail:crustdata@1" | "person:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "person:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "person:identity:email:waterfall@1" | "http:request@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | null;
|
|
45682
45678
|
config_hash: string | null;
|
|
@@ -45732,14 +45728,14 @@ declare function inputFromRecords(records: PipesInMemoryResponse["records"], con
|
|
|
45732
45728
|
declare function inputFromRecordArr(records: PipesRecord[], config?: Partial<FieldsToObjectsConfig>): {
|
|
45733
45729
|
[k: string]: string | number | boolean | Record<string, unknown> | unknown[] | {
|
|
45734
45730
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
45735
|
-
status: "completed" | "failed" | "
|
|
45731
|
+
status: "completed" | "failed" | "no_result" | "skipped" | "pending" | "queued" | "processing";
|
|
45736
45732
|
reason?: {
|
|
45737
45733
|
code: string;
|
|
45738
45734
|
summary: string;
|
|
45739
45735
|
message: string;
|
|
45740
45736
|
} | null | undefined;
|
|
45741
|
-
type?: "string" | "number" | "boolean" | "
|
|
45742
|
-
format?: "
|
|
45737
|
+
type?: "string" | "number" | "boolean" | "json" | "unknown" | undefined;
|
|
45738
|
+
format?: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "date" | "text" | "int" | "decimal" | "percent" | null | undefined;
|
|
45743
45739
|
claimed_by?: {
|
|
45744
45740
|
ref: "input" | "prompt:run@1" | "company:newssummary:website@1" | "company:newssummary:domain@1" | "company:techstack:builtwith@1" | "company:techstack:builtwith@2" | "company:websiteurl:email@1" | "company:domain:workemail@1" | "company:funding:leadmagic@1" | "company:funding:leadmagic@2" | "people:workemail:waterfall@1" | "person:workemail:waterfall@1" | "people:email:iswork@1" | "email:iswork@1" | "people:name:split@1" | "person:name:split@1" | "person:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "email:validate:zerobounce@1" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "company:overview@3" | "json:extract:multi@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "person:match:role:waterfall@1" | "person:identity:amplemarket@1" | "company:identity@2" | "company:identity@3" | "person:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "person:mobile:profileurl:waterfall@1" | "people:personalemail:profile:waterfall@1" | "person:personalemail:profileurl:waterfall@1" | "people:profile:waterfall@1" | "person:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "person:profileurl:email:waterfall@1" | "person:profileurl:name@1" | "people:email:validate:zerobounce@1" | "person:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "person:mobile:workemail:waterfall@1" | "fields:merge@1" | "field:slugify@1" | "field:domainify@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:row:append@1" | "sheet:row:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:lookalikes:companyenrich@2" | "company:match:logodev@1" | "company:match:logodev@2" | "person:posts:crustdata@1" | "company:match:crustdata@1" | "company:match:crustdata@2" | "people:profile:workemail:crustdata@1" | "person:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "person:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "person:identity:email:waterfall@1" | "http:request@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | null;
|
|
45745
45741
|
config_hash: string | null;
|
|
@@ -45792,14 +45788,14 @@ declare function inputFromRecordArr(records: PipesRecord[], config?: Partial<Fie
|
|
|
45792
45788
|
} | null;
|
|
45793
45789
|
[k: number]: string | number | boolean | Record<string, unknown> | unknown[] | {
|
|
45794
45790
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
45795
|
-
status: "completed" | "failed" | "
|
|
45791
|
+
status: "completed" | "failed" | "no_result" | "skipped" | "pending" | "queued" | "processing";
|
|
45796
45792
|
reason?: {
|
|
45797
45793
|
code: string;
|
|
45798
45794
|
summary: string;
|
|
45799
45795
|
message: string;
|
|
45800
45796
|
} | null | undefined;
|
|
45801
|
-
type?: "string" | "number" | "boolean" | "
|
|
45802
|
-
format?: "
|
|
45797
|
+
type?: "string" | "number" | "boolean" | "json" | "unknown" | undefined;
|
|
45798
|
+
format?: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "date" | "text" | "int" | "decimal" | "percent" | null | undefined;
|
|
45803
45799
|
claimed_by?: {
|
|
45804
45800
|
ref: "input" | "prompt:run@1" | "company:newssummary:website@1" | "company:newssummary:domain@1" | "company:techstack:builtwith@1" | "company:techstack:builtwith@2" | "company:websiteurl:email@1" | "company:domain:workemail@1" | "company:funding:leadmagic@1" | "company:funding:leadmagic@2" | "people:workemail:waterfall@1" | "person:workemail:waterfall@1" | "people:email:iswork@1" | "email:iswork@1" | "people:name:split@1" | "person:name:split@1" | "person:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "email:validate:zerobounce@1" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "company:overview@3" | "json:extract:multi@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "person:match:role:waterfall@1" | "person:identity:amplemarket@1" | "company:identity@2" | "company:identity@3" | "person:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "person:mobile:profileurl:waterfall@1" | "people:personalemail:profile:waterfall@1" | "person:personalemail:profileurl:waterfall@1" | "people:profile:waterfall@1" | "person:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "person:profileurl:email:waterfall@1" | "person:profileurl:name@1" | "people:email:validate:zerobounce@1" | "person:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "person:mobile:workemail:waterfall@1" | "fields:merge@1" | "field:slugify@1" | "field:domainify@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:row:append@1" | "sheet:row:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:lookalikes:companyenrich@2" | "company:match:logodev@1" | "company:match:logodev@2" | "person:posts:crustdata@1" | "company:match:crustdata@1" | "company:match:crustdata@2" | "people:profile:workemail:crustdata@1" | "person:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "person:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "person:identity:email:waterfall@1" | "http:request@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | null;
|
|
45805
45801
|
config_hash: string | null;
|
|
@@ -45855,14 +45851,14 @@ declare function inputFromRecordArr(records: PipesRecord[], config?: Partial<Fie
|
|
|
45855
45851
|
declare function inputFromRecord(record: PipesRecord, config?: Partial<FieldsToObjectsConfig>): {
|
|
45856
45852
|
[k: string]: string | number | boolean | Record<string, unknown> | unknown[] | {
|
|
45857
45853
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
45858
|
-
status: "completed" | "failed" | "
|
|
45854
|
+
status: "completed" | "failed" | "no_result" | "skipped" | "pending" | "queued" | "processing";
|
|
45859
45855
|
reason?: {
|
|
45860
45856
|
code: string;
|
|
45861
45857
|
summary: string;
|
|
45862
45858
|
message: string;
|
|
45863
45859
|
} | null | undefined;
|
|
45864
|
-
type?: "string" | "number" | "boolean" | "
|
|
45865
|
-
format?: "
|
|
45860
|
+
type?: "string" | "number" | "boolean" | "json" | "unknown" | undefined;
|
|
45861
|
+
format?: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "date" | "text" | "int" | "decimal" | "percent" | null | undefined;
|
|
45866
45862
|
claimed_by?: {
|
|
45867
45863
|
ref: "input" | "prompt:run@1" | "company:newssummary:website@1" | "company:newssummary:domain@1" | "company:techstack:builtwith@1" | "company:techstack:builtwith@2" | "company:websiteurl:email@1" | "company:domain:workemail@1" | "company:funding:leadmagic@1" | "company:funding:leadmagic@2" | "people:workemail:waterfall@1" | "person:workemail:waterfall@1" | "people:email:iswork@1" | "email:iswork@1" | "people:name:split@1" | "person:name:split@1" | "person:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "email:validate:zerobounce@1" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "company:overview@3" | "json:extract:multi@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "person:match:role:waterfall@1" | "person:identity:amplemarket@1" | "company:identity@2" | "company:identity@3" | "person:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "person:mobile:profileurl:waterfall@1" | "people:personalemail:profile:waterfall@1" | "person:personalemail:profileurl:waterfall@1" | "people:profile:waterfall@1" | "person:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "person:profileurl:email:waterfall@1" | "person:profileurl:name@1" | "people:email:validate:zerobounce@1" | "person:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "person:mobile:workemail:waterfall@1" | "fields:merge@1" | "field:slugify@1" | "field:domainify@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:row:append@1" | "sheet:row:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:lookalikes:companyenrich@2" | "company:match:logodev@1" | "company:match:logodev@2" | "person:posts:crustdata@1" | "company:match:crustdata@1" | "company:match:crustdata@2" | "people:profile:workemail:crustdata@1" | "person:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "person:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "person:identity:email:waterfall@1" | "http:request@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | null;
|
|
45868
45864
|
config_hash: string | null;
|
|
@@ -45915,14 +45911,14 @@ declare function inputFromRecord(record: PipesRecord, config?: Partial<FieldsToO
|
|
|
45915
45911
|
} | null;
|
|
45916
45912
|
[k: number]: string | number | boolean | Record<string, unknown> | unknown[] | {
|
|
45917
45913
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
45918
|
-
status: "completed" | "failed" | "
|
|
45914
|
+
status: "completed" | "failed" | "no_result" | "skipped" | "pending" | "queued" | "processing";
|
|
45919
45915
|
reason?: {
|
|
45920
45916
|
code: string;
|
|
45921
45917
|
summary: string;
|
|
45922
45918
|
message: string;
|
|
45923
45919
|
} | null | undefined;
|
|
45924
|
-
type?: "string" | "number" | "boolean" | "
|
|
45925
|
-
format?: "
|
|
45920
|
+
type?: "string" | "number" | "boolean" | "json" | "unknown" | undefined;
|
|
45921
|
+
format?: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "date" | "text" | "int" | "decimal" | "percent" | null | undefined;
|
|
45926
45922
|
claimed_by?: {
|
|
45927
45923
|
ref: "input" | "prompt:run@1" | "company:newssummary:website@1" | "company:newssummary:domain@1" | "company:techstack:builtwith@1" | "company:techstack:builtwith@2" | "company:websiteurl:email@1" | "company:domain:workemail@1" | "company:funding:leadmagic@1" | "company:funding:leadmagic@2" | "people:workemail:waterfall@1" | "person:workemail:waterfall@1" | "people:email:iswork@1" | "email:iswork@1" | "people:name:split@1" | "person:name:split@1" | "person:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "email:validate:zerobounce@1" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "company:overview@3" | "json:extract:multi@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "person:match:role:waterfall@1" | "person:identity:amplemarket@1" | "company:identity@2" | "company:identity@3" | "person:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "person:mobile:profileurl:waterfall@1" | "people:personalemail:profile:waterfall@1" | "person:personalemail:profileurl:waterfall@1" | "people:profile:waterfall@1" | "person:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "person:profileurl:email:waterfall@1" | "person:profileurl:name@1" | "people:email:validate:zerobounce@1" | "person:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "person:mobile:workemail:waterfall@1" | "fields:merge@1" | "field:slugify@1" | "field:domainify@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:row:append@1" | "sheet:row:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:lookalikes:companyenrich@2" | "company:match:logodev@1" | "company:match:logodev@2" | "person:posts:crustdata@1" | "company:match:crustdata@1" | "company:match:crustdata@2" | "people:profile:workemail:crustdata@1" | "person:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "person:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "person:identity:email:waterfall@1" | "http:request@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | null;
|
|
45928
45924
|
config_hash: string | null;
|
|
@@ -47330,4 +47326,4 @@ declare const ProfileFieldSchema: z.ZodObject<{
|
|
|
47330
47326
|
}, z.core.$strip>;
|
|
47331
47327
|
type ProfielField = z.infer<typeof ProfileFieldSchema>;
|
|
47332
47328
|
//#endregion
|
|
47333
|
-
export { AI_MODELS, AI_MODEL_CATALOG, type AiModelId, type AnalysisResult, AnyPipeConstructor, AppError, AsyncIncludeExcludeSelectMeta, AsyncMultiSelectMeta, type AutocompleteOption, type AutocompleteSourceKey, BillableOperation, BillableOperationDef, BillableOperations, BillingMode, BooleanMeta, type BuiltWithTechStackTransformedRespoonse as BuiltWithDomainStack, type BuiltWithTechStackTransformedRespoonse, type CatalogEntityFilter, type CatalogFilter, type CatalogPattern, CatalogSchemaRef, CatalogSchemaRefSchema, type CladoPersonMatch, type CladoPersonMatchV2, ConditionOperators, ConditionOperatorsSchema, ConfigField, ConnectorConnection, ConnectorMeta, type ConstantSuggestion, ContextSelectMeta, CursorPaginationMeta, DateRangeMeta, type DedupConfig, type DedupStrategy, type DependencyGraphRelation, DerivedInputFields, EmailValidationStatus, type EnabledIf, type EnabledResult, ExactRangeMeta, ExecutionMode, ExpandedFieldValue, ExpandedFieldValueSchema, ExternalProviderName, FIELD_PLACEHOLDERS, FieldAnnotation, FieldAnnotationSchema, FieldAnnotations, FieldAnnotationsSchema, FieldAnnotationsType, FieldCatalog, type FieldContextArgs, type FieldContextClient, type FieldContextSheetSummary, FieldEntry, FieldGroup, FieldMode, FieldName, FieldNameSchema, type FieldPlaceholderKey, FieldReason, FieldReasonSchema, FieldSchemaType, FieldValue, FieldValueMap, FieldValueSchema, FieldsSelectMeta, FieldsToObjectsConfig, type FormResolvers, FormSection, FormSectionMeta, type FormStore, FormStoreSchema, GeneratedFormInputType, GeneratedInputMeta, GeneratedInputMetaMap, type GetConnectionsArgs, type GetConstantsArgs, type GetSecretsArgs, GroupPathMatch, type IconKey, IconWidgetKey, type IcypeasCompanyMatch, type IcypeasPersonMatch, IncludeExcludeMeta, IncludeExcludeSelectMeta, IntegerMeta, IntermediateFormSection, JSONExtractSchema, JSONExtraction, JSONExtractionMeta, JSONMeta, JSONMetaSchema, JSONSchemaMeta, JsonFieldType, KeyValueListMeta, LazyResolveContext, MinMaxIntMeta, MultiCreateMeta, MultiSelectMeta, NamedFieldEntry, NoConnector, NoConnectorSchema, NullableBooleanMeta, NumberMeta, OptionalConnector, OptionalConnectorSchema, type OptionsDef, OrderedMultiCreateMeta, type OutputDecl, OutputFieldMeta, PIPE_IDS, PaginationType, PaginationTypeSchema, PersonWorkemailWaterfall1Entry, PersonWorkemailWaterfall1PayloadSchema, PersonWorkemailWaterfall1PipeClass, Pipe, Pipe0Error, PipeBaseConfig, PipeCatalog, PipeCatalogEntry, PipeCategory, PipeCategoryEntry, PipeConfigMapByExpecutionType, PipeConnectionRequirement, PipeDef, PipeEntryWithLatestVersion, type PipeFieldContextDef, PipeId, PipeIdSchema, PipeInputField, PipeModuleExport, PipeOutputField, PipePayload, PipePayloadInput, PipePayloadMap, PipePayloadSchema, PipePayloadSchemaCatalog, PipeRequestPayloadMap, PipeRunIf, PipeRunIfSchema, PipelineValidationError, type PipesEnvironment, PipesEnvironmentSchema, PipesError, PipesErrorSchema, PipesFieldDefinition, PipesFieldDefinitionSchema, PipesFieldDefinitionWithName, PipesFieldDefinitions, PipesFieldDefinitionsSchema, PipesInMemoryResponse, PipesInput, PipesInputSchema, PipesRecord, PipesRequest, PipesRequestConfig, PipesRequestConfigSchema, PipesRequestPayload, PipesRequestSchema, PipesResponse, PipesResponseSchema, PipesRunIfMeta, ProcessedPipePayloadSchema, ProcessedSearchPayloadSchema, ProcessedSearchesPayloadSchema, type ProfielField, PromptMeta, ProviderCatalogEntry, ProviderName, ProviderNameSchema, ProviderRateLimitOperation, ProvidersInputMeta, RECORD_FIELD_FORMATS, RECORD_FIELD_TYPES, RUN_IF_OPERATOR_LABELS, RUN_IF_STATUS_OPERATORS, RUN_IF_VALUE_OPERATORS, RangeMeta, RecordClaimedBy, RecordClaimedBySchema, RecordField, RecordFieldFormat, RecordFieldFormatSchema, RecordFieldSchema, RecordFieldStatus, RecordFieldStatusSchema, RecordFieldType, RecordFieldTypeSchema, RecordId, RecordIdSchema, RecordResolvedBy, RecordResolvedBySchema, RecordSchema, RequestValidationError, RequiredConnector, RequiredConnectorSchema, type Requirement, RequirementSatisfactionResult, type RichTextNode, RunIfStatusOperatorsSchema, RunIfStatusValueSchema, RunIfValueOperatorsSchema, SEARCHES_IDS, SEARCH_IDS, Search, SearchCatalog, SearchCatalogEntry, SearchCatalogTableData, SearchCategory, SearchCategoryEntry, SearchError, SearchErrorSchema, SearchId, SearchIdSchema, SearchMetaEntryWithId, SearchOutputField, SearchPayload, SearchPayloadCatalog, SearchPayloadInput, SearchPayloadMap, SearchPayloadSchema, SearchRequestPayload, SearchRequestPayloadMap, SearchRequestSchema, SearchRequestType, SearchResponse, SearchResponseSchema, SearchResult, SearchResultField, SearchResultFieldSchema, SearchResultSchema, SearchValidationResult, SearchesCatalog, SearchesCatalogEntry, SearchesCatalogTableData, SearchesCostPerResult, SearchesCostPerResultEntry, SearchesError, SearchesErrorSchema, SearchesId, SearchesIdSchema, SearchesMetaEntryWithId, SearchesPayload, SearchesPayloadCatalog, SearchesPayloadInput, SearchesPayloadMap, SearchesPayloadSchema, SearchesRequest, SearchesRequestBaseConfig, SearchesRequestBaseConfigSchema, SearchesRequestPayload, SearchesRequestPayloadMap, SearchesRequestSchema, SearchesResponse, SearchesResponseSchema, SearchesResult, SearchesResultField, SearchesResultFieldSchema, SearchesResultSchema, SearchesSearch, SearchesStatus, SearchesStatusSchema, SearchesValidationResult, type SecretSuggestion, SectionKeys, SectionMapDefinition, SelectMeta, type StoreOption, StoreOptionAutocompleteOption, StoreOptionsDef, SupportedTags, TYPES_TO_FORMATS, TaggedTextMeta, TemplateInputMeta, TextMeta, TextareaMeta, type TransformIntoResponseConfig, type UserConnection, ValidationContext, type Widget, Widgets, type StoreOptionWidget as WidgetsByKind, StoreOptionWidgetSchema as WidgetsByKindSchema, WidgetsSchema, all, analyzeLiquidTemplate, and, any, autocomplete, buildAiModelBillableOperations, buildDependencyGraph, buildInputRequirementFromTemplates, catalogInput, cleanObject, cleanUrl, cleanWebsiteUrl, collectConstantReferencesFromTemplates, collectPipeContextSelectFields, collectRequirementFields, collectSecretReferencesFromTemplates, compilePattern, configDefaults, convertIntermediateFieldsIntoGroups, defaultSectionMap, describeRequirement, entityLogoFavicon, entityLogoProfessionalProfileUrl, extractFormMetadata, field, fieldBehaviorCatalog, fieldCatalog, fieldNameStr, fieldTypeFromValue, fieldsToObject, filterPipeEntries, filterSearchEntries, filterSearchesEntries, getAiModelBillingKey, getAiModelConnectionRequirements, getAiModelProviders, getAllAiModelProviders, getBasePipeName, getDefaultOutputFields, getDefaultPipeProviders, getDefaultSearchOutputFields, getDefaultSearchesOutputFields, getDependentPipeNamesForInputProperty, getDependentPipeNamesForPipe, getDomain, getExpansionState, getFaviconUrlGoogle, getField, getFieldBehavior, getFieldDisplayLabel, getFieldWidgets, getInitialSearchTableData, getInitialSearchesTableData, getInitialTableData, getInputHash, getJsonMetaForFieldDef, getLoweestSearchCreditAmount, getLoweestSearchesCreditAmount, getLowestPipeCreditAmount, getOutputFieldInfoFromDef, getPipeBillableOperationDef, getPipeCategoryEntries, getPipeCategoryEntry, getPipeClass, getPipeConfigHash, getPipeDefaultPayload, getPipeDocsURI, getPipeEntry, getPipeInstances, getPipePayloadFormConfig, getPipePayloadSchema, getPipeVersion, getProviderBillableOperation, getProviderCreditsFromBillableOperations, getProviderEntry, getReadableFieldStatus, getSandboxConnections, getSandboxConnectionsForPipe, getSandboxConnectionsForSearch, getSandboxConnectionsForSearches, getSearchCategoryEntries, getSearchCategoryEntry, getSearchClass, getSearchDefaultPayload, getSearchEntry, getSearchFieldWidgets, getSearchInstance, getSearchPayloadFormConfig, getSearchPayloadSchema, getSearchTableDataAggregates, getSearchVersion, getSearchesClass, getSearchesDefaultPayload, getSearchesEntry, getSearchesFieldWidgets, getSearchesInstances, getSearchesPayloadSchema, getSearchesTableDataAggregates, getSearchesVersion, getStartingCostPerPipesProvider, getStartingCostPerSearchProvider, getStartingCostPerSearchesProvider, getTableDataAggregates, getUnexpandedValue, ifDefined, inputFields, inputFromRecord, inputFromRecordArr, inputFromRecords, inputGuards, isCatalogField, isEmptyValue, isFieldName, isPipeAllowed, isProviderAllowed, isRequirementMet, isRequirementSatisfiedByRecord, isSearchAllowed, isSearchesAllowed, joinConnectionString, markRecordFieldAsComplete, markRecordFieldAsFailed, markRecordFieldAsNoResult, markRecordFieldAsPending, markRecordFieldAsProcessing, markRecordFieldAsSkipped, matchesAny, matchesPattern, mergeWidgets, noConnectorInput, optional, optionalConnectorInput, or, outputFields, parseLiquidTemplate, parseOutputTagArgs, parseRecordValueOrError, parseRichText, pipeCatalog, pipeCategoryCatalog, pipeClassCatalog, pipePayloadSchemaCatalog, pipesAsyncIncludeExcludeSelectInput, pipesContextSelectInput, pipesDateRangeInput, pipesFieldsSelectInput, pipesIncludeExcludeInput, pipesIncludeExcludeSelectInput, pipesInputField, pipesIntInput, pipesJsonExtractionInput, pipesJsonSchemaField, pipesKeyValueListInput, pipesLLMSelectInput, pipesMultiCreateInput, pipesMultiSelectInput, pipesNumberInput, pipesOptionalBooleanInput, pipesOrderedMultiCreateInput, pipesOutputField, pipesPayloadRegistry, pipesPromptInput, pipesProviderInput, pipesRangeInput, pipesRunIfInput, pipesSelectInput, pipesSnippetCatalog, pipesTaggedTextInput, pipesTemplateInput, pipesTextInput, pipesTextareaInput, placeholder, processInputObjects, providerCatalog, rateLimitRatioFallingProgression, renderLiquidTemplate, renderLiquidTemplateSync, requiredConnectorInput, requirementToInputFields, requirementUnmetMessage, requiresConnection, requiresField, searchCatalog, searchCategoryCatalog, searchClassCatalog, searchPayloadSchemaCatalog, searchSnippetCatalog, searchesAsyncIncludeExcludeSelectInput, searchesAsyncMultiSelectInput, searchesCatalog, searchesClassCatalog, searchesDateRangeInput, searchesExactRangeInput, searchesIncludeExcludeInput, searchesIncludeExcludeSelectInput, searchesIntInput, searchesMinMaxIntInput, searchesMultiCreateInput, searchesMultiSelectInput, searchesNumberField, searchesOptionalBooleanInput, searchesOptionalNullableBooleanInput, searchesOrderedMultiCreateInput, searchesOutputField, searchesPayloadRegistry, searchesPayloadSchemaCatalog, searchesRangeInput, searchesSelectInput, searchesTextInput, searchesTextareaField, sortObjectKeys, sortPipeCatalogByBasePipe, sortSearchCatalogByBaseSearch, sortSearchesCatalogByBaseSearch, splitConnectionString, staticAutocomplete, staticOptions, stringify, testPrint, transformIntoResponse, validatePipesOrError, validateSearches, validationErrorMessages };
|
|
47329
|
+
export { AI_MODELS, AI_MODEL_CATALOG, type AiModelId, type AnalysisResult, AnyPipeConstructor, AppError, AsyncIncludeExcludeSelectMeta, AsyncMultiSelectMeta, type AutocompleteOption, type AutocompleteSourceKey, BillableOperation, BillableOperationDef, BillableOperations, BillingMode, BooleanMeta, type BuiltWithTechStackTransformedRespoonse as BuiltWithDomainStack, type BuiltWithTechStackTransformedRespoonse, type CatalogEntityFilter, type CatalogFilter, type CatalogPattern, CatalogSchemaRef, CatalogSchemaRefSchema, type CladoPersonMatch, type CladoPersonMatchV2, ConditionOperators, ConditionOperatorsSchema, ConfigField, ConnectorConnection, ConnectorMeta, type ConstantSuggestion, ContextSelectMeta, CursorPaginationMeta, DateRangeMeta, type DedupConfig, type DedupStrategy, type DependencyGraphRelation, DerivedInputFields, EmailValidationStatus, type EnabledIf, type EnabledResult, ExactRangeMeta, ExecutionMode, ExpandedFieldValue, ExpandedFieldValueSchema, ExternalProviderName, FIELD_PLACEHOLDERS, FieldAnnotation, FieldAnnotationSchema, FieldAnnotations, FieldAnnotationsSchema, FieldAnnotationsType, FieldCatalog, type FieldContextArgs, type FieldContextClient, type FieldContextSheetSummary, FieldEntry, FieldGroup, FieldMode, FieldName, FieldNameSchema, type FieldPlaceholderKey, FieldReason, FieldReasonSchema, FieldSchemaType, FieldValue, FieldValueMap, FieldValueSchema, FieldsSelectMeta, FieldsToObjectsConfig, type FormResolvers, FormSection, FormSectionMeta, type FormStore, FormStoreSchema, GeneratedFormInputType, GeneratedInputMeta, GeneratedInputMetaMap, type GetConnectionsArgs, type GetConstantsArgs, type GetSecretsArgs, GroupPathMatch, type IconKey, IconWidgetKey, type IcypeasCompanyMatch, type IcypeasPersonMatch, IncludeExcludeMeta, IncludeExcludeSelectMeta, IntegerMeta, IntermediateFormSection, JSONExtractSchema, JSONExtraction, JSONExtractionMeta, JSONMeta, JSONMetaSchema, JSONSchemaMeta, JsonFieldType, KeyValueListMeta, LazyResolveContext, MinMaxIntMeta, MultiCreateMeta, MultiSelectMeta, NamedFieldEntry, NoConnector, NoConnectorSchema, NullableBooleanMeta, NumberMeta, OptionalConnector, OptionalConnectorSchema, type OptionsDef, OrderedMultiCreateMeta, type OutputDecl, OutputFieldMeta, PIPE_IDS, PaginationType, PaginationTypeSchema, PersonWorkemailWaterfall1Entry, PersonWorkemailWaterfall1PayloadSchema, PersonWorkemailWaterfall1PipeClass, Pipe, Pipe0Error, PipeBaseConfig, PipeCatalog, PipeCatalogEntry, PipeCategory, PipeCategoryEntry, PipeConfigMapByExpecutionType, PipeConnectionRequirement, PipeDef, PipeEntryWithLatestVersion, type PipeFieldContextDef, PipeId, PipeIdSchema, PipeInputField, PipeModuleExport, PipeOutputField, PipePayload, PipePayloadInput, PipePayloadMap, PipePayloadSchema, PipePayloadSchemaCatalog, PipeRequestPayloadMap, PipeRunIf, PipeRunIfSchema, PipelineValidationError, type PipesEnvironment, PipesEnvironmentSchema, PipesError, PipesErrorSchema, PipesFieldDefinition, PipesFieldDefinitionSchema, PipesFieldDefinitionWithName, PipesFieldDefinitions, PipesFieldDefinitionsSchema, PipesInMemoryResponse, PipesInput, PipesInputSchema, PipesRecord, PipesRequest, PipesRequestConfig, PipesRequestConfigSchema, PipesRequestPayload, PipesRequestSchema, PipesResponse, PipesResponseSchema, PipesRunIfMeta, ProcessedPipePayloadSchema, ProcessedSearchPayloadSchema, ProcessedSearchesPayloadSchema, type ProfielField, PromptMeta, ProviderCatalogEntry, ProviderName, ProviderNameSchema, ProviderRateLimitOperation, ProvidersInputMeta, RECORD_FIELD_FORMATS, RECORD_FIELD_TYPES, RUN_IF_OPERATOR_LABELS, RUN_IF_STATUS_OPERATORS, RUN_IF_VALUE_OPERATORS, RangeMeta, RecordClaimedBy, RecordClaimedBySchema, RecordField, RecordFieldFormat, RecordFieldFormatSchema, RecordFieldSchema, RecordFieldStatus, RecordFieldStatusSchema, RecordFieldType, RecordFieldTypeSchema, RecordId, RecordIdSchema, RecordResolvedBy, RecordResolvedBySchema, RecordSchema, RequestValidationError, RequiredConnector, RequiredConnectorSchema, type Requirement, RequirementSatisfactionResult, type RichTextNode, RunIfStatusOperatorsSchema, RunIfStatusValueSchema, RunIfValueOperatorsSchema, SEARCHES_IDS, SEARCH_IDS, Search, SearchCatalog, SearchCatalogEntry, SearchCatalogTableData, SearchCategory, SearchCategoryEntry, SearchError, SearchErrorSchema, SearchId, SearchIdSchema, SearchMetaEntryWithId, SearchOutputField, SearchPayload, SearchPayloadCatalog, SearchPayloadInput, SearchPayloadMap, SearchPayloadSchema, SearchRequestPayload, SearchRequestPayloadMap, SearchRequestSchema, SearchRequestType, SearchResponse, SearchResponseSchema, SearchResult, SearchResultField, SearchResultFieldSchema, SearchResultSchema, SearchValidationResult, SearchesCatalog, SearchesCatalogEntry, SearchesCatalogTableData, SearchesCostPerResult, SearchesCostPerResultEntry, SearchesError, SearchesErrorSchema, SearchesId, SearchesIdSchema, SearchesMetaEntryWithId, SearchesPayload, SearchesPayloadCatalog, SearchesPayloadInput, SearchesPayloadMap, SearchesPayloadSchema, SearchesRequest, SearchesRequestBaseConfig, SearchesRequestBaseConfigSchema, SearchesRequestPayload, SearchesRequestPayloadMap, SearchesRequestSchema, SearchesResponse, SearchesResponseSchema, SearchesResult, SearchesResultField, SearchesResultFieldSchema, SearchesResultSchema, SearchesSearch, SearchesStatus, SearchesStatusSchema, SearchesValidationResult, type SecretSuggestion, SectionKeys, SectionMapDefinition, SelectMeta, type StoreOption, StoreOptionAutocompleteOption, StoreOptionsDef, SupportedTags, TYPES_TO_FORMATS, TaggedOrderedMultiCreateMeta, TaggedTextMeta, TemplateInputMeta, TextMeta, TextareaMeta, type TransformIntoResponseConfig, type UserConnection, ValidationContext, type Widget, Widgets, type StoreOptionWidget as WidgetsByKind, StoreOptionWidgetSchema as WidgetsByKindSchema, WidgetsSchema, all, analyzeLiquidTemplate, and, any, autocomplete, buildAiModelBillableOperations, buildDependencyGraph, buildInputRequirementFromTemplates, catalogInput, cleanObject, cleanUrl, cleanWebsiteUrl, collectConstantReferencesFromTemplates, collectPipeContextSelectFields, collectRequirementFields, collectSecretReferencesFromTemplates, compilePattern, configDefaults, convertIntermediateFieldsIntoGroups, defaultSectionMap, describeRequirement, entityLogoFavicon, entityLogoProfessionalProfileUrl, extractFormMetadata, field, fieldBehaviorCatalog, fieldCatalog, fieldNameStr, fieldTypeFromValue, fieldsToObject, filterPipeEntries, filterSearchEntries, filterSearchesEntries, getAiModelBillingKey, getAiModelConnectionRequirements, getAiModelProviders, getAllAiModelProviders, getBasePipeName, getDefaultOutputFields, getDefaultPipeProviders, getDefaultSearchOutputFields, getDefaultSearchesOutputFields, getDependentPipeNamesForInputProperty, getDependentPipeNamesForPipe, getDomain, getExpansionState, getFaviconUrlGoogle, getField, getFieldBehavior, getFieldDisplayLabel, getFieldWidgets, getInitialSearchTableData, getInitialSearchesTableData, getInitialTableData, getInputHash, getJsonMetaForFieldDef, getLoweestSearchCreditAmount, getLoweestSearchesCreditAmount, getLowestPipeCreditAmount, getOutputFieldInfoFromDef, getPipeBillableOperationDef, getPipeCategoryEntries, getPipeCategoryEntry, getPipeClass, getPipeConfigHash, getPipeDefaultPayload, getPipeDocsURI, getPipeEntry, getPipeInstances, getPipePayloadFormConfig, getPipePayloadSchema, getPipeVersion, getProviderBillableOperation, getProviderCreditsFromBillableOperations, getProviderEntry, getReadableFieldStatus, getSandboxConnections, getSandboxConnectionsForPipe, getSandboxConnectionsForSearch, getSandboxConnectionsForSearches, getSearchCategoryEntries, getSearchCategoryEntry, getSearchClass, getSearchDefaultPayload, getSearchEntry, getSearchFieldWidgets, getSearchInstance, getSearchPayloadFormConfig, getSearchPayloadSchema, getSearchTableDataAggregates, getSearchVersion, getSearchesClass, getSearchesDefaultPayload, getSearchesEntry, getSearchesFieldWidgets, getSearchesInstances, getSearchesPayloadSchema, getSearchesTableDataAggregates, getSearchesVersion, getStartingCostPerPipesProvider, getStartingCostPerSearchProvider, getStartingCostPerSearchesProvider, getTableDataAggregates, getUnexpandedValue, ifDefined, inputFields, inputFromRecord, inputFromRecordArr, inputFromRecords, inputGuards, isCatalogField, isEmptyValue, isFieldName, isPipeAllowed, isProviderAllowed, isRequirementMet, isRequirementSatisfiedByRecord, isSearchAllowed, isSearchesAllowed, joinConnectionString, markRecordFieldAsComplete, markRecordFieldAsFailed, markRecordFieldAsNoResult, markRecordFieldAsPending, markRecordFieldAsProcessing, markRecordFieldAsSkipped, matchesAny, matchesPattern, mergeWidgets, noConnectorInput, optional, optionalConnectorInput, or, outputFields, parseLiquidTemplate, parseOutputTagArgs, parseRecordValueOrError, parseRichText, pipeCatalog, pipeCategoryCatalog, pipeClassCatalog, pipePayloadSchemaCatalog, pipesAsyncIncludeExcludeSelectInput, pipesContextSelectInput, pipesDateRangeInput, pipesFieldsSelectInput, pipesIncludeExcludeInput, pipesIncludeExcludeSelectInput, pipesInputField, pipesIntInput, pipesJsonExtractionInput, pipesJsonSchemaField, pipesKeyValueListInput, pipesLLMSelectInput, pipesMultiCreateInput, pipesMultiSelectInput, pipesNumberInput, pipesOptionalBooleanInput, pipesOrderedMultiCreateInput, pipesOutputField, pipesPayloadRegistry, pipesPromptInput, pipesProviderInput, pipesRangeInput, pipesRunIfInput, pipesSelectInput, pipesSnippetCatalog, pipesTaggedOrderedMultiCreateInput, pipesTaggedTextInput, pipesTemplateInput, pipesTextInput, pipesTextareaInput, placeholder, processInputObjects, providerCatalog, rateLimitRatioFallingProgression, renderLiquidTemplate, renderLiquidTemplateSync, requiredConnectorInput, requirementToInputFields, requirementUnmetMessage, requiresConnection, requiresField, searchCatalog, searchCategoryCatalog, searchClassCatalog, searchPayloadSchemaCatalog, searchSnippetCatalog, searchesAsyncIncludeExcludeSelectInput, searchesAsyncMultiSelectInput, searchesCatalog, searchesClassCatalog, searchesDateRangeInput, searchesExactRangeInput, searchesIncludeExcludeInput, searchesIncludeExcludeSelectInput, searchesIntInput, searchesMinMaxIntInput, searchesMultiCreateInput, searchesMultiSelectInput, searchesNumberField, searchesOptionalBooleanInput, searchesOptionalNullableBooleanInput, searchesOrderedMultiCreateInput, searchesOutputField, searchesPayloadRegistry, searchesPayloadSchemaCatalog, searchesRangeInput, searchesSelectInput, searchesTextInput, searchesTextareaField, sortObjectKeys, sortPipeCatalogByBasePipe, sortSearchCatalogByBaseSearch, sortSearchesCatalogByBaseSearch, splitConnectionString, staticAutocomplete, staticOptions, stringify, testPrint, transformIntoResponse, validatePipesOrError, validateSearches, validationErrorMessages };
|