@pipe0/base 0.0.12 → 0.1.0
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 +32 -0
- package/dist/index.d.mts +457 -295
- package/dist/index.mjs +6 -5
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -378,14 +378,14 @@ declare const StoreOptionWidgetSchema: z.ZodObject<{
|
|
|
378
378
|
}, z.core.$strip>>;
|
|
379
379
|
icon: z.ZodOptional<z.ZodObject<{
|
|
380
380
|
key: z.ZodEnum<{
|
|
381
|
-
language: "language";
|
|
382
381
|
output: "output";
|
|
383
|
-
input: "input";
|
|
384
382
|
text: "text";
|
|
383
|
+
input: "input";
|
|
385
384
|
code: "code";
|
|
386
385
|
filter: "filter";
|
|
387
386
|
search: "search";
|
|
388
387
|
location: "location";
|
|
388
|
+
language: "language";
|
|
389
389
|
workflow: "workflow";
|
|
390
390
|
activity: "activity";
|
|
391
391
|
linkedin: "linkedin";
|
|
@@ -545,8 +545,8 @@ declare const RecordFieldTypeSchema: z.ZodEnum<{
|
|
|
545
545
|
string: "string";
|
|
546
546
|
number: "number";
|
|
547
547
|
boolean: "boolean";
|
|
548
|
-
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,12 +709,10 @@ declare const FieldReasonSchema: z.ZodObject<{
|
|
|
709
709
|
type FieldReason = z.infer<typeof FieldReasonSchema>;
|
|
710
710
|
declare const RECORD_FIELD_FORMATS: readonly ["json_object", "json_list", "json_list_string", "url", "website_url", "profile_url", "email", "datetime", "currency", "date", "phone", "markdown", "text", "int", "decimal", "address_line_1", "zip_code", "percent"];
|
|
711
711
|
declare const RecordFieldFormatSchema: z.ZodEnum<{
|
|
712
|
-
profile_url: "profile_url";
|
|
713
|
-
int: "int";
|
|
714
|
-
date: "date";
|
|
715
712
|
email: "email";
|
|
716
713
|
address_line_1: "address_line_1";
|
|
717
714
|
zip_code: "zip_code";
|
|
715
|
+
profile_url: "profile_url";
|
|
718
716
|
phone: "phone";
|
|
719
717
|
website_url: "website_url";
|
|
720
718
|
markdown: "markdown";
|
|
@@ -724,17 +722,17 @@ 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
|
-
profile_url: "profile_url";
|
|
733
|
-
int: "int";
|
|
734
|
-
date: "date";
|
|
735
732
|
email: "email";
|
|
736
733
|
address_line_1: "address_line_1";
|
|
737
734
|
zip_code: "zip_code";
|
|
735
|
+
profile_url: "profile_url";
|
|
738
736
|
phone: "phone";
|
|
739
737
|
website_url: "website_url";
|
|
740
738
|
markdown: "markdown";
|
|
@@ -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,17 +754,15 @@ 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
|
-
profile_url: "profile_url";
|
|
763
|
-
int: "int";
|
|
764
|
-
date: "date";
|
|
765
762
|
email: "email";
|
|
766
763
|
address_line_1: "address_line_1";
|
|
767
764
|
zip_code: "zip_code";
|
|
765
|
+
profile_url: "profile_url";
|
|
768
766
|
phone: "phone";
|
|
769
767
|
website_url: "website_url";
|
|
770
768
|
markdown: "markdown";
|
|
@@ -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,17 +789,15 @@ 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
|
-
profile_url: "profile_url";
|
|
798
|
-
int: "int";
|
|
799
|
-
date: "date";
|
|
800
797
|
email: "email";
|
|
801
798
|
address_line_1: "address_line_1";
|
|
802
799
|
zip_code: "zip_code";
|
|
800
|
+
profile_url: "profile_url";
|
|
803
801
|
phone: "phone";
|
|
804
802
|
website_url: "website_url";
|
|
805
803
|
markdown: "markdown";
|
|
@@ -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,12 +1308,10 @@ declare const RecordFieldSchema: z.ZodObject<{
|
|
|
1308
1308
|
}, z.core.$strip>>>;
|
|
1309
1309
|
}, z.core.$strip>>;
|
|
1310
1310
|
format: z.ZodNullable<z.ZodEnum<{
|
|
1311
|
-
profile_url: "profile_url";
|
|
1312
|
-
int: "int";
|
|
1313
|
-
date: "date";
|
|
1314
1311
|
email: "email";
|
|
1315
1312
|
address_line_1: "address_line_1";
|
|
1316
1313
|
zip_code: "zip_code";
|
|
1314
|
+
profile_url: "profile_url";
|
|
1317
1315
|
phone: "phone";
|
|
1318
1316
|
website_url: "website_url";
|
|
1319
1317
|
markdown: "markdown";
|
|
@@ -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,16 +1341,14 @@ 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
|
-
profile_url: "profile_url";
|
|
1349
|
-
int: "int";
|
|
1350
|
-
date: "date";
|
|
1351
1348
|
email: "email";
|
|
1352
1349
|
address_line_1: "address_line_1";
|
|
1353
1350
|
zip_code: "zip_code";
|
|
1351
|
+
profile_url: "profile_url";
|
|
1354
1352
|
phone: "phone";
|
|
1355
1353
|
website_url: "website_url";
|
|
1356
1354
|
markdown: "markdown";
|
|
@@ -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,16 +1675,14 @@ 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
|
-
profile_url: "profile_url";
|
|
1683
|
-
int: "int";
|
|
1684
|
-
date: "date";
|
|
1685
1682
|
email: "email";
|
|
1686
1683
|
address_line_1: "address_line_1";
|
|
1687
1684
|
zip_code: "zip_code";
|
|
1685
|
+
profile_url: "profile_url";
|
|
1688
1686
|
phone: "phone";
|
|
1689
1687
|
website_url: "website_url";
|
|
1690
1688
|
markdown: "markdown";
|
|
@@ -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,12 +2312,10 @@ declare const RecordSchema: z.ZodObject<{
|
|
|
2312
2312
|
}, z.core.$strip>>>;
|
|
2313
2313
|
}, z.core.$strip>>;
|
|
2314
2314
|
format: z.ZodNullable<z.ZodEnum<{
|
|
2315
|
-
profile_url: "profile_url";
|
|
2316
|
-
int: "int";
|
|
2317
|
-
date: "date";
|
|
2318
2315
|
email: "email";
|
|
2319
2316
|
address_line_1: "address_line_1";
|
|
2320
2317
|
zip_code: "zip_code";
|
|
2318
|
+
profile_url: "profile_url";
|
|
2321
2319
|
phone: "phone";
|
|
2322
2320
|
website_url: "website_url";
|
|
2323
2321
|
markdown: "markdown";
|
|
@@ -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,12 +2433,10 @@ declare const PipesFieldDefinitionSchema: z.ZodObject<{
|
|
|
2433
2433
|
pipe_index: z.ZodNullable<z.ZodNumber>;
|
|
2434
2434
|
}, z.core.$strip>;
|
|
2435
2435
|
format: z.ZodNullable<z.ZodEnum<{
|
|
2436
|
-
profile_url: "profile_url";
|
|
2437
|
-
int: "int";
|
|
2438
|
-
date: "date";
|
|
2439
2436
|
email: "email";
|
|
2440
2437
|
address_line_1: "address_line_1";
|
|
2441
2438
|
zip_code: "zip_code";
|
|
2439
|
+
profile_url: "profile_url";
|
|
2442
2440
|
phone: "phone";
|
|
2443
2441
|
website_url: "website_url";
|
|
2444
2442
|
markdown: "markdown";
|
|
@@ -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,12 +2552,10 @@ declare const PipesFieldDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<
|
|
|
2552
2552
|
pipe_index: z.ZodNullable<z.ZodNumber>;
|
|
2553
2553
|
}, z.core.$strip>;
|
|
2554
2554
|
format: z.ZodNullable<z.ZodEnum<{
|
|
2555
|
-
profile_url: "profile_url";
|
|
2556
|
-
int: "int";
|
|
2557
|
-
date: "date";
|
|
2558
2555
|
email: "email";
|
|
2559
2556
|
address_line_1: "address_line_1";
|
|
2560
2557
|
zip_code: "zip_code";
|
|
2558
|
+
profile_url: "profile_url";
|
|
2561
2559
|
phone: "phone";
|
|
2562
2560
|
website_url: "website_url";
|
|
2563
2561
|
markdown: "markdown";
|
|
@@ -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,12 +2581,10 @@ declare const JSONExtractSchema: z.ZodObject<{
|
|
|
2581
2581
|
output_field: z.ZodObject<{
|
|
2582
2582
|
name: z.ZodString;
|
|
2583
2583
|
format: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
2584
|
-
profile_url: "profile_url";
|
|
2585
|
-
int: "int";
|
|
2586
|
-
date: "date";
|
|
2587
2584
|
email: "email";
|
|
2588
2585
|
address_line_1: "address_line_1";
|
|
2589
2586
|
zip_code: "zip_code";
|
|
2587
|
+
profile_url: "profile_url";
|
|
2590
2588
|
phone: "phone";
|
|
2591
2589
|
website_url: "website_url";
|
|
2592
2590
|
markdown: "markdown";
|
|
@@ -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,18 +2729,9 @@ type PipeRunIf = z.infer<typeof PipeRunIfSchema>;
|
|
|
2729
2729
|
//#endregion
|
|
2730
2730
|
//#region src/utils/schemas.d.ts
|
|
2731
2731
|
declare const FieldNameSchema: z.ZodEnum<{
|
|
2732
|
-
name: "name";
|
|
2733
|
-
profile_url: "profile_url";
|
|
2734
|
-
skills: "skills";
|
|
2735
|
-
job_title: "job_title";
|
|
2736
|
-
company_name: "company_name";
|
|
2737
|
-
company_social_url: "company_social_url";
|
|
2738
|
-
job_description: "job_description";
|
|
2739
|
-
headcount: "headcount";
|
|
2740
|
-
company_industry: "company_industry";
|
|
2741
|
-
message: "message";
|
|
2742
2732
|
company_description: "company_description";
|
|
2743
2733
|
cleaned_company_name: "cleaned_company_name";
|
|
2734
|
+
company_industry: "company_industry";
|
|
2744
2735
|
company_region: "company_region";
|
|
2745
2736
|
location_hint: "location_hint";
|
|
2746
2737
|
estimated_revenue: "estimated_revenue";
|
|
@@ -2754,12 +2745,16 @@ declare const FieldNameSchema: z.ZodEnum<{
|
|
|
2754
2745
|
alternate_personal_emails: "alternate_personal_emails";
|
|
2755
2746
|
company_news_summary: "company_news_summary";
|
|
2756
2747
|
work_email: "work_email";
|
|
2748
|
+
headcount: "headcount";
|
|
2757
2749
|
company_website_url: "company_website_url";
|
|
2758
2750
|
company_domain: "company_domain";
|
|
2751
|
+
company_name: "company_name";
|
|
2759
2752
|
first_name: "first_name";
|
|
2760
2753
|
addressee_name: "addressee_name";
|
|
2761
2754
|
address_line_1: "address_line_1";
|
|
2762
2755
|
address_line_2: "address_line_2";
|
|
2756
|
+
job_title: "job_title";
|
|
2757
|
+
job_description: "job_description";
|
|
2763
2758
|
profile_headline: "profile_headline";
|
|
2764
2759
|
address_city: "address_city";
|
|
2765
2760
|
address_country: "address_country";
|
|
@@ -2769,10 +2764,13 @@ declare const FieldNameSchema: z.ZodEnum<{
|
|
|
2769
2764
|
is_work_email: "is_work_email";
|
|
2770
2765
|
companyenrich_match: "companyenrich_match";
|
|
2771
2766
|
companyenrich_matches: "companyenrich_matches";
|
|
2767
|
+
name: "name";
|
|
2772
2768
|
ip_address: "ip_address";
|
|
2769
|
+
skills: "skills";
|
|
2773
2770
|
avatar_url: "avatar_url";
|
|
2774
2771
|
estimated_salary: "estimated_salary";
|
|
2775
2772
|
is_email_valid: "is_email_valid";
|
|
2773
|
+
profile_url: "profile_url";
|
|
2776
2774
|
company_profile_url: "company_profile_url";
|
|
2777
2775
|
profile_posts: "profile_posts";
|
|
2778
2776
|
clado_person_match: "clado_person_match";
|
|
@@ -2787,6 +2785,7 @@ declare const FieldNameSchema: z.ZodEnum<{
|
|
|
2787
2785
|
mobile: "mobile";
|
|
2788
2786
|
landline: "landline";
|
|
2789
2787
|
phone: "phone";
|
|
2788
|
+
message: "message";
|
|
2790
2789
|
slack_message_success: "slack_message_success";
|
|
2791
2790
|
funding_history: "funding_history";
|
|
2792
2791
|
funding_total_usd: "funding_total_usd";
|
|
@@ -2835,6 +2834,7 @@ declare const FieldNameSchema: z.ZodEnum<{
|
|
|
2835
2834
|
http_response_headers: "http_response_headers";
|
|
2836
2835
|
professional_profile_url: "professional_profile_url";
|
|
2837
2836
|
professional_profile: "professional_profile";
|
|
2837
|
+
company_social_url: "company_social_url";
|
|
2838
2838
|
mobile_number: "mobile_number";
|
|
2839
2839
|
}>;
|
|
2840
2840
|
type FieldName = z.infer<typeof FieldNameSchema>;
|
|
@@ -2868,7 +2868,7 @@ declare const ProviderNameSchema: z.ZodEnum<{
|
|
|
2868
2868
|
type ProviderRateLimitOperation = "pipe0_logic" | "pipe0_generic" | "pipe0-sheet-operation" | "pipe0_scraper" | "findymail_generic" | "findymail_email_lookup" | "findymail_email_b2b_lookup" | "findymail_phone_lookup" | "dropcontact_generic" | "hunter_generic" | "hunter_email_finder" | "hunter_email_enrichment" | "zerobounce_generic" | "millionverifier_generic" | "googlemaps_generic" | "gemini_25_flash_preview" | "gemini_20_flash" | "leadmagic_company_search" | "leadmagic_email_lookup" | "leadmagic_email_b2b_lookup" | "leadmagic_email_to_b2b_profile" | "leadmagic_personal_email_finder" | "leadmagic_mobile_number_lookup" | "leadmagic_company_funding" | "leadmagic_role_finder" | "contactout_generic" | "builtwith_generic" | "perplexity_generic" | "serper_search" | "clado_search_people" | "clado_contact_information" | "icypeas_scrape_profile" | "icypeas_lead_database" | "icypeas_company_database" | "icypeas_email_lookup" | "prospeo_phone_number_lookup" | "prospeo_social_profile_lookup" | "clado_social_profile_lookup" | "prospeo_email_lookup" | "resend_generic" | "slack_post_message" | "gmail_send_email" | "leadmagic_employee_finder" | "firecrawl_generic" | "firecrawl_map_requests" | "firecrawl_extract" | "exa_websets" | "openai_gpt-5" | "openai_gpt-5-mini" | "company_enrich_generic" | "logodev_describe" | "crustdata_company_db_search" | "crustdata_company_enrich" | "crustdata_people_db_search" | "crustdata_realtime_post_fetch" | "crustdata_realtime_person_enrich" | "amplemarket_generic" | "amplemarket-person-reveal" | "amplemarket_people_search" | "amplemarket_company_search" | "mixrank-person-match";
|
|
2869
2869
|
type ProviderName = z.infer<typeof ProviderNameSchema>;
|
|
2870
2870
|
type ExternalProviderName = Exclude<ProviderName, "pipe0">;
|
|
2871
|
-
type BillableOperation = "
|
|
2871
|
+
type BillableOperation = "companies-profiles-amplemarket-v1" | "companies-profiles-amplemarket-v2" | "companies-profiles-crustdata-v1" | "companies-profiles-crustdata-v2" | "company-domain-workemail-v1-pipe0" | "company-funding-leadmagic-v1-leadmagic" | "company-funding-leadmagic-v2-leadmagic" | "company-identity-v1-pipe0" | "company-identity-v2-pipe0" | "company-identity-v3-pipe0" | "company-lookalikes-companyenrich-v1-companyenrich" | "company-lookalikes-companyenrich-v2-companyenrich" | "company-match-crustdata-v1-crustdata" | "company-match-crustdata-v2-crustdata" | "company-match-logodev-v1-logodev" | "company-match-logodev-v2-logodev" | "company-newssummary-domain-v1-pipe0" | "company-newssummary-website-v1-pipe0" | "company-overview-v1-pipe0" | "company-overview-v2-pipe0" | "company-overview-v3-pipe0" | "company-techstack-builtwith-v1-builtwith" | "company-techstack-builtwith-v2-builtwith" | "company-websiteurl-email-v1-pipe0" | "contact-create-resend-v1-resend" | "email-iswork-v1-pipe0" | "email-send-gmail-v1-gmail" | "email-send-resend-v1-resend" | "email-validate-zerobounce-v1-zerobounce" | "email-write-v1-gemini-flash-latest" | "email-write-v1-openai-gpt-latest" | "email-write-v1-openai-gpt-mini-latest" | "field-domainify-v1-pipe0" | "field-slugify-v1-pipe0" | "fields-merge-v1-pipe0" | "http-request-v1-pipe0" | "json-extract-multi-v1-pipe0" | "message-send-slack-v1-slack" | "message-write-v1-gemini-flash-latest" | "message-write-v1-openai-gpt-latest" | "message-write-v1-openai-gpt-mini-latest" | "people-email-iswork-v1-pipe0" | "people-email-validate-zerobounce-v1-zerobounce" | "people-email-validate-zerobounce-v2-zerobounce" | "people-identity-email-waterfall-v1-crustdata" | "people-identity-email-waterfall-v1-findymail" | "people-identity-email-waterfall-v1-hunter" | "people-match-role-waterfall-v1-leadmagic" | "people-mobilenumber-professionalprofile-waterfall-v1-leadmagic" | "people-mobilenumber-professionalprofile-waterfall-v1-prospeo" | "people-mobilenumber-workemail-waterfall-v1-leadmagic" | "people-name-split-v1-pipe0" | "people-personalemail-profile-waterfall-v1-clado" | "people-personalemail-profile-waterfall-v1-leadmagic" | "people-personalemail-profile-waterfall-v1-mixrank" | "people-phone-profile-waterfall-v1-amplemarket" | "people-phone-profile-waterfall-v1-clado" | "people-phone-profile-waterfall-v1-findymail" | "people-phone-profile-waterfall-v1-leadmagic" | "people-phone-profile-waterfall-v1-prospeo" | "people-phone-workemail-waterfall-v1-amplemarket" | "people-phone-workemail-waterfall-v1-leadmagic" | "people-professionalprofile-waterfall-v1-icypeas" | "people-professionalprofile-waterfall-v1-prospeo" | "people-professionalprofileurl-email-waterfall-v1-leadmagic" | "people-professionalprofileurl-name-v1-pipe0" | "people-profile-waterfall-v1-amplemarket" | "people-profile-waterfall-v1-clado" | "people-profile-waterfall-v1-icypeas" | "people-profile-waterfall-v1-prospeo" | "people-profile-workemail-crustdata-v1-crustdata" | "people-profiles-amplemarket-v1" | "people-profiles-amplemarket-v2" | "people-profiles-crustdata-v1" | "people-profiles-crustdata-v2" | "people-profileurl-email-waterfall-v1-leadmagic" | "people-validate-email-zerobounce-v1-zerobounce" | "people-workemail-profileurl-waterfall-v1-amplemarket" | "people-workemail-profileurl-waterfall-v1-clado" | "people-workemail-profileurl-waterfall-v1-crustdata" | "people-workemail-profileurl-waterfall-v1-findymail" | "people-workemail-profileurl-waterfall-v1-hunter" | "people-workemail-profileurl-waterfall-v1-leadmagic" | "people-workemail-waterfall-v1-amplemarket" | "people-workemail-waterfall-v1-findymail" | "people-workemail-waterfall-v1-hunter" | "people-workemail-waterfall-v1-icypeas" | "people-workemail-waterfall-v1-leadmagic" | "people-workemail-waterfall-v1-prospeo" | "person-email-validate-millionverifier-v1-millionverifier" | "person-identity-amplemarket-v1-amplemarket" | "person-identity-email-waterfall-v1-crustdata" | "person-identity-email-waterfall-v1-findymail" | "person-identity-email-waterfall-v1-hunter" | "person-match-amplemarket-v1-amplemarket" | "person-match-role-waterfall-v1-leadmagic" | "person-mobile-profileurl-waterfall-v1-amplemarket" | "person-mobile-profileurl-waterfall-v1-findymail" | "person-mobile-profileurl-waterfall-v1-leadmagic" | "person-mobile-profileurl-waterfall-v1-prospeo" | "person-mobile-workemail-waterfall-v1-amplemarket" | "person-mobile-workemail-waterfall-v1-leadmagic" | "person-name-join-v1-pipe0" | "person-name-split-v1-pipe0" | "person-personalemail-profileurl-waterfall-v1-leadmagic" | "person-personalemail-profileurl-waterfall-v1-mixrank" | "person-posts-crustdata-v1-crustdata" | "person-profile-waterfall-v1-amplemarket" | "person-profile-waterfall-v1-icypeas" | "person-profile-waterfall-v1-prospeo" | "person-profile-workemail-crustdata-v1-crustdata" | "person-profileurl-email-waterfall-v1-leadmagic" | "person-profileurl-name-v1-pipe0" | "person-workemail-profileurl-waterfall-v1-amplemarket" | "person-workemail-profileurl-waterfall-v1-crustdata" | "person-workemail-profileurl-waterfall-v1-findymail" | "person-workemail-profileurl-waterfall-v1-hunter" | "person-workemail-profileurl-waterfall-v1-leadmagic" | "person-workemail-waterfall-v1-amplemarket" | "person-workemail-waterfall-v1-findymail" | "person-workemail-waterfall-v1-hunter" | "person-workemail-waterfall-v1-icypeas" | "person-workemail-waterfall-v1-leadmagic" | "person-workemail-waterfall-v1-prospeo" | "prompt-run-v1-gemini-flash-latest" | "prompt-run-v1-openai-gpt-latest" | "prompt-run-v1-openai-gpt-mini-latest" | "sheet-row-append-v1-pipe0" | "sheet-row-expandappend-v1-pipe0" | "template-fill-v1-pipe0" | "website-extract-firecrawl-v1-firecrawl" | "website-maplinks-firecrawl-v1-firecrawl" | "website-scrape-firecrawl-v1-firecrawl" | "website-scrapelist-firecrawl-v1-firecrawl";
|
|
2872
2872
|
//#endregion
|
|
2873
2873
|
//#region src/fields/field-catalog.d.ts
|
|
2874
2874
|
type FieldEntry = {
|
|
@@ -12306,14 +12306,14 @@ declare const StoreOptionSchema: z.ZodObject<{
|
|
|
12306
12306
|
}, z.core.$strip>>;
|
|
12307
12307
|
icon: z.ZodOptional<z.ZodObject<{
|
|
12308
12308
|
key: z.ZodEnum<{
|
|
12309
|
-
language: "language";
|
|
12310
12309
|
output: "output";
|
|
12311
|
-
input: "input";
|
|
12312
12310
|
text: "text";
|
|
12311
|
+
input: "input";
|
|
12313
12312
|
code: "code";
|
|
12314
12313
|
filter: "filter";
|
|
12315
12314
|
search: "search";
|
|
12316
12315
|
location: "location";
|
|
12316
|
+
language: "language";
|
|
12317
12317
|
workflow: "workflow";
|
|
12318
12318
|
activity: "activity";
|
|
12319
12319
|
linkedin: "linkedin";
|
|
@@ -12405,14 +12405,14 @@ declare const FormStoreSchema: z.ZodObject<{
|
|
|
12405
12405
|
}, z.core.$strip>>;
|
|
12406
12406
|
icon: z.ZodOptional<z.ZodObject<{
|
|
12407
12407
|
key: z.ZodEnum<{
|
|
12408
|
-
language: "language";
|
|
12409
12408
|
output: "output";
|
|
12410
|
-
input: "input";
|
|
12411
12409
|
text: "text";
|
|
12410
|
+
input: "input";
|
|
12412
12411
|
code: "code";
|
|
12413
12412
|
filter: "filter";
|
|
12414
12413
|
search: "search";
|
|
12415
12414
|
location: "location";
|
|
12415
|
+
language: "language";
|
|
12416
12416
|
workflow: "workflow";
|
|
12417
12417
|
activity: "activity";
|
|
12418
12418
|
linkedin: "linkedin";
|
|
@@ -12721,16 +12721,8 @@ type SearchLifeCycle = {
|
|
|
12721
12721
|
replacedBy: SearchId;
|
|
12722
12722
|
};
|
|
12723
12723
|
type SearchCost = {
|
|
12724
|
-
mode: "per_result";
|
|
12725
|
-
|
|
12726
|
-
info?: string;
|
|
12727
|
-
} | {
|
|
12728
|
-
mode: "per_search";
|
|
12729
|
-
creditsPerSearch: number;
|
|
12730
|
-
info?: string;
|
|
12731
|
-
} | {
|
|
12732
|
-
mode: "per_page";
|
|
12733
|
-
creditsPerPage: number;
|
|
12724
|
+
mode: "per_result" | "per_search" | "per_page";
|
|
12725
|
+
credits: ManagedCredits;
|
|
12734
12726
|
info?: string;
|
|
12735
12727
|
};
|
|
12736
12728
|
type SearchDef<PayloadSchema extends z.ZodType> = {
|
|
@@ -14435,16 +14427,14 @@ declare const SearchResultFieldSchema: z$1.ZodObject<{
|
|
|
14435
14427
|
string: "string";
|
|
14436
14428
|
number: "number";
|
|
14437
14429
|
boolean: "boolean";
|
|
14438
|
-
unknown: "unknown";
|
|
14439
14430
|
json: "json";
|
|
14431
|
+
unknown: "unknown";
|
|
14440
14432
|
}>>;
|
|
14441
14433
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
14442
|
-
profile_url: "profile_url";
|
|
14443
|
-
int: "int";
|
|
14444
|
-
date: "date";
|
|
14445
14434
|
email: "email";
|
|
14446
14435
|
address_line_1: "address_line_1";
|
|
14447
14436
|
zip_code: "zip_code";
|
|
14437
|
+
profile_url: "profile_url";
|
|
14448
14438
|
phone: "phone";
|
|
14449
14439
|
website_url: "website_url";
|
|
14450
14440
|
markdown: "markdown";
|
|
@@ -14454,7 +14444,9 @@ declare const SearchResultFieldSchema: z$1.ZodObject<{
|
|
|
14454
14444
|
url: "url";
|
|
14455
14445
|
datetime: "datetime";
|
|
14456
14446
|
currency: "currency";
|
|
14447
|
+
date: "date";
|
|
14457
14448
|
text: "text";
|
|
14449
|
+
int: "int";
|
|
14458
14450
|
decimal: "decimal";
|
|
14459
14451
|
percent: "percent";
|
|
14460
14452
|
}>>>;
|
|
@@ -14680,16 +14672,14 @@ declare const SearchResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable<z
|
|
|
14680
14672
|
string: "string";
|
|
14681
14673
|
number: "number";
|
|
14682
14674
|
boolean: "boolean";
|
|
14683
|
-
unknown: "unknown";
|
|
14684
14675
|
json: "json";
|
|
14676
|
+
unknown: "unknown";
|
|
14685
14677
|
}>>;
|
|
14686
14678
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
14687
|
-
profile_url: "profile_url";
|
|
14688
|
-
int: "int";
|
|
14689
|
-
date: "date";
|
|
14690
14679
|
email: "email";
|
|
14691
14680
|
address_line_1: "address_line_1";
|
|
14692
14681
|
zip_code: "zip_code";
|
|
14682
|
+
profile_url: "profile_url";
|
|
14693
14683
|
phone: "phone";
|
|
14694
14684
|
website_url: "website_url";
|
|
14695
14685
|
markdown: "markdown";
|
|
@@ -14699,7 +14689,9 @@ declare const SearchResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable<z
|
|
|
14699
14689
|
url: "url";
|
|
14700
14690
|
datetime: "datetime";
|
|
14701
14691
|
currency: "currency";
|
|
14692
|
+
date: "date";
|
|
14702
14693
|
text: "text";
|
|
14694
|
+
int: "int";
|
|
14703
14695
|
decimal: "decimal";
|
|
14704
14696
|
percent: "percent";
|
|
14705
14697
|
}>>>;
|
|
@@ -15772,16 +15764,14 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
15772
15764
|
string: "string";
|
|
15773
15765
|
number: "number";
|
|
15774
15766
|
boolean: "boolean";
|
|
15775
|
-
unknown: "unknown";
|
|
15776
15767
|
json: "json";
|
|
15768
|
+
unknown: "unknown";
|
|
15777
15769
|
}>>;
|
|
15778
15770
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
15779
|
-
profile_url: "profile_url";
|
|
15780
|
-
int: "int";
|
|
15781
|
-
date: "date";
|
|
15782
15771
|
email: "email";
|
|
15783
15772
|
address_line_1: "address_line_1";
|
|
15784
15773
|
zip_code: "zip_code";
|
|
15774
|
+
profile_url: "profile_url";
|
|
15785
15775
|
phone: "phone";
|
|
15786
15776
|
website_url: "website_url";
|
|
15787
15777
|
markdown: "markdown";
|
|
@@ -15791,7 +15781,9 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
15791
15781
|
url: "url";
|
|
15792
15782
|
datetime: "datetime";
|
|
15793
15783
|
currency: "currency";
|
|
15784
|
+
date: "date";
|
|
15794
15785
|
text: "text";
|
|
15786
|
+
int: "int";
|
|
15795
15787
|
decimal: "decimal";
|
|
15796
15788
|
percent: "percent";
|
|
15797
15789
|
}>>>;
|
|
@@ -17483,7 +17475,7 @@ declare const searchesPayloadSchemaCatalog: {
|
|
|
17483
17475
|
declare const searchesCatalog: {
|
|
17484
17476
|
"people:profiles:crustdata@1": {
|
|
17485
17477
|
searchId: "people:profiles:crustdata@1";
|
|
17486
|
-
billableOperation:
|
|
17478
|
+
billableOperation: string;
|
|
17487
17479
|
baseSearch: string;
|
|
17488
17480
|
label: string;
|
|
17489
17481
|
categories: "people"[];
|
|
@@ -17565,7 +17557,7 @@ declare const searchesCatalog: {
|
|
|
17565
17557
|
};
|
|
17566
17558
|
"companies:profiles:crustdata@1": {
|
|
17567
17559
|
searchId: "companies:profiles:crustdata@1";
|
|
17568
|
-
billableOperation:
|
|
17560
|
+
billableOperation: string;
|
|
17569
17561
|
baseSearch: string;
|
|
17570
17562
|
label: string;
|
|
17571
17563
|
categories: "companies"[];
|
|
@@ -17638,7 +17630,7 @@ declare const searchesCatalog: {
|
|
|
17638
17630
|
};
|
|
17639
17631
|
"companies:profiles:exa@1": {
|
|
17640
17632
|
searchId: "companies:profiles:exa@1";
|
|
17641
|
-
billableOperation:
|
|
17633
|
+
billableOperation: string;
|
|
17642
17634
|
baseSearch: string;
|
|
17643
17635
|
label: string;
|
|
17644
17636
|
categories: "companies"[];
|
|
@@ -17692,7 +17684,7 @@ declare const searchesCatalog: {
|
|
|
17692
17684
|
};
|
|
17693
17685
|
"people:profiles:exa@1": {
|
|
17694
17686
|
searchId: "people:profiles:exa@1";
|
|
17695
|
-
billableOperation:
|
|
17687
|
+
billableOperation: string;
|
|
17696
17688
|
baseSearch: string;
|
|
17697
17689
|
label: string;
|
|
17698
17690
|
categories: "people"[];
|
|
@@ -17746,7 +17738,7 @@ declare const searchesCatalog: {
|
|
|
17746
17738
|
};
|
|
17747
17739
|
"people:profiles:icypeas@1": {
|
|
17748
17740
|
searchId: "people:profiles:icypeas@1";
|
|
17749
|
-
billableOperation:
|
|
17741
|
+
billableOperation: string;
|
|
17750
17742
|
provider: "icypeas";
|
|
17751
17743
|
baseSearch: string;
|
|
17752
17744
|
label: string;
|
|
@@ -17855,7 +17847,7 @@ declare const searchesCatalog: {
|
|
|
17855
17847
|
};
|
|
17856
17848
|
"companies:profiles:icypeas@1": {
|
|
17857
17849
|
searchId: "companies:profiles:icypeas@1";
|
|
17858
|
-
billableOperation:
|
|
17850
|
+
billableOperation: string;
|
|
17859
17851
|
baseSearch: string;
|
|
17860
17852
|
label: string;
|
|
17861
17853
|
categories: "companies"[];
|
|
@@ -17941,7 +17933,7 @@ declare const searchesCatalog: {
|
|
|
17941
17933
|
};
|
|
17942
17934
|
"people:employees:leadmagic@1": {
|
|
17943
17935
|
searchId: "people:employees:leadmagic@1";
|
|
17944
|
-
billableOperation:
|
|
17936
|
+
billableOperation: string;
|
|
17945
17937
|
baseSearch: string;
|
|
17946
17938
|
label: string;
|
|
17947
17939
|
categories: "people"[];
|
|
@@ -17987,7 +17979,7 @@ declare const searchesCatalog: {
|
|
|
17987
17979
|
};
|
|
17988
17980
|
"people:profiles:clado@1": {
|
|
17989
17981
|
searchId: "people:profiles:clado@1";
|
|
17990
|
-
billableOperation:
|
|
17982
|
+
billableOperation: string;
|
|
17991
17983
|
baseSearch: string;
|
|
17992
17984
|
label: string;
|
|
17993
17985
|
categories: "people"[];
|
|
@@ -18044,7 +18036,7 @@ declare const searchesCatalog: {
|
|
|
18044
18036
|
};
|
|
18045
18037
|
"people:profiles:clado@2": {
|
|
18046
18038
|
searchId: "people:profiles:clado@2";
|
|
18047
|
-
billableOperation:
|
|
18039
|
+
billableOperation: string;
|
|
18048
18040
|
baseSearch: string;
|
|
18049
18041
|
label: string;
|
|
18050
18042
|
categories: "deprecated"[];
|
|
@@ -19108,16 +19100,14 @@ declare const SearchesResultFieldSchema: z$1.ZodObject<{
|
|
|
19108
19100
|
string: "string";
|
|
19109
19101
|
number: "number";
|
|
19110
19102
|
boolean: "boolean";
|
|
19111
|
-
unknown: "unknown";
|
|
19112
19103
|
json: "json";
|
|
19104
|
+
unknown: "unknown";
|
|
19113
19105
|
}>>;
|
|
19114
19106
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
19115
|
-
profile_url: "profile_url";
|
|
19116
|
-
int: "int";
|
|
19117
|
-
date: "date";
|
|
19118
19107
|
email: "email";
|
|
19119
19108
|
address_line_1: "address_line_1";
|
|
19120
19109
|
zip_code: "zip_code";
|
|
19110
|
+
profile_url: "profile_url";
|
|
19121
19111
|
phone: "phone";
|
|
19122
19112
|
website_url: "website_url";
|
|
19123
19113
|
markdown: "markdown";
|
|
@@ -19127,7 +19117,9 @@ declare const SearchesResultFieldSchema: z$1.ZodObject<{
|
|
|
19127
19117
|
url: "url";
|
|
19128
19118
|
datetime: "datetime";
|
|
19129
19119
|
currency: "currency";
|
|
19120
|
+
date: "date";
|
|
19130
19121
|
text: "text";
|
|
19122
|
+
int: "int";
|
|
19131
19123
|
decimal: "decimal";
|
|
19132
19124
|
percent: "percent";
|
|
19133
19125
|
}>>>;
|
|
@@ -19353,16 +19345,14 @@ declare const SearchesResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable
|
|
|
19353
19345
|
string: "string";
|
|
19354
19346
|
number: "number";
|
|
19355
19347
|
boolean: "boolean";
|
|
19356
|
-
unknown: "unknown";
|
|
19357
19348
|
json: "json";
|
|
19349
|
+
unknown: "unknown";
|
|
19358
19350
|
}>>;
|
|
19359
19351
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
19360
|
-
profile_url: "profile_url";
|
|
19361
|
-
int: "int";
|
|
19362
|
-
date: "date";
|
|
19363
19352
|
email: "email";
|
|
19364
19353
|
address_line_1: "address_line_1";
|
|
19365
19354
|
zip_code: "zip_code";
|
|
19355
|
+
profile_url: "profile_url";
|
|
19366
19356
|
phone: "phone";
|
|
19367
19357
|
website_url: "website_url";
|
|
19368
19358
|
markdown: "markdown";
|
|
@@ -19372,7 +19362,9 @@ declare const SearchesResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable
|
|
|
19372
19362
|
url: "url";
|
|
19373
19363
|
datetime: "datetime";
|
|
19374
19364
|
currency: "currency";
|
|
19365
|
+
date: "date";
|
|
19375
19366
|
text: "text";
|
|
19367
|
+
int: "int";
|
|
19376
19368
|
decimal: "decimal";
|
|
19377
19369
|
percent: "percent";
|
|
19378
19370
|
}>>>;
|
|
@@ -19648,16 +19640,14 @@ declare const SearchesResponseSchema: z$1.ZodObject<{
|
|
|
19648
19640
|
string: "string";
|
|
19649
19641
|
number: "number";
|
|
19650
19642
|
boolean: "boolean";
|
|
19651
|
-
unknown: "unknown";
|
|
19652
19643
|
json: "json";
|
|
19644
|
+
unknown: "unknown";
|
|
19653
19645
|
}>>;
|
|
19654
19646
|
format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
19655
|
-
profile_url: "profile_url";
|
|
19656
|
-
int: "int";
|
|
19657
|
-
date: "date";
|
|
19658
19647
|
email: "email";
|
|
19659
19648
|
address_line_1: "address_line_1";
|
|
19660
19649
|
zip_code: "zip_code";
|
|
19650
|
+
profile_url: "profile_url";
|
|
19661
19651
|
phone: "phone";
|
|
19662
19652
|
website_url: "website_url";
|
|
19663
19653
|
markdown: "markdown";
|
|
@@ -19667,7 +19657,9 @@ declare const SearchesResponseSchema: z$1.ZodObject<{
|
|
|
19667
19657
|
url: "url";
|
|
19668
19658
|
datetime: "datetime";
|
|
19669
19659
|
currency: "currency";
|
|
19660
|
+
date: "date";
|
|
19670
19661
|
text: "text";
|
|
19662
|
+
int: "int";
|
|
19671
19663
|
decimal: "decimal";
|
|
19672
19664
|
percent: "percent";
|
|
19673
19665
|
}>>>;
|
|
@@ -20530,7 +20522,7 @@ declare function getSearchesTableDataAggregates(initialTableData: SearchesCatalo
|
|
|
20530
20522
|
};
|
|
20531
20523
|
declare function getSearchesEntry(searchId: SearchesId): {
|
|
20532
20524
|
searchId: "people:profiles:crustdata@1";
|
|
20533
|
-
billableOperation:
|
|
20525
|
+
billableOperation: string;
|
|
20534
20526
|
baseSearch: string;
|
|
20535
20527
|
label: string;
|
|
20536
20528
|
categories: "people"[];
|
|
@@ -20611,7 +20603,7 @@ declare function getSearchesEntry(searchId: SearchesId): {
|
|
|
20611
20603
|
};
|
|
20612
20604
|
} | {
|
|
20613
20605
|
searchId: "companies:profiles:crustdata@1";
|
|
20614
|
-
billableOperation:
|
|
20606
|
+
billableOperation: string;
|
|
20615
20607
|
baseSearch: string;
|
|
20616
20608
|
label: string;
|
|
20617
20609
|
categories: "companies"[];
|
|
@@ -20683,7 +20675,7 @@ declare function getSearchesEntry(searchId: SearchesId): {
|
|
|
20683
20675
|
};
|
|
20684
20676
|
} | {
|
|
20685
20677
|
searchId: "companies:profiles:exa@1";
|
|
20686
|
-
billableOperation:
|
|
20678
|
+
billableOperation: string;
|
|
20687
20679
|
baseSearch: string;
|
|
20688
20680
|
label: string;
|
|
20689
20681
|
categories: "companies"[];
|
|
@@ -20736,7 +20728,7 @@ declare function getSearchesEntry(searchId: SearchesId): {
|
|
|
20736
20728
|
};
|
|
20737
20729
|
} | {
|
|
20738
20730
|
searchId: "people:profiles:exa@1";
|
|
20739
|
-
billableOperation:
|
|
20731
|
+
billableOperation: string;
|
|
20740
20732
|
baseSearch: string;
|
|
20741
20733
|
label: string;
|
|
20742
20734
|
categories: "people"[];
|
|
@@ -20789,7 +20781,7 @@ declare function getSearchesEntry(searchId: SearchesId): {
|
|
|
20789
20781
|
};
|
|
20790
20782
|
} | {
|
|
20791
20783
|
searchId: "people:profiles:icypeas@1";
|
|
20792
|
-
billableOperation:
|
|
20784
|
+
billableOperation: string;
|
|
20793
20785
|
provider: "icypeas";
|
|
20794
20786
|
baseSearch: string;
|
|
20795
20787
|
label: string;
|
|
@@ -20897,7 +20889,7 @@ declare function getSearchesEntry(searchId: SearchesId): {
|
|
|
20897
20889
|
};
|
|
20898
20890
|
} | {
|
|
20899
20891
|
searchId: "companies:profiles:icypeas@1";
|
|
20900
|
-
billableOperation:
|
|
20892
|
+
billableOperation: string;
|
|
20901
20893
|
baseSearch: string;
|
|
20902
20894
|
label: string;
|
|
20903
20895
|
categories: "companies"[];
|
|
@@ -20982,7 +20974,7 @@ declare function getSearchesEntry(searchId: SearchesId): {
|
|
|
20982
20974
|
};
|
|
20983
20975
|
} | {
|
|
20984
20976
|
searchId: "people:employees:leadmagic@1";
|
|
20985
|
-
billableOperation:
|
|
20977
|
+
billableOperation: string;
|
|
20986
20978
|
baseSearch: string;
|
|
20987
20979
|
label: string;
|
|
20988
20980
|
categories: "people"[];
|
|
@@ -21027,7 +21019,7 @@ declare function getSearchesEntry(searchId: SearchesId): {
|
|
|
21027
21019
|
};
|
|
21028
21020
|
} | {
|
|
21029
21021
|
searchId: "people:profiles:clado@1";
|
|
21030
|
-
billableOperation:
|
|
21022
|
+
billableOperation: string;
|
|
21031
21023
|
baseSearch: string;
|
|
21032
21024
|
label: string;
|
|
21033
21025
|
categories: "people"[];
|
|
@@ -21083,7 +21075,7 @@ declare function getSearchesEntry(searchId: SearchesId): {
|
|
|
21083
21075
|
};
|
|
21084
21076
|
} | {
|
|
21085
21077
|
searchId: "people:profiles:clado@2";
|
|
21086
|
-
billableOperation:
|
|
21078
|
+
billableOperation: string;
|
|
21087
21079
|
baseSearch: string;
|
|
21088
21080
|
label: string;
|
|
21089
21081
|
categories: "deprecated"[];
|
|
@@ -21295,10 +21287,10 @@ declare abstract class Pipe<Payload extends {
|
|
|
21295
21287
|
resolveFormat?: (_lazyContext: LazyResolveContext) => RecordFieldFormat;
|
|
21296
21288
|
isPrimaryOutput?: boolean;
|
|
21297
21289
|
}): {
|
|
21298
|
-
name: "
|
|
21290
|
+
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
21291
|
enabled: boolean;
|
|
21300
|
-
type: "string" | "number" | "boolean" | "
|
|
21301
|
-
format: "
|
|
21292
|
+
type: "string" | "number" | "boolean" | "json" | "unknown" | ((_lazyContext: LazyResolveContext) => RecordFieldType);
|
|
21293
|
+
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
21294
|
resolvedName: any;
|
|
21303
21295
|
description: "A summary of the main business purpose and objectives." | "The standardized and cleaned version of the company name, ensuring consistency across different entries." | "Markdown-formatted scrape of a website." | "A list of website links." | "HTML-formatted scrape of a website." | "Generic URL of a website." | "List of URLs" | "List of URLs scraped from a website" | "Fully enriched people profile" | "The industry in which the company operates." | "The region corresponding to the company's country." | "An optional hint to help pinpoint a person's or company's location." | "A list of the top competitors for a given company as provided by LeadMagic" | "A list of acquisitions by a given company" | "A list of company news" | "The estimated annual revenue of the company." | "List of corporate funding rounds." | "Amount of total known funding" | "The year the company was founded." | "A flat list of technologies used by a company" | "Technology spending trend over the last 2 years. Average deviation between measuring points in %." | "A datastructure containing the technologies used by this company" | "Social followers (or zero if not found)." | "Mobile telephone number of a person." | "A generic field for phone numbers. Can be mobile or landline." | "A landline phone number" | "Current job title of a person" | "Description of current job" | "A union field that can contain both professional and personal email addresses." | "The personal email address of a prospect." | "The personal email addresses that are associated with a prospect but less likely to be the primary email address of a prospect." | "Latest company news." | "Email address of a person connection to their place of employment." | "Total number of people employed in a particular organization" | "Website URL of a related company." | "Bare domain of a related company. Example: stripe.com (no scheme, no path)." | "Name of a company." | "Object returned from a Clado people search." | "Object returned from a Icypeas people search" | "First name of a person." | "Recipient name in the format required by postal services." | "URL for profile picture" | "First line of an address (e.g. street address)" | "The formatted address of a company’s headquarters." | "Name of a city as needed for an address." | "Name of a country as needed for an address." | "Name of a state." | "A postal zip code. Usually a combination of numbers and letters." | "Last name of a person." | "Estimated total salary in USD." | "List of professional skills" | "Check if a given email is a work email." | "The full name of a person. Usually a combination of first and last name." | "IP Address of a person" | "Check if an email address is valid and can receive emails." | "A standardized format for returning LinkedIn profile data." | "A person's LinkedIn profile URL." | "List of recent LinkedIn posts in JSON format." | "Professional profile headline" | "Company LinkedIn URL." | "Result of email sending action using Resend" | "Id of a single resend contact" | "Name of a pipe0 sheet" | "Input field of type string" | "A domain field." | "Input field of type string and URL format" | "A value that has been stripped of characters not found in slugs." | "HTTP status code returned by the upstream endpoint." | "Parsed JSON body returned by the upstream endpoint." | "Response headers returned by the upstream endpoint as a flat key-value map." | "ID of sheet record" | "IDs sheet records" | "Result of email sending action using Gmail" | "Result of sending a message using Slack" | "The test of an email formatted as markdown" | "A markdown message that be send to any chat app." | "Subject line for email" | "Template value where the tags are replaces with real values" | "Email validation status. Allowed values are: 'valid', 'invalid', 'catch_all', 'unkown'" | "Validation status as returned from ZeroBounce single validation" | "Full validation object as returned by ZeroBounce" | "List of unstructured input objects" | "Reference to a created sheet" | "Result of a firecrawl extract operation" | "Exa search result." | "CompanyEnrich response object" | "Crustdata company match object" | "A number between 1 and 0 indicating the confidence that the profile belongs to the input email address." | "Crustdata company enrichment match." | "LinkedIn post list" | "Rich JSON post list" | "Result of a role finder operation" | "Person match object as returned by Amplemarket" | "Company match object as returned by Amplemarket" | "CompanyEnrich response list." | "Company or organization logo" | "Get company logos & brand data" | "Social Media URL for a given company (e.g. LinkedIn profile URL).";
|
|
21304
21296
|
jsonMeta: {
|
|
@@ -24940,11 +24932,22 @@ interface LazyResolveContext {
|
|
|
24940
24932
|
}
|
|
24941
24933
|
type FieldMode = "static" | "config";
|
|
24942
24934
|
type AnyPipeConstructor = new (_pipePayload: any) => Pipe;
|
|
24935
|
+
type Tier = {
|
|
24936
|
+
credits: number;
|
|
24937
|
+
weight: number;
|
|
24938
|
+
};
|
|
24939
|
+
type ManagedCredits = {
|
|
24940
|
+
default: number;
|
|
24941
|
+
level1?: Tier;
|
|
24942
|
+
level2?: Tier;
|
|
24943
|
+
level3?: Tier;
|
|
24944
|
+
};
|
|
24945
|
+
type HighVolumeLevel = 1 | 2 | 3;
|
|
24943
24946
|
type BillableOperationDef = {
|
|
24944
24947
|
allowManagedConnection: true;
|
|
24945
24948
|
provider: ProviderName;
|
|
24946
24949
|
mode: BillingMode;
|
|
24947
|
-
credits:
|
|
24950
|
+
credits: ManagedCredits;
|
|
24948
24951
|
note?: string;
|
|
24949
24952
|
} | {
|
|
24950
24953
|
allowManagedConnection: false;
|
|
@@ -26730,12 +26733,10 @@ declare const pipePayloadSchemaCatalog: {
|
|
|
26730
26733
|
output_field: z.ZodObject<{
|
|
26731
26734
|
name: z.ZodString;
|
|
26732
26735
|
format: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
26733
|
-
profile_url: "profile_url";
|
|
26734
|
-
int: "int";
|
|
26735
|
-
date: "date";
|
|
26736
26736
|
email: "email";
|
|
26737
26737
|
address_line_1: "address_line_1";
|
|
26738
26738
|
zip_code: "zip_code";
|
|
26739
|
+
profile_url: "profile_url";
|
|
26739
26740
|
phone: "phone";
|
|
26740
26741
|
website_url: "website_url";
|
|
26741
26742
|
markdown: "markdown";
|
|
@@ -26745,7 +26746,9 @@ declare const pipePayloadSchemaCatalog: {
|
|
|
26745
26746
|
url: "url";
|
|
26746
26747
|
datetime: "datetime";
|
|
26747
26748
|
currency: "currency";
|
|
26749
|
+
date: "date";
|
|
26748
26750
|
text: "text";
|
|
26751
|
+
int: "int";
|
|
26749
26752
|
decimal: "decimal";
|
|
26750
26753
|
percent: "percent";
|
|
26751
26754
|
}>>>;
|
|
@@ -26754,8 +26757,8 @@ declare const pipePayloadSchemaCatalog: {
|
|
|
26754
26757
|
string: "string";
|
|
26755
26758
|
number: "number";
|
|
26756
26759
|
boolean: "boolean";
|
|
26757
|
-
unknown: "unknown";
|
|
26758
26760
|
json: "json";
|
|
26761
|
+
unknown: "unknown";
|
|
26759
26762
|
}>;
|
|
26760
26763
|
}, z.core.$strip>;
|
|
26761
26764
|
}, z.core.$strip>>;
|
|
@@ -30503,6 +30506,90 @@ type PipePayloadMap = { [k in keyof PipePayloadSchemaCatalog]: z.infer<PipePaylo
|
|
|
30503
30506
|
type PipeRequestPayloadMap = { [k in keyof PipePayloadSchemaCatalog]: z.input<PipePayloadSchemaCatalog[k]> };
|
|
30504
30507
|
declare function getPipeDefaultPayload(pipeId: PipeId): any;
|
|
30505
30508
|
declare function getPipePayloadSchema(pipeId: PipeId): z.ZodObject<{
|
|
30509
|
+
pipe_id: z.ZodLiteral<"person:workemail:waterfall@1">;
|
|
30510
|
+
connector: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30511
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
30512
|
+
first: "first";
|
|
30513
|
+
}>>;
|
|
30514
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
30515
|
+
type: z.ZodLiteral<"vault">;
|
|
30516
|
+
connection: z.ZodString;
|
|
30517
|
+
}, z.core.$strip>>;
|
|
30518
|
+
}, z.core.$strip>>>;
|
|
30519
|
+
run_if: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30520
|
+
action: z.ZodDefault<z.ZodEnum<{
|
|
30521
|
+
run: "run";
|
|
30522
|
+
}>>;
|
|
30523
|
+
when: z.ZodObject<{
|
|
30524
|
+
logic: z.ZodEnum<{
|
|
30525
|
+
and: "and";
|
|
30526
|
+
or: "or";
|
|
30527
|
+
}>;
|
|
30528
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
30529
|
+
property: z.ZodLiteral<"value">;
|
|
30530
|
+
field_name: z.ZodString;
|
|
30531
|
+
operator: z.ZodEnum<{
|
|
30532
|
+
eq: "eq";
|
|
30533
|
+
neq: "neq";
|
|
30534
|
+
gt: "gt";
|
|
30535
|
+
gte: "gte";
|
|
30536
|
+
lt: "lt";
|
|
30537
|
+
lte: "lte";
|
|
30538
|
+
contains: "contains";
|
|
30539
|
+
}>;
|
|
30540
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
30541
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
30542
|
+
property: z.ZodLiteral<"status">;
|
|
30543
|
+
field_name: z.ZodString;
|
|
30544
|
+
operator: z.ZodEnum<{
|
|
30545
|
+
eq: "eq";
|
|
30546
|
+
neq: "neq";
|
|
30547
|
+
}>;
|
|
30548
|
+
value: z.ZodEnum<{
|
|
30549
|
+
completed: "completed";
|
|
30550
|
+
failed: "failed";
|
|
30551
|
+
no_result: "no_result";
|
|
30552
|
+
skipped: "skipped";
|
|
30553
|
+
}>;
|
|
30554
|
+
}, z.core.$strip>], "property">>;
|
|
30555
|
+
}, z.core.$strip>;
|
|
30556
|
+
}, z.core.$strip>>>;
|
|
30557
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
30558
|
+
providers: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
30559
|
+
provider: z.ZodEnum<{
|
|
30560
|
+
findymail: "findymail";
|
|
30561
|
+
hunter: "hunter";
|
|
30562
|
+
leadmagic: "leadmagic";
|
|
30563
|
+
icypeas: "icypeas";
|
|
30564
|
+
prospeo: "prospeo";
|
|
30565
|
+
amplemarket: "amplemarket";
|
|
30566
|
+
}>;
|
|
30567
|
+
}, z.core.$strip>>>;
|
|
30568
|
+
allow_catch_all_emails: z.ZodDefault<z.ZodBoolean>;
|
|
30569
|
+
allow_risky_emails: z.ZodDefault<z.ZodBoolean>;
|
|
30570
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
30571
|
+
name: z.ZodDefault<z.ZodObject<{
|
|
30572
|
+
alias: z.ZodString;
|
|
30573
|
+
}, z.core.$strip>>;
|
|
30574
|
+
company_domain: z.ZodDefault<z.ZodObject<{
|
|
30575
|
+
alias: z.ZodString;
|
|
30576
|
+
}, z.core.$strip>>;
|
|
30577
|
+
company_name: z.ZodDefault<z.ZodObject<{
|
|
30578
|
+
alias: z.ZodString;
|
|
30579
|
+
}, z.core.$strip>>;
|
|
30580
|
+
}, z.core.$strip>>;
|
|
30581
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
30582
|
+
work_email: z.ZodDefault<z.ZodObject<{
|
|
30583
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
30584
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
30585
|
+
}, z.core.$strip>>;
|
|
30586
|
+
email_validation_status: z.ZodDefault<z.ZodObject<{
|
|
30587
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
30588
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
30589
|
+
}, z.core.$strip>>;
|
|
30590
|
+
}, z.core.$strip>>;
|
|
30591
|
+
}, z.core.$strip>>;
|
|
30592
|
+
}, z.core.$strip> | z.ZodObject<{
|
|
30506
30593
|
pipe_id: z.ZodLiteral<"prompt:run@1">;
|
|
30507
30594
|
connector: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30508
30595
|
strategy: z.ZodDefault<z.ZodEnum<{
|
|
@@ -31196,90 +31283,6 @@ declare function getPipePayloadSchema(pipeId: PipeId): z.ZodObject<{
|
|
|
31196
31283
|
}, z.core.$strip>>;
|
|
31197
31284
|
}, z.core.$strip>>;
|
|
31198
31285
|
}, z.core.$strip>>;
|
|
31199
|
-
}, z.core.$strip> | z.ZodObject<{
|
|
31200
|
-
pipe_id: z.ZodLiteral<"person:workemail:waterfall@1">;
|
|
31201
|
-
connector: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
31202
|
-
strategy: z.ZodDefault<z.ZodEnum<{
|
|
31203
|
-
first: "first";
|
|
31204
|
-
}>>;
|
|
31205
|
-
connections: z.ZodArray<z.ZodObject<{
|
|
31206
|
-
type: z.ZodLiteral<"vault">;
|
|
31207
|
-
connection: z.ZodString;
|
|
31208
|
-
}, z.core.$strip>>;
|
|
31209
|
-
}, z.core.$strip>>>;
|
|
31210
|
-
run_if: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
31211
|
-
action: z.ZodDefault<z.ZodEnum<{
|
|
31212
|
-
run: "run";
|
|
31213
|
-
}>>;
|
|
31214
|
-
when: z.ZodObject<{
|
|
31215
|
-
logic: z.ZodEnum<{
|
|
31216
|
-
and: "and";
|
|
31217
|
-
or: "or";
|
|
31218
|
-
}>;
|
|
31219
|
-
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
31220
|
-
property: z.ZodLiteral<"value">;
|
|
31221
|
-
field_name: z.ZodString;
|
|
31222
|
-
operator: z.ZodEnum<{
|
|
31223
|
-
eq: "eq";
|
|
31224
|
-
neq: "neq";
|
|
31225
|
-
gt: "gt";
|
|
31226
|
-
gte: "gte";
|
|
31227
|
-
lt: "lt";
|
|
31228
|
-
lte: "lte";
|
|
31229
|
-
contains: "contains";
|
|
31230
|
-
}>;
|
|
31231
|
-
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
31232
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
31233
|
-
property: z.ZodLiteral<"status">;
|
|
31234
|
-
field_name: z.ZodString;
|
|
31235
|
-
operator: z.ZodEnum<{
|
|
31236
|
-
eq: "eq";
|
|
31237
|
-
neq: "neq";
|
|
31238
|
-
}>;
|
|
31239
|
-
value: z.ZodEnum<{
|
|
31240
|
-
completed: "completed";
|
|
31241
|
-
failed: "failed";
|
|
31242
|
-
no_result: "no_result";
|
|
31243
|
-
skipped: "skipped";
|
|
31244
|
-
}>;
|
|
31245
|
-
}, z.core.$strip>], "property">>;
|
|
31246
|
-
}, z.core.$strip>;
|
|
31247
|
-
}, z.core.$strip>>>;
|
|
31248
|
-
config: z.ZodOptional<z.ZodObject<{
|
|
31249
|
-
providers: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
31250
|
-
provider: z.ZodEnum<{
|
|
31251
|
-
findymail: "findymail";
|
|
31252
|
-
hunter: "hunter";
|
|
31253
|
-
leadmagic: "leadmagic";
|
|
31254
|
-
icypeas: "icypeas";
|
|
31255
|
-
prospeo: "prospeo";
|
|
31256
|
-
amplemarket: "amplemarket";
|
|
31257
|
-
}>;
|
|
31258
|
-
}, z.core.$strip>>>;
|
|
31259
|
-
allow_catch_all_emails: z.ZodDefault<z.ZodBoolean>;
|
|
31260
|
-
allow_risky_emails: z.ZodDefault<z.ZodBoolean>;
|
|
31261
|
-
input_fields: z.ZodOptional<z.ZodObject<{
|
|
31262
|
-
name: z.ZodDefault<z.ZodObject<{
|
|
31263
|
-
alias: z.ZodString;
|
|
31264
|
-
}, z.core.$strip>>;
|
|
31265
|
-
company_domain: z.ZodDefault<z.ZodObject<{
|
|
31266
|
-
alias: z.ZodString;
|
|
31267
|
-
}, z.core.$strip>>;
|
|
31268
|
-
company_name: z.ZodDefault<z.ZodObject<{
|
|
31269
|
-
alias: z.ZodString;
|
|
31270
|
-
}, z.core.$strip>>;
|
|
31271
|
-
}, z.core.$strip>>;
|
|
31272
|
-
output_fields: z.ZodOptional<z.ZodObject<{
|
|
31273
|
-
work_email: z.ZodDefault<z.ZodObject<{
|
|
31274
|
-
alias: z.ZodDefault<z.ZodString>;
|
|
31275
|
-
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
31276
|
-
}, z.core.$strip>>;
|
|
31277
|
-
email_validation_status: z.ZodDefault<z.ZodObject<{
|
|
31278
|
-
alias: z.ZodDefault<z.ZodString>;
|
|
31279
|
-
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
31280
|
-
}, z.core.$strip>>;
|
|
31281
|
-
}, z.core.$strip>>;
|
|
31282
|
-
}, z.core.$strip>>;
|
|
31283
31286
|
}, z.core.$strip> | z.ZodObject<{
|
|
31284
31287
|
pipe_id: z.ZodLiteral<"people:email:iswork@1">;
|
|
31285
31288
|
run_if: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -32185,12 +32188,10 @@ declare function getPipePayloadSchema(pipeId: PipeId): z.ZodObject<{
|
|
|
32185
32188
|
output_field: z.ZodObject<{
|
|
32186
32189
|
name: z.ZodString;
|
|
32187
32190
|
format: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
32188
|
-
profile_url: "profile_url";
|
|
32189
|
-
int: "int";
|
|
32190
|
-
date: "date";
|
|
32191
32191
|
email: "email";
|
|
32192
32192
|
address_line_1: "address_line_1";
|
|
32193
32193
|
zip_code: "zip_code";
|
|
32194
|
+
profile_url: "profile_url";
|
|
32194
32195
|
phone: "phone";
|
|
32195
32196
|
website_url: "website_url";
|
|
32196
32197
|
markdown: "markdown";
|
|
@@ -32200,7 +32201,9 @@ declare function getPipePayloadSchema(pipeId: PipeId): z.ZodObject<{
|
|
|
32200
32201
|
url: "url";
|
|
32201
32202
|
datetime: "datetime";
|
|
32202
32203
|
currency: "currency";
|
|
32204
|
+
date: "date";
|
|
32203
32205
|
text: "text";
|
|
32206
|
+
int: "int";
|
|
32204
32207
|
decimal: "decimal";
|
|
32205
32208
|
percent: "percent";
|
|
32206
32209
|
}>>>;
|
|
@@ -32209,8 +32212,8 @@ declare function getPipePayloadSchema(pipeId: PipeId): z.ZodObject<{
|
|
|
32209
32212
|
string: "string";
|
|
32210
32213
|
number: "number";
|
|
32211
32214
|
boolean: "boolean";
|
|
32212
|
-
unknown: "unknown";
|
|
32213
32215
|
json: "json";
|
|
32216
|
+
unknown: "unknown";
|
|
32214
32217
|
}>;
|
|
32215
32218
|
}, z.core.$strip>;
|
|
32216
32219
|
}, z.core.$strip>>;
|
|
@@ -35923,6 +35926,23 @@ type PipeEntryWithLatestVersion = PipeCatalogEntry & {
|
|
|
35923
35926
|
latestVersion: number;
|
|
35924
35927
|
};
|
|
35925
35928
|
declare const getDefaultPipeProviders: (pipeId: PipeId) => ProviderName[];
|
|
35929
|
+
/**
|
|
35930
|
+
* Walk every pipe + search entry's billable-event keys and throw if any key
|
|
35931
|
+
* is owned by more than one (pipeId or searchId). The naming convention
|
|
35932
|
+
* `<flattened-pipeId>-<distinguisher>` makes collisions structurally
|
|
35933
|
+
* unlikely, but accidental copy-paste between entries — or two pipes
|
|
35934
|
+
* passing the same hand-written AI prefix — would silently merge their
|
|
35935
|
+
* billing events and break per-pipe attribution. Run at module top-level
|
|
35936
|
+
* so the failure surfaces at app boot, not at first billing event.
|
|
35937
|
+
*
|
|
35938
|
+
* The accepts-arguments shape lets the catalog test pass synthetic
|
|
35939
|
+
* catalogs without having to mock the live modules.
|
|
35940
|
+
*/
|
|
35941
|
+
declare function assertUniqueBillableOperations(pipes: Record<string, {
|
|
35942
|
+
billableOperations: Record<string, unknown>;
|
|
35943
|
+
}>, searches: Record<string, {
|
|
35944
|
+
billableOperation: string;
|
|
35945
|
+
}>): void;
|
|
35926
35946
|
declare function getInitialTableData(category: PipeCategory | null): PipeEntryWithLatestVersion[];
|
|
35927
35947
|
declare function getTableDataAggregates(initialTableData: PipeEntryWithLatestVersion[], category: PipeCategory | null): {
|
|
35928
35948
|
pipeIdsByInputField: Record<string, ("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")[]>;
|
|
@@ -35944,8 +35964,8 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
35944
35964
|
string: "string";
|
|
35945
35965
|
number: "number";
|
|
35946
35966
|
boolean: "boolean";
|
|
35947
|
-
unknown: "unknown";
|
|
35948
35967
|
json: "json";
|
|
35968
|
+
unknown: "unknown";
|
|
35949
35969
|
}>;
|
|
35950
35970
|
label: z.ZodString;
|
|
35951
35971
|
added_by: z.ZodObject<{
|
|
@@ -36033,12 +36053,10 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
36033
36053
|
pipe_index: z.ZodNullable<z.ZodNumber>;
|
|
36034
36054
|
}, z.core.$strip>;
|
|
36035
36055
|
format: z.ZodNullable<z.ZodEnum<{
|
|
36036
|
-
profile_url: "profile_url";
|
|
36037
|
-
int: "int";
|
|
36038
|
-
date: "date";
|
|
36039
36056
|
email: "email";
|
|
36040
36057
|
address_line_1: "address_line_1";
|
|
36041
36058
|
zip_code: "zip_code";
|
|
36059
|
+
profile_url: "profile_url";
|
|
36042
36060
|
phone: "phone";
|
|
36043
36061
|
website_url: "website_url";
|
|
36044
36062
|
markdown: "markdown";
|
|
@@ -36048,7 +36066,9 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
36048
36066
|
url: "url";
|
|
36049
36067
|
datetime: "datetime";
|
|
36050
36068
|
currency: "currency";
|
|
36069
|
+
date: "date";
|
|
36051
36070
|
text: "text";
|
|
36071
|
+
int: "int";
|
|
36052
36072
|
decimal: "decimal";
|
|
36053
36073
|
percent: "percent";
|
|
36054
36074
|
}>>;
|
|
@@ -36068,8 +36088,8 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
36068
36088
|
string: "string";
|
|
36069
36089
|
number: "number";
|
|
36070
36090
|
boolean: "boolean";
|
|
36071
|
-
unknown: "unknown";
|
|
36072
36091
|
json: "json";
|
|
36092
|
+
unknown: "unknown";
|
|
36073
36093
|
}>;
|
|
36074
36094
|
reason: z.ZodNullable<z.ZodObject<{
|
|
36075
36095
|
code: z.ZodString;
|
|
@@ -36374,12 +36394,10 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
36374
36394
|
}, z.core.$strip>>>;
|
|
36375
36395
|
}, z.core.$strip>>;
|
|
36376
36396
|
format: z.ZodNullable<z.ZodEnum<{
|
|
36377
|
-
profile_url: "profile_url";
|
|
36378
|
-
int: "int";
|
|
36379
|
-
date: "date";
|
|
36380
36397
|
email: "email";
|
|
36381
36398
|
address_line_1: "address_line_1";
|
|
36382
36399
|
zip_code: "zip_code";
|
|
36400
|
+
profile_url: "profile_url";
|
|
36383
36401
|
phone: "phone";
|
|
36384
36402
|
website_url: "website_url";
|
|
36385
36403
|
markdown: "markdown";
|
|
@@ -36389,7 +36407,9 @@ declare const PipesResponseSchema: z.ZodObject<{
|
|
|
36389
36407
|
url: "url";
|
|
36390
36408
|
datetime: "datetime";
|
|
36391
36409
|
currency: "currency";
|
|
36410
|
+
date: "date";
|
|
36392
36411
|
text: "text";
|
|
36412
|
+
int: "int";
|
|
36393
36413
|
decimal: "decimal";
|
|
36394
36414
|
percent: "percent";
|
|
36395
36415
|
}>>;
|
|
@@ -36453,17 +36473,15 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
36453
36473
|
string: "string";
|
|
36454
36474
|
number: "number";
|
|
36455
36475
|
boolean: "boolean";
|
|
36456
|
-
unknown: "unknown";
|
|
36457
36476
|
json: "json";
|
|
36477
|
+
unknown: "unknown";
|
|
36458
36478
|
}>;
|
|
36459
36479
|
label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
36460
36480
|
format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
36461
|
-
profile_url: "profile_url";
|
|
36462
|
-
int: "int";
|
|
36463
|
-
date: "date";
|
|
36464
36481
|
email: "email";
|
|
36465
36482
|
address_line_1: "address_line_1";
|
|
36466
36483
|
zip_code: "zip_code";
|
|
36484
|
+
profile_url: "profile_url";
|
|
36467
36485
|
phone: "phone";
|
|
36468
36486
|
website_url: "website_url";
|
|
36469
36487
|
markdown: "markdown";
|
|
@@ -36473,7 +36491,9 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
36473
36491
|
url: "url";
|
|
36474
36492
|
datetime: "datetime";
|
|
36475
36493
|
currency: "currency";
|
|
36494
|
+
date: "date";
|
|
36476
36495
|
text: "text";
|
|
36496
|
+
int: "int";
|
|
36477
36497
|
decimal: "decimal";
|
|
36478
36498
|
percent: "percent";
|
|
36479
36499
|
}>>>;
|
|
@@ -38165,12 +38185,10 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
38165
38185
|
output_field: z.ZodObject<{
|
|
38166
38186
|
name: z.ZodString;
|
|
38167
38187
|
format: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
38168
|
-
profile_url: "profile_url";
|
|
38169
|
-
int: "int";
|
|
38170
|
-
date: "date";
|
|
38171
38188
|
email: "email";
|
|
38172
38189
|
address_line_1: "address_line_1";
|
|
38173
38190
|
zip_code: "zip_code";
|
|
38191
|
+
profile_url: "profile_url";
|
|
38174
38192
|
phone: "phone";
|
|
38175
38193
|
website_url: "website_url";
|
|
38176
38194
|
markdown: "markdown";
|
|
@@ -38180,7 +38198,9 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
38180
38198
|
url: "url";
|
|
38181
38199
|
datetime: "datetime";
|
|
38182
38200
|
currency: "currency";
|
|
38201
|
+
date: "date";
|
|
38183
38202
|
text: "text";
|
|
38203
|
+
int: "int";
|
|
38184
38204
|
decimal: "decimal";
|
|
38185
38205
|
percent: "percent";
|
|
38186
38206
|
}>>>;
|
|
@@ -38189,8 +38209,8 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
38189
38209
|
string: "string";
|
|
38190
38210
|
number: "number";
|
|
38191
38211
|
boolean: "boolean";
|
|
38192
|
-
unknown: "unknown";
|
|
38193
38212
|
json: "json";
|
|
38213
|
+
unknown: "unknown";
|
|
38194
38214
|
}>;
|
|
38195
38215
|
}, z.core.$strip>;
|
|
38196
38216
|
}, z.core.$strip>>;
|
|
@@ -41886,16 +41906,14 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
41886
41906
|
string: "string";
|
|
41887
41907
|
number: "number";
|
|
41888
41908
|
boolean: "boolean";
|
|
41889
|
-
unknown: "unknown";
|
|
41890
41909
|
json: "json";
|
|
41910
|
+
unknown: "unknown";
|
|
41891
41911
|
}>>;
|
|
41892
41912
|
format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
41893
|
-
profile_url: "profile_url";
|
|
41894
|
-
int: "int";
|
|
41895
|
-
date: "date";
|
|
41896
41913
|
email: "email";
|
|
41897
41914
|
address_line_1: "address_line_1";
|
|
41898
41915
|
zip_code: "zip_code";
|
|
41916
|
+
profile_url: "profile_url";
|
|
41899
41917
|
phone: "phone";
|
|
41900
41918
|
website_url: "website_url";
|
|
41901
41919
|
markdown: "markdown";
|
|
@@ -41905,7 +41923,9 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
41905
41923
|
url: "url";
|
|
41906
41924
|
datetime: "datetime";
|
|
41907
41925
|
currency: "currency";
|
|
41926
|
+
date: "date";
|
|
41908
41927
|
text: "text";
|
|
41928
|
+
int: "int";
|
|
41909
41929
|
decimal: "decimal";
|
|
41910
41930
|
percent: "percent";
|
|
41911
41931
|
}>>>;
|
|
@@ -42236,22 +42256,26 @@ type ManagedBillableOperationDef = {
|
|
|
42236
42256
|
allowManagedConnection: true;
|
|
42237
42257
|
provider: ProviderName;
|
|
42238
42258
|
mode: BillingMode;
|
|
42239
|
-
credits:
|
|
42259
|
+
credits: ManagedCredits;
|
|
42240
42260
|
};
|
|
42241
42261
|
/**
|
|
42242
|
-
* Build billable operations for all AI models with a given
|
|
42243
|
-
*
|
|
42244
|
-
*
|
|
42262
|
+
* Build billable operations for all AI models with a given prefix. Returns a
|
|
42263
|
+
* record keyed by `${prefix}-${modelId}`. The prefix is a literal string the
|
|
42264
|
+
* caller hand-writes (typically `<flattened-pipeId-with-version>`) so the
|
|
42265
|
+
* resulting keys are explicit and unique per pipe version. The catalog-load
|
|
42266
|
+
* uniqueness check (`assertUniqueBillableOperations`) is the backstop.
|
|
42245
42267
|
*/
|
|
42246
|
-
declare function buildAiModelBillableOperations<
|
|
42268
|
+
declare function buildAiModelBillableOperations<Prefix extends string>(prefix: Prefix, creditOverrides?: Partial<Record<AiModelId, number>>): { [M in AiModelId as `${Prefix}-${M}`]: ManagedBillableOperationDef };
|
|
42247
42269
|
/**
|
|
42248
|
-
* Get the
|
|
42270
|
+
* Get the billing key for a given AI model with a given prefix. Mirrors
|
|
42271
|
+
* `buildAiModelBillableOperations` so runners and entries look up the
|
|
42272
|
+
* exact key the catalog declared.
|
|
42249
42273
|
*/
|
|
42250
|
-
declare function
|
|
42274
|
+
declare function getAiModelBillingKey<Prefix extends string>(modelId: AiModelId, prefix: Prefix): `${Prefix}-${AiModelId}`;
|
|
42251
42275
|
/**
|
|
42252
|
-
* Get the
|
|
42276
|
+
* Get the provider names for a given model.
|
|
42253
42277
|
*/
|
|
42254
|
-
declare function
|
|
42278
|
+
declare function getAiModelProviders(modelId: AiModelId): ProviderName[];
|
|
42255
42279
|
/**
|
|
42256
42280
|
* Get connection requirements for a given model.
|
|
42257
42281
|
*/
|
|
@@ -42785,12 +42809,10 @@ declare const pipesJsonExtractionInput: () => z.ZodObject<{
|
|
|
42785
42809
|
output_field: z.ZodObject<{
|
|
42786
42810
|
name: z.ZodString;
|
|
42787
42811
|
format: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
42788
|
-
profile_url: "profile_url";
|
|
42789
|
-
int: "int";
|
|
42790
|
-
date: "date";
|
|
42791
42812
|
email: "email";
|
|
42792
42813
|
address_line_1: "address_line_1";
|
|
42793
42814
|
zip_code: "zip_code";
|
|
42815
|
+
profile_url: "profile_url";
|
|
42794
42816
|
phone: "phone";
|
|
42795
42817
|
website_url: "website_url";
|
|
42796
42818
|
markdown: "markdown";
|
|
@@ -42800,7 +42822,9 @@ declare const pipesJsonExtractionInput: () => z.ZodObject<{
|
|
|
42800
42822
|
url: "url";
|
|
42801
42823
|
datetime: "datetime";
|
|
42802
42824
|
currency: "currency";
|
|
42825
|
+
date: "date";
|
|
42803
42826
|
text: "text";
|
|
42827
|
+
int: "int";
|
|
42804
42828
|
decimal: "decimal";
|
|
42805
42829
|
percent: "percent";
|
|
42806
42830
|
}>>>;
|
|
@@ -42809,8 +42833,8 @@ declare const pipesJsonExtractionInput: () => z.ZodObject<{
|
|
|
42809
42833
|
string: "string";
|
|
42810
42834
|
number: "number";
|
|
42811
42835
|
boolean: "boolean";
|
|
42812
|
-
unknown: "unknown";
|
|
42813
42836
|
json: "json";
|
|
42837
|
+
unknown: "unknown";
|
|
42814
42838
|
}>;
|
|
42815
42839
|
}, z.core.$strip>;
|
|
42816
42840
|
}, z.core.$strip>>;
|
|
@@ -42844,7 +42868,9 @@ declare const jsonSchemaInput: (metadata: Pick<JSONSchemaMeta, "enabledIf" | "in
|
|
|
42844
42868
|
type SelectInputMetadata = Pick<SelectMeta, "options" | "path" | "required" | "label" | "placeholder" | "defaultValue" | "order" | "groupPath" | "sectionKey" | "description">;
|
|
42845
42869
|
type AIModelSelectInputMetadata = Pick<SelectMeta, "path" | "label" | "defaultValue" | "groupPath" | "sectionKey" | "enabledIf" | "info"> & {
|
|
42846
42870
|
billableOperations: Record<`${AiModelId}-${string}`, {
|
|
42847
|
-
credits:
|
|
42871
|
+
credits: {
|
|
42872
|
+
default: number;
|
|
42873
|
+
};
|
|
42848
42874
|
}>;
|
|
42849
42875
|
};
|
|
42850
42876
|
declare const selectInput: <T extends SelectInputMetadata>(metadata: T, registry: Registry) => z.ZodString | z.ZodDefault<z.ZodString>;
|
|
@@ -43339,40 +43365,76 @@ declare class PipeClass extends Pipe<Payload> {
|
|
|
43339
43365
|
payload: Payload;
|
|
43340
43366
|
payloadSchema: ZodType;
|
|
43341
43367
|
billableOperations: {
|
|
43342
|
-
readonly "
|
|
43368
|
+
readonly "person-workemail-waterfall-v1-leadmagic": {
|
|
43343
43369
|
readonly provider: "leadmagic";
|
|
43344
43370
|
readonly allowManagedConnection: true;
|
|
43345
|
-
readonly credits:
|
|
43371
|
+
readonly credits: {
|
|
43372
|
+
readonly default: 0.5;
|
|
43373
|
+
readonly level1: {
|
|
43374
|
+
readonly credits: 0.25;
|
|
43375
|
+
readonly weight: 1;
|
|
43376
|
+
};
|
|
43377
|
+
};
|
|
43346
43378
|
readonly mode: "onSuccess";
|
|
43347
43379
|
};
|
|
43348
|
-
readonly "
|
|
43380
|
+
readonly "person-workemail-waterfall-v1-icypeas": {
|
|
43349
43381
|
readonly provider: "icypeas";
|
|
43350
43382
|
readonly allowManagedConnection: true;
|
|
43351
|
-
readonly credits:
|
|
43383
|
+
readonly credits: {
|
|
43384
|
+
readonly default: 0.5;
|
|
43385
|
+
readonly level1: {
|
|
43386
|
+
readonly credits: 0.25;
|
|
43387
|
+
readonly weight: 1;
|
|
43388
|
+
};
|
|
43389
|
+
};
|
|
43352
43390
|
readonly mode: "onSuccess";
|
|
43353
43391
|
};
|
|
43354
|
-
readonly "
|
|
43392
|
+
readonly "person-workemail-waterfall-v1-prospeo": {
|
|
43355
43393
|
readonly provider: "prospeo";
|
|
43356
43394
|
readonly allowManagedConnection: true;
|
|
43357
|
-
readonly credits:
|
|
43395
|
+
readonly credits: {
|
|
43396
|
+
readonly default: 1;
|
|
43397
|
+
readonly level1: {
|
|
43398
|
+
readonly credits: 0.5;
|
|
43399
|
+
readonly weight: 1;
|
|
43400
|
+
};
|
|
43401
|
+
};
|
|
43358
43402
|
readonly mode: "onSuccess";
|
|
43359
43403
|
};
|
|
43360
|
-
readonly "
|
|
43404
|
+
readonly "person-workemail-waterfall-v1-findymail": {
|
|
43361
43405
|
readonly provider: "findymail";
|
|
43362
43406
|
readonly allowManagedConnection: true;
|
|
43363
|
-
readonly credits:
|
|
43407
|
+
readonly credits: {
|
|
43408
|
+
readonly default: 1.5;
|
|
43409
|
+
readonly level1: {
|
|
43410
|
+
readonly credits: 0.75;
|
|
43411
|
+
readonly weight: 1;
|
|
43412
|
+
};
|
|
43413
|
+
};
|
|
43364
43414
|
readonly mode: "onSuccess";
|
|
43365
43415
|
};
|
|
43366
|
-
readonly "
|
|
43416
|
+
readonly "person-workemail-waterfall-v1-hunter": {
|
|
43367
43417
|
readonly provider: "hunter";
|
|
43368
43418
|
readonly allowManagedConnection: true;
|
|
43369
|
-
readonly credits:
|
|
43419
|
+
readonly credits: {
|
|
43420
|
+
readonly default: 1.3;
|
|
43421
|
+
readonly level1: {
|
|
43422
|
+
readonly credits: 0.75;
|
|
43423
|
+
readonly weight: 1;
|
|
43424
|
+
};
|
|
43425
|
+
};
|
|
43370
43426
|
readonly mode: "onSuccess";
|
|
43371
43427
|
};
|
|
43372
|
-
readonly "
|
|
43428
|
+
readonly "person-workemail-waterfall-v1-amplemarket": {
|
|
43373
43429
|
readonly provider: "amplemarket";
|
|
43374
43430
|
readonly allowManagedConnection: true;
|
|
43375
|
-
readonly credits:
|
|
43431
|
+
readonly credits: {
|
|
43432
|
+
readonly default: 3;
|
|
43433
|
+
readonly level1: {
|
|
43434
|
+
readonly credits: 2;
|
|
43435
|
+
readonly weight: 1;
|
|
43436
|
+
};
|
|
43437
|
+
};
|
|
43376
43438
|
readonly mode: "onSuccess";
|
|
43377
43439
|
};
|
|
43378
43440
|
};
|
|
@@ -43490,40 +43552,76 @@ declare const PersonWorkemailWaterfall1Entry: {
|
|
|
43490
43552
|
readonly inputFieldMode: "static";
|
|
43491
43553
|
readonly outputFieldMode: "static";
|
|
43492
43554
|
readonly billableOperations: {
|
|
43493
|
-
readonly "
|
|
43555
|
+
readonly "person-workemail-waterfall-v1-leadmagic": {
|
|
43494
43556
|
readonly provider: "leadmagic";
|
|
43495
43557
|
readonly allowManagedConnection: true;
|
|
43496
|
-
readonly credits:
|
|
43558
|
+
readonly credits: {
|
|
43559
|
+
readonly default: 0.5;
|
|
43560
|
+
readonly level1: {
|
|
43561
|
+
readonly credits: 0.25;
|
|
43562
|
+
readonly weight: 1;
|
|
43563
|
+
};
|
|
43564
|
+
};
|
|
43497
43565
|
readonly mode: "onSuccess";
|
|
43498
43566
|
};
|
|
43499
|
-
readonly "
|
|
43567
|
+
readonly "person-workemail-waterfall-v1-icypeas": {
|
|
43500
43568
|
readonly provider: "icypeas";
|
|
43501
43569
|
readonly allowManagedConnection: true;
|
|
43502
|
-
readonly credits:
|
|
43570
|
+
readonly credits: {
|
|
43571
|
+
readonly default: 0.5;
|
|
43572
|
+
readonly level1: {
|
|
43573
|
+
readonly credits: 0.25;
|
|
43574
|
+
readonly weight: 1;
|
|
43575
|
+
};
|
|
43576
|
+
};
|
|
43503
43577
|
readonly mode: "onSuccess";
|
|
43504
43578
|
};
|
|
43505
|
-
readonly "
|
|
43579
|
+
readonly "person-workemail-waterfall-v1-prospeo": {
|
|
43506
43580
|
readonly provider: "prospeo";
|
|
43507
43581
|
readonly allowManagedConnection: true;
|
|
43508
|
-
readonly credits:
|
|
43582
|
+
readonly credits: {
|
|
43583
|
+
readonly default: 1;
|
|
43584
|
+
readonly level1: {
|
|
43585
|
+
readonly credits: 0.5;
|
|
43586
|
+
readonly weight: 1;
|
|
43587
|
+
};
|
|
43588
|
+
};
|
|
43509
43589
|
readonly mode: "onSuccess";
|
|
43510
43590
|
};
|
|
43511
|
-
readonly "
|
|
43591
|
+
readonly "person-workemail-waterfall-v1-findymail": {
|
|
43512
43592
|
readonly provider: "findymail";
|
|
43513
43593
|
readonly allowManagedConnection: true;
|
|
43514
|
-
readonly credits:
|
|
43594
|
+
readonly credits: {
|
|
43595
|
+
readonly default: 1.5;
|
|
43596
|
+
readonly level1: {
|
|
43597
|
+
readonly credits: 0.75;
|
|
43598
|
+
readonly weight: 1;
|
|
43599
|
+
};
|
|
43600
|
+
};
|
|
43515
43601
|
readonly mode: "onSuccess";
|
|
43516
43602
|
};
|
|
43517
|
-
readonly "
|
|
43603
|
+
readonly "person-workemail-waterfall-v1-hunter": {
|
|
43518
43604
|
readonly provider: "hunter";
|
|
43519
43605
|
readonly allowManagedConnection: true;
|
|
43520
|
-
readonly credits:
|
|
43606
|
+
readonly credits: {
|
|
43607
|
+
readonly default: 1.3;
|
|
43608
|
+
readonly level1: {
|
|
43609
|
+
readonly credits: 0.75;
|
|
43610
|
+
readonly weight: 1;
|
|
43611
|
+
};
|
|
43612
|
+
};
|
|
43521
43613
|
readonly mode: "onSuccess";
|
|
43522
43614
|
};
|
|
43523
|
-
readonly "
|
|
43615
|
+
readonly "person-workemail-waterfall-v1-amplemarket": {
|
|
43524
43616
|
readonly provider: "amplemarket";
|
|
43525
43617
|
readonly allowManagedConnection: true;
|
|
43526
|
-
readonly credits:
|
|
43618
|
+
readonly credits: {
|
|
43619
|
+
readonly default: 3;
|
|
43620
|
+
readonly level1: {
|
|
43621
|
+
readonly credits: 2;
|
|
43622
|
+
readonly weight: 1;
|
|
43623
|
+
};
|
|
43624
|
+
};
|
|
43527
43625
|
readonly mode: "onSuccess";
|
|
43528
43626
|
};
|
|
43529
43627
|
};
|
|
@@ -44800,7 +44898,7 @@ declare function markRecordFieldAsComplete({
|
|
|
44800
44898
|
}): {
|
|
44801
44899
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
44802
44900
|
status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
|
|
44803
|
-
type: "string" | "number" | "boolean" | "
|
|
44901
|
+
type: "string" | "number" | "boolean" | "json" | "unknown";
|
|
44804
44902
|
reason: {
|
|
44805
44903
|
code: string;
|
|
44806
44904
|
summary: string;
|
|
@@ -44816,7 +44914,7 @@ declare function markRecordFieldAsComplete({
|
|
|
44816
44914
|
config_hash: string | null;
|
|
44817
44915
|
input_hash: string | null;
|
|
44818
44916
|
} | null;
|
|
44819
|
-
format: "
|
|
44917
|
+
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;
|
|
44820
44918
|
widgets?: {
|
|
44821
44919
|
display_value?: {
|
|
44822
44920
|
label?: string | undefined;
|
|
@@ -44864,7 +44962,7 @@ declare function markRecordFieldAsPending({
|
|
|
44864
44962
|
}): {
|
|
44865
44963
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
44866
44964
|
status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
|
|
44867
|
-
type: "string" | "number" | "boolean" | "
|
|
44965
|
+
type: "string" | "number" | "boolean" | "json" | "unknown";
|
|
44868
44966
|
reason: {
|
|
44869
44967
|
code: string;
|
|
44870
44968
|
summary: string;
|
|
@@ -44880,7 +44978,7 @@ declare function markRecordFieldAsPending({
|
|
|
44880
44978
|
config_hash: string | null;
|
|
44881
44979
|
input_hash: string | null;
|
|
44882
44980
|
} | null;
|
|
44883
|
-
format: "
|
|
44981
|
+
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;
|
|
44884
44982
|
widgets?: {
|
|
44885
44983
|
display_value?: {
|
|
44886
44984
|
label?: string | undefined;
|
|
@@ -44934,7 +45032,7 @@ declare function markRecordFieldAsNoResult({
|
|
|
44934
45032
|
}): {
|
|
44935
45033
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
44936
45034
|
status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
|
|
44937
|
-
type: "string" | "number" | "boolean" | "
|
|
45035
|
+
type: "string" | "number" | "boolean" | "json" | "unknown";
|
|
44938
45036
|
reason: {
|
|
44939
45037
|
code: string;
|
|
44940
45038
|
summary: string;
|
|
@@ -44950,7 +45048,7 @@ declare function markRecordFieldAsNoResult({
|
|
|
44950
45048
|
config_hash: string | null;
|
|
44951
45049
|
input_hash: string | null;
|
|
44952
45050
|
} | null;
|
|
44953
|
-
format: "
|
|
45051
|
+
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;
|
|
44954
45052
|
widgets?: {
|
|
44955
45053
|
display_value?: {
|
|
44956
45054
|
label?: string | undefined;
|
|
@@ -44994,7 +45092,7 @@ declare function markRecordFieldAsNoResult({
|
|
|
44994
45092
|
declare function markRecordFieldAsFailed(field: RecordField, reason: FieldReason, resolvedBy: RecordField["resolved_by"]): {
|
|
44995
45093
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
44996
45094
|
status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
|
|
44997
|
-
type: "string" | "number" | "boolean" | "
|
|
45095
|
+
type: "string" | "number" | "boolean" | "json" | "unknown";
|
|
44998
45096
|
reason: {
|
|
44999
45097
|
code: string;
|
|
45000
45098
|
summary: string;
|
|
@@ -45010,7 +45108,7 @@ declare function markRecordFieldAsFailed(field: RecordField, reason: FieldReason
|
|
|
45010
45108
|
config_hash: string | null;
|
|
45011
45109
|
input_hash: string | null;
|
|
45012
45110
|
} | null;
|
|
45013
|
-
format: "
|
|
45111
|
+
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;
|
|
45014
45112
|
widgets?: {
|
|
45015
45113
|
display_value?: {
|
|
45016
45114
|
label?: string | undefined;
|
|
@@ -45054,7 +45152,7 @@ declare function markRecordFieldAsFailed(field: RecordField, reason: FieldReason
|
|
|
45054
45152
|
declare function markRecordFieldAsSkipped(field: RecordField, reason: FieldReason): {
|
|
45055
45153
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
45056
45154
|
status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
|
|
45057
|
-
type: "string" | "number" | "boolean" | "
|
|
45155
|
+
type: "string" | "number" | "boolean" | "json" | "unknown";
|
|
45058
45156
|
reason: {
|
|
45059
45157
|
code: string;
|
|
45060
45158
|
summary: string;
|
|
@@ -45070,7 +45168,7 @@ declare function markRecordFieldAsSkipped(field: RecordField, reason: FieldReaso
|
|
|
45070
45168
|
config_hash: string | null;
|
|
45071
45169
|
input_hash: string | null;
|
|
45072
45170
|
} | null;
|
|
45073
|
-
format: "
|
|
45171
|
+
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;
|
|
45074
45172
|
widgets?: {
|
|
45075
45173
|
display_value?: {
|
|
45076
45174
|
label?: string | undefined;
|
|
@@ -45114,7 +45212,7 @@ declare function markRecordFieldAsSkipped(field: RecordField, reason: FieldReaso
|
|
|
45114
45212
|
declare function markRecordFieldAsProcessing(field: RecordField): {
|
|
45115
45213
|
value: string | number | boolean | Record<string, unknown> | unknown[] | null;
|
|
45116
45214
|
status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
|
|
45117
|
-
type: "string" | "number" | "boolean" | "
|
|
45215
|
+
type: "string" | "number" | "boolean" | "json" | "unknown";
|
|
45118
45216
|
reason: {
|
|
45119
45217
|
code: string;
|
|
45120
45218
|
summary: string;
|
|
@@ -45130,7 +45228,7 @@ declare function markRecordFieldAsProcessing(field: RecordField): {
|
|
|
45130
45228
|
config_hash: string | null;
|
|
45131
45229
|
input_hash: string | null;
|
|
45132
45230
|
} | null;
|
|
45133
|
-
format: "
|
|
45231
|
+
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;
|
|
45134
45232
|
widgets?: {
|
|
45135
45233
|
display_value?: {
|
|
45136
45234
|
label?: string | undefined;
|
|
@@ -45178,13 +45276,77 @@ declare function catalogInput(field: NamedFieldEntry, config: {
|
|
|
45178
45276
|
alias?: string | undefined;
|
|
45179
45277
|
}> | undefined;
|
|
45180
45278
|
} | null | undefined): {
|
|
45181
|
-
name: "
|
|
45279
|
+
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";
|
|
45182
45280
|
description: "A summary of the main business purpose and objectives." | "The standardized and cleaned version of the company name, ensuring consistency across different entries." | "Markdown-formatted scrape of a website." | "A list of website links." | "HTML-formatted scrape of a website." | "Generic URL of a website." | "List of URLs" | "List of URLs scraped from a website" | "Fully enriched people profile" | "The industry in which the company operates." | "The region corresponding to the company's country." | "An optional hint to help pinpoint a person's or company's location." | "A list of the top competitors for a given company as provided by LeadMagic" | "A list of acquisitions by a given company" | "A list of company news" | "The estimated annual revenue of the company." | "List of corporate funding rounds." | "Amount of total known funding" | "The year the company was founded." | "A flat list of technologies used by a company" | "Technology spending trend over the last 2 years. Average deviation between measuring points in %." | "A datastructure containing the technologies used by this company" | "Social followers (or zero if not found)." | "Mobile telephone number of a person." | "A generic field for phone numbers. Can be mobile or landline." | "A landline phone number" | "Current job title of a person" | "Description of current job" | "A union field that can contain both professional and personal email addresses." | "The personal email address of a prospect." | "The personal email addresses that are associated with a prospect but less likely to be the primary email address of a prospect." | "Latest company news." | "Email address of a person connection to their place of employment." | "Total number of people employed in a particular organization" | "Website URL of a related company." | "Bare domain of a related company. Example: stripe.com (no scheme, no path)." | "Name of a company." | "Object returned from a Clado people search." | "Object returned from a Icypeas people search" | "First name of a person." | "Recipient name in the format required by postal services." | "URL for profile picture" | "First line of an address (e.g. street address)" | "The formatted address of a company’s headquarters." | "Name of a city as needed for an address." | "Name of a country as needed for an address." | "Name of a state." | "A postal zip code. Usually a combination of numbers and letters." | "Last name of a person." | "Estimated total salary in USD." | "List of professional skills" | "Check if a given email is a work email." | "The full name of a person. Usually a combination of first and last name." | "IP Address of a person" | "Check if an email address is valid and can receive emails." | "A standardized format for returning LinkedIn profile data." | "A person's LinkedIn profile URL." | "List of recent LinkedIn posts in JSON format." | "Professional profile headline" | "Company LinkedIn URL." | "Result of email sending action using Resend" | "Id of a single resend contact" | "Name of a pipe0 sheet" | "Input field of type string" | "A domain field." | "Input field of type string and URL format" | "A value that has been stripped of characters not found in slugs." | "HTTP status code returned by the upstream endpoint." | "Parsed JSON body returned by the upstream endpoint." | "Response headers returned by the upstream endpoint as a flat key-value map." | "ID of sheet record" | "IDs sheet records" | "Result of email sending action using Gmail" | "Result of sending a message using Slack" | "The test of an email formatted as markdown" | "A markdown message that be send to any chat app." | "Subject line for email" | "Template value where the tags are replaces with real values" | "Email validation status. Allowed values are: 'valid', 'invalid', 'catch_all', 'unkown'" | "Validation status as returned from ZeroBounce single validation" | "Full validation object as returned by ZeroBounce" | "List of unstructured input objects" | "Reference to a created sheet" | "Result of a firecrawl extract operation" | "Exa search result." | "CompanyEnrich response object" | "Crustdata company match object" | "A number between 1 and 0 indicating the confidence that the profile belongs to the input email address." | "Crustdata company enrichment match." | "LinkedIn post list" | "Rich JSON post list" | "Result of a role finder operation" | "Person match object as returned by Amplemarket" | "Company match object as returned by Amplemarket" | "CompanyEnrich response list." | "Company or organization logo" | "Get company logos & brand data" | "Social Media URL for a given company (e.g. LinkedIn profile URL).";
|
|
45183
45281
|
resolvedName: string;
|
|
45184
|
-
type: "string" | "number" | "boolean" | "
|
|
45282
|
+
type: "string" | "number" | "boolean" | "json" | "unknown";
|
|
45185
45283
|
label: "Company description" | "Cleaned company name" | "Scrape result - Markdown" | "Website internal links" | "Scrape result - HTML" | "Website URL" | "URLs" | "Clado person profile" | "Full name" | "Profile headline" | "LinkedIn profile URL" | "Job title" | "Company industry" | "Company region" | "Location hint" | "Competitor list" | "Acquisition history" | "Company news list" | "Estimated Annual Revenue" | "Funding history" | "Total funding (USD)" | "Founding year" | "Technology list" | "Spending Trend" | "Builtwith technology response" | "Follower count" | "Mobile" | "Phone" | "Landline" | "Job description" | "Email address" | "Personal email" | "Alternate personal email" | "Latest news" | "Work email" | "Headcount" | "Company website URL" | "Company domain" | "Company name" | "Clado person match" | "Icypeas person match" | "Icypeas company match" | "First name" | "Addressee name" | "Avatar URL" | "Address line 1" | "Address line 2" | "Address city" | "Address country" | "State" | "Zip code" | "Last name" | "Estimated salary" | "Skills" | "Is work email result" | "IP address" | "Email validation" | "Professional profile" | "Recrent linkedIn posts" | "Company LinkedIn profile URL" | "Resend mail success" | "Resend contact id" | "Sheet name" | "String input" | "Domain" | "URL input" | "Slugified value" | "HTTP response status" | "HTTP response body" | "HTTP response headers" | "Record ID" | "Record IDs" | "Gmail e-mail success" | "Slack message success" | "A markdown email" | "Message" | "Subject Line" | "Template Output" | "Validation status" | "Million Verifier match" | "ZeroBounce Validation Status" | "ZeroBounce Validation Match" | "Input objects" | "Created sheet" | "Merge Result" | "Extract Result" | "Exa Match Evaluation" | "Company match" | "Person match" | "Match score" | "Company enrichment match" | "Post list" | "Crustdata Post list" | "Role finder match" | "CompanyEnrich matches" | "Logo URL" | "Company Social URL" | "Professional profile (LinkedIn)" | "LinkedIn Profile URL";
|
|
45186
|
-
format: "
|
|
45284
|
+
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;
|
|
45285
|
+
};
|
|
45286
|
+
//#endregion
|
|
45287
|
+
//#region src/pipes/catalog/utils/high-volume.d.ts
|
|
45288
|
+
declare const HIGH_VOLUME_PRICING_MIN_CREDITS = 0.1;
|
|
45289
|
+
type HighVolumeTier = {
|
|
45290
|
+
level: HighVolumeLevel;
|
|
45291
|
+
credits: number;
|
|
45292
|
+
weight: number;
|
|
45293
|
+
};
|
|
45294
|
+
type HighVolumeEligibleOperation = {
|
|
45295
|
+
billableOperation: BillableOperation;
|
|
45296
|
+
provider: ProviderName;
|
|
45297
|
+
kind: "pipe" | "search";
|
|
45298
|
+
standardCredits: number;
|
|
45299
|
+
tiers: HighVolumeTier[];
|
|
45300
|
+
usedBy: {
|
|
45301
|
+
kind: "pipe" | "search";
|
|
45302
|
+
id: string;
|
|
45303
|
+
label: string;
|
|
45304
|
+
categories: string[];
|
|
45305
|
+
}[];
|
|
45187
45306
|
};
|
|
45307
|
+
/**
|
|
45308
|
+
* Returns the tier object at the requested level, or undefined if the
|
|
45309
|
+
* catalog does not declare a tier for that level.
|
|
45310
|
+
*/
|
|
45311
|
+
declare function getTier(credits: ManagedCredits, level: HighVolumeLevel): Tier | undefined;
|
|
45312
|
+
/**
|
|
45313
|
+
* Walks downward from `level` looking for the highest declared tier <=
|
|
45314
|
+
* `level`. Protects runtime billing against catalog drift: if a catalog
|
|
45315
|
+
* drops tier 3 while an org's enrollment row still records `level=3`,
|
|
45316
|
+
* the runtime falls back to tier 2 (or tier 1) instead of charging the
|
|
45317
|
+
* default price.
|
|
45318
|
+
*/
|
|
45319
|
+
declare function tierAtOrBelow(credits: ManagedCredits, level: HighVolumeLevel): {
|
|
45320
|
+
level: HighVolumeLevel;
|
|
45321
|
+
tier: Tier;
|
|
45322
|
+
} | undefined;
|
|
45323
|
+
/**
|
|
45324
|
+
* Enumerates the declared tiers in ascending order. Returns an empty
|
|
45325
|
+
* array for ops that opt out of high-volume pricing entirely.
|
|
45326
|
+
*/
|
|
45327
|
+
declare function listTiers(credits: ManagedCredits): HighVolumeTier[];
|
|
45328
|
+
/**
|
|
45329
|
+
* An op is eligible iff:
|
|
45330
|
+
* - the default price clears the floor,
|
|
45331
|
+
* - it declares at least one high-volume tier,
|
|
45332
|
+
* - tiers are gap-free (1, 1+2, or 1+2+3),
|
|
45333
|
+
* - tier credits are strictly decreasing relative to the default and to each other,
|
|
45334
|
+
* - tier weights are positive integers, strictly increasing across tiers.
|
|
45335
|
+
*/
|
|
45336
|
+
declare function isHighVolumeEligible(credits: ManagedCredits): boolean;
|
|
45337
|
+
/**
|
|
45338
|
+
* Enumerates every billable operation across the active pipe and search
|
|
45339
|
+
* catalogs that opts into high-volume pricing. The deprecated searches
|
|
45340
|
+
* (plural) catalog is intentionally excluded.
|
|
45341
|
+
*
|
|
45342
|
+
* Dedupes on billableOperation key — the same key can appear on multiple
|
|
45343
|
+
* pipe versions (that's the point of the shared key). When duplicates
|
|
45344
|
+
* disagree on credits, the entry with the lowest standardCredits wins;
|
|
45345
|
+
* tier metadata is taken from the first eligible occurrence we see (a
|
|
45346
|
+
* billable operation is expected to declare a consistent tier shape
|
|
45347
|
+
* across the catalog).
|
|
45348
|
+
*/
|
|
45349
|
+
declare function listHighVolumeEligibleOperations(): HighVolumeEligibleOperation[];
|
|
45188
45350
|
//#endregion
|
|
45189
45351
|
//#region src/pipes/pipes-validator/get-output-field-info-from-dev.d.ts
|
|
45190
45352
|
declare function getOutputFieldInfoFromDef(resolvedName: string, def: PipesFieldDefinition, context: ValidationContext): {
|
|
@@ -45565,7 +45727,7 @@ declare function stringify(v: unknown): unknown;
|
|
|
45565
45727
|
declare function rateLimitRatioFallingProgression(index: number): number;
|
|
45566
45728
|
declare function sortObjectKeys(obj: any): any;
|
|
45567
45729
|
declare const TYPES_TO_FORMATS: {
|
|
45568
|
-
string: ("
|
|
45730
|
+
string: ("email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "url" | "datetime" | "date" | "text")[];
|
|
45569
45731
|
json: ("json_object" | "json_list")[];
|
|
45570
45732
|
number: ("int" | "decimal")[];
|
|
45571
45733
|
boolean: never[];
|
|
@@ -45611,8 +45773,8 @@ declare function inputFromRecords(records: PipesInMemoryResponse["records"], con
|
|
|
45611
45773
|
summary: string;
|
|
45612
45774
|
message: string;
|
|
45613
45775
|
} | null | undefined;
|
|
45614
|
-
type?: "string" | "number" | "boolean" | "
|
|
45615
|
-
format?: "
|
|
45776
|
+
type?: "string" | "number" | "boolean" | "json" | "unknown" | undefined;
|
|
45777
|
+
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;
|
|
45616
45778
|
claimed_by?: {
|
|
45617
45779
|
ref: "input" | "prompt:run@1" | "company:newssummary:website@1" | "company:newssummary:domain@1" | "company:techstack:builtwith@1" | "company:techstack:builtwith@2" | "company:websiteurl:email@1" | "company:domain:workemail@1" | "company:funding:leadmagic@1" | "company:funding:leadmagic@2" | "people:workemail:waterfall@1" | "person:workemail:waterfall@1" | "people:email:iswork@1" | "email:iswork@1" | "people:name:split@1" | "person:name:split@1" | "person:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "email:validate:zerobounce@1" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "company:overview@3" | "json:extract:multi@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "person:match:role:waterfall@1" | "person:identity:amplemarket@1" | "company:identity@2" | "company:identity@3" | "person:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "person:mobile:profileurl:waterfall@1" | "people:personalemail:profile:waterfall@1" | "person:personalemail:profileurl:waterfall@1" | "people:profile:waterfall@1" | "person:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "person:profileurl:email:waterfall@1" | "person:profileurl:name@1" | "people:email:validate:zerobounce@1" | "person:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "person:mobile:workemail:waterfall@1" | "fields:merge@1" | "field:slugify@1" | "field:domainify@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:row:append@1" | "sheet:row:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:lookalikes:companyenrich@2" | "company:match:logodev@1" | "company:match:logodev@2" | "person:posts:crustdata@1" | "company:match:crustdata@1" | "company:match:crustdata@2" | "people:profile:workemail:crustdata@1" | "person:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "person:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "person:identity:email:waterfall@1" | "http:request@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | null;
|
|
45618
45780
|
config_hash: string | null;
|
|
@@ -45671,8 +45833,8 @@ declare function inputFromRecords(records: PipesInMemoryResponse["records"], con
|
|
|
45671
45833
|
summary: string;
|
|
45672
45834
|
message: string;
|
|
45673
45835
|
} | null | undefined;
|
|
45674
|
-
type?: "string" | "number" | "boolean" | "
|
|
45675
|
-
format?: "
|
|
45836
|
+
type?: "string" | "number" | "boolean" | "json" | "unknown" | undefined;
|
|
45837
|
+
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;
|
|
45676
45838
|
claimed_by?: {
|
|
45677
45839
|
ref: "input" | "prompt:run@1" | "company:newssummary:website@1" | "company:newssummary:domain@1" | "company:techstack:builtwith@1" | "company:techstack:builtwith@2" | "company:websiteurl:email@1" | "company:domain:workemail@1" | "company:funding:leadmagic@1" | "company:funding:leadmagic@2" | "people:workemail:waterfall@1" | "person:workemail:waterfall@1" | "people:email:iswork@1" | "email:iswork@1" | "people:name:split@1" | "person:name:split@1" | "person:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "email:validate:zerobounce@1" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "company:overview@3" | "json:extract:multi@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "person:match:role:waterfall@1" | "person:identity:amplemarket@1" | "company:identity@2" | "company:identity@3" | "person:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "person:mobile:profileurl:waterfall@1" | "people:personalemail:profile:waterfall@1" | "person:personalemail:profileurl:waterfall@1" | "people:profile:waterfall@1" | "person:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "person:profileurl:email:waterfall@1" | "person:profileurl:name@1" | "people:email:validate:zerobounce@1" | "person:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "person:mobile:workemail:waterfall@1" | "fields:merge@1" | "field:slugify@1" | "field:domainify@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:row:append@1" | "sheet:row:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:lookalikes:companyenrich@2" | "company:match:logodev@1" | "company:match:logodev@2" | "person:posts:crustdata@1" | "company:match:crustdata@1" | "company:match:crustdata@2" | "people:profile:workemail:crustdata@1" | "person:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "person:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "person:identity:email:waterfall@1" | "http:request@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | null;
|
|
45678
45840
|
config_hash: string | null;
|
|
@@ -45734,8 +45896,8 @@ declare function inputFromRecordArr(records: PipesRecord[], config?: Partial<Fie
|
|
|
45734
45896
|
summary: string;
|
|
45735
45897
|
message: string;
|
|
45736
45898
|
} | null | undefined;
|
|
45737
|
-
type?: "string" | "number" | "boolean" | "
|
|
45738
|
-
format?: "
|
|
45899
|
+
type?: "string" | "number" | "boolean" | "json" | "unknown" | undefined;
|
|
45900
|
+
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;
|
|
45739
45901
|
claimed_by?: {
|
|
45740
45902
|
ref: "input" | "prompt:run@1" | "company:newssummary:website@1" | "company:newssummary:domain@1" | "company:techstack:builtwith@1" | "company:techstack:builtwith@2" | "company:websiteurl:email@1" | "company:domain:workemail@1" | "company:funding:leadmagic@1" | "company:funding:leadmagic@2" | "people:workemail:waterfall@1" | "person:workemail:waterfall@1" | "people:email:iswork@1" | "email:iswork@1" | "people:name:split@1" | "person:name:split@1" | "person:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "email:validate:zerobounce@1" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "company:overview@3" | "json:extract:multi@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "person:match:role:waterfall@1" | "person:identity:amplemarket@1" | "company:identity@2" | "company:identity@3" | "person:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "person:mobile:profileurl:waterfall@1" | "people:personalemail:profile:waterfall@1" | "person:personalemail:profileurl:waterfall@1" | "people:profile:waterfall@1" | "person:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "person:profileurl:email:waterfall@1" | "person:profileurl:name@1" | "people:email:validate:zerobounce@1" | "person:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "person:mobile:workemail:waterfall@1" | "fields:merge@1" | "field:slugify@1" | "field:domainify@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:row:append@1" | "sheet:row:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:lookalikes:companyenrich@2" | "company:match:logodev@1" | "company:match:logodev@2" | "person:posts:crustdata@1" | "company:match:crustdata@1" | "company:match:crustdata@2" | "people:profile:workemail:crustdata@1" | "person:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "person:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "person:identity:email:waterfall@1" | "http:request@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | null;
|
|
45741
45903
|
config_hash: string | null;
|
|
@@ -45794,8 +45956,8 @@ declare function inputFromRecordArr(records: PipesRecord[], config?: Partial<Fie
|
|
|
45794
45956
|
summary: string;
|
|
45795
45957
|
message: string;
|
|
45796
45958
|
} | null | undefined;
|
|
45797
|
-
type?: "string" | "number" | "boolean" | "
|
|
45798
|
-
format?: "
|
|
45959
|
+
type?: "string" | "number" | "boolean" | "json" | "unknown" | undefined;
|
|
45960
|
+
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;
|
|
45799
45961
|
claimed_by?: {
|
|
45800
45962
|
ref: "input" | "prompt:run@1" | "company:newssummary:website@1" | "company:newssummary:domain@1" | "company:techstack:builtwith@1" | "company:techstack:builtwith@2" | "company:websiteurl:email@1" | "company:domain:workemail@1" | "company:funding:leadmagic@1" | "company:funding:leadmagic@2" | "people:workemail:waterfall@1" | "person:workemail:waterfall@1" | "people:email:iswork@1" | "email:iswork@1" | "people:name:split@1" | "person:name:split@1" | "person:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "email:validate:zerobounce@1" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "company:overview@3" | "json:extract:multi@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "person:match:role:waterfall@1" | "person:identity:amplemarket@1" | "company:identity@2" | "company:identity@3" | "person:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "person:mobile:profileurl:waterfall@1" | "people:personalemail:profile:waterfall@1" | "person:personalemail:profileurl:waterfall@1" | "people:profile:waterfall@1" | "person:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "person:profileurl:email:waterfall@1" | "person:profileurl:name@1" | "people:email:validate:zerobounce@1" | "person:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "person:mobile:workemail:waterfall@1" | "fields:merge@1" | "field:slugify@1" | "field:domainify@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:row:append@1" | "sheet:row:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:lookalikes:companyenrich@2" | "company:match:logodev@1" | "company:match:logodev@2" | "person:posts:crustdata@1" | "company:match:crustdata@1" | "company:match:crustdata@2" | "people:profile:workemail:crustdata@1" | "person:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "person:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "person:identity:email:waterfall@1" | "http:request@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | null;
|
|
45801
45963
|
config_hash: string | null;
|
|
@@ -45857,8 +46019,8 @@ declare function inputFromRecord(record: PipesRecord, config?: Partial<FieldsToO
|
|
|
45857
46019
|
summary: string;
|
|
45858
46020
|
message: string;
|
|
45859
46021
|
} | null | undefined;
|
|
45860
|
-
type?: "string" | "number" | "boolean" | "
|
|
45861
|
-
format?: "
|
|
46022
|
+
type?: "string" | "number" | "boolean" | "json" | "unknown" | undefined;
|
|
46023
|
+
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;
|
|
45862
46024
|
claimed_by?: {
|
|
45863
46025
|
ref: "input" | "prompt:run@1" | "company:newssummary:website@1" | "company:newssummary:domain@1" | "company:techstack:builtwith@1" | "company:techstack:builtwith@2" | "company:websiteurl:email@1" | "company:domain:workemail@1" | "company:funding:leadmagic@1" | "company:funding:leadmagic@2" | "people:workemail:waterfall@1" | "person:workemail:waterfall@1" | "people:email:iswork@1" | "email:iswork@1" | "people:name:split@1" | "person:name:split@1" | "person:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "email:validate:zerobounce@1" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "company:overview@3" | "json:extract:multi@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "person:match:role:waterfall@1" | "person:identity:amplemarket@1" | "company:identity@2" | "company:identity@3" | "person:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "person:mobile:profileurl:waterfall@1" | "people:personalemail:profile:waterfall@1" | "person:personalemail:profileurl:waterfall@1" | "people:profile:waterfall@1" | "person:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "person:profileurl:email:waterfall@1" | "person:profileurl:name@1" | "people:email:validate:zerobounce@1" | "person:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "person:mobile:workemail:waterfall@1" | "fields:merge@1" | "field:slugify@1" | "field:domainify@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:row:append@1" | "sheet:row:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:lookalikes:companyenrich@2" | "company:match:logodev@1" | "company:match:logodev@2" | "person:posts:crustdata@1" | "company:match:crustdata@1" | "company:match:crustdata@2" | "people:profile:workemail:crustdata@1" | "person:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "person:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "person:identity:email:waterfall@1" | "http:request@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | null;
|
|
45864
46026
|
config_hash: string | null;
|
|
@@ -45917,8 +46079,8 @@ declare function inputFromRecord(record: PipesRecord, config?: Partial<FieldsToO
|
|
|
45917
46079
|
summary: string;
|
|
45918
46080
|
message: string;
|
|
45919
46081
|
} | null | undefined;
|
|
45920
|
-
type?: "string" | "number" | "boolean" | "
|
|
45921
|
-
format?: "
|
|
46082
|
+
type?: "string" | "number" | "boolean" | "json" | "unknown" | undefined;
|
|
46083
|
+
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;
|
|
45922
46084
|
claimed_by?: {
|
|
45923
46085
|
ref: "input" | "prompt:run@1" | "company:newssummary:website@1" | "company:newssummary:domain@1" | "company:techstack:builtwith@1" | "company:techstack:builtwith@2" | "company:websiteurl:email@1" | "company:domain:workemail@1" | "company:funding:leadmagic@1" | "company:funding:leadmagic@2" | "people:workemail:waterfall@1" | "person:workemail:waterfall@1" | "people:email:iswork@1" | "email:iswork@1" | "people:name:split@1" | "person:name:split@1" | "person:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "email:validate:zerobounce@1" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "company:overview@3" | "json:extract:multi@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "person:match:role:waterfall@1" | "person:identity:amplemarket@1" | "company:identity@2" | "company:identity@3" | "person:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "person:mobile:profileurl:waterfall@1" | "people:personalemail:profile:waterfall@1" | "person:personalemail:profileurl:waterfall@1" | "people:profile:waterfall@1" | "person:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "person:profileurl:email:waterfall@1" | "person:profileurl:name@1" | "people:email:validate:zerobounce@1" | "person:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "person:mobile:workemail:waterfall@1" | "fields:merge@1" | "field:slugify@1" | "field:domainify@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:row:append@1" | "sheet:row:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:lookalikes:companyenrich@2" | "company:match:logodev@1" | "company:match:logodev@2" | "person:posts:crustdata@1" | "company:match:crustdata@1" | "company:match:crustdata@2" | "people:profile:workemail:crustdata@1" | "person:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "person:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "person:identity:email:waterfall@1" | "http:request@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | null;
|
|
45924
46086
|
config_hash: string | null;
|
|
@@ -47326,4 +47488,4 @@ declare const ProfileFieldSchema: z.ZodObject<{
|
|
|
47326
47488
|
}, z.core.$strip>;
|
|
47327
47489
|
type ProfielField = z.infer<typeof ProfileFieldSchema>;
|
|
47328
47490
|
//#endregion
|
|
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 };
|
|
47491
|
+
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, HIGH_VOLUME_PRICING_MIN_CREDITS, type HighVolumeEligibleOperation, HighVolumeLevel, type HighVolumeTier, type IconKey, IconWidgetKey, type IcypeasCompanyMatch, type IcypeasPersonMatch, IncludeExcludeMeta, IncludeExcludeSelectMeta, IntegerMeta, IntermediateFormSection, JSONExtractSchema, JSONExtraction, JSONExtractionMeta, JSONMeta, JSONMetaSchema, JSONSchemaMeta, JsonFieldType, KeyValueListMeta, LazyResolveContext, ManagedCredits, 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, Tier, type TransformIntoResponseConfig, type UserConnection, ValidationContext, type Widget, Widgets, type StoreOptionWidget as WidgetsByKind, StoreOptionWidgetSchema as WidgetsByKindSchema, WidgetsSchema, all, analyzeLiquidTemplate, and, any, assertUniqueBillableOperations, 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, getTier, getUnexpandedValue, ifDefined, inputFields, inputFromRecord, inputFromRecordArr, inputFromRecords, inputGuards, isCatalogField, isEmptyValue, isFieldName, isHighVolumeEligible, isPipeAllowed, isProviderAllowed, isRequirementMet, isRequirementSatisfiedByRecord, isSearchAllowed, isSearchesAllowed, joinConnectionString, listHighVolumeEligibleOperations, listTiers, 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, tierAtOrBelow, transformIntoResponse, validatePipesOrError, validateSearches, validationErrorMessages };
|