@pipe0/base 0.0.11 → 0.0.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -378,14 +378,14 @@ declare const StoreOptionWidgetSchema: z.ZodObject<{
378
378
  }, z.core.$strip>>;
379
379
  icon: z.ZodOptional<z.ZodObject<{
380
380
  key: z.ZodEnum<{
381
+ language: "language";
381
382
  output: "output";
382
- text: "text";
383
383
  input: "input";
384
+ text: "text";
384
385
  code: "code";
385
386
  filter: "filter";
386
387
  search: "search";
387
388
  location: "location";
388
- language: "language";
389
389
  workflow: "workflow";
390
390
  activity: "activity";
391
391
  linkedin: "linkedin";
@@ -545,8 +545,8 @@ declare const RecordFieldTypeSchema: z.ZodEnum<{
545
545
  string: "string";
546
546
  number: "number";
547
547
  boolean: "boolean";
548
- json: "json";
549
548
  unknown: "unknown";
549
+ json: "json";
550
550
  }>;
551
551
  type RecordFieldType = z.infer<typeof RecordFieldTypeSchema>;
552
552
  type DerivedInputFields = Record<string, {
@@ -709,10 +709,12 @@ declare const FieldReasonSchema: z.ZodObject<{
709
709
  type FieldReason = z.infer<typeof FieldReasonSchema>;
710
710
  declare const RECORD_FIELD_FORMATS: readonly ["json_object", "json_list", "json_list_string", "url", "website_url", "profile_url", "email", "datetime", "currency", "date", "phone", "markdown", "text", "int", "decimal", "address_line_1", "zip_code", "percent"];
711
711
  declare const RecordFieldFormatSchema: z.ZodEnum<{
712
+ profile_url: "profile_url";
713
+ int: "int";
714
+ date: "date";
712
715
  email: "email";
713
716
  address_line_1: "address_line_1";
714
717
  zip_code: "zip_code";
715
- profile_url: "profile_url";
716
718
  phone: "phone";
717
719
  website_url: "website_url";
718
720
  markdown: "markdown";
@@ -722,17 +724,17 @@ declare const RecordFieldFormatSchema: z.ZodEnum<{
722
724
  url: "url";
723
725
  datetime: "datetime";
724
726
  currency: "currency";
725
- date: "date";
726
727
  text: "text";
727
- int: "int";
728
728
  decimal: "decimal";
729
729
  percent: "percent";
730
730
  }>;
731
731
  declare const NullableRecordFieldFormatSchema: z.ZodNullable<z.ZodEnum<{
732
+ profile_url: "profile_url";
733
+ int: "int";
734
+ date: "date";
732
735
  email: "email";
733
736
  address_line_1: "address_line_1";
734
737
  zip_code: "zip_code";
735
- profile_url: "profile_url";
736
738
  phone: "phone";
737
739
  website_url: "website_url";
738
740
  markdown: "markdown";
@@ -742,9 +744,7 @@ declare const NullableRecordFieldFormatSchema: z.ZodNullable<z.ZodEnum<{
742
744
  url: "url";
743
745
  datetime: "datetime";
744
746
  currency: "currency";
745
- date: "date";
746
747
  text: "text";
747
- int: "int";
748
748
  decimal: "decimal";
749
749
  percent: "percent";
750
750
  }>>;
@@ -754,15 +754,17 @@ declare const FieldAnnotationSchema: z.ZodObject<{
754
754
  string: "string";
755
755
  number: "number";
756
756
  boolean: "boolean";
757
- json: "json";
758
757
  unknown: "unknown";
758
+ json: "json";
759
759
  }>;
760
760
  label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
761
761
  format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
762
+ profile_url: "profile_url";
763
+ int: "int";
764
+ date: "date";
762
765
  email: "email";
763
766
  address_line_1: "address_line_1";
764
767
  zip_code: "zip_code";
765
- profile_url: "profile_url";
766
768
  phone: "phone";
767
769
  website_url: "website_url";
768
770
  markdown: "markdown";
@@ -772,9 +774,7 @@ declare const FieldAnnotationSchema: z.ZodObject<{
772
774
  url: "url";
773
775
  datetime: "datetime";
774
776
  currency: "currency";
775
- date: "date";
776
777
  text: "text";
777
- int: "int";
778
778
  decimal: "decimal";
779
779
  percent: "percent";
780
780
  }>>>;
@@ -789,15 +789,17 @@ declare const FieldAnnotationsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
789
789
  string: "string";
790
790
  number: "number";
791
791
  boolean: "boolean";
792
- json: "json";
793
792
  unknown: "unknown";
793
+ json: "json";
794
794
  }>;
795
795
  label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
796
796
  format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
797
+ profile_url: "profile_url";
798
+ int: "int";
799
+ date: "date";
797
800
  email: "email";
798
801
  address_line_1: "address_line_1";
799
802
  zip_code: "zip_code";
800
- profile_url: "profile_url";
801
803
  phone: "phone";
802
804
  website_url: "website_url";
803
805
  markdown: "markdown";
@@ -807,9 +809,7 @@ declare const FieldAnnotationsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
807
809
  url: "url";
808
810
  datetime: "datetime";
809
811
  currency: "currency";
810
- date: "date";
811
812
  text: "text";
812
- int: "int";
813
813
  decimal: "decimal";
814
814
  percent: "percent";
815
815
  }>>>;
@@ -1002,8 +1002,8 @@ declare const RecordFieldSchema: z.ZodObject<{
1002
1002
  string: "string";
1003
1003
  number: "number";
1004
1004
  boolean: "boolean";
1005
- json: "json";
1006
1005
  unknown: "unknown";
1006
+ json: "json";
1007
1007
  }>;
1008
1008
  reason: z.ZodNullable<z.ZodObject<{
1009
1009
  code: z.ZodString;
@@ -1308,10 +1308,12 @@ declare const RecordFieldSchema: z.ZodObject<{
1308
1308
  }, z.core.$strip>>>;
1309
1309
  }, z.core.$strip>>;
1310
1310
  format: z.ZodNullable<z.ZodEnum<{
1311
+ profile_url: "profile_url";
1312
+ int: "int";
1313
+ date: "date";
1311
1314
  email: "email";
1312
1315
  address_line_1: "address_line_1";
1313
1316
  zip_code: "zip_code";
1314
- profile_url: "profile_url";
1315
1317
  phone: "phone";
1316
1318
  website_url: "website_url";
1317
1319
  markdown: "markdown";
@@ -1321,9 +1323,7 @@ declare const RecordFieldSchema: z.ZodObject<{
1321
1323
  url: "url";
1322
1324
  datetime: "datetime";
1323
1325
  currency: "currency";
1324
- date: "date";
1325
1326
  text: "text";
1326
- int: "int";
1327
1327
  decimal: "decimal";
1328
1328
  percent: "percent";
1329
1329
  }>>;
@@ -1341,14 +1341,16 @@ declare const ExpandedFieldValueSchema: z.ZodObject<{
1341
1341
  string: "string";
1342
1342
  number: "number";
1343
1343
  boolean: "boolean";
1344
- json: "json";
1345
1344
  unknown: "unknown";
1345
+ json: "json";
1346
1346
  }>>;
1347
1347
  format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
1348
+ profile_url: "profile_url";
1349
+ int: "int";
1350
+ date: "date";
1348
1351
  email: "email";
1349
1352
  address_line_1: "address_line_1";
1350
1353
  zip_code: "zip_code";
1351
- profile_url: "profile_url";
1352
1354
  phone: "phone";
1353
1355
  website_url: "website_url";
1354
1356
  markdown: "markdown";
@@ -1358,9 +1360,7 @@ declare const ExpandedFieldValueSchema: z.ZodObject<{
1358
1360
  url: "url";
1359
1361
  datetime: "datetime";
1360
1362
  currency: "currency";
1361
- date: "date";
1362
1363
  text: "text";
1363
- int: "int";
1364
1364
  decimal: "decimal";
1365
1365
  percent: "percent";
1366
1366
  }>>>;
@@ -1675,14 +1675,16 @@ declare const PipesInputSchema: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.
1675
1675
  string: "string";
1676
1676
  number: "number";
1677
1677
  boolean: "boolean";
1678
- json: "json";
1679
1678
  unknown: "unknown";
1679
+ json: "json";
1680
1680
  }>>;
1681
1681
  format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
1682
+ profile_url: "profile_url";
1683
+ int: "int";
1684
+ date: "date";
1682
1685
  email: "email";
1683
1686
  address_line_1: "address_line_1";
1684
1687
  zip_code: "zip_code";
1685
- profile_url: "profile_url";
1686
1688
  phone: "phone";
1687
1689
  website_url: "website_url";
1688
1690
  markdown: "markdown";
@@ -1692,9 +1694,7 @@ declare const PipesInputSchema: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.
1692
1694
  url: "url";
1693
1695
  datetime: "datetime";
1694
1696
  currency: "currency";
1695
- date: "date";
1696
1697
  text: "text";
1697
- int: "int";
1698
1698
  decimal: "decimal";
1699
1699
  percent: "percent";
1700
1700
  }>>>;
@@ -2006,8 +2006,8 @@ declare const RecordSchema: z.ZodObject<{
2006
2006
  string: "string";
2007
2007
  number: "number";
2008
2008
  boolean: "boolean";
2009
- json: "json";
2010
2009
  unknown: "unknown";
2010
+ json: "json";
2011
2011
  }>;
2012
2012
  reason: z.ZodNullable<z.ZodObject<{
2013
2013
  code: z.ZodString;
@@ -2312,10 +2312,12 @@ declare const RecordSchema: z.ZodObject<{
2312
2312
  }, z.core.$strip>>>;
2313
2313
  }, z.core.$strip>>;
2314
2314
  format: z.ZodNullable<z.ZodEnum<{
2315
+ profile_url: "profile_url";
2316
+ int: "int";
2317
+ date: "date";
2315
2318
  email: "email";
2316
2319
  address_line_1: "address_line_1";
2317
2320
  zip_code: "zip_code";
2318
- profile_url: "profile_url";
2319
2321
  phone: "phone";
2320
2322
  website_url: "website_url";
2321
2323
  markdown: "markdown";
@@ -2325,9 +2327,7 @@ declare const RecordSchema: z.ZodObject<{
2325
2327
  url: "url";
2326
2328
  datetime: "datetime";
2327
2329
  currency: "currency";
2328
- date: "date";
2329
2330
  text: "text";
2330
- int: "int";
2331
2331
  decimal: "decimal";
2332
2332
  percent: "percent";
2333
2333
  }>>;
@@ -2344,8 +2344,8 @@ declare const PipesFieldDefinitionSchema: z.ZodObject<{
2344
2344
  string: "string";
2345
2345
  number: "number";
2346
2346
  boolean: "boolean";
2347
- json: "json";
2348
2347
  unknown: "unknown";
2348
+ json: "json";
2349
2349
  }>;
2350
2350
  label: z.ZodString;
2351
2351
  added_by: z.ZodObject<{
@@ -2433,10 +2433,12 @@ declare const PipesFieldDefinitionSchema: z.ZodObject<{
2433
2433
  pipe_index: z.ZodNullable<z.ZodNumber>;
2434
2434
  }, z.core.$strip>;
2435
2435
  format: z.ZodNullable<z.ZodEnum<{
2436
+ profile_url: "profile_url";
2437
+ int: "int";
2438
+ date: "date";
2436
2439
  email: "email";
2437
2440
  address_line_1: "address_line_1";
2438
2441
  zip_code: "zip_code";
2439
- profile_url: "profile_url";
2440
2442
  phone: "phone";
2441
2443
  website_url: "website_url";
2442
2444
  markdown: "markdown";
@@ -2446,9 +2448,7 @@ declare const PipesFieldDefinitionSchema: z.ZodObject<{
2446
2448
  url: "url";
2447
2449
  datetime: "datetime";
2448
2450
  currency: "currency";
2449
- date: "date";
2450
2451
  text: "text";
2451
- int: "int";
2452
2452
  decimal: "decimal";
2453
2453
  percent: "percent";
2454
2454
  }>>;
@@ -2463,8 +2463,8 @@ declare const PipesFieldDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<
2463
2463
  string: "string";
2464
2464
  number: "number";
2465
2465
  boolean: "boolean";
2466
- json: "json";
2467
2466
  unknown: "unknown";
2467
+ json: "json";
2468
2468
  }>;
2469
2469
  label: z.ZodString;
2470
2470
  added_by: z.ZodObject<{
@@ -2552,10 +2552,12 @@ declare const PipesFieldDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<
2552
2552
  pipe_index: z.ZodNullable<z.ZodNumber>;
2553
2553
  }, z.core.$strip>;
2554
2554
  format: z.ZodNullable<z.ZodEnum<{
2555
+ profile_url: "profile_url";
2556
+ int: "int";
2557
+ date: "date";
2555
2558
  email: "email";
2556
2559
  address_line_1: "address_line_1";
2557
2560
  zip_code: "zip_code";
2558
- profile_url: "profile_url";
2559
2561
  phone: "phone";
2560
2562
  website_url: "website_url";
2561
2563
  markdown: "markdown";
@@ -2565,9 +2567,7 @@ declare const PipesFieldDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<
2565
2567
  url: "url";
2566
2568
  datetime: "datetime";
2567
2569
  currency: "currency";
2568
- date: "date";
2569
2570
  text: "text";
2570
- int: "int";
2571
2571
  decimal: "decimal";
2572
2572
  percent: "percent";
2573
2573
  }>>;
@@ -2581,10 +2581,12 @@ declare const JSONExtractSchema: z.ZodObject<{
2581
2581
  output_field: z.ZodObject<{
2582
2582
  name: z.ZodString;
2583
2583
  format: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
2584
+ profile_url: "profile_url";
2585
+ int: "int";
2586
+ date: "date";
2584
2587
  email: "email";
2585
2588
  address_line_1: "address_line_1";
2586
2589
  zip_code: "zip_code";
2587
- profile_url: "profile_url";
2588
2590
  phone: "phone";
2589
2591
  website_url: "website_url";
2590
2592
  markdown: "markdown";
@@ -2594,9 +2596,7 @@ declare const JSONExtractSchema: z.ZodObject<{
2594
2596
  url: "url";
2595
2597
  datetime: "datetime";
2596
2598
  currency: "currency";
2597
- date: "date";
2598
2599
  text: "text";
2599
- int: "int";
2600
2600
  decimal: "decimal";
2601
2601
  percent: "percent";
2602
2602
  }>>>;
@@ -2605,8 +2605,8 @@ declare const JSONExtractSchema: z.ZodObject<{
2605
2605
  string: "string";
2606
2606
  number: "number";
2607
2607
  boolean: "boolean";
2608
- json: "json";
2609
2608
  unknown: "unknown";
2609
+ json: "json";
2610
2610
  }>;
2611
2611
  }, z.core.$strip>;
2612
2612
  }, z.core.$strip>>;
@@ -2729,9 +2729,18 @@ type PipeRunIf = z.infer<typeof PipeRunIfSchema>;
2729
2729
  //#endregion
2730
2730
  //#region src/utils/schemas.d.ts
2731
2731
  declare const FieldNameSchema: z.ZodEnum<{
2732
+ name: "name";
2733
+ profile_url: "profile_url";
2734
+ skills: "skills";
2735
+ job_title: "job_title";
2736
+ company_name: "company_name";
2737
+ company_social_url: "company_social_url";
2738
+ job_description: "job_description";
2739
+ headcount: "headcount";
2740
+ company_industry: "company_industry";
2741
+ message: "message";
2732
2742
  company_description: "company_description";
2733
2743
  cleaned_company_name: "cleaned_company_name";
2734
- company_industry: "company_industry";
2735
2744
  company_region: "company_region";
2736
2745
  location_hint: "location_hint";
2737
2746
  estimated_revenue: "estimated_revenue";
@@ -2745,16 +2754,12 @@ declare const FieldNameSchema: z.ZodEnum<{
2745
2754
  alternate_personal_emails: "alternate_personal_emails";
2746
2755
  company_news_summary: "company_news_summary";
2747
2756
  work_email: "work_email";
2748
- headcount: "headcount";
2749
2757
  company_website_url: "company_website_url";
2750
2758
  company_domain: "company_domain";
2751
- company_name: "company_name";
2752
2759
  first_name: "first_name";
2753
2760
  addressee_name: "addressee_name";
2754
2761
  address_line_1: "address_line_1";
2755
2762
  address_line_2: "address_line_2";
2756
- job_title: "job_title";
2757
- job_description: "job_description";
2758
2763
  profile_headline: "profile_headline";
2759
2764
  address_city: "address_city";
2760
2765
  address_country: "address_country";
@@ -2764,13 +2769,10 @@ declare const FieldNameSchema: z.ZodEnum<{
2764
2769
  is_work_email: "is_work_email";
2765
2770
  companyenrich_match: "companyenrich_match";
2766
2771
  companyenrich_matches: "companyenrich_matches";
2767
- name: "name";
2768
2772
  ip_address: "ip_address";
2769
- skills: "skills";
2770
2773
  avatar_url: "avatar_url";
2771
2774
  estimated_salary: "estimated_salary";
2772
2775
  is_email_valid: "is_email_valid";
2773
- profile_url: "profile_url";
2774
2776
  company_profile_url: "company_profile_url";
2775
2777
  profile_posts: "profile_posts";
2776
2778
  clado_person_match: "clado_person_match";
@@ -2785,7 +2787,6 @@ declare const FieldNameSchema: z.ZodEnum<{
2785
2787
  mobile: "mobile";
2786
2788
  landline: "landline";
2787
2789
  phone: "phone";
2788
- message: "message";
2789
2790
  slack_message_success: "slack_message_success";
2790
2791
  funding_history: "funding_history";
2791
2792
  funding_total_usd: "funding_total_usd";
@@ -2834,7 +2835,6 @@ declare const FieldNameSchema: z.ZodEnum<{
2834
2835
  http_response_headers: "http_response_headers";
2835
2836
  professional_profile_url: "professional_profile_url";
2836
2837
  professional_profile: "professional_profile";
2837
- company_social_url: "company_social_url";
2838
2838
  mobile_number: "mobile_number";
2839
2839
  }>;
2840
2840
  type FieldName = z.infer<typeof FieldNameSchema>;
@@ -12306,14 +12306,14 @@ declare const StoreOptionSchema: z.ZodObject<{
12306
12306
  }, z.core.$strip>>;
12307
12307
  icon: z.ZodOptional<z.ZodObject<{
12308
12308
  key: z.ZodEnum<{
12309
+ language: "language";
12309
12310
  output: "output";
12310
- text: "text";
12311
12311
  input: "input";
12312
+ text: "text";
12312
12313
  code: "code";
12313
12314
  filter: "filter";
12314
12315
  search: "search";
12315
12316
  location: "location";
12316
- language: "language";
12317
12317
  workflow: "workflow";
12318
12318
  activity: "activity";
12319
12319
  linkedin: "linkedin";
@@ -12405,14 +12405,14 @@ declare const FormStoreSchema: z.ZodObject<{
12405
12405
  }, z.core.$strip>>;
12406
12406
  icon: z.ZodOptional<z.ZodObject<{
12407
12407
  key: z.ZodEnum<{
12408
+ language: "language";
12408
12409
  output: "output";
12409
- text: "text";
12410
12410
  input: "input";
12411
+ text: "text";
12411
12412
  code: "code";
12412
12413
  filter: "filter";
12413
12414
  search: "search";
12414
12415
  location: "location";
12415
- language: "language";
12416
12416
  workflow: "workflow";
12417
12417
  activity: "activity";
12418
12418
  linkedin: "linkedin";
@@ -14435,14 +14435,16 @@ declare const SearchResultFieldSchema: z$1.ZodObject<{
14435
14435
  string: "string";
14436
14436
  number: "number";
14437
14437
  boolean: "boolean";
14438
- json: "json";
14439
14438
  unknown: "unknown";
14439
+ json: "json";
14440
14440
  }>>;
14441
14441
  format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
14442
+ profile_url: "profile_url";
14443
+ int: "int";
14444
+ date: "date";
14442
14445
  email: "email";
14443
14446
  address_line_1: "address_line_1";
14444
14447
  zip_code: "zip_code";
14445
- profile_url: "profile_url";
14446
14448
  phone: "phone";
14447
14449
  website_url: "website_url";
14448
14450
  markdown: "markdown";
@@ -14452,9 +14454,7 @@ declare const SearchResultFieldSchema: z$1.ZodObject<{
14452
14454
  url: "url";
14453
14455
  datetime: "datetime";
14454
14456
  currency: "currency";
14455
- date: "date";
14456
14457
  text: "text";
14457
- int: "int";
14458
14458
  decimal: "decimal";
14459
14459
  percent: "percent";
14460
14460
  }>>>;
@@ -14680,14 +14680,16 @@ declare const SearchResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable<z
14680
14680
  string: "string";
14681
14681
  number: "number";
14682
14682
  boolean: "boolean";
14683
- json: "json";
14684
14683
  unknown: "unknown";
14684
+ json: "json";
14685
14685
  }>>;
14686
14686
  format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
14687
+ profile_url: "profile_url";
14688
+ int: "int";
14689
+ date: "date";
14687
14690
  email: "email";
14688
14691
  address_line_1: "address_line_1";
14689
14692
  zip_code: "zip_code";
14690
- profile_url: "profile_url";
14691
14693
  phone: "phone";
14692
14694
  website_url: "website_url";
14693
14695
  markdown: "markdown";
@@ -14697,9 +14699,7 @@ declare const SearchResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable<z
14697
14699
  url: "url";
14698
14700
  datetime: "datetime";
14699
14701
  currency: "currency";
14700
- date: "date";
14701
14702
  text: "text";
14702
- int: "int";
14703
14703
  decimal: "decimal";
14704
14704
  percent: "percent";
14705
14705
  }>>>;
@@ -15772,14 +15772,16 @@ declare const SearchResponseSchema: z$1.ZodObject<{
15772
15772
  string: "string";
15773
15773
  number: "number";
15774
15774
  boolean: "boolean";
15775
- json: "json";
15776
15775
  unknown: "unknown";
15776
+ json: "json";
15777
15777
  }>>;
15778
15778
  format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
15779
+ profile_url: "profile_url";
15780
+ int: "int";
15781
+ date: "date";
15779
15782
  email: "email";
15780
15783
  address_line_1: "address_line_1";
15781
15784
  zip_code: "zip_code";
15782
- profile_url: "profile_url";
15783
15785
  phone: "phone";
15784
15786
  website_url: "website_url";
15785
15787
  markdown: "markdown";
@@ -15789,9 +15791,7 @@ declare const SearchResponseSchema: z$1.ZodObject<{
15789
15791
  url: "url";
15790
15792
  datetime: "datetime";
15791
15793
  currency: "currency";
15792
- date: "date";
15793
15794
  text: "text";
15794
- int: "int";
15795
15795
  decimal: "decimal";
15796
15796
  percent: "percent";
15797
15797
  }>>>;
@@ -19108,14 +19108,16 @@ declare const SearchesResultFieldSchema: z$1.ZodObject<{
19108
19108
  string: "string";
19109
19109
  number: "number";
19110
19110
  boolean: "boolean";
19111
- json: "json";
19112
19111
  unknown: "unknown";
19112
+ json: "json";
19113
19113
  }>>;
19114
19114
  format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
19115
+ profile_url: "profile_url";
19116
+ int: "int";
19117
+ date: "date";
19115
19118
  email: "email";
19116
19119
  address_line_1: "address_line_1";
19117
19120
  zip_code: "zip_code";
19118
- profile_url: "profile_url";
19119
19121
  phone: "phone";
19120
19122
  website_url: "website_url";
19121
19123
  markdown: "markdown";
@@ -19125,9 +19127,7 @@ declare const SearchesResultFieldSchema: z$1.ZodObject<{
19125
19127
  url: "url";
19126
19128
  datetime: "datetime";
19127
19129
  currency: "currency";
19128
- date: "date";
19129
19130
  text: "text";
19130
- int: "int";
19131
19131
  decimal: "decimal";
19132
19132
  percent: "percent";
19133
19133
  }>>>;
@@ -19353,14 +19353,16 @@ declare const SearchesResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable
19353
19353
  string: "string";
19354
19354
  number: "number";
19355
19355
  boolean: "boolean";
19356
- json: "json";
19357
19356
  unknown: "unknown";
19357
+ json: "json";
19358
19358
  }>>;
19359
19359
  format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
19360
+ profile_url: "profile_url";
19361
+ int: "int";
19362
+ date: "date";
19360
19363
  email: "email";
19361
19364
  address_line_1: "address_line_1";
19362
19365
  zip_code: "zip_code";
19363
- profile_url: "profile_url";
19364
19366
  phone: "phone";
19365
19367
  website_url: "website_url";
19366
19368
  markdown: "markdown";
@@ -19370,9 +19372,7 @@ declare const SearchesResultSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodNullable
19370
19372
  url: "url";
19371
19373
  datetime: "datetime";
19372
19374
  currency: "currency";
19373
- date: "date";
19374
19375
  text: "text";
19375
- int: "int";
19376
19376
  decimal: "decimal";
19377
19377
  percent: "percent";
19378
19378
  }>>>;
@@ -19648,14 +19648,16 @@ declare const SearchesResponseSchema: z$1.ZodObject<{
19648
19648
  string: "string";
19649
19649
  number: "number";
19650
19650
  boolean: "boolean";
19651
- json: "json";
19652
19651
  unknown: "unknown";
19652
+ json: "json";
19653
19653
  }>>;
19654
19654
  format: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
19655
+ profile_url: "profile_url";
19656
+ int: "int";
19657
+ date: "date";
19655
19658
  email: "email";
19656
19659
  address_line_1: "address_line_1";
19657
19660
  zip_code: "zip_code";
19658
- profile_url: "profile_url";
19659
19661
  phone: "phone";
19660
19662
  website_url: "website_url";
19661
19663
  markdown: "markdown";
@@ -19665,9 +19667,7 @@ declare const SearchesResponseSchema: z$1.ZodObject<{
19665
19667
  url: "url";
19666
19668
  datetime: "datetime";
19667
19669
  currency: "currency";
19668
- date: "date";
19669
19670
  text: "text";
19670
- int: "int";
19671
19671
  decimal: "decimal";
19672
19672
  percent: "percent";
19673
19673
  }>>>;
@@ -21295,10 +21295,10 @@ declare abstract class Pipe<Payload extends {
21295
21295
  resolveFormat?: (_lazyContext: LazyResolveContext) => RecordFieldFormat;
21296
21296
  isPrimaryOutput?: boolean;
21297
21297
  }): {
21298
- name: "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";
21298
+ name: "name" | "profile_url" | "skills" | "job_title" | "company_name" | "company_social_url" | "job_description" | "headcount" | "company_industry" | "message" | "company_description" | "cleaned_company_name" | "company_region" | "location_hint" | "estimated_revenue" | "founded_year" | "technology_list" | "spending_trend" | "technology_match_builtwith" | "number_of_social_followers" | "email" | "personal_email" | "alternate_personal_emails" | "company_news_summary" | "work_email" | "company_website_url" | "company_domain" | "first_name" | "addressee_name" | "address_line_1" | "address_line_2" | "profile_headline" | "address_city" | "address_country" | "address_state" | "zip_code" | "last_name" | "is_work_email" | "companyenrich_match" | "companyenrich_matches" | "ip_address" | "avatar_url" | "estimated_salary" | "is_email_valid" | "company_profile_url" | "profile_posts" | "clado_person_match" | "clado_person_match_v2" | "icypeas_person_match" | "icypeas_company_match" | "clado_person_profile" | "resend_email_success" | "email_body" | "email_subject" | "profile" | "mobile" | "landline" | "phone" | "slack_message_success" | "funding_history" | "funding_total_usd" | "template_output" | "gmail_email_success" | "zerobounce_validation_status" | "zerobounce_validation_match" | "leadmagic_competitor_list" | "leadmagic_acquisition_history" | "leadmagic_company_news_list" | "merge_result" | "mapped_links" | "website_markdown" | "website_html" | "website_url" | "urls" | "website_links" | "firecrawl_extract_result" | "exa_match_evaluation" | "email_validation_status" | "million_validation_match" | "scrape_list_response" | "resend_contact_id" | "sheet_record_id" | "sheet_record_ids" | "input_objects" | "role_finder_match" | "logodev_describe_match" | "logo_url" | "crustdata_company_match" | "crustdata_companyenrich_match" | "crustdata_person_match" | "post_list_string" | "crustdata_post_list" | "crustdata_profile_match_score" | "amplemarket_person_match" | "amplemarket_company_match" | "created_sheet" | "sheet" | "string_input" | "domain" | "url_input" | "slugified" | "http_response_status" | "http_response_body" | "http_response_headers" | "professional_profile_url" | "professional_profile" | "mobile_number";
21299
21299
  enabled: boolean;
21300
- type: "string" | "number" | "boolean" | "json" | "unknown" | ((_lazyContext: LazyResolveContext) => RecordFieldType);
21301
- format: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "currency" | "text" | "int" | "decimal" | "percent" | ((_lazyContext: LazyResolveContext) => RecordFieldFormat) | null;
21300
+ type: "string" | "number" | "boolean" | "unknown" | "json" | ((_lazyContext: LazyResolveContext) => RecordFieldType);
21301
+ format: "profile_url" | "int" | "email" | "address_line_1" | "zip_code" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "currency" | "text" | "decimal" | "percent" | ((_lazyContext: LazyResolveContext) => RecordFieldFormat) | null;
21302
21302
  resolvedName: any;
21303
21303
  description: "A summary of the main business purpose and objectives." | "The standardized and cleaned version of the company name, ensuring consistency across different entries." | "Markdown-formatted scrape of a website." | "A list of website links." | "HTML-formatted scrape of a website." | "Generic URL of a website." | "List of URLs" | "List of URLs scraped from a website" | "Fully enriched people profile" | "The industry in which the company operates." | "The region corresponding to the company's country." | "An optional hint to help pinpoint a person's or company's location." | "A list of the top competitors for a given company as provided by LeadMagic" | "A list of acquisitions by a given company" | "A list of company news" | "The estimated annual revenue of the company." | "List of corporate funding rounds." | "Amount of total known funding" | "The year the company was founded." | "A flat list of technologies used by a company" | "Technology spending trend over the last 2 years. Average deviation between measuring points in %." | "A datastructure containing the technologies used by this company" | "Social followers (or zero if not found)." | "Mobile telephone number of a person." | "A generic field for phone numbers. Can be mobile or landline." | "A landline phone number" | "Current job title of a person" | "Description of current job" | "A union field that can contain both professional and personal email addresses." | "The personal email address of a prospect." | "The personal email addresses that are associated with a prospect but less likely to be the primary email address of a prospect." | "Latest company news." | "Email address of a person connection to their place of employment." | "Total number of people employed in a particular organization" | "Website URL of a related company." | "Bare domain of a related company. Example: stripe.com (no scheme, no path)." | "Name of a company." | "Object returned from a Clado people search." | "Object returned from a Icypeas people search" | "First name of a person." | "Recipient name in the format required by postal services." | "URL for profile picture" | "First line of an address (e.g. street address)" | "The formatted address of a company’s headquarters." | "Name of a city as needed for an address." | "Name of a country as needed for an address." | "Name of a state." | "A postal zip code. Usually a combination of numbers and letters." | "Last name of a person." | "Estimated total salary in USD." | "List of professional skills" | "Check if a given email is a work email." | "The full name of a person. Usually a combination of first and last name." | "IP Address of a person" | "Check if an email address is valid and can receive emails." | "A standardized format for returning LinkedIn profile data." | "A person's LinkedIn profile URL." | "List of recent LinkedIn posts in JSON format." | "Professional profile headline" | "Company LinkedIn URL." | "Result of email sending action using Resend" | "Id of a single resend contact" | "Name of a pipe0 sheet" | "Input field of type string" | "A domain field." | "Input field of type string and URL format" | "A value that has been stripped of characters not found in slugs." | "HTTP status code returned by the upstream endpoint." | "Parsed JSON body returned by the upstream endpoint." | "Response headers returned by the upstream endpoint as a flat key-value map." | "ID of sheet record" | "IDs sheet records" | "Result of email sending action using Gmail" | "Result of sending a message using Slack" | "The test of an email formatted as markdown" | "A markdown message that be send to any chat app." | "Subject line for email" | "Template value where the tags are replaces with real values" | "Email validation status. Allowed values are: 'valid', 'invalid', 'catch_all', 'unkown'" | "Validation status as returned from ZeroBounce single validation" | "Full validation object as returned by ZeroBounce" | "List of unstructured input objects" | "Reference to a created sheet" | "Result of a firecrawl extract operation" | "Exa search result." | "CompanyEnrich response object" | "Crustdata company match object" | "A number between 1 and 0 indicating the confidence that the profile belongs to the input email address." | "Crustdata company enrichment match." | "LinkedIn post list" | "Rich JSON post list" | "Result of a role finder operation" | "Person match object as returned by Amplemarket" | "Company match object as returned by Amplemarket" | "CompanyEnrich response list." | "Company or organization logo" | "Get company logos & brand data" | "Social Media URL for a given company (e.g. LinkedIn profile URL).";
21304
21304
  jsonMeta: {
@@ -26730,10 +26730,12 @@ declare const pipePayloadSchemaCatalog: {
26730
26730
  output_field: z.ZodObject<{
26731
26731
  name: z.ZodString;
26732
26732
  format: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
26733
+ profile_url: "profile_url";
26734
+ int: "int";
26735
+ date: "date";
26733
26736
  email: "email";
26734
26737
  address_line_1: "address_line_1";
26735
26738
  zip_code: "zip_code";
26736
- profile_url: "profile_url";
26737
26739
  phone: "phone";
26738
26740
  website_url: "website_url";
26739
26741
  markdown: "markdown";
@@ -26743,9 +26745,7 @@ declare const pipePayloadSchemaCatalog: {
26743
26745
  url: "url";
26744
26746
  datetime: "datetime";
26745
26747
  currency: "currency";
26746
- date: "date";
26747
26748
  text: "text";
26748
- int: "int";
26749
26749
  decimal: "decimal";
26750
26750
  percent: "percent";
26751
26751
  }>>>;
@@ -26754,8 +26754,8 @@ declare const pipePayloadSchemaCatalog: {
26754
26754
  string: "string";
26755
26755
  number: "number";
26756
26756
  boolean: "boolean";
26757
- json: "json";
26758
26757
  unknown: "unknown";
26758
+ json: "json";
26759
26759
  }>;
26760
26760
  }, z.core.$strip>;
26761
26761
  }, z.core.$strip>>;
@@ -32185,10 +32185,12 @@ declare function getPipePayloadSchema(pipeId: PipeId): z.ZodObject<{
32185
32185
  output_field: z.ZodObject<{
32186
32186
  name: z.ZodString;
32187
32187
  format: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
32188
+ profile_url: "profile_url";
32189
+ int: "int";
32190
+ date: "date";
32188
32191
  email: "email";
32189
32192
  address_line_1: "address_line_1";
32190
32193
  zip_code: "zip_code";
32191
- profile_url: "profile_url";
32192
32194
  phone: "phone";
32193
32195
  website_url: "website_url";
32194
32196
  markdown: "markdown";
@@ -32198,9 +32200,7 @@ declare function getPipePayloadSchema(pipeId: PipeId): z.ZodObject<{
32198
32200
  url: "url";
32199
32201
  datetime: "datetime";
32200
32202
  currency: "currency";
32201
- date: "date";
32202
32203
  text: "text";
32203
- int: "int";
32204
32204
  decimal: "decimal";
32205
32205
  percent: "percent";
32206
32206
  }>>>;
@@ -32209,8 +32209,8 @@ declare function getPipePayloadSchema(pipeId: PipeId): z.ZodObject<{
32209
32209
  string: "string";
32210
32210
  number: "number";
32211
32211
  boolean: "boolean";
32212
- json: "json";
32213
32212
  unknown: "unknown";
32213
+ json: "json";
32214
32214
  }>;
32215
32215
  }, z.core.$strip>;
32216
32216
  }, z.core.$strip>>;
@@ -35944,8 +35944,8 @@ declare const PipesResponseSchema: z.ZodObject<{
35944
35944
  string: "string";
35945
35945
  number: "number";
35946
35946
  boolean: "boolean";
35947
- json: "json";
35948
35947
  unknown: "unknown";
35948
+ json: "json";
35949
35949
  }>;
35950
35950
  label: z.ZodString;
35951
35951
  added_by: z.ZodObject<{
@@ -36033,10 +36033,12 @@ declare const PipesResponseSchema: z.ZodObject<{
36033
36033
  pipe_index: z.ZodNullable<z.ZodNumber>;
36034
36034
  }, z.core.$strip>;
36035
36035
  format: z.ZodNullable<z.ZodEnum<{
36036
+ profile_url: "profile_url";
36037
+ int: "int";
36038
+ date: "date";
36036
36039
  email: "email";
36037
36040
  address_line_1: "address_line_1";
36038
36041
  zip_code: "zip_code";
36039
- profile_url: "profile_url";
36040
36042
  phone: "phone";
36041
36043
  website_url: "website_url";
36042
36044
  markdown: "markdown";
@@ -36046,9 +36048,7 @@ declare const PipesResponseSchema: z.ZodObject<{
36046
36048
  url: "url";
36047
36049
  datetime: "datetime";
36048
36050
  currency: "currency";
36049
- date: "date";
36050
36051
  text: "text";
36051
- int: "int";
36052
36052
  decimal: "decimal";
36053
36053
  percent: "percent";
36054
36054
  }>>;
@@ -36068,8 +36068,8 @@ declare const PipesResponseSchema: z.ZodObject<{
36068
36068
  string: "string";
36069
36069
  number: "number";
36070
36070
  boolean: "boolean";
36071
- json: "json";
36072
36071
  unknown: "unknown";
36072
+ json: "json";
36073
36073
  }>;
36074
36074
  reason: z.ZodNullable<z.ZodObject<{
36075
36075
  code: z.ZodString;
@@ -36374,10 +36374,12 @@ declare const PipesResponseSchema: z.ZodObject<{
36374
36374
  }, z.core.$strip>>>;
36375
36375
  }, z.core.$strip>>;
36376
36376
  format: z.ZodNullable<z.ZodEnum<{
36377
+ profile_url: "profile_url";
36378
+ int: "int";
36379
+ date: "date";
36377
36380
  email: "email";
36378
36381
  address_line_1: "address_line_1";
36379
36382
  zip_code: "zip_code";
36380
- profile_url: "profile_url";
36381
36383
  phone: "phone";
36382
36384
  website_url: "website_url";
36383
36385
  markdown: "markdown";
@@ -36387,9 +36389,7 @@ declare const PipesResponseSchema: z.ZodObject<{
36387
36389
  url: "url";
36388
36390
  datetime: "datetime";
36389
36391
  currency: "currency";
36390
- date: "date";
36391
36392
  text: "text";
36392
- int: "int";
36393
36393
  decimal: "decimal";
36394
36394
  percent: "percent";
36395
36395
  }>>;
@@ -36453,15 +36453,17 @@ declare const PipesRequestSchema: z.ZodObject<{
36453
36453
  string: "string";
36454
36454
  number: "number";
36455
36455
  boolean: "boolean";
36456
- json: "json";
36457
36456
  unknown: "unknown";
36457
+ json: "json";
36458
36458
  }>;
36459
36459
  label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
36460
36460
  format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
36461
+ profile_url: "profile_url";
36462
+ int: "int";
36463
+ date: "date";
36461
36464
  email: "email";
36462
36465
  address_line_1: "address_line_1";
36463
36466
  zip_code: "zip_code";
36464
- profile_url: "profile_url";
36465
36467
  phone: "phone";
36466
36468
  website_url: "website_url";
36467
36469
  markdown: "markdown";
@@ -36471,9 +36473,7 @@ declare const PipesRequestSchema: z.ZodObject<{
36471
36473
  url: "url";
36472
36474
  datetime: "datetime";
36473
36475
  currency: "currency";
36474
- date: "date";
36475
36476
  text: "text";
36476
- int: "int";
36477
36477
  decimal: "decimal";
36478
36478
  percent: "percent";
36479
36479
  }>>>;
@@ -38165,10 +38165,12 @@ declare const PipesRequestSchema: z.ZodObject<{
38165
38165
  output_field: z.ZodObject<{
38166
38166
  name: z.ZodString;
38167
38167
  format: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
38168
+ profile_url: "profile_url";
38169
+ int: "int";
38170
+ date: "date";
38168
38171
  email: "email";
38169
38172
  address_line_1: "address_line_1";
38170
38173
  zip_code: "zip_code";
38171
- profile_url: "profile_url";
38172
38174
  phone: "phone";
38173
38175
  website_url: "website_url";
38174
38176
  markdown: "markdown";
@@ -38178,9 +38180,7 @@ declare const PipesRequestSchema: z.ZodObject<{
38178
38180
  url: "url";
38179
38181
  datetime: "datetime";
38180
38182
  currency: "currency";
38181
- date: "date";
38182
38183
  text: "text";
38183
- int: "int";
38184
38184
  decimal: "decimal";
38185
38185
  percent: "percent";
38186
38186
  }>>>;
@@ -38189,8 +38189,8 @@ declare const PipesRequestSchema: z.ZodObject<{
38189
38189
  string: "string";
38190
38190
  number: "number";
38191
38191
  boolean: "boolean";
38192
- json: "json";
38193
38192
  unknown: "unknown";
38193
+ json: "json";
38194
38194
  }>;
38195
38195
  }, z.core.$strip>;
38196
38196
  }, z.core.$strip>>;
@@ -41886,14 +41886,16 @@ declare const PipesRequestSchema: z.ZodObject<{
41886
41886
  string: "string";
41887
41887
  number: "number";
41888
41888
  boolean: "boolean";
41889
- json: "json";
41890
41889
  unknown: "unknown";
41890
+ json: "json";
41891
41891
  }>>;
41892
41892
  format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
41893
+ profile_url: "profile_url";
41894
+ int: "int";
41895
+ date: "date";
41893
41896
  email: "email";
41894
41897
  address_line_1: "address_line_1";
41895
41898
  zip_code: "zip_code";
41896
- profile_url: "profile_url";
41897
41899
  phone: "phone";
41898
41900
  website_url: "website_url";
41899
41901
  markdown: "markdown";
@@ -41903,9 +41905,7 @@ declare const PipesRequestSchema: z.ZodObject<{
41903
41905
  url: "url";
41904
41906
  datetime: "datetime";
41905
41907
  currency: "currency";
41906
- date: "date";
41907
41908
  text: "text";
41908
- int: "int";
41909
41909
  decimal: "decimal";
41910
41910
  percent: "percent";
41911
41911
  }>>>;
@@ -42785,10 +42785,12 @@ declare const pipesJsonExtractionInput: () => z.ZodObject<{
42785
42785
  output_field: z.ZodObject<{
42786
42786
  name: z.ZodString;
42787
42787
  format: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
42788
+ profile_url: "profile_url";
42789
+ int: "int";
42790
+ date: "date";
42788
42791
  email: "email";
42789
42792
  address_line_1: "address_line_1";
42790
42793
  zip_code: "zip_code";
42791
- profile_url: "profile_url";
42792
42794
  phone: "phone";
42793
42795
  website_url: "website_url";
42794
42796
  markdown: "markdown";
@@ -42798,9 +42800,7 @@ declare const pipesJsonExtractionInput: () => z.ZodObject<{
42798
42800
  url: "url";
42799
42801
  datetime: "datetime";
42800
42802
  currency: "currency";
42801
- date: "date";
42802
42803
  text: "text";
42803
- int: "int";
42804
42804
  decimal: "decimal";
42805
42805
  percent: "percent";
42806
42806
  }>>>;
@@ -42809,8 +42809,8 @@ declare const pipesJsonExtractionInput: () => z.ZodObject<{
42809
42809
  string: "string";
42810
42810
  number: "number";
42811
42811
  boolean: "boolean";
42812
- json: "json";
42813
42812
  unknown: "unknown";
42813
+ json: "json";
42814
42814
  }>;
42815
42815
  }, z.core.$strip>;
42816
42816
  }, z.core.$strip>>;
@@ -44799,8 +44799,8 @@ declare function markRecordFieldAsComplete({
44799
44799
  widgets?: Widgets;
44800
44800
  }): {
44801
44801
  value: string | number | boolean | Record<string, unknown> | unknown[] | null;
44802
- status: "completed" | "failed" | "no_result" | "skipped" | "pending" | "queued" | "processing";
44803
- type: "string" | "number" | "boolean" | "json" | "unknown";
44802
+ status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
44803
+ type: "string" | "number" | "boolean" | "unknown" | "json";
44804
44804
  reason: {
44805
44805
  code: string;
44806
44806
  summary: string;
@@ -44816,7 +44816,7 @@ declare function markRecordFieldAsComplete({
44816
44816
  config_hash: string | null;
44817
44817
  input_hash: string | null;
44818
44818
  } | null;
44819
- format: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "date" | "text" | "int" | "decimal" | "percent" | null;
44819
+ format: "profile_url" | "int" | "date" | "email" | "address_line_1" | "zip_code" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null;
44820
44820
  widgets?: {
44821
44821
  display_value?: {
44822
44822
  label?: string | undefined;
@@ -44863,8 +44863,8 @@ declare function markRecordFieldAsPending({
44863
44863
  recordField: RecordField;
44864
44864
  }): {
44865
44865
  value: string | number | boolean | Record<string, unknown> | unknown[] | null;
44866
- status: "completed" | "failed" | "no_result" | "skipped" | "pending" | "queued" | "processing";
44867
- type: "string" | "number" | "boolean" | "json" | "unknown";
44866
+ status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
44867
+ type: "string" | "number" | "boolean" | "unknown" | "json";
44868
44868
  reason: {
44869
44869
  code: string;
44870
44870
  summary: string;
@@ -44880,7 +44880,7 @@ declare function markRecordFieldAsPending({
44880
44880
  config_hash: string | null;
44881
44881
  input_hash: string | null;
44882
44882
  } | null;
44883
- format: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "date" | "text" | "int" | "decimal" | "percent" | null;
44883
+ format: "profile_url" | "int" | "date" | "email" | "address_line_1" | "zip_code" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null;
44884
44884
  widgets?: {
44885
44885
  display_value?: {
44886
44886
  label?: string | undefined;
@@ -44933,8 +44933,8 @@ declare function markRecordFieldAsNoResult({
44933
44933
  widgets?: Widgets;
44934
44934
  }): {
44935
44935
  value: string | number | boolean | Record<string, unknown> | unknown[] | null;
44936
- status: "completed" | "failed" | "no_result" | "skipped" | "pending" | "queued" | "processing";
44937
- type: "string" | "number" | "boolean" | "json" | "unknown";
44936
+ status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
44937
+ type: "string" | "number" | "boolean" | "unknown" | "json";
44938
44938
  reason: {
44939
44939
  code: string;
44940
44940
  summary: string;
@@ -44950,7 +44950,7 @@ declare function markRecordFieldAsNoResult({
44950
44950
  config_hash: string | null;
44951
44951
  input_hash: string | null;
44952
44952
  } | null;
44953
- format: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "date" | "text" | "int" | "decimal" | "percent" | null;
44953
+ format: "profile_url" | "int" | "date" | "email" | "address_line_1" | "zip_code" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null;
44954
44954
  widgets?: {
44955
44955
  display_value?: {
44956
44956
  label?: string | undefined;
@@ -44993,8 +44993,8 @@ declare function markRecordFieldAsNoResult({
44993
44993
  };
44994
44994
  declare function markRecordFieldAsFailed(field: RecordField, reason: FieldReason, resolvedBy: RecordField["resolved_by"]): {
44995
44995
  value: string | number | boolean | Record<string, unknown> | unknown[] | null;
44996
- status: "completed" | "failed" | "no_result" | "skipped" | "pending" | "queued" | "processing";
44997
- type: "string" | "number" | "boolean" | "json" | "unknown";
44996
+ status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
44997
+ type: "string" | "number" | "boolean" | "unknown" | "json";
44998
44998
  reason: {
44999
44999
  code: string;
45000
45000
  summary: string;
@@ -45010,7 +45010,7 @@ declare function markRecordFieldAsFailed(field: RecordField, reason: FieldReason
45010
45010
  config_hash: string | null;
45011
45011
  input_hash: string | null;
45012
45012
  } | null;
45013
- format: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "date" | "text" | "int" | "decimal" | "percent" | null;
45013
+ format: "profile_url" | "int" | "date" | "email" | "address_line_1" | "zip_code" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null;
45014
45014
  widgets?: {
45015
45015
  display_value?: {
45016
45016
  label?: string | undefined;
@@ -45053,8 +45053,8 @@ declare function markRecordFieldAsFailed(field: RecordField, reason: FieldReason
45053
45053
  };
45054
45054
  declare function markRecordFieldAsSkipped(field: RecordField, reason: FieldReason): {
45055
45055
  value: string | number | boolean | Record<string, unknown> | unknown[] | null;
45056
- status: "completed" | "failed" | "no_result" | "skipped" | "pending" | "queued" | "processing";
45057
- type: "string" | "number" | "boolean" | "json" | "unknown";
45056
+ status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
45057
+ type: "string" | "number" | "boolean" | "unknown" | "json";
45058
45058
  reason: {
45059
45059
  code: string;
45060
45060
  summary: string;
@@ -45070,7 +45070,7 @@ declare function markRecordFieldAsSkipped(field: RecordField, reason: FieldReaso
45070
45070
  config_hash: string | null;
45071
45071
  input_hash: string | null;
45072
45072
  } | null;
45073
- format: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "date" | "text" | "int" | "decimal" | "percent" | null;
45073
+ format: "profile_url" | "int" | "date" | "email" | "address_line_1" | "zip_code" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null;
45074
45074
  widgets?: {
45075
45075
  display_value?: {
45076
45076
  label?: string | undefined;
@@ -45113,8 +45113,8 @@ declare function markRecordFieldAsSkipped(field: RecordField, reason: FieldReaso
45113
45113
  };
45114
45114
  declare function markRecordFieldAsProcessing(field: RecordField): {
45115
45115
  value: string | number | boolean | Record<string, unknown> | unknown[] | null;
45116
- status: "completed" | "failed" | "no_result" | "skipped" | "pending" | "queued" | "processing";
45117
- type: "string" | "number" | "boolean" | "json" | "unknown";
45116
+ status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
45117
+ type: "string" | "number" | "boolean" | "unknown" | "json";
45118
45118
  reason: {
45119
45119
  code: string;
45120
45120
  summary: string;
@@ -45130,7 +45130,7 @@ declare function markRecordFieldAsProcessing(field: RecordField): {
45130
45130
  config_hash: string | null;
45131
45131
  input_hash: string | null;
45132
45132
  } | null;
45133
- format: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "date" | "text" | "int" | "decimal" | "percent" | null;
45133
+ format: "profile_url" | "int" | "date" | "email" | "address_line_1" | "zip_code" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null;
45134
45134
  widgets?: {
45135
45135
  display_value?: {
45136
45136
  label?: string | undefined;
@@ -45178,12 +45178,12 @@ declare function catalogInput(field: NamedFieldEntry, config: {
45178
45178
  alias?: string | undefined;
45179
45179
  }> | undefined;
45180
45180
  } | null | undefined): {
45181
- name: "company_description" | "cleaned_company_name" | "company_industry" | "company_region" | "location_hint" | "estimated_revenue" | "founded_year" | "technology_list" | "spending_trend" | "technology_match_builtwith" | "number_of_social_followers" | "email" | "personal_email" | "alternate_personal_emails" | "company_news_summary" | "work_email" | "headcount" | "company_website_url" | "company_domain" | "company_name" | "first_name" | "addressee_name" | "address_line_1" | "address_line_2" | "job_title" | "job_description" | "profile_headline" | "address_city" | "address_country" | "address_state" | "zip_code" | "last_name" | "is_work_email" | "companyenrich_match" | "companyenrich_matches" | "name" | "ip_address" | "skills" | "avatar_url" | "estimated_salary" | "is_email_valid" | "profile_url" | "company_profile_url" | "profile_posts" | "clado_person_match" | "clado_person_match_v2" | "icypeas_person_match" | "icypeas_company_match" | "clado_person_profile" | "resend_email_success" | "email_body" | "email_subject" | "profile" | "mobile" | "landline" | "phone" | "message" | "slack_message_success" | "funding_history" | "funding_total_usd" | "template_output" | "gmail_email_success" | "zerobounce_validation_status" | "zerobounce_validation_match" | "leadmagic_competitor_list" | "leadmagic_acquisition_history" | "leadmagic_company_news_list" | "merge_result" | "mapped_links" | "website_markdown" | "website_html" | "website_url" | "urls" | "website_links" | "firecrawl_extract_result" | "exa_match_evaluation" | "email_validation_status" | "million_validation_match" | "scrape_list_response" | "resend_contact_id" | "sheet_record_id" | "sheet_record_ids" | "input_objects" | "role_finder_match" | "logodev_describe_match" | "logo_url" | "crustdata_company_match" | "crustdata_companyenrich_match" | "crustdata_person_match" | "post_list_string" | "crustdata_post_list" | "crustdata_profile_match_score" | "amplemarket_person_match" | "amplemarket_company_match" | "created_sheet" | "sheet" | "string_input" | "domain" | "url_input" | "slugified" | "http_response_status" | "http_response_body" | "http_response_headers" | "professional_profile_url" | "professional_profile" | "company_social_url" | "mobile_number";
45181
+ name: "name" | "profile_url" | "skills" | "job_title" | "company_name" | "company_social_url" | "job_description" | "headcount" | "company_industry" | "message" | "company_description" | "cleaned_company_name" | "company_region" | "location_hint" | "estimated_revenue" | "founded_year" | "technology_list" | "spending_trend" | "technology_match_builtwith" | "number_of_social_followers" | "email" | "personal_email" | "alternate_personal_emails" | "company_news_summary" | "work_email" | "company_website_url" | "company_domain" | "first_name" | "addressee_name" | "address_line_1" | "address_line_2" | "profile_headline" | "address_city" | "address_country" | "address_state" | "zip_code" | "last_name" | "is_work_email" | "companyenrich_match" | "companyenrich_matches" | "ip_address" | "avatar_url" | "estimated_salary" | "is_email_valid" | "company_profile_url" | "profile_posts" | "clado_person_match" | "clado_person_match_v2" | "icypeas_person_match" | "icypeas_company_match" | "clado_person_profile" | "resend_email_success" | "email_body" | "email_subject" | "profile" | "mobile" | "landline" | "phone" | "slack_message_success" | "funding_history" | "funding_total_usd" | "template_output" | "gmail_email_success" | "zerobounce_validation_status" | "zerobounce_validation_match" | "leadmagic_competitor_list" | "leadmagic_acquisition_history" | "leadmagic_company_news_list" | "merge_result" | "mapped_links" | "website_markdown" | "website_html" | "website_url" | "urls" | "website_links" | "firecrawl_extract_result" | "exa_match_evaluation" | "email_validation_status" | "million_validation_match" | "scrape_list_response" | "resend_contact_id" | "sheet_record_id" | "sheet_record_ids" | "input_objects" | "role_finder_match" | "logodev_describe_match" | "logo_url" | "crustdata_company_match" | "crustdata_companyenrich_match" | "crustdata_person_match" | "post_list_string" | "crustdata_post_list" | "crustdata_profile_match_score" | "amplemarket_person_match" | "amplemarket_company_match" | "created_sheet" | "sheet" | "string_input" | "domain" | "url_input" | "slugified" | "http_response_status" | "http_response_body" | "http_response_headers" | "professional_profile_url" | "professional_profile" | "mobile_number";
45182
45182
  description: "A summary of the main business purpose and objectives." | "The standardized and cleaned version of the company name, ensuring consistency across different entries." | "Markdown-formatted scrape of a website." | "A list of website links." | "HTML-formatted scrape of a website." | "Generic URL of a website." | "List of URLs" | "List of URLs scraped from a website" | "Fully enriched people profile" | "The industry in which the company operates." | "The region corresponding to the company's country." | "An optional hint to help pinpoint a person's or company's location." | "A list of the top competitors for a given company as provided by LeadMagic" | "A list of acquisitions by a given company" | "A list of company news" | "The estimated annual revenue of the company." | "List of corporate funding rounds." | "Amount of total known funding" | "The year the company was founded." | "A flat list of technologies used by a company" | "Technology spending trend over the last 2 years. Average deviation between measuring points in %." | "A datastructure containing the technologies used by this company" | "Social followers (or zero if not found)." | "Mobile telephone number of a person." | "A generic field for phone numbers. Can be mobile or landline." | "A landline phone number" | "Current job title of a person" | "Description of current job" | "A union field that can contain both professional and personal email addresses." | "The personal email address of a prospect." | "The personal email addresses that are associated with a prospect but less likely to be the primary email address of a prospect." | "Latest company news." | "Email address of a person connection to their place of employment." | "Total number of people employed in a particular organization" | "Website URL of a related company." | "Bare domain of a related company. Example: stripe.com (no scheme, no path)." | "Name of a company." | "Object returned from a Clado people search." | "Object returned from a Icypeas people search" | "First name of a person." | "Recipient name in the format required by postal services." | "URL for profile picture" | "First line of an address (e.g. street address)" | "The formatted address of a company’s headquarters." | "Name of a city as needed for an address." | "Name of a country as needed for an address." | "Name of a state." | "A postal zip code. Usually a combination of numbers and letters." | "Last name of a person." | "Estimated total salary in USD." | "List of professional skills" | "Check if a given email is a work email." | "The full name of a person. Usually a combination of first and last name." | "IP Address of a person" | "Check if an email address is valid and can receive emails." | "A standardized format for returning LinkedIn profile data." | "A person's LinkedIn profile URL." | "List of recent LinkedIn posts in JSON format." | "Professional profile headline" | "Company LinkedIn URL." | "Result of email sending action using Resend" | "Id of a single resend contact" | "Name of a pipe0 sheet" | "Input field of type string" | "A domain field." | "Input field of type string and URL format" | "A value that has been stripped of characters not found in slugs." | "HTTP status code returned by the upstream endpoint." | "Parsed JSON body returned by the upstream endpoint." | "Response headers returned by the upstream endpoint as a flat key-value map." | "ID of sheet record" | "IDs sheet records" | "Result of email sending action using Gmail" | "Result of sending a message using Slack" | "The test of an email formatted as markdown" | "A markdown message that be send to any chat app." | "Subject line for email" | "Template value where the tags are replaces with real values" | "Email validation status. Allowed values are: 'valid', 'invalid', 'catch_all', 'unkown'" | "Validation status as returned from ZeroBounce single validation" | "Full validation object as returned by ZeroBounce" | "List of unstructured input objects" | "Reference to a created sheet" | "Result of a firecrawl extract operation" | "Exa search result." | "CompanyEnrich response object" | "Crustdata company match object" | "A number between 1 and 0 indicating the confidence that the profile belongs to the input email address." | "Crustdata company enrichment match." | "LinkedIn post list" | "Rich JSON post list" | "Result of a role finder operation" | "Person match object as returned by Amplemarket" | "Company match object as returned by Amplemarket" | "CompanyEnrich response list." | "Company or organization logo" | "Get company logos & brand data" | "Social Media URL for a given company (e.g. LinkedIn profile URL).";
45183
45183
  resolvedName: string;
45184
- type: "string" | "number" | "boolean" | "json" | "unknown";
45184
+ type: "string" | "number" | "boolean" | "unknown" | "json";
45185
45185
  label: "Company description" | "Cleaned company name" | "Scrape result - Markdown" | "Website internal links" | "Scrape result - HTML" | "Website URL" | "URLs" | "Clado person profile" | "Full name" | "Profile headline" | "LinkedIn profile URL" | "Job title" | "Company industry" | "Company region" | "Location hint" | "Competitor list" | "Acquisition history" | "Company news list" | "Estimated Annual Revenue" | "Funding history" | "Total funding (USD)" | "Founding year" | "Technology list" | "Spending Trend" | "Builtwith technology response" | "Follower count" | "Mobile" | "Phone" | "Landline" | "Job description" | "Email address" | "Personal email" | "Alternate personal email" | "Latest news" | "Work email" | "Headcount" | "Company website URL" | "Company domain" | "Company name" | "Clado person match" | "Icypeas person match" | "Icypeas company match" | "First name" | "Addressee name" | "Avatar URL" | "Address line 1" | "Address line 2" | "Address city" | "Address country" | "State" | "Zip code" | "Last name" | "Estimated salary" | "Skills" | "Is work email result" | "IP address" | "Email validation" | "Professional profile" | "Recrent linkedIn posts" | "Company LinkedIn profile URL" | "Resend mail success" | "Resend contact id" | "Sheet name" | "String input" | "Domain" | "URL input" | "Slugified value" | "HTTP response status" | "HTTP response body" | "HTTP response headers" | "Record ID" | "Record IDs" | "Gmail e-mail success" | "Slack message success" | "A markdown email" | "Message" | "Subject Line" | "Template Output" | "Validation status" | "Million Verifier match" | "ZeroBounce Validation Status" | "ZeroBounce Validation Match" | "Input objects" | "Created sheet" | "Merge Result" | "Extract Result" | "Exa Match Evaluation" | "Company match" | "Person match" | "Match score" | "Company enrichment match" | "Post list" | "Crustdata Post list" | "Role finder match" | "CompanyEnrich matches" | "Logo URL" | "Company Social URL" | "Professional profile (LinkedIn)" | "LinkedIn Profile URL";
45186
- format: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "currency" | "text" | "int" | "decimal" | "percent" | null;
45186
+ format: "profile_url" | "int" | "email" | "address_line_1" | "zip_code" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "currency" | "text" | "decimal" | "percent" | null;
45187
45187
  };
45188
45188
  //#endregion
45189
45189
  //#region src/pipes/pipes-validator/get-output-field-info-from-dev.d.ts
@@ -45565,7 +45565,7 @@ declare function stringify(v: unknown): unknown;
45565
45565
  declare function rateLimitRatioFallingProgression(index: number): number;
45566
45566
  declare function sortObjectKeys(obj: any): any;
45567
45567
  declare const TYPES_TO_FORMATS: {
45568
- string: ("email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "url" | "datetime" | "date" | "text")[];
45568
+ string: ("profile_url" | "date" | "email" | "address_line_1" | "zip_code" | "phone" | "website_url" | "markdown" | "url" | "datetime" | "text")[];
45569
45569
  json: ("json_object" | "json_list")[];
45570
45570
  number: ("int" | "decimal")[];
45571
45571
  boolean: never[];
@@ -45605,14 +45605,14 @@ declare function fieldsToObject(fields: PipesRecord["fields"], cfg?: Partial<Fie
45605
45605
  declare function inputFromRecords(records: PipesInMemoryResponse["records"], config?: Partial<FieldsToObjectsConfig>): {
45606
45606
  [k: string]: string | number | boolean | Record<string, unknown> | unknown[] | {
45607
45607
  value: string | number | boolean | Record<string, unknown> | unknown[] | null;
45608
- status: "completed" | "failed" | "no_result" | "skipped" | "pending" | "queued" | "processing";
45608
+ status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
45609
45609
  reason?: {
45610
45610
  code: string;
45611
45611
  summary: string;
45612
45612
  message: string;
45613
45613
  } | null | undefined;
45614
- type?: "string" | "number" | "boolean" | "json" | "unknown" | undefined;
45615
- format?: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "date" | "text" | "int" | "decimal" | "percent" | null | undefined;
45614
+ type?: "string" | "number" | "boolean" | "unknown" | "json" | undefined;
45615
+ format?: "profile_url" | "int" | "date" | "email" | "address_line_1" | "zip_code" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null | undefined;
45616
45616
  claimed_by?: {
45617
45617
  ref: "input" | "prompt:run@1" | "company:newssummary:website@1" | "company:newssummary:domain@1" | "company:techstack:builtwith@1" | "company:techstack:builtwith@2" | "company:websiteurl:email@1" | "company:domain:workemail@1" | "company:funding:leadmagic@1" | "company:funding:leadmagic@2" | "people:workemail:waterfall@1" | "person:workemail:waterfall@1" | "people:email:iswork@1" | "email:iswork@1" | "people:name:split@1" | "person:name:split@1" | "person:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "email:validate:zerobounce@1" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "company:overview@3" | "json:extract:multi@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "person:match:role:waterfall@1" | "person:identity:amplemarket@1" | "company:identity@2" | "company:identity@3" | "person:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "person:mobile:profileurl:waterfall@1" | "people:personalemail:profile:waterfall@1" | "person:personalemail:profileurl:waterfall@1" | "people:profile:waterfall@1" | "person:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "person:profileurl:email:waterfall@1" | "person:profileurl:name@1" | "people:email:validate:zerobounce@1" | "person:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "person:mobile:workemail:waterfall@1" | "fields:merge@1" | "field:slugify@1" | "field:domainify@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:row:append@1" | "sheet:row:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:lookalikes:companyenrich@2" | "company:match:logodev@1" | "company:match:logodev@2" | "person:posts:crustdata@1" | "company:match:crustdata@1" | "company:match:crustdata@2" | "people:profile:workemail:crustdata@1" | "person:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "person:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "person:identity:email:waterfall@1" | "http:request@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | null;
45618
45618
  config_hash: string | null;
@@ -45665,14 +45665,14 @@ declare function inputFromRecords(records: PipesInMemoryResponse["records"], con
45665
45665
  } | null;
45666
45666
  [k: number]: string | number | boolean | Record<string, unknown> | unknown[] | {
45667
45667
  value: string | number | boolean | Record<string, unknown> | unknown[] | null;
45668
- status: "completed" | "failed" | "no_result" | "skipped" | "pending" | "queued" | "processing";
45668
+ status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
45669
45669
  reason?: {
45670
45670
  code: string;
45671
45671
  summary: string;
45672
45672
  message: string;
45673
45673
  } | null | undefined;
45674
- type?: "string" | "number" | "boolean" | "json" | "unknown" | undefined;
45675
- format?: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "date" | "text" | "int" | "decimal" | "percent" | null | undefined;
45674
+ type?: "string" | "number" | "boolean" | "unknown" | "json" | undefined;
45675
+ format?: "profile_url" | "int" | "date" | "email" | "address_line_1" | "zip_code" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null | undefined;
45676
45676
  claimed_by?: {
45677
45677
  ref: "input" | "prompt:run@1" | "company:newssummary:website@1" | "company:newssummary:domain@1" | "company:techstack:builtwith@1" | "company:techstack:builtwith@2" | "company:websiteurl:email@1" | "company:domain:workemail@1" | "company:funding:leadmagic@1" | "company:funding:leadmagic@2" | "people:workemail:waterfall@1" | "person:workemail:waterfall@1" | "people:email:iswork@1" | "email:iswork@1" | "people:name:split@1" | "person:name:split@1" | "person:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "email:validate:zerobounce@1" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "company:overview@3" | "json:extract:multi@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "person:match:role:waterfall@1" | "person:identity:amplemarket@1" | "company:identity@2" | "company:identity@3" | "person:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "person:mobile:profileurl:waterfall@1" | "people:personalemail:profile:waterfall@1" | "person:personalemail:profileurl:waterfall@1" | "people:profile:waterfall@1" | "person:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "person:profileurl:email:waterfall@1" | "person:profileurl:name@1" | "people:email:validate:zerobounce@1" | "person:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "person:mobile:workemail:waterfall@1" | "fields:merge@1" | "field:slugify@1" | "field:domainify@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:row:append@1" | "sheet:row:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:lookalikes:companyenrich@2" | "company:match:logodev@1" | "company:match:logodev@2" | "person:posts:crustdata@1" | "company:match:crustdata@1" | "company:match:crustdata@2" | "people:profile:workemail:crustdata@1" | "person:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "person:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "person:identity:email:waterfall@1" | "http:request@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | null;
45678
45678
  config_hash: string | null;
@@ -45728,14 +45728,14 @@ declare function inputFromRecords(records: PipesInMemoryResponse["records"], con
45728
45728
  declare function inputFromRecordArr(records: PipesRecord[], config?: Partial<FieldsToObjectsConfig>): {
45729
45729
  [k: string]: string | number | boolean | Record<string, unknown> | unknown[] | {
45730
45730
  value: string | number | boolean | Record<string, unknown> | unknown[] | null;
45731
- status: "completed" | "failed" | "no_result" | "skipped" | "pending" | "queued" | "processing";
45731
+ status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
45732
45732
  reason?: {
45733
45733
  code: string;
45734
45734
  summary: string;
45735
45735
  message: string;
45736
45736
  } | null | undefined;
45737
- type?: "string" | "number" | "boolean" | "json" | "unknown" | undefined;
45738
- format?: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "date" | "text" | "int" | "decimal" | "percent" | null | undefined;
45737
+ type?: "string" | "number" | "boolean" | "unknown" | "json" | undefined;
45738
+ format?: "profile_url" | "int" | "date" | "email" | "address_line_1" | "zip_code" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null | undefined;
45739
45739
  claimed_by?: {
45740
45740
  ref: "input" | "prompt:run@1" | "company:newssummary:website@1" | "company:newssummary:domain@1" | "company:techstack:builtwith@1" | "company:techstack:builtwith@2" | "company:websiteurl:email@1" | "company:domain:workemail@1" | "company:funding:leadmagic@1" | "company:funding:leadmagic@2" | "people:workemail:waterfall@1" | "person:workemail:waterfall@1" | "people:email:iswork@1" | "email:iswork@1" | "people:name:split@1" | "person:name:split@1" | "person:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "email:validate:zerobounce@1" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "company:overview@3" | "json:extract:multi@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "person:match:role:waterfall@1" | "person:identity:amplemarket@1" | "company:identity@2" | "company:identity@3" | "person:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "person:mobile:profileurl:waterfall@1" | "people:personalemail:profile:waterfall@1" | "person:personalemail:profileurl:waterfall@1" | "people:profile:waterfall@1" | "person:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "person:profileurl:email:waterfall@1" | "person:profileurl:name@1" | "people:email:validate:zerobounce@1" | "person:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "person:mobile:workemail:waterfall@1" | "fields:merge@1" | "field:slugify@1" | "field:domainify@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:row:append@1" | "sheet:row:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:lookalikes:companyenrich@2" | "company:match:logodev@1" | "company:match:logodev@2" | "person:posts:crustdata@1" | "company:match:crustdata@1" | "company:match:crustdata@2" | "people:profile:workemail:crustdata@1" | "person:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "person:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "person:identity:email:waterfall@1" | "http:request@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | null;
45741
45741
  config_hash: string | null;
@@ -45788,14 +45788,14 @@ declare function inputFromRecordArr(records: PipesRecord[], config?: Partial<Fie
45788
45788
  } | null;
45789
45789
  [k: number]: string | number | boolean | Record<string, unknown> | unknown[] | {
45790
45790
  value: string | number | boolean | Record<string, unknown> | unknown[] | null;
45791
- status: "completed" | "failed" | "no_result" | "skipped" | "pending" | "queued" | "processing";
45791
+ status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
45792
45792
  reason?: {
45793
45793
  code: string;
45794
45794
  summary: string;
45795
45795
  message: string;
45796
45796
  } | null | undefined;
45797
- type?: "string" | "number" | "boolean" | "json" | "unknown" | undefined;
45798
- format?: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "date" | "text" | "int" | "decimal" | "percent" | null | undefined;
45797
+ type?: "string" | "number" | "boolean" | "unknown" | "json" | undefined;
45798
+ format?: "profile_url" | "int" | "date" | "email" | "address_line_1" | "zip_code" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null | undefined;
45799
45799
  claimed_by?: {
45800
45800
  ref: "input" | "prompt:run@1" | "company:newssummary:website@1" | "company:newssummary:domain@1" | "company:techstack:builtwith@1" | "company:techstack:builtwith@2" | "company:websiteurl:email@1" | "company:domain:workemail@1" | "company:funding:leadmagic@1" | "company:funding:leadmagic@2" | "people:workemail:waterfall@1" | "person:workemail:waterfall@1" | "people:email:iswork@1" | "email:iswork@1" | "people:name:split@1" | "person:name:split@1" | "person:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "email:validate:zerobounce@1" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "company:overview@3" | "json:extract:multi@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "person:match:role:waterfall@1" | "person:identity:amplemarket@1" | "company:identity@2" | "company:identity@3" | "person:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "person:mobile:profileurl:waterfall@1" | "people:personalemail:profile:waterfall@1" | "person:personalemail:profileurl:waterfall@1" | "people:profile:waterfall@1" | "person:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "person:profileurl:email:waterfall@1" | "person:profileurl:name@1" | "people:email:validate:zerobounce@1" | "person:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "person:mobile:workemail:waterfall@1" | "fields:merge@1" | "field:slugify@1" | "field:domainify@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:row:append@1" | "sheet:row:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:lookalikes:companyenrich@2" | "company:match:logodev@1" | "company:match:logodev@2" | "person:posts:crustdata@1" | "company:match:crustdata@1" | "company:match:crustdata@2" | "people:profile:workemail:crustdata@1" | "person:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "person:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "person:identity:email:waterfall@1" | "http:request@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | null;
45801
45801
  config_hash: string | null;
@@ -45851,14 +45851,14 @@ declare function inputFromRecordArr(records: PipesRecord[], config?: Partial<Fie
45851
45851
  declare function inputFromRecord(record: PipesRecord, config?: Partial<FieldsToObjectsConfig>): {
45852
45852
  [k: string]: string | number | boolean | Record<string, unknown> | unknown[] | {
45853
45853
  value: string | number | boolean | Record<string, unknown> | unknown[] | null;
45854
- status: "completed" | "failed" | "no_result" | "skipped" | "pending" | "queued" | "processing";
45854
+ status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
45855
45855
  reason?: {
45856
45856
  code: string;
45857
45857
  summary: string;
45858
45858
  message: string;
45859
45859
  } | null | undefined;
45860
- type?: "string" | "number" | "boolean" | "json" | "unknown" | undefined;
45861
- format?: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "date" | "text" | "int" | "decimal" | "percent" | null | undefined;
45860
+ type?: "string" | "number" | "boolean" | "unknown" | "json" | undefined;
45861
+ format?: "profile_url" | "int" | "date" | "email" | "address_line_1" | "zip_code" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null | undefined;
45862
45862
  claimed_by?: {
45863
45863
  ref: "input" | "prompt:run@1" | "company:newssummary:website@1" | "company:newssummary:domain@1" | "company:techstack:builtwith@1" | "company:techstack:builtwith@2" | "company:websiteurl:email@1" | "company:domain:workemail@1" | "company:funding:leadmagic@1" | "company:funding:leadmagic@2" | "people:workemail:waterfall@1" | "person:workemail:waterfall@1" | "people:email:iswork@1" | "email:iswork@1" | "people:name:split@1" | "person:name:split@1" | "person:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "email:validate:zerobounce@1" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "company:overview@3" | "json:extract:multi@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "person:match:role:waterfall@1" | "person:identity:amplemarket@1" | "company:identity@2" | "company:identity@3" | "person:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "person:mobile:profileurl:waterfall@1" | "people:personalemail:profile:waterfall@1" | "person:personalemail:profileurl:waterfall@1" | "people:profile:waterfall@1" | "person:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "person:profileurl:email:waterfall@1" | "person:profileurl:name@1" | "people:email:validate:zerobounce@1" | "person:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "person:mobile:workemail:waterfall@1" | "fields:merge@1" | "field:slugify@1" | "field:domainify@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:row:append@1" | "sheet:row:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:lookalikes:companyenrich@2" | "company:match:logodev@1" | "company:match:logodev@2" | "person:posts:crustdata@1" | "company:match:crustdata@1" | "company:match:crustdata@2" | "people:profile:workemail:crustdata@1" | "person:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "person:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "person:identity:email:waterfall@1" | "http:request@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | null;
45864
45864
  config_hash: string | null;
@@ -45911,14 +45911,14 @@ declare function inputFromRecord(record: PipesRecord, config?: Partial<FieldsToO
45911
45911
  } | null;
45912
45912
  [k: number]: string | number | boolean | Record<string, unknown> | unknown[] | {
45913
45913
  value: string | number | boolean | Record<string, unknown> | unknown[] | null;
45914
- status: "completed" | "failed" | "no_result" | "skipped" | "pending" | "queued" | "processing";
45914
+ status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
45915
45915
  reason?: {
45916
45916
  code: string;
45917
45917
  summary: string;
45918
45918
  message: string;
45919
45919
  } | null | undefined;
45920
- type?: "string" | "number" | "boolean" | "json" | "unknown" | undefined;
45921
- format?: "email" | "address_line_1" | "zip_code" | "profile_url" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "date" | "text" | "int" | "decimal" | "percent" | null | undefined;
45920
+ type?: "string" | "number" | "boolean" | "unknown" | "json" | undefined;
45921
+ format?: "profile_url" | "int" | "date" | "email" | "address_line_1" | "zip_code" | "phone" | "website_url" | "markdown" | "json_object" | "json_list" | "json_list_string" | "url" | "datetime" | "currency" | "text" | "decimal" | "percent" | null | undefined;
45922
45922
  claimed_by?: {
45923
45923
  ref: "input" | "prompt:run@1" | "company:newssummary:website@1" | "company:newssummary:domain@1" | "company:techstack:builtwith@1" | "company:techstack:builtwith@2" | "company:websiteurl:email@1" | "company:domain:workemail@1" | "company:funding:leadmagic@1" | "company:funding:leadmagic@2" | "people:workemail:waterfall@1" | "person:workemail:waterfall@1" | "people:email:iswork@1" | "email:iswork@1" | "people:name:split@1" | "person:name:split@1" | "person:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "email:validate:zerobounce@1" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "company:overview@3" | "json:extract:multi@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "person:match:role:waterfall@1" | "person:identity:amplemarket@1" | "company:identity@2" | "company:identity@3" | "person:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "person:mobile:profileurl:waterfall@1" | "people:personalemail:profile:waterfall@1" | "person:personalemail:profileurl:waterfall@1" | "people:profile:waterfall@1" | "person:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "person:profileurl:email:waterfall@1" | "person:profileurl:name@1" | "people:email:validate:zerobounce@1" | "person:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "person:mobile:workemail:waterfall@1" | "fields:merge@1" | "field:slugify@1" | "field:domainify@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:row:append@1" | "sheet:row:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:lookalikes:companyenrich@2" | "company:match:logodev@1" | "company:match:logodev@2" | "person:posts:crustdata@1" | "company:match:crustdata@1" | "company:match:crustdata@2" | "people:profile:workemail:crustdata@1" | "person:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "person:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "person:identity:email:waterfall@1" | "http:request@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | null;
45924
45924
  config_hash: string | null;