@pipe0/client 0.0.16 → 0.0.18

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.
@@ -585,6 +585,292 @@ export interface paths {
585
585
  patch?: never;
586
586
  trace?: never;
587
587
  };
588
+ "/v1/search/check/{run_id}": {
589
+ parameters: {
590
+ query?: never;
591
+ header?: never;
592
+ path?: never;
593
+ cookie?: never;
594
+ };
595
+ /** @description Check status of search task. */
596
+ get: {
597
+ parameters: {
598
+ query?: never;
599
+ header?: never;
600
+ path: {
601
+ run_id: string | null;
602
+ };
603
+ cookie?: never;
604
+ };
605
+ requestBody?: never;
606
+ responses: {
607
+ /** @description Return current processing state */
608
+ 200: {
609
+ headers: {
610
+ [name: string]: unknown;
611
+ };
612
+ content: {
613
+ "application/json": components["schemas"]["SearchResponseSchema"];
614
+ };
615
+ };
616
+ /** @description Bad request */
617
+ 400: {
618
+ headers: {
619
+ [name: string]: unknown;
620
+ };
621
+ content: {
622
+ "application/json": {
623
+ type: string;
624
+ title: string;
625
+ status: number;
626
+ detail: string;
627
+ };
628
+ };
629
+ };
630
+ /** @description Unauthorized */
631
+ 401: {
632
+ headers: {
633
+ [name: string]: unknown;
634
+ };
635
+ content: {
636
+ "application/json": {
637
+ type: string;
638
+ title: string;
639
+ status: number;
640
+ detail: string;
641
+ };
642
+ };
643
+ };
644
+ /** @description Forbidden */
645
+ 403: {
646
+ headers: {
647
+ [name: string]: unknown;
648
+ };
649
+ content: {
650
+ "application/json": {
651
+ type: string;
652
+ title: string;
653
+ status: number;
654
+ detail: string;
655
+ };
656
+ };
657
+ };
658
+ /** @description Not found */
659
+ 404: {
660
+ headers: {
661
+ [name: string]: unknown;
662
+ };
663
+ content: {
664
+ "application/json": {
665
+ type: string;
666
+ title: string;
667
+ status: number;
668
+ detail: string;
669
+ };
670
+ };
671
+ };
672
+ };
673
+ };
674
+ put?: never;
675
+ post?: never;
676
+ delete?: never;
677
+ options?: never;
678
+ head?: never;
679
+ patch?: never;
680
+ trace?: never;
681
+ };
682
+ "/v1/search/run/sync": {
683
+ parameters: {
684
+ query?: never;
685
+ header?: never;
686
+ path?: never;
687
+ cookie?: never;
688
+ };
689
+ get?: never;
690
+ put?: never;
691
+ /** @description Search for people and companies and receive the results immediately. This endpoint can time out on large requests. */
692
+ post: {
693
+ parameters: {
694
+ query?: never;
695
+ header?: never;
696
+ path?: never;
697
+ cookie?: never;
698
+ };
699
+ requestBody: {
700
+ content: {
701
+ "application/json": components["schemas"]["SearchRequestSchema"];
702
+ };
703
+ };
704
+ responses: {
705
+ /** @description Run searches request */
706
+ 200: {
707
+ headers: {
708
+ [name: string]: unknown;
709
+ };
710
+ content: {
711
+ "application/json": components["schemas"]["SearchResponseSchema"];
712
+ };
713
+ };
714
+ /** @description Bad request */
715
+ 400: {
716
+ headers: {
717
+ [name: string]: unknown;
718
+ };
719
+ content: {
720
+ "application/json": {
721
+ type: string;
722
+ title: string;
723
+ status: number;
724
+ detail: string;
725
+ };
726
+ };
727
+ };
728
+ /** @description Unauthorized */
729
+ 401: {
730
+ headers: {
731
+ [name: string]: unknown;
732
+ };
733
+ content: {
734
+ "application/json": {
735
+ type: string;
736
+ title: string;
737
+ status: number;
738
+ detail: string;
739
+ };
740
+ };
741
+ };
742
+ /** @description Forbidden */
743
+ 403: {
744
+ headers: {
745
+ [name: string]: unknown;
746
+ };
747
+ content: {
748
+ "application/json": {
749
+ type: string;
750
+ title: string;
751
+ status: number;
752
+ detail: string;
753
+ };
754
+ };
755
+ };
756
+ /** @description Required resource not found */
757
+ 404: {
758
+ headers: {
759
+ [name: string]: unknown;
760
+ };
761
+ content: {
762
+ "application/json": {
763
+ type: string;
764
+ title: string;
765
+ status: number;
766
+ detail: string;
767
+ };
768
+ };
769
+ };
770
+ };
771
+ };
772
+ delete?: never;
773
+ options?: never;
774
+ head?: never;
775
+ patch?: never;
776
+ trace?: never;
777
+ };
778
+ "/v1/search/run": {
779
+ parameters: {
780
+ query?: never;
781
+ header?: never;
782
+ path?: never;
783
+ cookie?: never;
784
+ };
785
+ get?: never;
786
+ put?: never;
787
+ /** @description Search for people and companies */
788
+ post: {
789
+ parameters: {
790
+ query?: never;
791
+ header?: never;
792
+ path?: never;
793
+ cookie?: never;
794
+ };
795
+ requestBody: {
796
+ content: {
797
+ "application/json": components["schemas"]["SearchRequestSchema"];
798
+ };
799
+ };
800
+ responses: {
801
+ /** @description Run search request */
802
+ 201: {
803
+ headers: {
804
+ [name: string]: unknown;
805
+ };
806
+ content: {
807
+ "application/json": components["schemas"]["SearchResponseSchema"];
808
+ };
809
+ };
810
+ /** @description Bad request */
811
+ 400: {
812
+ headers: {
813
+ [name: string]: unknown;
814
+ };
815
+ content: {
816
+ "application/json": {
817
+ type: string;
818
+ title: string;
819
+ status: number;
820
+ detail: string;
821
+ };
822
+ };
823
+ };
824
+ /** @description Unauthorized */
825
+ 401: {
826
+ headers: {
827
+ [name: string]: unknown;
828
+ };
829
+ content: {
830
+ "application/json": {
831
+ type: string;
832
+ title: string;
833
+ status: number;
834
+ detail: string;
835
+ };
836
+ };
837
+ };
838
+ /** @description Forbidden */
839
+ 403: {
840
+ headers: {
841
+ [name: string]: unknown;
842
+ };
843
+ content: {
844
+ "application/json": {
845
+ type: string;
846
+ title: string;
847
+ status: number;
848
+ detail: string;
849
+ };
850
+ };
851
+ };
852
+ /** @description Required resource not found */
853
+ 404: {
854
+ headers: {
855
+ [name: string]: unknown;
856
+ };
857
+ content: {
858
+ "application/json": {
859
+ type: string;
860
+ title: string;
861
+ status: number;
862
+ detail: string;
863
+ };
864
+ };
865
+ };
866
+ };
867
+ };
868
+ delete?: never;
869
+ options?: never;
870
+ head?: never;
871
+ patch?: never;
872
+ trace?: never;
873
+ };
588
874
  }
589
875
  export type webhooks = Record<string, never>;
590
876
  export interface components {
@@ -1220,9 +1506,9 @@ export interface components {
1220
1506
  provider: "leadmagic" | "prospeo" | "hunter" | "icypeas" | "findymail";
1221
1507
  }[];
1222
1508
  /** @default true */
1223
- allow_catch_all_emails?: boolean | null;
1509
+ allow_catch_all_emails?: boolean;
1224
1510
  /** @default true */
1225
- allow_risky_emails?: boolean | null;
1511
+ allow_risky_emails?: boolean;
1226
1512
  input_fields?: {
1227
1513
  /**
1228
1514
  * @default {
@@ -2353,7 +2639,7 @@ export interface components {
2353
2639
  })[];
2354
2640
  };
2355
2641
  } | null;
2356
- config: {
2642
+ config?: {
2357
2643
  from: string;
2358
2644
  /** @default */
2359
2645
  reply_to?: string;
@@ -2437,10 +2723,10 @@ export interface components {
2437
2723
  })[];
2438
2724
  };
2439
2725
  } | null;
2440
- config: {
2726
+ config?: {
2441
2727
  audience_id: string;
2442
2728
  /** @default true */
2443
- add_as_subscribed?: boolean | null;
2729
+ add_as_subscribed?: boolean;
2444
2730
  input_fields?: {
2445
2731
  /**
2446
2732
  * @default {
@@ -3174,7 +3460,7 @@ export interface components {
3174
3460
  })[];
3175
3461
  };
3176
3462
  } | null;
3177
- config: {
3463
+ config?: {
3178
3464
  /** @default */
3179
3465
  reply_to?: string;
3180
3466
  input_fields?: {
@@ -3373,7 +3659,7 @@ export interface components {
3373
3659
  } | null;
3374
3660
  config?: {
3375
3661
  /** @default false */
3376
- scrape_main_only?: boolean | null;
3662
+ scrape_main_only?: boolean;
3377
3663
  input_fields?: {
3378
3664
  /**
3379
3665
  * @default {
@@ -3464,7 +3750,7 @@ export interface components {
3464
3750
  } | null;
3465
3751
  config?: {
3466
3752
  /** @default false */
3467
- scrape_main_only?: boolean | null;
3753
+ scrape_main_only?: boolean;
3468
3754
  formats?: ("markdown" | "html" | "links")[];
3469
3755
  input_fields?: {
3470
3756
  /**
@@ -3536,9 +3822,9 @@ export interface components {
3536
3822
  };
3537
3823
  extraction_prompt: string;
3538
3824
  /** @default false */
3539
- enable_full_domain_crawl?: boolean | null;
3825
+ enable_full_domain_crawl?: boolean;
3540
3826
  /** @default false */
3541
- enable_web_search?: boolean | null;
3827
+ enable_web_search?: boolean;
3542
3828
  input_fields?: {
3543
3829
  /**
3544
3830
  * @default {
@@ -3679,9 +3965,9 @@ export interface components {
3679
3965
  config: {
3680
3966
  sheet: string;
3681
3967
  /** @default true */
3682
- run?: boolean | null;
3968
+ run?: boolean;
3683
3969
  /** @default true */
3684
- allow_field_creation?: boolean | null;
3970
+ allow_field_creation?: boolean;
3685
3971
  /** @default [] */
3686
3972
  included_fields?: {
3687
3973
  field_name: string;
@@ -3742,15 +4028,15 @@ export interface components {
3742
4028
  } | null;
3743
4029
  config: {
3744
4030
  /** @default true */
3745
- run?: boolean | null;
4031
+ run?: boolean;
3746
4032
  /** @default true */
3747
- allow_field_creation?: boolean | null;
4033
+ allow_field_creation?: boolean;
3748
4034
  /** @default [] */
3749
4035
  included_fields?: {
3750
4036
  field_name: string;
3751
4037
  }[];
3752
4038
  /** @default true */
3753
- allow_sheet_creation?: boolean | null;
4039
+ allow_sheet_creation?: boolean;
3754
4040
  new_sheet_team_id: string;
3755
4041
  input_fields?: {
3756
4042
  /**
@@ -3831,9 +4117,9 @@ export interface components {
3831
4117
  config: {
3832
4118
  sheet: string;
3833
4119
  /** @default true */
3834
- run?: boolean | null;
4120
+ run?: boolean;
3835
4121
  /** @default true */
3836
- allow_field_creation?: boolean | null;
4122
+ allow_field_creation?: boolean;
3837
4123
  input_fields?: {
3838
4124
  /**
3839
4125
  * @default {
@@ -4730,9 +5016,9 @@ export interface components {
4730
5016
  provider: "hunter" | "findymail" | "leadmagic" | "crustdata" | "clado";
4731
5017
  }[];
4732
5018
  /** @default true */
4733
- allow_catch_all_emails?: boolean | null;
5019
+ allow_catch_all_emails?: boolean;
4734
5020
  /** @default true */
4735
- allow_risky_emails?: boolean | null;
5021
+ allow_risky_emails?: boolean;
4736
5022
  input_fields?: {
4737
5023
  /**
4738
5024
  * @default {
@@ -4900,23 +5186,183 @@ export interface components {
4900
5186
  };
4901
5187
  /**
4902
5188
  * @default {
4903
- * "alias": "",
4904
- * "enabled": true
5189
+ * "alias": "",
5190
+ * "enabled": true
5191
+ * }
5192
+ */
5193
+ cleaned_company_name?: {
5194
+ /** @default */
5195
+ alias?: string;
5196
+ /** @default true */
5197
+ enabled?: boolean;
5198
+ };
5199
+ /**
5200
+ * @default {
5201
+ * "alias": "",
5202
+ * "enabled": true
5203
+ * }
5204
+ */
5205
+ company_website_url?: {
5206
+ /** @default */
5207
+ alias?: string;
5208
+ /** @default true */
5209
+ enabled?: boolean;
5210
+ };
5211
+ };
5212
+ };
5213
+ } | {
5214
+ /** @enum {string} */
5215
+ pipe_id: "people:professionalprofile:waterfall@1";
5216
+ trigger?: {
5217
+ /** @enum {string} */
5218
+ action: "run";
5219
+ when: {
5220
+ /** @enum {string} */
5221
+ logic: "and" | "or";
5222
+ conditions: ({
5223
+ /** @enum {string} */
5224
+ property: "value";
5225
+ field_name: string;
5226
+ /** @enum {string} */
5227
+ operator: "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "contains";
5228
+ value: number | string | boolean | null;
5229
+ } | {
5230
+ /** @enum {string} */
5231
+ property: "status";
5232
+ field_name: string;
5233
+ /** @enum {string} */
5234
+ operator: "eq" | "neq";
5235
+ /** @enum {string} */
5236
+ value: "failed" | "no_result" | "completed" | "skipped";
5237
+ })[];
5238
+ };
5239
+ } | null;
5240
+ connector?: {
5241
+ /**
5242
+ * @default first
5243
+ * @enum {string}
5244
+ */
5245
+ strategy?: "first";
5246
+ connections: {
5247
+ /** @enum {string} */
5248
+ type: "vault";
5249
+ connection: string;
5250
+ }[];
5251
+ } | null;
5252
+ config?: {
5253
+ /**
5254
+ * @default [
5255
+ * {
5256
+ * "provider": "prospeo"
5257
+ * },
5258
+ * {
5259
+ * "provider": "icypeas"
5260
+ * }
5261
+ * ]
5262
+ */
5263
+ providers?: {
5264
+ /** @enum {string} */
5265
+ provider: "prospeo" | "icypeas";
5266
+ }[];
5267
+ input_fields?: {
5268
+ /**
5269
+ * @default {
5270
+ * "alias": ""
5271
+ * }
5272
+ */
5273
+ professional_profile_url?: {
5274
+ alias: string;
5275
+ };
5276
+ };
5277
+ output_fields?: {
5278
+ /**
5279
+ * @default {
5280
+ * "alias": "",
5281
+ * "enabled": true
5282
+ * }
5283
+ */
5284
+ professional_profile?: {
5285
+ /** @default */
5286
+ alias?: string;
5287
+ /** @default true */
5288
+ enabled?: boolean;
5289
+ };
5290
+ };
5291
+ };
5292
+ } | {
5293
+ /** @enum {string} */
5294
+ pipe_id: "people:professionalprofileurl:name@1";
5295
+ connector?: {
5296
+ /**
5297
+ * @default first
5298
+ * @enum {string}
5299
+ */
5300
+ strategy?: "first";
5301
+ connections: {
5302
+ /** @enum {string} */
5303
+ type: "vault";
5304
+ connection: string;
5305
+ }[];
5306
+ } | null;
5307
+ trigger?: {
5308
+ /** @enum {string} */
5309
+ action: "run";
5310
+ when: {
5311
+ /** @enum {string} */
5312
+ logic: "and" | "or";
5313
+ conditions: ({
5314
+ /** @enum {string} */
5315
+ property: "value";
5316
+ field_name: string;
5317
+ /** @enum {string} */
5318
+ operator: "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "contains";
5319
+ value: number | string | boolean | null;
5320
+ } | {
5321
+ /** @enum {string} */
5322
+ property: "status";
5323
+ field_name: string;
5324
+ /** @enum {string} */
5325
+ operator: "eq" | "neq";
5326
+ /** @enum {string} */
5327
+ value: "failed" | "no_result" | "completed" | "skipped";
5328
+ })[];
5329
+ };
5330
+ } | null;
5331
+ config?: {
5332
+ input_fields?: {
5333
+ /**
5334
+ * @default {
5335
+ * "alias": ""
5336
+ * }
5337
+ */
5338
+ name?: {
5339
+ alias: string;
5340
+ };
5341
+ /**
5342
+ * @default {
5343
+ * "alias": ""
5344
+ * }
5345
+ */
5346
+ company_name?: {
5347
+ alias: string;
5348
+ };
5349
+ /**
5350
+ * @default {
5351
+ * "alias": ""
4905
5352
  * }
4906
5353
  */
4907
- cleaned_company_name?: {
4908
- /** @default */
4909
- alias?: string;
4910
- /** @default true */
4911
- enabled?: boolean;
5354
+ location_hint?: {
5355
+ alias: string;
4912
5356
  };
5357
+ };
5358
+ output_fields?: {
4913
5359
  /**
4914
5360
  * @default {
4915
5361
  * "alias": "",
4916
5362
  * "enabled": true
4917
5363
  * }
4918
5364
  */
4919
- company_website_url?: {
5365
+ professional_profile_url?: {
4920
5366
  /** @default */
4921
5367
  alias?: string;
4922
5368
  /** @default true */
@@ -4926,7 +5372,7 @@ export interface components {
4926
5372
  };
4927
5373
  } | {
4928
5374
  /** @enum {string} */
4929
- pipe_id: "people:professionalprofile:waterfall@1";
5375
+ pipe_id: "people:professionalprofileurl:email:waterfall@1";
4930
5376
  trigger?: {
4931
5377
  /** @enum {string} */
4932
5378
  action: "run";
@@ -4967,16 +5413,13 @@ export interface components {
4967
5413
  /**
4968
5414
  * @default [
4969
5415
  * {
4970
- * "provider": "prospeo"
4971
- * },
4972
- * {
4973
- * "provider": "icypeas"
5416
+ * "provider": "leadmagic"
4974
5417
  * }
4975
5418
  * ]
4976
5419
  */
4977
5420
  providers?: {
4978
5421
  /** @enum {string} */
4979
- provider: "prospeo" | "icypeas";
5422
+ provider: "leadmagic";
4980
5423
  }[];
4981
5424
  input_fields?: {
4982
5425
  /**
@@ -4984,7 +5427,15 @@ export interface components {
4984
5427
  * "alias": ""
4985
5428
  * }
4986
5429
  */
4987
- professional_profile_url?: {
5430
+ email?: {
5431
+ alias: string;
5432
+ };
5433
+ /**
5434
+ * @default {
5435
+ * "alias": ""
5436
+ * }
5437
+ */
5438
+ work_email?: {
4988
5439
  alias: string;
4989
5440
  };
4990
5441
  };
@@ -4995,7 +5446,7 @@ export interface components {
4995
5446
  * "enabled": true
4996
5447
  * }
4997
5448
  */
4998
- professional_profile?: {
5449
+ professional_profile_url?: {
4999
5450
  /** @default */
5000
5451
  alias?: string;
5001
5452
  /** @default true */
@@ -5005,19 +5456,7 @@ export interface components {
5005
5456
  };
5006
5457
  } | {
5007
5458
  /** @enum {string} */
5008
- pipe_id: "people:professionalprofileurl:name@1";
5009
- connector?: {
5010
- /**
5011
- * @default first
5012
- * @enum {string}
5013
- */
5014
- strategy?: "first";
5015
- connections: {
5016
- /** @enum {string} */
5017
- type: "vault";
5018
- connection: string;
5019
- }[];
5020
- } | null;
5459
+ pipe_id: "people:mobilenumber:professionalprofile:waterfall@1";
5021
5460
  trigger?: {
5022
5461
  /** @enum {string} */
5023
5462
  action: "run";
@@ -5042,30 +5481,40 @@ export interface components {
5042
5481
  })[];
5043
5482
  };
5044
5483
  } | null;
5484
+ connector?: {
5485
+ /**
5486
+ * @default first
5487
+ * @enum {string}
5488
+ */
5489
+ strategy?: "first";
5490
+ connections: {
5491
+ /** @enum {string} */
5492
+ type: "vault";
5493
+ connection: string;
5494
+ }[];
5495
+ } | null;
5045
5496
  config?: {
5497
+ /**
5498
+ * @default [
5499
+ * {
5500
+ * "provider": "leadmagic"
5501
+ * },
5502
+ * {
5503
+ * "provider": "prospeo"
5504
+ * }
5505
+ * ]
5506
+ */
5507
+ providers?: {
5508
+ /** @enum {string} */
5509
+ provider: "leadmagic" | "prospeo";
5510
+ }[];
5046
5511
  input_fields?: {
5047
5512
  /**
5048
5513
  * @default {
5049
5514
  * "alias": ""
5050
5515
  * }
5051
5516
  */
5052
- name?: {
5053
- alias: string;
5054
- };
5055
- /**
5056
- * @default {
5057
- * "alias": ""
5058
- * }
5059
- */
5060
- company_name?: {
5061
- alias: string;
5062
- };
5063
- /**
5064
- * @default {
5065
- * "alias": ""
5066
- * }
5067
- */
5068
- location_hint?: {
5517
+ professional_profile_url?: {
5069
5518
  alias: string;
5070
5519
  };
5071
5520
  };
@@ -5076,414 +5525,893 @@ export interface components {
5076
5525
  * "enabled": true
5077
5526
  * }
5078
5527
  */
5079
- professional_profile_url?: {
5528
+ mobile_number?: {
5080
5529
  /** @default */
5081
5530
  alias?: string;
5082
5531
  /** @default true */
5083
5532
  enabled?: boolean;
5084
5533
  };
5085
5534
  };
5086
- };
5087
- } | {
5088
- /** @enum {string} */
5089
- pipe_id: "people:professionalprofileurl:email:waterfall@1";
5090
- trigger?: {
5535
+ };
5536
+ };
5537
+ PipesInputSchema: {
5538
+ [key: string]: string | number | boolean | null | {
5539
+ [key: string]: unknown;
5540
+ } | unknown[] | {
5541
+ value: string | number | boolean | null | {
5542
+ [key: string]: unknown;
5543
+ } | unknown[];
5544
+ status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
5545
+ reason?: {
5546
+ code: string;
5547
+ summary: string;
5548
+ message: string;
5549
+ } | null;
5550
+ /** @enum {string} */
5551
+ type?: "string" | "number" | "boolean" | "json" | "unknown";
5552
+ /** @enum {string|null} */
5553
+ format?: "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" | null;
5554
+ claimed_by?: {
5555
+ /** @enum {string|null} */
5556
+ ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@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" | "people:identity:amplemarket@1" | "company:identity@2" | "people:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone: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:match:logodev@1" | "people:posts:crustdata@1" | "company:match:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "sheet:row:append:sheet@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | null;
5557
+ config_hash: string | null;
5558
+ };
5559
+ resolved_by?: {
5560
+ /** @enum {string|null} */
5561
+ ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@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" | "people:identity:amplemarket@1" | "company:identity@2" | "people:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone: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:match:logodev@1" | "people:posts:crustdata@1" | "company:match:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "sheet:row:append:sheet@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
5562
+ /** @enum {string|null} */
5563
+ environment: "production" | "sandbox" | null;
5564
+ config_hash: string | null;
5565
+ input_hash: string | null;
5566
+ } | null;
5567
+ /** @description A map of widgets associated with this field for UI display, keyed by widget type. */
5568
+ widgets?: {
5569
+ display_value?: {
5570
+ label?: string;
5571
+ };
5572
+ entity_logo?: {
5573
+ /**
5574
+ * Format: uri
5575
+ * @description URL to the provider's logo image.
5576
+ */
5577
+ image_url: string;
5578
+ /** @description The name of the entity. */
5579
+ entity: string;
5580
+ };
5581
+ location_indicator?: {
5582
+ /** @description Country flag emoji. */
5583
+ emoji: string;
5584
+ };
5585
+ avatar?: {
5586
+ /**
5587
+ * Format: uri
5588
+ * @description URL to the provider's logo image.
5589
+ */
5590
+ image_url: string;
5591
+ /** @description The name of the avatar owner. */
5592
+ name: string;
5593
+ };
5594
+ waterfall?: {
5595
+ attempted_providers: {
5596
+ /** @enum {string} */
5597
+ provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket";
5598
+ }[];
5599
+ available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket")[];
5600
+ /** @enum {string} */
5601
+ successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket";
5602
+ };
5603
+ icon?: {
5604
+ /** @enum {string} */
5605
+ key: "linkedin" | "job";
5606
+ };
5607
+ action_summary?: {
5608
+ /** @enum {string} */
5609
+ result_status: "completed" | "failed";
5610
+ };
5611
+ sources?: {
5612
+ list: {
5613
+ source: string;
5614
+ description?: string;
5615
+ url: string;
5616
+ }[];
5617
+ };
5618
+ confidence?: {
5619
+ numeric: number;
5620
+ };
5621
+ };
5622
+ };
5623
+ };
5624
+ SearchesResponseSchema: {
5625
+ id: string;
5626
+ /** @enum {string} */
5627
+ status: "completed" | "failed" | "pending" | "processing";
5628
+ results: {
5629
+ [key: string]: {
5630
+ value: string | number | boolean | null | {
5631
+ [key: string]: unknown;
5632
+ } | unknown[];
5633
+ status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
5634
+ /** @enum {string} */
5635
+ type?: "string" | "number" | "boolean" | "json" | "unknown";
5636
+ /** @enum {string|null} */
5637
+ format?: "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" | null;
5638
+ resolved_by?: {
5639
+ /** @enum {string|null} */
5640
+ ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@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" | "people:identity:amplemarket@1" | "company:identity@2" | "people:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone: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:match:logodev@1" | "people:posts:crustdata@1" | "company:match:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "sheet:row:append:sheet@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
5641
+ /** @enum {string|null} */
5642
+ environment: "production" | "sandbox" | null;
5643
+ config_hash: string | null;
5644
+ input_hash: string | null;
5645
+ } | null;
5646
+ /** @description A map of widgets associated with this field for UI display, keyed by widget type. */
5647
+ widgets?: {
5648
+ display_value?: {
5649
+ label?: string;
5650
+ };
5651
+ entity_logo?: {
5652
+ /**
5653
+ * Format: uri
5654
+ * @description URL to the provider's logo image.
5655
+ */
5656
+ image_url: string;
5657
+ /** @description The name of the entity. */
5658
+ entity: string;
5659
+ };
5660
+ location_indicator?: {
5661
+ /** @description Country flag emoji. */
5662
+ emoji: string;
5663
+ };
5664
+ avatar?: {
5665
+ /**
5666
+ * Format: uri
5667
+ * @description URL to the provider's logo image.
5668
+ */
5669
+ image_url: string;
5670
+ /** @description The name of the avatar owner. */
5671
+ name: string;
5672
+ };
5673
+ waterfall?: {
5674
+ attempted_providers: {
5675
+ /** @enum {string} */
5676
+ provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket";
5677
+ }[];
5678
+ available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket")[];
5679
+ /** @enum {string} */
5680
+ successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket";
5681
+ };
5682
+ icon?: {
5683
+ /** @enum {string} */
5684
+ key: "linkedin" | "job";
5685
+ };
5686
+ action_summary?: {
5687
+ /** @enum {string} */
5688
+ result_status: "completed" | "failed";
5689
+ };
5690
+ sources?: {
5691
+ list: {
5692
+ source: string;
5693
+ description?: string;
5694
+ url: string;
5695
+ }[];
5696
+ };
5697
+ confidence?: {
5698
+ numeric: number;
5699
+ };
5700
+ };
5701
+ } | null;
5702
+ }[];
5703
+ search_statuses: {
5704
+ search: {
5705
+ /** @enum {string} */
5706
+ ref: "people:profiles:icypeas@1" | "companies:profiles:icypeas@1" | "people:profiles:clado@1" | "people:profiles:clado@2" | "people:employees:leadmagic@1" | "companies:profiles:exa@1" | "people:profiles:exa@1" | "companies:profiles:crustdata@1" | "people:profiles:crustdata@1";
5707
+ };
5091
5708
  /** @enum {string} */
5092
- action: "run";
5093
- when: {
5094
- /** @enum {string} */
5095
- logic: "and" | "or";
5096
- conditions: ({
5097
- /** @enum {string} */
5098
- property: "value";
5099
- field_name: string;
5100
- /** @enum {string} */
5101
- operator: "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "contains";
5102
- value: number | string | boolean | null;
5103
- } | {
5104
- /** @enum {string} */
5105
- property: "status";
5106
- field_name: string;
5107
- /** @enum {string} */
5108
- operator: "eq" | "neq";
5109
- /** @enum {string} */
5110
- value: "failed" | "no_result" | "completed" | "skipped";
5111
- })[];
5709
+ status: "pending" | "processing" | "failed" | "completed";
5710
+ errors: {
5711
+ code: string;
5712
+ message: string;
5713
+ path?: string;
5714
+ }[];
5715
+ meta: {
5716
+ providers?: {
5717
+ clado?: {
5718
+ pagination: {
5719
+ search_id?: string;
5720
+ offset?: number;
5721
+ };
5722
+ };
5723
+ crustdata?: {
5724
+ pagination: {
5725
+ cursor: string | null;
5726
+ };
5727
+ };
5728
+ };
5112
5729
  };
5113
- } | null;
5114
- connector?: {
5730
+ }[];
5731
+ organizationId: string;
5732
+ };
5733
+ SearchesRequestSchema: {
5734
+ /**
5735
+ * @default {
5736
+ * "dedup": {
5737
+ * "strategy": "default"
5738
+ * },
5739
+ * "environment": "production",
5740
+ * "widgets": {
5741
+ * "enabled": false
5742
+ * }
5743
+ * }
5744
+ */
5745
+ config?: {
5115
5746
  /**
5116
- * @default first
5747
+ * @default production
5117
5748
  * @enum {string}
5118
5749
  */
5119
- strategy?: "first";
5120
- connections: {
5121
- /** @enum {string} */
5122
- type: "vault";
5123
- connection: string;
5124
- }[];
5125
- } | null;
5126
- config?: {
5750
+ environment?: "production" | "sandbox";
5127
5751
  /**
5128
- * @default [
5129
- * {
5130
- * "provider": "leadmagic"
5131
- * }
5132
- * ]
5752
+ * @default {
5753
+ * "enabled": false
5754
+ * }
5133
5755
  */
5134
- providers?: {
5135
- /** @enum {string} */
5136
- provider: "leadmagic";
5137
- }[];
5138
- input_fields?: {
5756
+ widgets?: {
5757
+ /** @default false */
5758
+ enabled?: boolean;
5759
+ };
5760
+ /**
5761
+ * @default {
5762
+ * "strategy": null
5763
+ * }
5764
+ */
5765
+ dedup?: {
5766
+ /** @enum {string|null} */
5767
+ strategy: "default" | null;
5768
+ };
5769
+ };
5770
+ searches: ({
5771
+ /** @enum {string} */
5772
+ search_id: "people:profiles:crustdata@1";
5773
+ connector?: {
5139
5774
  /**
5140
- * @default {
5141
- * "alias": ""
5142
- * }
5775
+ * @default first
5776
+ * @enum {string}
5143
5777
  */
5144
- email?: {
5145
- alias: string;
5778
+ strategy?: "first";
5779
+ connections: {
5780
+ /** @enum {string} */
5781
+ type: "vault";
5782
+ connection: string;
5783
+ }[];
5784
+ } | null;
5785
+ config: {
5786
+ /** @default 100 */
5787
+ limit?: number;
5788
+ cursor: string;
5789
+ output_fields?: {
5790
+ /**
5791
+ * @default {
5792
+ * "alias": "",
5793
+ * "enabled": true
5794
+ * }
5795
+ */
5796
+ name?: {
5797
+ /** @default */
5798
+ alias?: string;
5799
+ /** @default true */
5800
+ enabled?: boolean;
5801
+ };
5802
+ /**
5803
+ * @default {
5804
+ * "alias": "",
5805
+ * "enabled": true
5806
+ * }
5807
+ */
5808
+ company_website_url?: {
5809
+ /** @default */
5810
+ alias?: string;
5811
+ /** @default true */
5812
+ enabled?: boolean;
5813
+ };
5814
+ /**
5815
+ * @default {
5816
+ * "alias": "",
5817
+ * "enabled": true
5818
+ * }
5819
+ */
5820
+ profile_url?: {
5821
+ /** @default */
5822
+ alias?: string;
5823
+ /** @default true */
5824
+ enabled?: boolean;
5825
+ };
5826
+ /**
5827
+ * @default {
5828
+ * "alias": "",
5829
+ * "enabled": true
5830
+ * }
5831
+ */
5832
+ job_title?: {
5833
+ /** @default */
5834
+ alias?: string;
5835
+ /** @default true */
5836
+ enabled?: boolean;
5837
+ };
5838
+ /**
5839
+ * @default {
5840
+ * "alias": "",
5841
+ * "enabled": true
5842
+ * }
5843
+ */
5844
+ crustdata_person_match?: {
5845
+ /** @default */
5846
+ alias?: string;
5847
+ /** @default true */
5848
+ enabled?: boolean;
5849
+ };
5146
5850
  };
5147
- /**
5148
- * @default {
5149
- * "alias": ""
5150
- * }
5151
- */
5152
- work_email?: {
5153
- alias: string;
5851
+ filters: {
5852
+ locations?: string[];
5853
+ /** @default [] */
5854
+ profile_headline_keywords?: string[];
5855
+ /** @default [] */
5856
+ profile_summary_keywords?: string[];
5857
+ profile_languages?: ("Arabic" | "English" | "Spanish" | "Portuguese" | "Chinese" | "French" | "Italian" | "Russian" | "German" | "Dutch" | "Turkish" | "Tagalog" | "Polish" | "Korean" | "Japanese" | "Malay" | "Norwegian" | "Danish" | "Romanian" | "Swedish" | "Bahasa Indonesia" | "Czech")[];
5858
+ languages?: string[];
5859
+ skills?: string[];
5860
+ years_of_experience?: ("Less than 1 year" | "1 to 2 years" | "3 to 5 years" | "6 to 10 years" | "More than 10 years")[];
5861
+ /**
5862
+ * @default {
5863
+ * "include": [],
5864
+ * "exclude": []
5865
+ * }
5866
+ */
5867
+ current_seniority_levels?: {
5868
+ /** @default [] */
5869
+ include?: string[];
5870
+ /** @default [] */
5871
+ exclude?: string[];
5872
+ };
5873
+ /** @default [] */
5874
+ current_employers?: string[];
5875
+ /** @default [] */
5876
+ current_employers_website_urls?: string[];
5877
+ /** @default [] */
5878
+ current_job_titles?: string[];
5879
+ current_employers_linkedin_industries?: string[];
5880
+ years_at_current_company?: ("Less than 1 year" | "1 to 2 years" | "3 to 5 years" | "6 to 10 years" | "More than 10 years")[];
5881
+ /** @default [] */
5882
+ previous_employers_website_urls?: string[];
5883
+ /**
5884
+ * @default {
5885
+ * "include": [],
5886
+ * "exclude": []
5887
+ * }
5888
+ */
5889
+ previous_seniority_levels?: {
5890
+ /** @default [] */
5891
+ include?: string[];
5892
+ /** @default [] */
5893
+ exclude?: string[];
5894
+ };
5895
+ /** @default [] */
5896
+ previous_employers?: string[];
5897
+ /** @default [] */
5898
+ previous_job_titles?: string[];
5899
+ previous_employers_linkedin_industries?: string[];
5900
+ /** @default [] */
5901
+ certifications?: string[];
5902
+ /** @default [] */
5903
+ honors?: string[];
5904
+ /** @default null */
5905
+ recently_changed_jobs?: boolean | null;
5906
+ fields_of_study?: string[];
5907
+ degree_names?: string[];
5908
+ school_names?: string[];
5909
+ current_school_names?: string[];
5910
+ /** @default [] */
5911
+ extracurricular_activities?: string[];
5154
5912
  };
5155
5913
  };
5156
- output_fields?: {
5914
+ } | {
5915
+ /** @enum {string} */
5916
+ search_id: "companies:profiles:crustdata@1";
5917
+ connector?: {
5157
5918
  /**
5158
- * @default {
5159
- * "alias": "",
5160
- * "enabled": true
5161
- * }
5919
+ * @default first
5920
+ * @enum {string}
5162
5921
  */
5163
- professional_profile_url?: {
5164
- /** @default */
5165
- alias?: string;
5166
- /** @default true */
5167
- enabled?: boolean;
5922
+ strategy?: "first";
5923
+ connections: {
5924
+ /** @enum {string} */
5925
+ type: "vault";
5926
+ connection: string;
5927
+ }[];
5928
+ } | null;
5929
+ config: {
5930
+ /** @default 100 */
5931
+ limit?: number;
5932
+ cursor: string;
5933
+ output_fields?: {
5934
+ /**
5935
+ * @default {
5936
+ * "alias": "",
5937
+ * "enabled": true
5938
+ * }
5939
+ */
5940
+ company_name?: {
5941
+ /** @default */
5942
+ alias?: string;
5943
+ /** @default true */
5944
+ enabled?: boolean;
5945
+ };
5946
+ /**
5947
+ * @default {
5948
+ * "alias": "",
5949
+ * "enabled": true
5950
+ * }
5951
+ */
5952
+ company_website_url?: {
5953
+ /** @default */
5954
+ alias?: string;
5955
+ /** @default true */
5956
+ enabled?: boolean;
5957
+ };
5958
+ /**
5959
+ * @default {
5960
+ * "alias": "",
5961
+ * "enabled": true
5962
+ * }
5963
+ */
5964
+ company_description?: {
5965
+ /** @default */
5966
+ alias?: string;
5967
+ /** @default true */
5968
+ enabled?: boolean;
5969
+ };
5970
+ /**
5971
+ * @default {
5972
+ * "alias": "",
5973
+ * "enabled": true
5974
+ * }
5975
+ */
5976
+ company_profile_url?: {
5977
+ /** @default */
5978
+ alias?: string;
5979
+ /** @default true */
5980
+ enabled?: boolean;
5981
+ };
5982
+ /**
5983
+ * @default {
5984
+ * "alias": "",
5985
+ * "enabled": true
5986
+ * }
5987
+ */
5988
+ crustdata_company_match?: {
5989
+ /** @default */
5990
+ alias?: string;
5991
+ /** @default true */
5992
+ enabled?: boolean;
5993
+ };
5994
+ };
5995
+ filters: {
5996
+ hq_locations?: string[];
5997
+ crunchbase_categories?: string[];
5998
+ crunchbase_investors?: string[];
5999
+ tracxn_investors?: string[];
6000
+ company_types?: ("Public Company" | "Privately Held" | "Non Profit" | "Educational Institution" | "Partnership" | "Self Employed" | "Self Owned" | "Government Agency")[];
6001
+ linkedin_industries?: string[];
6002
+ markets?: string[];
6003
+ linkedin_categories?: string[];
6004
+ headcount?: ("1-10" | "11-50" | "51-200" | "201-500" | "501-1,000" | "1,001-5,000" | "5,001-10,000" | "10,001+")[];
6005
+ headcount_growth_last_6m_in_percent?: ("0-10%" | "10-20%" | "20-50%" | "50-70%" | "70%+")[];
6006
+ /**
6007
+ * @default {
6008
+ * "from": null,
6009
+ * "to": null
6010
+ * }
6011
+ */
6012
+ revenue_in_usd?: {
6013
+ from?: number | null;
6014
+ to?: number | null;
6015
+ };
6016
+ last_funding_type?: ("Series A" | "Series B" | "Series C" | "Series D")[];
6017
+ /**
6018
+ * @default {
6019
+ * "from": null,
6020
+ * "to": null
6021
+ * }
6022
+ */
6023
+ last_funding_amount?: {
6024
+ from?: number | null;
6025
+ to?: number | null;
6026
+ };
6027
+ number_of_followers?: ("1-500" | "501-1000" | "1001-5000" | "5001-10000" | "10001-30000" | "30000+")[];
6028
+ follower_growth_last_6m_in_percent?: ("0-10%" | "10-20%" | "20-50%" | "50-70%" | "70%+")[];
6029
+ /** @default [] */
6030
+ profile_summary_keywords?: string[];
6031
+ /** @default [] */
6032
+ competitor_websites?: string[];
5168
6033
  };
5169
6034
  };
5170
- };
5171
- } | {
5172
- /** @enum {string} */
5173
- pipe_id: "people:mobilenumber:professionalprofile:waterfall@1";
5174
- trigger?: {
6035
+ } | {
5175
6036
  /** @enum {string} */
5176
- action: "run";
5177
- when: {
5178
- /** @enum {string} */
5179
- logic: "and" | "or";
5180
- conditions: ({
5181
- /** @enum {string} */
5182
- property: "value";
5183
- field_name: string;
5184
- /** @enum {string} */
5185
- operator: "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "contains";
5186
- value: number | string | boolean | null;
5187
- } | {
5188
- /** @enum {string} */
5189
- property: "status";
5190
- field_name: string;
5191
- /** @enum {string} */
5192
- operator: "eq" | "neq";
5193
- /** @enum {string} */
5194
- value: "failed" | "no_result" | "completed" | "skipped";
5195
- })[];
5196
- };
5197
- } | null;
5198
- connector?: {
5199
- /**
5200
- * @default first
5201
- * @enum {string}
5202
- */
5203
- strategy?: "first";
5204
- connections: {
5205
- /** @enum {string} */
5206
- type: "vault";
5207
- connection: string;
5208
- }[];
5209
- } | null;
5210
- config?: {
5211
- /**
5212
- * @default [
5213
- * {
5214
- * "provider": "leadmagic"
5215
- * },
5216
- * {
5217
- * "provider": "prospeo"
5218
- * }
5219
- * ]
5220
- */
5221
- providers?: {
5222
- /** @enum {string} */
5223
- provider: "leadmagic" | "prospeo";
5224
- }[];
5225
- input_fields?: {
6037
+ search_id: "companies:profiles:exa@1";
6038
+ connector?: {
5226
6039
  /**
5227
- * @default {
5228
- * "alias": ""
5229
- * }
6040
+ * @default first
6041
+ * @enum {string}
5230
6042
  */
5231
- professional_profile_url?: {
5232
- alias: string;
6043
+ strategy?: "first";
6044
+ connections: {
6045
+ /** @enum {string} */
6046
+ type: "vault";
6047
+ connection: string;
6048
+ }[];
6049
+ } | null;
6050
+ config: {
6051
+ /** @default 10 */
6052
+ limit?: number;
6053
+ output_fields?: {
6054
+ /**
6055
+ * @default {
6056
+ * "alias": "",
6057
+ * "enabled": true
6058
+ * }
6059
+ */
6060
+ company_name?: {
6061
+ /** @default */
6062
+ alias?: string;
6063
+ /** @default true */
6064
+ enabled?: boolean;
6065
+ };
6066
+ /**
6067
+ * @default {
6068
+ * "alias": "",
6069
+ * "enabled": true
6070
+ * }
6071
+ */
6072
+ company_website_url?: {
6073
+ /** @default */
6074
+ alias?: string;
6075
+ /** @default true */
6076
+ enabled?: boolean;
6077
+ };
6078
+ /**
6079
+ * @default {
6080
+ * "alias": "",
6081
+ * "enabled": true
6082
+ * }
6083
+ */
6084
+ company_description?: {
6085
+ /** @default */
6086
+ alias?: string;
6087
+ /** @default true */
6088
+ enabled?: boolean;
6089
+ };
6090
+ /**
6091
+ * @default {
6092
+ * "alias": "",
6093
+ * "enabled": true
6094
+ * }
6095
+ */
6096
+ company_industry?: {
6097
+ /** @default */
6098
+ alias?: string;
6099
+ /** @default true */
6100
+ enabled?: boolean;
6101
+ };
6102
+ /**
6103
+ * @default {
6104
+ * "alias": "",
6105
+ * "enabled": true
6106
+ * }
6107
+ */
6108
+ headcount?: {
6109
+ /** @default */
6110
+ alias?: string;
6111
+ /** @default true */
6112
+ enabled?: boolean;
6113
+ };
6114
+ /**
6115
+ * @default {
6116
+ * "alias": "",
6117
+ * "enabled": true
6118
+ * }
6119
+ */
6120
+ exa_match_evaluation?: {
6121
+ /** @default */
6122
+ alias?: string;
6123
+ /** @default true */
6124
+ enabled?: boolean;
6125
+ };
6126
+ };
6127
+ filters: {
6128
+ query: string;
5233
6129
  };
5234
6130
  };
5235
- output_fields?: {
6131
+ } | {
6132
+ /** @enum {string} */
6133
+ search_id: "people:profiles:exa@1";
6134
+ connector?: {
5236
6135
  /**
5237
- * @default {
5238
- * "alias": "",
5239
- * "enabled": true
5240
- * }
6136
+ * @default first
6137
+ * @enum {string}
5241
6138
  */
5242
- mobile_number?: {
5243
- /** @default */
5244
- alias?: string;
5245
- /** @default true */
5246
- enabled?: boolean;
6139
+ strategy?: "first";
6140
+ connections: {
6141
+ /** @enum {string} */
6142
+ type: "vault";
6143
+ connection: string;
6144
+ }[];
6145
+ } | null;
6146
+ config: {
6147
+ /** @default 10 */
6148
+ limit?: number;
6149
+ output_fields?: {
6150
+ /**
6151
+ * @default {
6152
+ * "alias": "",
6153
+ * "enabled": true
6154
+ * }
6155
+ */
6156
+ name?: {
6157
+ /** @default */
6158
+ alias?: string;
6159
+ /** @default true */
6160
+ enabled?: boolean;
6161
+ };
6162
+ /**
6163
+ * @default {
6164
+ * "alias": "",
6165
+ * "enabled": true
6166
+ * }
6167
+ */
6168
+ profile_url?: {
6169
+ /** @default */
6170
+ alias?: string;
6171
+ /** @default true */
6172
+ enabled?: boolean;
6173
+ };
6174
+ /**
6175
+ * @default {
6176
+ * "alias": "",
6177
+ * "enabled": true
6178
+ * }
6179
+ */
6180
+ job_title?: {
6181
+ /** @default */
6182
+ alias?: string;
6183
+ /** @default true */
6184
+ enabled?: boolean;
6185
+ };
6186
+ /**
6187
+ * @default {
6188
+ * "alias": "",
6189
+ * "enabled": true
6190
+ * }
6191
+ */
6192
+ company_name?: {
6193
+ /** @default */
6194
+ alias?: string;
6195
+ /** @default true */
6196
+ enabled?: boolean;
6197
+ };
6198
+ /**
6199
+ * @default {
6200
+ * "alias": "",
6201
+ * "enabled": true
6202
+ * }
6203
+ */
6204
+ company_region?: {
6205
+ /** @default */
6206
+ alias?: string;
6207
+ /** @default true */
6208
+ enabled?: boolean;
6209
+ };
6210
+ /**
6211
+ * @default {
6212
+ * "alias": "",
6213
+ * "enabled": true
6214
+ * }
6215
+ */
6216
+ exa_match_evaluation?: {
6217
+ /** @default */
6218
+ alias?: string;
6219
+ /** @default true */
6220
+ enabled?: boolean;
6221
+ };
6222
+ };
6223
+ filters: {
6224
+ query: string;
5247
6225
  };
5248
6226
  };
5249
- };
5250
- };
5251
- PipesInputSchema: {
5252
- [key: string]: string | number | boolean | null | {
5253
- [key: string]: unknown;
5254
- } | unknown[] | {
5255
- value: string | number | boolean | null | {
5256
- [key: string]: unknown;
5257
- } | unknown[];
5258
- status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
5259
- reason?: {
5260
- code: string;
5261
- summary: string;
5262
- message: string;
5263
- } | null;
6227
+ } | {
5264
6228
  /** @enum {string} */
5265
- type?: "string" | "number" | "boolean" | "json" | "unknown";
5266
- /** @enum {string|null} */
5267
- format?: "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" | null;
5268
- claimed_by?: {
5269
- /** @enum {string|null} */
5270
- ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@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" | "people:identity:amplemarket@1" | "company:identity@2" | "people:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone: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:match:logodev@1" | "people:posts:crustdata@1" | "company:match:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "sheet:row:append:sheet@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | null;
5271
- config_hash: string | null;
5272
- };
5273
- resolved_by?: {
5274
- /** @enum {string|null} */
5275
- ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@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" | "people:identity:amplemarket@1" | "company:identity@2" | "people:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone: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:match:logodev@1" | "people:posts:crustdata@1" | "company:match:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "sheet:row:append:sheet@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
5276
- /** @enum {string|null} */
5277
- environment: "production" | "sandbox" | null;
5278
- config_hash: string | null;
5279
- input_hash: string | null;
6229
+ search_id: "people:profiles:icypeas@1";
6230
+ connector?: {
6231
+ /**
6232
+ * @default first
6233
+ * @enum {string}
6234
+ */
6235
+ strategy?: "first";
6236
+ connections: {
6237
+ /** @enum {string} */
6238
+ type: "vault";
6239
+ connection: string;
6240
+ }[];
5280
6241
  } | null;
5281
- /** @description A map of widgets associated with this field for UI display, keyed by widget type. */
5282
- widgets?: {
5283
- display_value?: {
5284
- label?: string;
5285
- };
5286
- entity_logo?: {
6242
+ config: {
6243
+ /** @default 100 */
6244
+ limit?: number;
6245
+ output_fields?: {
5287
6246
  /**
5288
- * Format: uri
5289
- * @description URL to the provider's logo image.
6247
+ * @default {
6248
+ * "alias": "",
6249
+ * "enabled": true
6250
+ * }
5290
6251
  */
5291
- image_url: string;
5292
- /** @description The name of the entity. */
5293
- entity: string;
5294
- };
5295
- location_indicator?: {
5296
- /** @description Country flag emoji. */
5297
- emoji: string;
5298
- };
5299
- avatar?: {
6252
+ name?: {
6253
+ /** @default */
6254
+ alias?: string;
6255
+ /** @default true */
6256
+ enabled?: boolean;
6257
+ };
6258
+ /**
6259
+ * @default {
6260
+ * "alias": "",
6261
+ * "enabled": true
6262
+ * }
6263
+ */
6264
+ job_title?: {
6265
+ /** @default */
6266
+ alias?: string;
6267
+ /** @default true */
6268
+ enabled?: boolean;
6269
+ };
6270
+ /**
6271
+ * @default {
6272
+ * "alias": "",
6273
+ * "enabled": true
6274
+ * }
6275
+ */
6276
+ profile_headline?: {
6277
+ /** @default */
6278
+ alias?: string;
6279
+ /** @default true */
6280
+ enabled?: boolean;
6281
+ };
6282
+ /**
6283
+ * @default {
6284
+ * "alias": "",
6285
+ * "enabled": true
6286
+ * }
6287
+ */
6288
+ company_website_url?: {
6289
+ /** @default */
6290
+ alias?: string;
6291
+ /** @default true */
6292
+ enabled?: boolean;
6293
+ };
6294
+ /**
6295
+ * @default {
6296
+ * "alias": "",
6297
+ * "enabled": true
6298
+ * }
6299
+ */
6300
+ company_profile_url?: {
6301
+ /** @default */
6302
+ alias?: string;
6303
+ /** @default true */
6304
+ enabled?: boolean;
6305
+ };
6306
+ /**
6307
+ * @default {
6308
+ * "alias": "",
6309
+ * "enabled": true
6310
+ * }
6311
+ */
6312
+ profile_url?: {
6313
+ /** @default */
6314
+ alias?: string;
6315
+ /** @default true */
6316
+ enabled?: boolean;
6317
+ };
5300
6318
  /**
5301
- * Format: uri
5302
- * @description URL to the provider's logo image.
6319
+ * @default {
6320
+ * "alias": "",
6321
+ * "enabled": true
6322
+ * }
5303
6323
  */
5304
- image_url: string;
5305
- /** @description The name of the avatar owner. */
5306
- name: string;
5307
- };
5308
- waterfall?: {
5309
- attempted_providers: {
5310
- /** @enum {string} */
5311
- provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket";
5312
- }[];
5313
- available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket")[];
5314
- /** @enum {string} */
5315
- successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket";
5316
- };
5317
- icon?: {
5318
- /** @enum {string} */
5319
- key: "linkedin" | "job";
5320
- };
5321
- action_summary?: {
5322
- /** @enum {string} */
5323
- result_status: "completed" | "failed";
5324
- };
5325
- sources?: {
5326
- list: {
5327
- source: string;
5328
- description?: string;
5329
- url: string;
5330
- }[];
5331
- };
5332
- confidence?: {
5333
- numeric: number;
6324
+ icypeas_person_match?: {
6325
+ /** @default */
6326
+ alias?: string;
6327
+ /** @default true */
6328
+ enabled?: boolean;
6329
+ };
5334
6330
  };
5335
- };
5336
- };
5337
- };
5338
- SearchesResponseSchema: {
5339
- id: string;
5340
- /** @enum {string} */
5341
- status: "completed" | "failed" | "pending" | "processing";
5342
- results: {
5343
- [key: string]: {
5344
- value: string | number | boolean | null | {
5345
- [key: string]: unknown;
5346
- } | unknown[];
5347
- status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
5348
- /** @enum {string} */
5349
- type?: "string" | "number" | "boolean" | "json" | "unknown";
5350
- /** @enum {string|null} */
5351
- format?: "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" | null;
5352
- resolved_by?: {
5353
- /** @enum {string|null} */
5354
- ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@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" | "people:identity:amplemarket@1" | "company:identity@2" | "people:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone: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:match:logodev@1" | "people:posts:crustdata@1" | "company:match:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "sheet:row:append:sheet@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
5355
- /** @enum {string|null} */
5356
- environment: "production" | "sandbox" | null;
5357
- config_hash: string | null;
5358
- input_hash: string | null;
5359
- } | null;
5360
- /** @description A map of widgets associated with this field for UI display, keyed by widget type. */
5361
- widgets?: {
5362
- display_value?: {
5363
- label?: string;
6331
+ filters: {
6332
+ firstname?: {
6333
+ /** @default [] */
6334
+ include?: string[];
6335
+ /** @default [] */
6336
+ exclude?: string[];
5364
6337
  };
5365
- entity_logo?: {
5366
- /**
5367
- * Format: uri
5368
- * @description URL to the provider's logo image.
5369
- */
5370
- image_url: string;
5371
- /** @description The name of the entity. */
5372
- entity: string;
6338
+ lastname?: {
6339
+ /** @default [] */
6340
+ include?: string[];
6341
+ /** @default [] */
6342
+ exclude?: string[];
5373
6343
  };
5374
- location_indicator?: {
5375
- /** @description Country flag emoji. */
5376
- emoji: string;
6344
+ currentJobTitle?: {
6345
+ /** @default [] */
6346
+ include?: string[];
6347
+ /** @default [] */
6348
+ exclude?: string[];
5377
6349
  };
5378
- avatar?: {
5379
- /**
5380
- * Format: uri
5381
- * @description URL to the provider's logo image.
5382
- */
5383
- image_url: string;
5384
- /** @description The name of the avatar owner. */
5385
- name: string;
6350
+ currentEmployersWebsiteUrls?: {
6351
+ /** @default [] */
6352
+ include?: string[];
6353
+ /** @default [] */
6354
+ exclude?: string[];
5386
6355
  };
5387
- waterfall?: {
5388
- attempted_providers: {
5389
- /** @enum {string} */
5390
- provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket";
5391
- }[];
5392
- available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket")[];
5393
- /** @enum {string} */
5394
- successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket";
6356
+ pastEmployersWebsiteUrls?: {
6357
+ /** @default [] */
6358
+ include?: string[];
6359
+ /** @default [] */
6360
+ exclude?: string[];
5395
6361
  };
5396
- icon?: {
5397
- /** @enum {string} */
5398
- key: "linkedin" | "job";
6362
+ pastJobTitle?: {
6363
+ /** @default [] */
6364
+ include?: string[];
6365
+ /** @default [] */
6366
+ exclude?: string[];
5399
6367
  };
5400
- action_summary?: {
5401
- /** @enum {string} */
5402
- result_status: "completed" | "failed";
6368
+ currentCompanyName?: {
6369
+ /** @default [] */
6370
+ include?: string[];
6371
+ /** @default [] */
6372
+ exclude?: string[];
5403
6373
  };
5404
- sources?: {
5405
- list: {
5406
- source: string;
5407
- description?: string;
5408
- url: string;
5409
- }[];
6374
+ pastCompanyName?: {
6375
+ /** @default [] */
6376
+ include?: string[];
6377
+ /** @default [] */
6378
+ exclude?: string[];
5410
6379
  };
5411
- confidence?: {
5412
- numeric: number;
6380
+ school?: {
6381
+ /** @default [] */
6382
+ include?: string[];
6383
+ /** @default [] */
6384
+ exclude?: string[];
5413
6385
  };
5414
- };
5415
- } | null;
5416
- }[];
5417
- search_statuses: {
5418
- search: {
5419
- /** @enum {string} */
5420
- ref: "people:profiles:icypeas@1" | "companies:profiles:icypeas@1" | "people:profiles:clado@1" | "people:profiles:clado@2" | "people:employees:leadmagic@1" | "companies:profiles:exa@1" | "people:profiles:exa@1" | "companies:profiles:crustdata@1" | "people:profiles:crustdata@1";
5421
- };
5422
- /** @enum {string} */
5423
- status: "pending" | "processing" | "failed" | "completed";
5424
- errors: {
5425
- code: string;
5426
- message: string;
5427
- path?: string;
5428
- }[];
5429
- meta: {
5430
- providers?: {
5431
- clado?: {
5432
- pagination: {
5433
- search_id?: string;
5434
- offset?: number;
5435
- };
6386
+ location?: {
6387
+ /** @default [] */
6388
+ include?: string[];
6389
+ /** @default [] */
6390
+ exclude?: string[];
5436
6391
  };
5437
- crustdata?: {
5438
- pagination: {
5439
- cursor: string | null;
5440
- };
6392
+ languages?: {
6393
+ /** @default [] */
6394
+ include?: string[];
6395
+ /** @default [] */
6396
+ exclude?: string[];
6397
+ };
6398
+ skills?: {
6399
+ /** @default [] */
6400
+ include?: string[];
6401
+ /** @default [] */
6402
+ exclude?: string[];
6403
+ };
6404
+ keyword?: {
6405
+ /** @default [] */
6406
+ include?: string[];
6407
+ /** @default [] */
6408
+ exclude?: string[];
5441
6409
  };
5442
6410
  };
5443
6411
  };
5444
- }[];
5445
- organizationId: string;
5446
- };
5447
- SearchesRequestSchema: {
5448
- /**
5449
- * @default {
5450
- * "dedup": {
5451
- * "strategy": "default"
5452
- * },
5453
- * "environment": "production",
5454
- * "widgets": {
5455
- * "enabled": false
5456
- * }
5457
- * }
5458
- */
5459
- config?: {
5460
- /**
5461
- * @default {
5462
- * "strategy": null
5463
- * }
5464
- */
5465
- dedup?: {
5466
- /** @enum {string|null} */
5467
- strategy: "default" | null;
5468
- };
5469
- /**
5470
- * @default production
5471
- * @enum {string}
5472
- */
5473
- environment?: "production" | "sandbox";
5474
- /**
5475
- * @default {
5476
- * "enabled": false
5477
- * }
5478
- */
5479
- widgets?: {
5480
- /** @default false */
5481
- enabled?: boolean;
5482
- };
5483
- };
5484
- searches: ({
6412
+ } | {
5485
6413
  /** @enum {string} */
5486
- search_id: "people:profiles:crustdata@1";
6414
+ search_id: "companies:profiles:icypeas@1";
5487
6415
  connector?: {
5488
6416
  /**
5489
6417
  * @default first
@@ -5499,7 +6427,6 @@ export interface components {
5499
6427
  config: {
5500
6428
  /** @default 100 */
5501
6429
  limit?: number;
5502
- cursor: string;
5503
6430
  output_fields?: {
5504
6431
  /**
5505
6432
  * @default {
@@ -5507,7 +6434,7 @@ export interface components {
5507
6434
  * "enabled": true
5508
6435
  * }
5509
6436
  */
5510
- name?: {
6437
+ company_name?: {
5511
6438
  /** @default */
5512
6439
  alias?: string;
5513
6440
  /** @default true */
@@ -5519,7 +6446,7 @@ export interface components {
5519
6446
  * "enabled": true
5520
6447
  * }
5521
6448
  */
5522
- company_website_url?: {
6449
+ company_industry?: {
5523
6450
  /** @default */
5524
6451
  alias?: string;
5525
6452
  /** @default true */
@@ -5531,7 +6458,7 @@ export interface components {
5531
6458
  * "enabled": true
5532
6459
  * }
5533
6460
  */
5534
- profile_url?: {
6461
+ company_description?: {
5535
6462
  /** @default */
5536
6463
  alias?: string;
5537
6464
  /** @default true */
@@ -5543,7 +6470,7 @@ export interface components {
5543
6470
  * "enabled": true
5544
6471
  * }
5545
6472
  */
5546
- job_title?: {
6473
+ company_website_url?: {
5547
6474
  /** @default */
5548
6475
  alias?: string;
5549
6476
  /** @default true */
@@ -5555,103 +6482,19 @@ export interface components {
5555
6482
  * "enabled": true
5556
6483
  * }
5557
6484
  */
5558
- crustdata_person_match?: {
6485
+ headcount?: {
5559
6486
  /** @default */
5560
6487
  alias?: string;
5561
6488
  /** @default true */
5562
6489
  enabled?: boolean;
5563
6490
  };
5564
- };
5565
- filters: {
5566
- locations?: string[];
5567
- /** @default [] */
5568
- profile_headline_keywords?: string[];
5569
- /** @default [] */
5570
- profile_summary_keywords?: string[];
5571
- profile_languages?: ("Arabic" | "English" | "Spanish" | "Portuguese" | "Chinese" | "French" | "Italian" | "Russian" | "German" | "Dutch" | "Turkish" | "Tagalog" | "Polish" | "Korean" | "Japanese" | "Malay" | "Norwegian" | "Danish" | "Romanian" | "Swedish" | "Bahasa Indonesia" | "Czech")[];
5572
- languages?: string[];
5573
- skills?: string[];
5574
- years_of_experience?: ("Less than 1 year" | "1 to 2 years" | "3 to 5 years" | "6 to 10 years" | "More than 10 years")[];
5575
- /**
5576
- * @default {
5577
- * "include": [],
5578
- * "exclude": []
5579
- * }
5580
- */
5581
- current_seniority_levels?: {
5582
- /** @default [] */
5583
- include?: string[];
5584
- /** @default [] */
5585
- exclude?: string[];
5586
- };
5587
- /** @default [] */
5588
- current_employers?: string[];
5589
- /** @default [] */
5590
- current_employers_website_urls?: string[];
5591
- /** @default [] */
5592
- current_job_titles?: string[];
5593
- current_employers_linkedin_industries?: string[];
5594
- years_at_current_company?: ("Less than 1 year" | "1 to 2 years" | "3 to 5 years" | "6 to 10 years" | "More than 10 years")[];
5595
- /** @default [] */
5596
- previous_employers_website_urls?: string[];
5597
- /**
5598
- * @default {
5599
- * "include": [],
5600
- * "exclude": []
5601
- * }
5602
- */
5603
- previous_seniority_levels?: {
5604
- /** @default [] */
5605
- include?: string[];
5606
- /** @default [] */
5607
- exclude?: string[];
5608
- };
5609
- /** @default [] */
5610
- previous_employers?: string[];
5611
- /** @default [] */
5612
- previous_job_titles?: string[];
5613
- previous_employers_linkedin_industries?: string[];
5614
- /** @default [] */
5615
- certifications?: string[];
5616
- /** @default [] */
5617
- honors?: string[];
5618
- /** @default null */
5619
- recently_changed_jobs?: boolean | null;
5620
- fields_of_study?: string[];
5621
- degree_names?: string[];
5622
- school_names?: string[];
5623
- current_school_names?: string[];
5624
- /** @default [] */
5625
- extracurricular_activities?: string[];
5626
- };
5627
- };
5628
- } | {
5629
- /** @enum {string} */
5630
- search_id: "companies:profiles:crustdata@1";
5631
- connector?: {
5632
- /**
5633
- * @default first
5634
- * @enum {string}
5635
- */
5636
- strategy?: "first";
5637
- connections: {
5638
- /** @enum {string} */
5639
- type: "vault";
5640
- connection: string;
5641
- }[];
5642
- } | null;
5643
- config: {
5644
- /** @default 100 */
5645
- limit?: number;
5646
- cursor: string;
5647
- output_fields?: {
5648
6491
  /**
5649
6492
  * @default {
5650
6493
  * "alias": "",
5651
6494
  * "enabled": true
5652
6495
  * }
5653
6496
  */
5654
- company_name?: {
6497
+ company_region?: {
5655
6498
  /** @default */
5656
6499
  alias?: string;
5657
6500
  /** @default true */
@@ -5663,7 +6506,7 @@ export interface components {
5663
6506
  * "enabled": true
5664
6507
  * }
5665
6508
  */
5666
- company_website_url?: {
6509
+ company_profile_url?: {
5667
6510
  /** @default */
5668
6511
  alias?: string;
5669
6512
  /** @default true */
@@ -5675,80 +6518,77 @@ export interface components {
5675
6518
  * "enabled": true
5676
6519
  * }
5677
6520
  */
5678
- company_description?: {
6521
+ icypeas_company_match?: {
5679
6522
  /** @default */
5680
6523
  alias?: string;
5681
6524
  /** @default true */
5682
6525
  enabled?: boolean;
5683
6526
  };
5684
- /**
5685
- * @default {
5686
- * "alias": "",
5687
- * "enabled": true
5688
- * }
5689
- */
5690
- company_profile_url?: {
5691
- /** @default */
5692
- alias?: string;
5693
- /** @default true */
5694
- enabled?: boolean;
6527
+ };
6528
+ filters: {
6529
+ name?: {
6530
+ /** @default [] */
6531
+ include?: string[];
6532
+ /** @default [] */
6533
+ exclude?: string[];
5695
6534
  };
5696
6535
  /**
5697
6536
  * @default {
5698
- * "alias": "",
5699
- * "enabled": true
6537
+ * "include": [],
6538
+ * "exclude": []
5700
6539
  * }
5701
6540
  */
5702
- crustdata_company_match?: {
5703
- /** @default */
5704
- alias?: string;
5705
- /** @default true */
5706
- enabled?: boolean;
6541
+ type?: {
6542
+ /** @default [] */
6543
+ include?: string[];
6544
+ /** @default [] */
6545
+ exclude?: string[];
5707
6546
  };
5708
- };
5709
- filters: {
5710
- hq_locations?: string[];
5711
- crunchbase_categories?: string[];
5712
- crunchbase_investors?: string[];
5713
- tracxn_investors?: string[];
5714
- company_types?: ("Public Company" | "Privately Held" | "Non Profit" | "Educational Institution" | "Partnership" | "Self Employed" | "Self Owned" | "Government Agency")[];
5715
- linkedin_industries?: string[];
5716
- markets?: string[];
5717
- linkedin_categories?: string[];
5718
- headcount?: ("1-10" | "11-50" | "51-200" | "201-500" | "501-1,000" | "1,001-5,000" | "5,001-10,000" | "10,001+")[];
5719
- headcount_growth_last_6m_in_percent?: ("0-10%" | "10-20%" | "20-50%" | "50-70%" | "70%+")[];
5720
6547
  /**
5721
6548
  * @default {
5722
- * "from": null,
5723
- * "to": null
6549
+ * "include": [],
6550
+ * "exclude": []
5724
6551
  * }
5725
6552
  */
5726
- revenue_in_usd?: {
5727
- from?: number | null;
5728
- to?: number | null;
6553
+ industry?: {
6554
+ /** @default [] */
6555
+ include?: string[];
6556
+ /** @default [] */
6557
+ exclude?: string[];
6558
+ };
6559
+ location?: {
6560
+ /** @default [] */
6561
+ include?: string[];
6562
+ /** @default [] */
6563
+ exclude?: string[];
5729
6564
  };
5730
- last_funding_type?: ("Series A" | "Series B" | "Series C" | "Series D")[];
5731
6565
  /**
5732
6566
  * @default {
5733
6567
  * "from": null,
5734
6568
  * "to": null
5735
6569
  * }
5736
6570
  */
5737
- last_funding_amount?: {
6571
+ headcount?: {
5738
6572
  from?: number | null;
5739
6573
  to?: number | null;
5740
6574
  };
5741
- number_of_followers?: ("1-500" | "501-1000" | "1001-5000" | "5001-10000" | "10001-30000" | "30000+")[];
5742
- follower_growth_last_6m_in_percent?: ("0-10%" | "10-20%" | "20-50%" | "50-70%" | "70%+")[];
5743
- /** @default [] */
5744
- profile_summary_keywords?: string[];
5745
- /** @default [] */
5746
- competitor_websites?: string[];
6575
+ urn?: {
6576
+ /** @default [] */
6577
+ include?: string[];
6578
+ /** @default [] */
6579
+ exclude?: string[];
6580
+ };
6581
+ lid?: {
6582
+ /** @default [] */
6583
+ include?: string[];
6584
+ /** @default [] */
6585
+ exclude?: string[];
6586
+ };
5747
6587
  };
5748
6588
  };
5749
6589
  } | {
5750
6590
  /** @enum {string} */
5751
- search_id: "companies:profiles:exa@1";
6591
+ search_id: "people:employees:leadmagic@1";
5752
6592
  connector?: {
5753
6593
  /**
5754
6594
  * @default first
@@ -5762,7 +6602,7 @@ export interface components {
5762
6602
  }[];
5763
6603
  } | null;
5764
6604
  config: {
5765
- /** @default 10 */
6605
+ /** @default 50 */
5766
6606
  limit?: number;
5767
6607
  output_fields?: {
5768
6608
  /**
@@ -5771,31 +6611,7 @@ export interface components {
5771
6611
  * "enabled": true
5772
6612
  * }
5773
6613
  */
5774
- company_name?: {
5775
- /** @default */
5776
- alias?: string;
5777
- /** @default true */
5778
- enabled?: boolean;
5779
- };
5780
- /**
5781
- * @default {
5782
- * "alias": "",
5783
- * "enabled": true
5784
- * }
5785
- */
5786
- company_website_url?: {
5787
- /** @default */
5788
- alias?: string;
5789
- /** @default true */
5790
- enabled?: boolean;
5791
- };
5792
- /**
5793
- * @default {
5794
- * "alias": "",
5795
- * "enabled": true
5796
- * }
5797
- */
5798
- company_description?: {
6614
+ name?: {
5799
6615
  /** @default */
5800
6616
  alias?: string;
5801
6617
  /** @default true */
@@ -5807,7 +6623,7 @@ export interface components {
5807
6623
  * "enabled": true
5808
6624
  * }
5809
6625
  */
5810
- company_industry?: {
6626
+ company_name?: {
5811
6627
  /** @default */
5812
6628
  alias?: string;
5813
6629
  /** @default true */
@@ -5819,7 +6635,7 @@ export interface components {
5819
6635
  * "enabled": true
5820
6636
  * }
5821
6637
  */
5822
- headcount?: {
6638
+ company_website_url?: {
5823
6639
  /** @default */
5824
6640
  alias?: string;
5825
6641
  /** @default true */
@@ -5831,7 +6647,7 @@ export interface components {
5831
6647
  * "enabled": true
5832
6648
  * }
5833
6649
  */
5834
- exa_match_evaluation?: {
6650
+ job_title?: {
5835
6651
  /** @default */
5836
6652
  alias?: string;
5837
6653
  /** @default true */
@@ -5839,12 +6655,12 @@ export interface components {
5839
6655
  };
5840
6656
  };
5841
6657
  filters: {
5842
- query: string;
6658
+ company_website_url: string;
5843
6659
  };
5844
6660
  };
5845
6661
  } | {
5846
6662
  /** @enum {string} */
5847
- search_id: "people:profiles:exa@1";
6663
+ search_id: "people:profiles:clado@1";
5848
6664
  connector?: {
5849
6665
  /**
5850
6666
  * @default first
@@ -5858,7 +6674,7 @@ export interface components {
5858
6674
  }[];
5859
6675
  } | null;
5860
6676
  config: {
5861
- /** @default 10 */
6677
+ /** @default 20 */
5862
6678
  limit?: number;
5863
6679
  output_fields?: {
5864
6680
  /**
@@ -5879,7 +6695,7 @@ export interface components {
5879
6695
  * "enabled": true
5880
6696
  * }
5881
6697
  */
5882
- profile_url?: {
6698
+ job_title?: {
5883
6699
  /** @default */
5884
6700
  alias?: string;
5885
6701
  /** @default true */
@@ -5891,7 +6707,7 @@ export interface components {
5891
6707
  * "enabled": true
5892
6708
  * }
5893
6709
  */
5894
- job_title?: {
6710
+ company_profile_url?: {
5895
6711
  /** @default */
5896
6712
  alias?: string;
5897
6713
  /** @default true */
@@ -5915,7 +6731,7 @@ export interface components {
5915
6731
  * "enabled": true
5916
6732
  * }
5917
6733
  */
5918
- company_region?: {
6734
+ profile_url?: {
5919
6735
  /** @default */
5920
6736
  alias?: string;
5921
6737
  /** @default true */
@@ -5927,7 +6743,7 @@ export interface components {
5927
6743
  * "enabled": true
5928
6744
  * }
5929
6745
  */
5930
- exa_match_evaluation?: {
6746
+ clado_person_match?: {
5931
6747
  /** @default */
5932
6748
  alias?: string;
5933
6749
  /** @default true */
@@ -5940,7 +6756,7 @@ export interface components {
5940
6756
  };
5941
6757
  } | {
5942
6758
  /** @enum {string} */
5943
- search_id: "people:profiles:icypeas@1";
6759
+ search_id: "people:profiles:clado@2";
5944
6760
  connector?: {
5945
6761
  /**
5946
6762
  * @default first
@@ -5954,28 +6770,19 @@ export interface components {
5954
6770
  }[];
5955
6771
  } | null;
5956
6772
  config: {
5957
- /** @default 100 */
5958
- limit?: number;
5959
- output_fields?: {
5960
- /**
5961
- * @default {
5962
- * "alias": "",
5963
- * "enabled": true
5964
- * }
5965
- */
5966
- name?: {
5967
- /** @default */
5968
- alias?: string;
5969
- /** @default true */
5970
- enabled?: boolean;
5971
- };
6773
+ /** @default 100 */
6774
+ limit?: number;
6775
+ /** @default */
6776
+ search_id?: string;
6777
+ offset?: number | null;
6778
+ output_fields?: {
5972
6779
  /**
5973
6780
  * @default {
5974
6781
  * "alias": "",
5975
6782
  * "enabled": true
5976
6783
  * }
5977
6784
  */
5978
- job_title?: {
6785
+ name?: {
5979
6786
  /** @default */
5980
6787
  alias?: string;
5981
6788
  /** @default true */
@@ -5987,7 +6794,7 @@ export interface components {
5987
6794
  * "enabled": true
5988
6795
  * }
5989
6796
  */
5990
- profile_headline?: {
6797
+ job_title?: {
5991
6798
  /** @default */
5992
6799
  alias?: string;
5993
6800
  /** @default true */
@@ -5999,7 +6806,7 @@ export interface components {
5999
6806
  * "enabled": true
6000
6807
  * }
6001
6808
  */
6002
- company_website_url?: {
6809
+ company_profile_url?: {
6003
6810
  /** @default */
6004
6811
  alias?: string;
6005
6812
  /** @default true */
@@ -6011,7 +6818,7 @@ export interface components {
6011
6818
  * "enabled": true
6012
6819
  * }
6013
6820
  */
6014
- company_profile_url?: {
6821
+ company_name?: {
6015
6822
  /** @default */
6016
6823
  alias?: string;
6017
6824
  /** @default true */
@@ -6035,274 +6842,424 @@ export interface components {
6035
6842
  * "enabled": true
6036
6843
  * }
6037
6844
  */
6038
- icypeas_person_match?: {
6845
+ clado_person_match_v2?: {
6039
6846
  /** @default */
6040
6847
  alias?: string;
6041
6848
  /** @default true */
6042
6849
  enabled?: boolean;
6043
6850
  };
6044
6851
  };
6045
- filters: {
6046
- firstname?: {
6047
- /** @default [] */
6048
- include?: string[];
6049
- /** @default [] */
6050
- exclude?: string[];
6051
- };
6052
- lastname?: {
6053
- /** @default [] */
6054
- include?: string[];
6055
- /** @default [] */
6056
- exclude?: string[];
6057
- };
6058
- currentJobTitle?: {
6059
- /** @default [] */
6060
- include?: string[];
6061
- /** @default [] */
6062
- exclude?: string[];
6063
- };
6064
- currentEmployersWebsiteUrls?: {
6065
- /** @default [] */
6066
- include?: string[];
6067
- /** @default [] */
6068
- exclude?: string[];
6069
- };
6070
- pastEmployersWebsiteUrls?: {
6071
- /** @default [] */
6072
- include?: string[];
6073
- /** @default [] */
6074
- exclude?: string[];
6075
- };
6076
- pastJobTitle?: {
6077
- /** @default [] */
6078
- include?: string[];
6079
- /** @default [] */
6080
- exclude?: string[];
6081
- };
6082
- currentCompanyName?: {
6083
- /** @default [] */
6084
- include?: string[];
6085
- /** @default [] */
6086
- exclude?: string[];
6087
- };
6088
- pastCompanyName?: {
6089
- /** @default [] */
6090
- include?: string[];
6091
- /** @default [] */
6092
- exclude?: string[];
6093
- };
6094
- school?: {
6095
- /** @default [] */
6096
- include?: string[];
6097
- /** @default [] */
6098
- exclude?: string[];
6099
- };
6100
- location?: {
6101
- /** @default [] */
6102
- include?: string[];
6103
- /** @default [] */
6104
- exclude?: string[];
6105
- };
6106
- languages?: {
6107
- /** @default [] */
6108
- include?: string[];
6109
- /** @default [] */
6110
- exclude?: string[];
6111
- };
6112
- skills?: {
6113
- /** @default [] */
6114
- include?: string[];
6115
- /** @default [] */
6116
- exclude?: string[];
6117
- };
6118
- keyword?: {
6119
- /** @default [] */
6120
- include?: string[];
6121
- /** @default [] */
6122
- exclude?: string[];
6123
- };
6852
+ filters?: {
6853
+ /** @default */
6854
+ query?: string;
6855
+ };
6856
+ };
6857
+ })[];
6858
+ };
6859
+ SearchPayloadSchema: {
6860
+ /** @enum {string} */
6861
+ search_id: "people:profiles:crustdata@1";
6862
+ connector?: {
6863
+ /**
6864
+ * @default first
6865
+ * @enum {string}
6866
+ */
6867
+ strategy?: "first";
6868
+ connections: {
6869
+ /** @enum {string} */
6870
+ type: "vault";
6871
+ connection: string;
6872
+ }[];
6873
+ } | null;
6874
+ config: {
6875
+ /**
6876
+ * @default {
6877
+ * "limit": 100,
6878
+ * "cursor": null
6879
+ * }
6880
+ */
6881
+ pagination?: {
6882
+ /** @default 100 */
6883
+ limit?: number | null;
6884
+ /** @default null */
6885
+ cursor?: string | null;
6886
+ };
6887
+ output_fields?: {
6888
+ /**
6889
+ * @default {
6890
+ * "alias": "",
6891
+ * "enabled": true
6892
+ * }
6893
+ */
6894
+ name?: {
6895
+ /** @default */
6896
+ alias?: string;
6897
+ /** @default true */
6898
+ enabled?: boolean;
6899
+ };
6900
+ /**
6901
+ * @default {
6902
+ * "alias": "",
6903
+ * "enabled": true
6904
+ * }
6905
+ */
6906
+ company_website_url?: {
6907
+ /** @default */
6908
+ alias?: string;
6909
+ /** @default true */
6910
+ enabled?: boolean;
6911
+ };
6912
+ /**
6913
+ * @default {
6914
+ * "alias": "",
6915
+ * "enabled": true
6916
+ * }
6917
+ */
6918
+ profile_url?: {
6919
+ /** @default */
6920
+ alias?: string;
6921
+ /** @default true */
6922
+ enabled?: boolean;
6923
+ };
6924
+ /**
6925
+ * @default {
6926
+ * "alias": "",
6927
+ * "enabled": true
6928
+ * }
6929
+ */
6930
+ job_title?: {
6931
+ /** @default */
6932
+ alias?: string;
6933
+ /** @default true */
6934
+ enabled?: boolean;
6935
+ };
6936
+ /**
6937
+ * @default {
6938
+ * "alias": "",
6939
+ * "enabled": true
6940
+ * }
6941
+ */
6942
+ crustdata_person_match?: {
6943
+ /** @default */
6944
+ alias?: string;
6945
+ /** @default true */
6946
+ enabled?: boolean;
6947
+ };
6948
+ };
6949
+ filters: {
6950
+ locations?: string[];
6951
+ /** @default [] */
6952
+ profile_headline_keywords?: string[];
6953
+ /** @default [] */
6954
+ profile_summary_keywords?: string[];
6955
+ profile_languages?: ("Arabic" | "English" | "Spanish" | "Portuguese" | "Chinese" | "French" | "Italian" | "Russian" | "German" | "Dutch" | "Turkish" | "Tagalog" | "Polish" | "Korean" | "Japanese" | "Malay" | "Norwegian" | "Danish" | "Romanian" | "Swedish" | "Bahasa Indonesia" | "Czech")[];
6956
+ languages?: string[];
6957
+ skills?: string[];
6958
+ years_of_experience?: ("Less than 1 year" | "1 to 2 years" | "3 to 5 years" | "6 to 10 years" | "More than 10 years")[];
6959
+ /**
6960
+ * @default {
6961
+ * "include": [],
6962
+ * "exclude": []
6963
+ * }
6964
+ */
6965
+ current_seniority_levels?: {
6966
+ /** @default [] */
6967
+ include?: string[];
6968
+ /** @default [] */
6969
+ exclude?: string[];
6970
+ };
6971
+ /** @default [] */
6972
+ current_employers?: string[];
6973
+ /** @default [] */
6974
+ current_employers_website_urls?: string[];
6975
+ /** @default [] */
6976
+ current_job_titles?: string[];
6977
+ current_employers_linkedin_industries?: string[];
6978
+ years_at_current_company?: ("Less than 1 year" | "1 to 2 years" | "3 to 5 years" | "6 to 10 years" | "More than 10 years")[];
6979
+ /** @default [] */
6980
+ previous_employers_website_urls?: string[];
6981
+ /**
6982
+ * @default {
6983
+ * "include": [],
6984
+ * "exclude": []
6985
+ * }
6986
+ */
6987
+ previous_seniority_levels?: {
6988
+ /** @default [] */
6989
+ include?: string[];
6990
+ /** @default [] */
6991
+ exclude?: string[];
6992
+ };
6993
+ /** @default [] */
6994
+ previous_employers?: string[];
6995
+ /** @default [] */
6996
+ previous_job_titles?: string[];
6997
+ previous_employers_linkedin_industries?: string[];
6998
+ /** @default [] */
6999
+ certifications?: string[];
7000
+ /** @default [] */
7001
+ honors?: string[];
7002
+ /** @default null */
7003
+ recently_changed_jobs?: boolean | null;
7004
+ fields_of_study?: string[];
7005
+ degree_names?: string[];
7006
+ school_names?: string[];
7007
+ current_school_names?: string[];
7008
+ /** @default [] */
7009
+ extracurricular_activities?: string[];
7010
+ };
7011
+ };
7012
+ } | {
7013
+ /** @enum {string} */
7014
+ search_id: "companies:profiles:crustdata@1";
7015
+ connector?: {
7016
+ /**
7017
+ * @default first
7018
+ * @enum {string}
7019
+ */
7020
+ strategy?: "first";
7021
+ connections: {
7022
+ /** @enum {string} */
7023
+ type: "vault";
7024
+ connection: string;
7025
+ }[];
7026
+ } | null;
7027
+ config: {
7028
+ /**
7029
+ * @default {
7030
+ * "limit": 100,
7031
+ * "cursor": null
7032
+ * }
7033
+ */
7034
+ pagination?: {
7035
+ /** @default 100 */
7036
+ limit?: number | null;
7037
+ /** @default null */
7038
+ cursor?: string | null;
7039
+ };
7040
+ output_fields?: {
7041
+ /**
7042
+ * @default {
7043
+ * "alias": "",
7044
+ * "enabled": true
7045
+ * }
7046
+ */
7047
+ company_name?: {
7048
+ /** @default */
7049
+ alias?: string;
7050
+ /** @default true */
7051
+ enabled?: boolean;
7052
+ };
7053
+ /**
7054
+ * @default {
7055
+ * "alias": "",
7056
+ * "enabled": true
7057
+ * }
7058
+ */
7059
+ company_website_url?: {
7060
+ /** @default */
7061
+ alias?: string;
7062
+ /** @default true */
7063
+ enabled?: boolean;
7064
+ };
7065
+ /**
7066
+ * @default {
7067
+ * "alias": "",
7068
+ * "enabled": true
7069
+ * }
7070
+ */
7071
+ company_description?: {
7072
+ /** @default */
7073
+ alias?: string;
7074
+ /** @default true */
7075
+ enabled?: boolean;
7076
+ };
7077
+ /**
7078
+ * @default {
7079
+ * "alias": "",
7080
+ * "enabled": true
7081
+ * }
7082
+ */
7083
+ company_profile_url?: {
7084
+ /** @default */
7085
+ alias?: string;
7086
+ /** @default true */
7087
+ enabled?: boolean;
7088
+ };
7089
+ /**
7090
+ * @default {
7091
+ * "alias": "",
7092
+ * "enabled": true
7093
+ * }
7094
+ */
7095
+ crustdata_company_match?: {
7096
+ /** @default */
7097
+ alias?: string;
7098
+ /** @default true */
7099
+ enabled?: boolean;
6124
7100
  };
6125
7101
  };
6126
- } | {
6127
- /** @enum {string} */
6128
- search_id: "companies:profiles:icypeas@1";
6129
- connector?: {
7102
+ filters: {
7103
+ hq_locations?: string[];
7104
+ crunchbase_categories?: string[];
7105
+ crunchbase_investors?: string[];
7106
+ tracxn_investors?: string[];
7107
+ company_types?: ("Public Company" | "Privately Held" | "Non Profit" | "Educational Institution" | "Partnership" | "Self Employed" | "Self Owned" | "Government Agency")[];
7108
+ linkedin_industries?: string[];
7109
+ markets?: string[];
7110
+ linkedin_categories?: string[];
7111
+ headcount?: ("1-10" | "11-50" | "51-200" | "201-500" | "501-1,000" | "1,001-5,000" | "5,001-10,000" | "10,001+")[];
7112
+ headcount_growth_last_6m_in_percent?: ("0-10%" | "10-20%" | "20-50%" | "50-70%" | "70%+")[];
6130
7113
  /**
6131
- * @default first
6132
- * @enum {string}
7114
+ * @default {
7115
+ * "from": null,
7116
+ * "to": null
7117
+ * }
6133
7118
  */
6134
- strategy?: "first";
6135
- connections: {
6136
- /** @enum {string} */
6137
- type: "vault";
6138
- connection: string;
6139
- }[];
6140
- } | null;
6141
- config: {
6142
- /** @default 100 */
6143
- limit?: number;
6144
- output_fields?: {
6145
- /**
6146
- * @default {
6147
- * "alias": "",
6148
- * "enabled": true
6149
- * }
6150
- */
6151
- company_name?: {
6152
- /** @default */
6153
- alias?: string;
6154
- /** @default true */
6155
- enabled?: boolean;
6156
- };
6157
- /**
6158
- * @default {
6159
- * "alias": "",
6160
- * "enabled": true
6161
- * }
6162
- */
6163
- company_industry?: {
6164
- /** @default */
6165
- alias?: string;
6166
- /** @default true */
6167
- enabled?: boolean;
6168
- };
6169
- /**
6170
- * @default {
6171
- * "alias": "",
6172
- * "enabled": true
6173
- * }
6174
- */
6175
- company_description?: {
6176
- /** @default */
6177
- alias?: string;
6178
- /** @default true */
6179
- enabled?: boolean;
6180
- };
6181
- /**
6182
- * @default {
6183
- * "alias": "",
6184
- * "enabled": true
6185
- * }
6186
- */
6187
- company_website_url?: {
6188
- /** @default */
6189
- alias?: string;
6190
- /** @default true */
6191
- enabled?: boolean;
6192
- };
6193
- /**
6194
- * @default {
6195
- * "alias": "",
6196
- * "enabled": true
6197
- * }
6198
- */
6199
- headcount?: {
6200
- /** @default */
6201
- alias?: string;
6202
- /** @default true */
6203
- enabled?: boolean;
6204
- };
6205
- /**
6206
- * @default {
6207
- * "alias": "",
6208
- * "enabled": true
6209
- * }
6210
- */
6211
- company_region?: {
6212
- /** @default */
6213
- alias?: string;
6214
- /** @default true */
6215
- enabled?: boolean;
6216
- };
6217
- /**
6218
- * @default {
6219
- * "alias": "",
6220
- * "enabled": true
6221
- * }
6222
- */
6223
- company_profile_url?: {
6224
- /** @default */
6225
- alias?: string;
6226
- /** @default true */
6227
- enabled?: boolean;
6228
- };
6229
- /**
6230
- * @default {
6231
- * "alias": "",
6232
- * "enabled": true
6233
- * }
6234
- */
6235
- icypeas_company_match?: {
6236
- /** @default */
6237
- alias?: string;
6238
- /** @default true */
6239
- enabled?: boolean;
6240
- };
7119
+ revenue_in_usd?: {
7120
+ from?: number | null;
7121
+ to?: number | null;
6241
7122
  };
6242
- filters: {
6243
- name?: {
6244
- /** @default [] */
6245
- include?: string[];
6246
- /** @default [] */
6247
- exclude?: string[];
7123
+ last_funding_type?: ("Series A" | "Series B" | "Series C" | "Series D")[];
7124
+ /**
7125
+ * @default {
7126
+ * "from": null,
7127
+ * "to": null
7128
+ * }
7129
+ */
7130
+ last_funding_amount?: {
7131
+ from?: number | null;
7132
+ to?: number | null;
7133
+ };
7134
+ number_of_followers?: ("1-500" | "501-1000" | "1001-5000" | "5001-10000" | "10001-30000" | "30000+")[];
7135
+ follower_growth_last_6m_in_percent?: ("0-10%" | "10-20%" | "20-50%" | "50-70%" | "70%+")[];
7136
+ /** @default [] */
7137
+ profile_summary_keywords?: string[];
7138
+ /** @default [] */
7139
+ competitor_websites?: string[];
7140
+ };
7141
+ };
7142
+ } | null;
7143
+ SearchResponseSchema: {
7144
+ id: string;
7145
+ /** @enum {string} */
7146
+ status: "completed" | "failed" | "pending" | "processing";
7147
+ /** @enum {string} */
7148
+ search_id: "companies:profiles:crustdata@1" | "people:profiles:crustdata@1";
7149
+ errors: {
7150
+ code: string;
7151
+ message: string;
7152
+ path?: string;
7153
+ }[];
7154
+ results: {
7155
+ [key: string]: {
7156
+ value: string | number | boolean | null | {
7157
+ [key: string]: unknown;
7158
+ } | unknown[];
7159
+ status: "completed" | "failed" | "pending" | "queued" | "processing" | "no_result" | "skipped";
7160
+ /** @enum {string} */
7161
+ type?: "string" | "number" | "boolean" | "json" | "unknown";
7162
+ /** @enum {string|null} */
7163
+ format?: "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" | null;
7164
+ resolved_by?: {
7165
+ /** @enum {string|null} */
7166
+ ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@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" | "people:identity:amplemarket@1" | "company:identity@2" | "people:match:amplemarket@1" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone: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:match:logodev@1" | "people:posts:crustdata@1" | "company:match:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:email:waterfall@1" | "sheet:row:append:sheet@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
7167
+ /** @enum {string|null} */
7168
+ environment: "production" | "sandbox" | null;
7169
+ config_hash: string | null;
7170
+ input_hash: string | null;
7171
+ } | null;
7172
+ /** @description A map of widgets associated with this field for UI display, keyed by widget type. */
7173
+ widgets?: {
7174
+ display_value?: {
7175
+ label?: string;
6248
7176
  };
6249
- /**
6250
- * @default {
6251
- * "include": [],
6252
- * "exclude": []
6253
- * }
6254
- */
6255
- type?: {
6256
- /** @default [] */
6257
- include?: string[];
6258
- /** @default [] */
6259
- exclude?: string[];
7177
+ entity_logo?: {
7178
+ /**
7179
+ * Format: uri
7180
+ * @description URL to the provider's logo image.
7181
+ */
7182
+ image_url: string;
7183
+ /** @description The name of the entity. */
7184
+ entity: string;
6260
7185
  };
6261
- /**
6262
- * @default {
6263
- * "include": [],
6264
- * "exclude": []
6265
- * }
6266
- */
6267
- industry?: {
6268
- /** @default [] */
6269
- include?: string[];
6270
- /** @default [] */
6271
- exclude?: string[];
7186
+ location_indicator?: {
7187
+ /** @description Country flag emoji. */
7188
+ emoji: string;
6272
7189
  };
6273
- location?: {
6274
- /** @default [] */
6275
- include?: string[];
6276
- /** @default [] */
6277
- exclude?: string[];
7190
+ avatar?: {
7191
+ /**
7192
+ * Format: uri
7193
+ * @description URL to the provider's logo image.
7194
+ */
7195
+ image_url: string;
7196
+ /** @description The name of the avatar owner. */
7197
+ name: string;
6278
7198
  };
6279
- /**
6280
- * @default {
6281
- * "from": null,
6282
- * "to": null
6283
- * }
6284
- */
6285
- headcount?: {
6286
- from?: number | null;
6287
- to?: number | null;
7199
+ waterfall?: {
7200
+ attempted_providers: {
7201
+ /** @enum {string} */
7202
+ provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket";
7203
+ }[];
7204
+ available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket")[];
7205
+ /** @enum {string} */
7206
+ successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev" | "amplemarket";
6288
7207
  };
6289
- urn?: {
6290
- /** @default [] */
6291
- include?: string[];
6292
- /** @default [] */
6293
- exclude?: string[];
7208
+ icon?: {
7209
+ /** @enum {string} */
7210
+ key: "linkedin" | "job";
7211
+ };
7212
+ action_summary?: {
7213
+ /** @enum {string} */
7214
+ result_status: "completed" | "failed";
6294
7215
  };
6295
- lid?: {
6296
- /** @default [] */
6297
- include?: string[];
6298
- /** @default [] */
6299
- exclude?: string[];
7216
+ sources?: {
7217
+ list: {
7218
+ source: string;
7219
+ description?: string;
7220
+ url: string;
7221
+ }[];
7222
+ };
7223
+ confidence?: {
7224
+ numeric: number;
6300
7225
  };
6301
7226
  };
7227
+ } | null;
7228
+ }[];
7229
+ organization_id: string;
7230
+ next_page: components["schemas"]["SearchPayloadSchema"];
7231
+ /** @enum {string|null} */
7232
+ pagination_type: "cursor" | null;
7233
+ total_pages: number | null;
7234
+ };
7235
+ SearchRequestSchema: {
7236
+ /**
7237
+ * @default {
7238
+ * "environment": "production",
7239
+ * "widgets": {
7240
+ * "enabled": false
7241
+ * }
7242
+ * }
7243
+ */
7244
+ config?: {
7245
+ /**
7246
+ * @default production
7247
+ * @enum {string}
7248
+ */
7249
+ environment?: "production" | "sandbox";
7250
+ /**
7251
+ * @default {
7252
+ * "enabled": false
7253
+ * }
7254
+ */
7255
+ widgets?: {
7256
+ /** @default false */
7257
+ enabled?: boolean;
6302
7258
  };
6303
- } | {
7259
+ };
7260
+ search: components["schemas"]["SearchPayloadSchema"] & ({
6304
7261
  /** @enum {string} */
6305
- search_id: "people:employees:leadmagic@1";
7262
+ search_id: "people:profiles:crustdata@1";
6306
7263
  connector?: {
6307
7264
  /**
6308
7265
  * @default first
@@ -6316,8 +7273,18 @@ export interface components {
6316
7273
  }[];
6317
7274
  } | null;
6318
7275
  config: {
6319
- /** @default 50 */
6320
- limit?: number;
7276
+ /**
7277
+ * @default {
7278
+ * "limit": 100,
7279
+ * "cursor": null
7280
+ * }
7281
+ */
7282
+ pagination?: {
7283
+ /** @default 100 */
7284
+ limit?: number | null;
7285
+ /** @default null */
7286
+ cursor?: string | null;
7287
+ };
6321
7288
  output_fields?: {
6322
7289
  /**
6323
7290
  * @default {
@@ -6331,18 +7298,6 @@ export interface components {
6331
7298
  /** @default true */
6332
7299
  enabled?: boolean;
6333
7300
  };
6334
- /**
6335
- * @default {
6336
- * "alias": "",
6337
- * "enabled": true
6338
- * }
6339
- */
6340
- company_name?: {
6341
- /** @default */
6342
- alias?: string;
6343
- /** @default true */
6344
- enabled?: boolean;
6345
- };
6346
7301
  /**
6347
7302
  * @default {
6348
7303
  * "alias": "",
@@ -6361,43 +7316,7 @@ export interface components {
6361
7316
  * "enabled": true
6362
7317
  * }
6363
7318
  */
6364
- job_title?: {
6365
- /** @default */
6366
- alias?: string;
6367
- /** @default true */
6368
- enabled?: boolean;
6369
- };
6370
- };
6371
- filters: {
6372
- company_website_url: string;
6373
- };
6374
- };
6375
- } | {
6376
- /** @enum {string} */
6377
- search_id: "people:profiles:clado@1";
6378
- connector?: {
6379
- /**
6380
- * @default first
6381
- * @enum {string}
6382
- */
6383
- strategy?: "first";
6384
- connections: {
6385
- /** @enum {string} */
6386
- type: "vault";
6387
- connection: string;
6388
- }[];
6389
- } | null;
6390
- config: {
6391
- /** @default 20 */
6392
- limit?: number;
6393
- output_fields?: {
6394
- /**
6395
- * @default {
6396
- * "alias": "",
6397
- * "enabled": true
6398
- * }
6399
- */
6400
- name?: {
7319
+ profile_url?: {
6401
7320
  /** @default */
6402
7321
  alias?: string;
6403
7322
  /** @default true */
@@ -6421,56 +7340,79 @@ export interface components {
6421
7340
  * "enabled": true
6422
7341
  * }
6423
7342
  */
6424
- company_profile_url?: {
6425
- /** @default */
6426
- alias?: string;
6427
- /** @default true */
6428
- enabled?: boolean;
6429
- };
6430
- /**
6431
- * @default {
6432
- * "alias": "",
6433
- * "enabled": true
6434
- * }
6435
- */
6436
- company_name?: {
7343
+ crustdata_person_match?: {
6437
7344
  /** @default */
6438
7345
  alias?: string;
6439
7346
  /** @default true */
6440
7347
  enabled?: boolean;
6441
7348
  };
7349
+ };
7350
+ filters: {
7351
+ locations?: string[];
7352
+ /** @default [] */
7353
+ profile_headline_keywords?: string[];
7354
+ /** @default [] */
7355
+ profile_summary_keywords?: string[];
7356
+ profile_languages?: ("Arabic" | "English" | "Spanish" | "Portuguese" | "Chinese" | "French" | "Italian" | "Russian" | "German" | "Dutch" | "Turkish" | "Tagalog" | "Polish" | "Korean" | "Japanese" | "Malay" | "Norwegian" | "Danish" | "Romanian" | "Swedish" | "Bahasa Indonesia" | "Czech")[];
7357
+ languages?: string[];
7358
+ skills?: string[];
7359
+ years_of_experience?: ("Less than 1 year" | "1 to 2 years" | "3 to 5 years" | "6 to 10 years" | "More than 10 years")[];
6442
7360
  /**
6443
7361
  * @default {
6444
- * "alias": "",
6445
- * "enabled": true
7362
+ * "include": [],
7363
+ * "exclude": []
6446
7364
  * }
6447
7365
  */
6448
- profile_url?: {
6449
- /** @default */
6450
- alias?: string;
6451
- /** @default true */
6452
- enabled?: boolean;
7366
+ current_seniority_levels?: {
7367
+ /** @default [] */
7368
+ include?: string[];
7369
+ /** @default [] */
7370
+ exclude?: string[];
6453
7371
  };
7372
+ /** @default [] */
7373
+ current_employers?: string[];
7374
+ /** @default [] */
7375
+ current_employers_website_urls?: string[];
7376
+ /** @default [] */
7377
+ current_job_titles?: string[];
7378
+ current_employers_linkedin_industries?: string[];
7379
+ years_at_current_company?: ("Less than 1 year" | "1 to 2 years" | "3 to 5 years" | "6 to 10 years" | "More than 10 years")[];
7380
+ /** @default [] */
7381
+ previous_employers_website_urls?: string[];
6454
7382
  /**
6455
7383
  * @default {
6456
- * "alias": "",
6457
- * "enabled": true
7384
+ * "include": [],
7385
+ * "exclude": []
6458
7386
  * }
6459
7387
  */
6460
- clado_person_match?: {
6461
- /** @default */
6462
- alias?: string;
6463
- /** @default true */
6464
- enabled?: boolean;
7388
+ previous_seniority_levels?: {
7389
+ /** @default [] */
7390
+ include?: string[];
7391
+ /** @default [] */
7392
+ exclude?: string[];
6465
7393
  };
6466
- };
6467
- filters: {
6468
- query: string;
7394
+ /** @default [] */
7395
+ previous_employers?: string[];
7396
+ /** @default [] */
7397
+ previous_job_titles?: string[];
7398
+ previous_employers_linkedin_industries?: string[];
7399
+ /** @default [] */
7400
+ certifications?: string[];
7401
+ /** @default [] */
7402
+ honors?: string[];
7403
+ /** @default null */
7404
+ recently_changed_jobs?: boolean | null;
7405
+ fields_of_study?: string[];
7406
+ degree_names?: string[];
7407
+ school_names?: string[];
7408
+ current_school_names?: string[];
7409
+ /** @default [] */
7410
+ extracurricular_activities?: string[];
6469
7411
  };
6470
7412
  };
6471
7413
  } | {
6472
7414
  /** @enum {string} */
6473
- search_id: "people:profiles:clado@2";
7415
+ search_id: "companies:profiles:crustdata@1";
6474
7416
  connector?: {
6475
7417
  /**
6476
7418
  * @default first
@@ -6484,11 +7426,18 @@ export interface components {
6484
7426
  }[];
6485
7427
  } | null;
6486
7428
  config: {
6487
- /** @default 100 */
6488
- limit?: number;
6489
- /** @default */
6490
- search_id?: string;
6491
- offset?: number | null;
7429
+ /**
7430
+ * @default {
7431
+ * "limit": 100,
7432
+ * "cursor": null
7433
+ * }
7434
+ */
7435
+ pagination?: {
7436
+ /** @default 100 */
7437
+ limit?: number | null;
7438
+ /** @default null */
7439
+ cursor?: string | null;
7440
+ };
6492
7441
  output_fields?: {
6493
7442
  /**
6494
7443
  * @default {
@@ -6496,7 +7445,7 @@ export interface components {
6496
7445
  * "enabled": true
6497
7446
  * }
6498
7447
  */
6499
- name?: {
7448
+ company_name?: {
6500
7449
  /** @default */
6501
7450
  alias?: string;
6502
7451
  /** @default true */
@@ -6508,7 +7457,7 @@ export interface components {
6508
7457
  * "enabled": true
6509
7458
  * }
6510
7459
  */
6511
- job_title?: {
7460
+ company_website_url?: {
6512
7461
  /** @default */
6513
7462
  alias?: string;
6514
7463
  /** @default true */
@@ -6520,7 +7469,7 @@ export interface components {
6520
7469
  * "enabled": true
6521
7470
  * }
6522
7471
  */
6523
- company_profile_url?: {
7472
+ company_description?: {
6524
7473
  /** @default */
6525
7474
  alias?: string;
6526
7475
  /** @default true */
@@ -6532,7 +7481,7 @@ export interface components {
6532
7481
  * "enabled": true
6533
7482
  * }
6534
7483
  */
6535
- company_name?: {
7484
+ company_profile_url?: {
6536
7485
  /** @default */
6537
7486
  alias?: string;
6538
7487
  /** @default true */
@@ -6544,31 +7493,54 @@ export interface components {
6544
7493
  * "enabled": true
6545
7494
  * }
6546
7495
  */
6547
- profile_url?: {
7496
+ crustdata_company_match?: {
6548
7497
  /** @default */
6549
7498
  alias?: string;
6550
7499
  /** @default true */
6551
7500
  enabled?: boolean;
6552
7501
  };
7502
+ };
7503
+ filters: {
7504
+ hq_locations?: string[];
7505
+ crunchbase_categories?: string[];
7506
+ crunchbase_investors?: string[];
7507
+ tracxn_investors?: string[];
7508
+ company_types?: ("Public Company" | "Privately Held" | "Non Profit" | "Educational Institution" | "Partnership" | "Self Employed" | "Self Owned" | "Government Agency")[];
7509
+ linkedin_industries?: string[];
7510
+ markets?: string[];
7511
+ linkedin_categories?: string[];
7512
+ headcount?: ("1-10" | "11-50" | "51-200" | "201-500" | "501-1,000" | "1,001-5,000" | "5,001-10,000" | "10,001+")[];
7513
+ headcount_growth_last_6m_in_percent?: ("0-10%" | "10-20%" | "20-50%" | "50-70%" | "70%+")[];
6553
7514
  /**
6554
7515
  * @default {
6555
- * "alias": "",
6556
- * "enabled": true
7516
+ * "from": null,
7517
+ * "to": null
6557
7518
  * }
6558
7519
  */
6559
- clado_person_match_v2?: {
6560
- /** @default */
6561
- alias?: string;
6562
- /** @default true */
6563
- enabled?: boolean;
7520
+ revenue_in_usd?: {
7521
+ from?: number | null;
7522
+ to?: number | null;
6564
7523
  };
6565
- };
6566
- filters?: {
6567
- /** @default */
6568
- query?: string;
7524
+ last_funding_type?: ("Series A" | "Series B" | "Series C" | "Series D")[];
7525
+ /**
7526
+ * @default {
7527
+ * "from": null,
7528
+ * "to": null
7529
+ * }
7530
+ */
7531
+ last_funding_amount?: {
7532
+ from?: number | null;
7533
+ to?: number | null;
7534
+ };
7535
+ number_of_followers?: ("1-500" | "501-1000" | "1001-5000" | "5001-10000" | "10001-30000" | "30000+")[];
7536
+ follower_growth_last_6m_in_percent?: ("0-10%" | "10-20%" | "20-50%" | "50-70%" | "70%+")[];
7537
+ /** @default [] */
7538
+ profile_summary_keywords?: string[];
7539
+ /** @default [] */
7540
+ competitor_websites?: string[];
6569
7541
  };
6570
7542
  };
6571
- })[];
7543
+ });
6572
7544
  };
6573
7545
  PipesInput: {
6574
7546
  [key: string]: string | number | boolean | null | {