@pipe0/client 0.0.19 → 0.0.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @pipe0/client
2
2
 
3
+ ## 0.0.21
4
+
5
+ ### Patch Changes
6
+
7
+ - bbad26a: Pipe config update
8
+
9
+ ## 0.0.20
10
+
11
+ ### Patch Changes
12
+
13
+ - 116762a: Change search pipes config
14
+
3
15
  ## 0.0.19
4
16
 
5
17
  ### Patch Changes
@@ -6947,14 +6947,66 @@ export interface components {
6947
6947
  };
6948
6948
  };
6949
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[];
6950
+ /**
6951
+ * @default {
6952
+ * "include": [],
6953
+ * "exclude": []
6954
+ * }
6955
+ */
6956
+ locations?: {
6957
+ /** @default [] */
6958
+ include?: string[];
6959
+ /** @default [] */
6960
+ exclude?: string[];
6961
+ };
6962
+ profile_headline_keywords: {
6963
+ /** @default [] */
6964
+ include?: string[];
6965
+ /** @default [] */
6966
+ exclude?: string[];
6967
+ };
6968
+ profile_summary_keywords: {
6969
+ /** @default [] */
6970
+ include?: string[];
6971
+ /** @default [] */
6972
+ exclude?: string[];
6973
+ };
6974
+ /**
6975
+ * @default {
6976
+ * "include": [],
6977
+ * "exclude": []
6978
+ * }
6979
+ */
6980
+ profile_languages?: {
6981
+ /** @default [] */
6982
+ include?: string[];
6983
+ /** @default [] */
6984
+ exclude?: string[];
6985
+ };
6986
+ /**
6987
+ * @default {
6988
+ * "include": [],
6989
+ * "exclude": []
6990
+ * }
6991
+ */
6992
+ languages?: {
6993
+ /** @default [] */
6994
+ include?: string[];
6995
+ /** @default [] */
6996
+ exclude?: string[];
6997
+ };
6998
+ /**
6999
+ * @default {
7000
+ * "include": [],
7001
+ * "exclude": []
7002
+ * }
7003
+ */
7004
+ skills?: {
7005
+ /** @default [] */
7006
+ include?: string[];
7007
+ /** @default [] */
7008
+ exclude?: string[];
7009
+ };
6958
7010
  years_of_experience?: ("Less than 1 year" | "1 to 2 years" | "3 to 5 years" | "6 to 10 years" | "More than 10 years")[];
6959
7011
  /**
6960
7012
  * @default {
@@ -6968,16 +7020,43 @@ export interface components {
6968
7020
  /** @default [] */
6969
7021
  exclude?: string[];
6970
7022
  };
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[];
7023
+ current_employers: {
7024
+ /** @default [] */
7025
+ include?: string[];
7026
+ /** @default [] */
7027
+ exclude?: string[];
7028
+ };
7029
+ current_employers_website_urls: {
7030
+ /** @default [] */
7031
+ include?: string[];
7032
+ /** @default [] */
7033
+ exclude?: string[];
7034
+ };
7035
+ current_job_titles: {
7036
+ /** @default [] */
7037
+ include?: string[];
7038
+ /** @default [] */
7039
+ exclude?: string[];
7040
+ };
7041
+ /**
7042
+ * @default {
7043
+ * "include": [],
7044
+ * "exclude": []
7045
+ * }
7046
+ */
7047
+ current_employers_linkedin_industries?: {
7048
+ /** @default [] */
7049
+ include?: string[];
7050
+ /** @default [] */
7051
+ exclude?: string[];
7052
+ };
6978
7053
  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[];
7054
+ previous_employers_website_urls: {
7055
+ /** @default [] */
7056
+ include?: string[];
7057
+ /** @default [] */
7058
+ exclude?: string[];
7059
+ };
6981
7060
  /**
6982
7061
  * @default {
6983
7062
  * "include": [],
@@ -6990,23 +7069,98 @@ export interface components {
6990
7069
  /** @default [] */
6991
7070
  exclude?: string[];
6992
7071
  };
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[];
7072
+ previous_employers: {
7073
+ /** @default [] */
7074
+ include?: string[];
7075
+ /** @default [] */
7076
+ exclude?: string[];
7077
+ };
7078
+ previous_job_titles: {
7079
+ /** @default [] */
7080
+ include?: string[];
7081
+ /** @default [] */
7082
+ exclude?: string[];
7083
+ };
7084
+ /**
7085
+ * @default {
7086
+ * "include": [],
7087
+ * "exclude": []
7088
+ * }
7089
+ */
7090
+ previous_employers_linkedin_industries?: {
7091
+ /** @default [] */
7092
+ include?: string[];
7093
+ /** @default [] */
7094
+ exclude?: string[];
7095
+ };
7096
+ certifications: {
7097
+ /** @default [] */
7098
+ include?: string[];
7099
+ /** @default [] */
7100
+ exclude?: string[];
7101
+ };
7102
+ honors: {
7103
+ /** @default [] */
7104
+ include?: string[];
7105
+ /** @default [] */
7106
+ exclude?: string[];
7107
+ };
7002
7108
  /** @default null */
7003
7109
  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[];
7110
+ /**
7111
+ * @default {
7112
+ * "include": [],
7113
+ * "exclude": []
7114
+ * }
7115
+ */
7116
+ fields_of_study?: {
7117
+ /** @default [] */
7118
+ include?: string[];
7119
+ /** @default [] */
7120
+ exclude?: string[];
7121
+ };
7122
+ /**
7123
+ * @default {
7124
+ * "include": [],
7125
+ * "exclude": []
7126
+ * }
7127
+ */
7128
+ degree_names?: {
7129
+ /** @default [] */
7130
+ include?: string[];
7131
+ /** @default [] */
7132
+ exclude?: string[];
7133
+ };
7134
+ /**
7135
+ * @default {
7136
+ * "include": [],
7137
+ * "exclude": []
7138
+ * }
7139
+ */
7140
+ school_names?: {
7141
+ /** @default [] */
7142
+ include?: string[];
7143
+ /** @default [] */
7144
+ exclude?: string[];
7145
+ };
7146
+ /**
7147
+ * @default {
7148
+ * "include": [],
7149
+ * "exclude": []
7150
+ * }
7151
+ */
7152
+ current_school_names?: {
7153
+ /** @default [] */
7154
+ include?: string[];
7155
+ /** @default [] */
7156
+ exclude?: string[];
7157
+ };
7158
+ extracurricular_activities: {
7159
+ /** @default [] */
7160
+ include?: string[];
7161
+ /** @default [] */
7162
+ exclude?: string[];
7163
+ };
7010
7164
  };
7011
7165
  };
7012
7166
  } | {
@@ -7100,15 +7254,114 @@ export interface components {
7100
7254
  };
7101
7255
  };
7102
7256
  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+")[];
7257
+ /**
7258
+ * @default {
7259
+ * "include": [],
7260
+ * "exclude": []
7261
+ * }
7262
+ */
7263
+ hq_locations?: {
7264
+ /** @default [] */
7265
+ include?: string[];
7266
+ /** @default [] */
7267
+ exclude?: string[];
7268
+ };
7269
+ /**
7270
+ * @default {
7271
+ * "include": [],
7272
+ * "exclude": []
7273
+ * }
7274
+ */
7275
+ crunchbase_categories?: {
7276
+ /** @default [] */
7277
+ include?: string[];
7278
+ /** @default [] */
7279
+ exclude?: string[];
7280
+ };
7281
+ /**
7282
+ * @default {
7283
+ * "include": [],
7284
+ * "exclude": []
7285
+ * }
7286
+ */
7287
+ crunchbase_investors?: {
7288
+ /** @default [] */
7289
+ include?: string[];
7290
+ /** @default [] */
7291
+ exclude?: string[];
7292
+ };
7293
+ /**
7294
+ * @default {
7295
+ * "include": [],
7296
+ * "exclude": []
7297
+ * }
7298
+ */
7299
+ tracxn_investors?: {
7300
+ /** @default [] */
7301
+ include?: string[];
7302
+ /** @default [] */
7303
+ exclude?: string[];
7304
+ };
7305
+ /**
7306
+ * @default {
7307
+ * "include": [],
7308
+ * "exclude": []
7309
+ * }
7310
+ */
7311
+ company_types?: {
7312
+ /** @default [] */
7313
+ include?: string[];
7314
+ /** @default [] */
7315
+ exclude?: string[];
7316
+ };
7317
+ /**
7318
+ * @default {
7319
+ * "include": [],
7320
+ * "exclude": []
7321
+ * }
7322
+ */
7323
+ linkedin_industries?: {
7324
+ /** @default [] */
7325
+ include?: string[];
7326
+ /** @default [] */
7327
+ exclude?: string[];
7328
+ };
7329
+ /**
7330
+ * @default {
7331
+ * "include": [],
7332
+ * "exclude": []
7333
+ * }
7334
+ */
7335
+ markets?: {
7336
+ /** @default [] */
7337
+ include?: string[];
7338
+ /** @default [] */
7339
+ exclude?: string[];
7340
+ };
7341
+ /**
7342
+ * @default {
7343
+ * "include": [],
7344
+ * "exclude": []
7345
+ * }
7346
+ */
7347
+ linkedin_categories?: {
7348
+ /** @default [] */
7349
+ include?: string[];
7350
+ /** @default [] */
7351
+ exclude?: string[];
7352
+ };
7353
+ /**
7354
+ * @default {
7355
+ * "include": [],
7356
+ * "exclude": []
7357
+ * }
7358
+ */
7359
+ headcount?: {
7360
+ /** @default [] */
7361
+ include?: string[];
7362
+ /** @default [] */
7363
+ exclude?: string[];
7364
+ };
7112
7365
  headcount_growth_last_6m_in_percent?: ("0-10%" | "10-20%" | "20-50%" | "50-70%" | "70%+")[];
7113
7366
  /**
7114
7367
  * @default {
@@ -7120,7 +7373,18 @@ export interface components {
7120
7373
  from?: number | null;
7121
7374
  to?: number | null;
7122
7375
  };
7123
- last_funding_type?: ("Series A" | "Series B" | "Series C" | "Series D")[];
7376
+ /**
7377
+ * @default {
7378
+ * "include": [],
7379
+ * "exclude": []
7380
+ * }
7381
+ */
7382
+ last_funding_type?: {
7383
+ /** @default [] */
7384
+ include?: string[];
7385
+ /** @default [] */
7386
+ exclude?: string[];
7387
+ };
7124
7388
  /**
7125
7389
  * @default {
7126
7390
  * "from": null,
@@ -7133,10 +7397,18 @@ export interface components {
7133
7397
  };
7134
7398
  number_of_followers?: ("1-500" | "501-1000" | "1001-5000" | "5001-10000" | "10001-30000" | "30000+")[];
7135
7399
  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[];
7400
+ profile_summary_keywords: {
7401
+ /** @default [] */
7402
+ include?: string[];
7403
+ /** @default [] */
7404
+ exclude?: string[];
7405
+ };
7406
+ competitor_websites: {
7407
+ /** @default [] */
7408
+ include?: string[];
7409
+ /** @default [] */
7410
+ exclude?: string[];
7411
+ };
7140
7412
  };
7141
7413
  };
7142
7414
  } | null;
@@ -7300,114 +7572,268 @@ export interface components {
7300
7572
  };
7301
7573
  /**
7302
7574
  * @default {
7303
- * "alias": "",
7304
- * "enabled": true
7575
+ * "alias": "",
7576
+ * "enabled": true
7577
+ * }
7578
+ */
7579
+ company_website_url?: {
7580
+ /** @default */
7581
+ alias?: string;
7582
+ /** @default true */
7583
+ enabled?: boolean;
7584
+ };
7585
+ /**
7586
+ * @default {
7587
+ * "alias": "",
7588
+ * "enabled": true
7589
+ * }
7590
+ */
7591
+ profile_url?: {
7592
+ /** @default */
7593
+ alias?: string;
7594
+ /** @default true */
7595
+ enabled?: boolean;
7596
+ };
7597
+ /**
7598
+ * @default {
7599
+ * "alias": "",
7600
+ * "enabled": true
7601
+ * }
7602
+ */
7603
+ job_title?: {
7604
+ /** @default */
7605
+ alias?: string;
7606
+ /** @default true */
7607
+ enabled?: boolean;
7608
+ };
7609
+ /**
7610
+ * @default {
7611
+ * "alias": "",
7612
+ * "enabled": true
7613
+ * }
7614
+ */
7615
+ crustdata_person_match?: {
7616
+ /** @default */
7617
+ alias?: string;
7618
+ /** @default true */
7619
+ enabled?: boolean;
7620
+ };
7621
+ };
7622
+ filters: {
7623
+ /**
7624
+ * @default {
7625
+ * "include": [],
7626
+ * "exclude": []
7627
+ * }
7628
+ */
7629
+ locations?: {
7630
+ /** @default [] */
7631
+ include?: string[];
7632
+ /** @default [] */
7633
+ exclude?: string[];
7634
+ };
7635
+ profile_headline_keywords: {
7636
+ /** @default [] */
7637
+ include?: string[];
7638
+ /** @default [] */
7639
+ exclude?: string[];
7640
+ };
7641
+ profile_summary_keywords: {
7642
+ /** @default [] */
7643
+ include?: string[];
7644
+ /** @default [] */
7645
+ exclude?: string[];
7646
+ };
7647
+ /**
7648
+ * @default {
7649
+ * "include": [],
7650
+ * "exclude": []
7651
+ * }
7652
+ */
7653
+ profile_languages?: {
7654
+ /** @default [] */
7655
+ include?: string[];
7656
+ /** @default [] */
7657
+ exclude?: string[];
7658
+ };
7659
+ /**
7660
+ * @default {
7661
+ * "include": [],
7662
+ * "exclude": []
7663
+ * }
7664
+ */
7665
+ languages?: {
7666
+ /** @default [] */
7667
+ include?: string[];
7668
+ /** @default [] */
7669
+ exclude?: string[];
7670
+ };
7671
+ /**
7672
+ * @default {
7673
+ * "include": [],
7674
+ * "exclude": []
7675
+ * }
7676
+ */
7677
+ skills?: {
7678
+ /** @default [] */
7679
+ include?: string[];
7680
+ /** @default [] */
7681
+ exclude?: string[];
7682
+ };
7683
+ years_of_experience?: ("Less than 1 year" | "1 to 2 years" | "3 to 5 years" | "6 to 10 years" | "More than 10 years")[];
7684
+ /**
7685
+ * @default {
7686
+ * "include": [],
7687
+ * "exclude": []
7688
+ * }
7689
+ */
7690
+ current_seniority_levels?: {
7691
+ /** @default [] */
7692
+ include?: string[];
7693
+ /** @default [] */
7694
+ exclude?: string[];
7695
+ };
7696
+ current_employers: {
7697
+ /** @default [] */
7698
+ include?: string[];
7699
+ /** @default [] */
7700
+ exclude?: string[];
7701
+ };
7702
+ current_employers_website_urls: {
7703
+ /** @default [] */
7704
+ include?: string[];
7705
+ /** @default [] */
7706
+ exclude?: string[];
7707
+ };
7708
+ current_job_titles: {
7709
+ /** @default [] */
7710
+ include?: string[];
7711
+ /** @default [] */
7712
+ exclude?: string[];
7713
+ };
7714
+ /**
7715
+ * @default {
7716
+ * "include": [],
7717
+ * "exclude": []
7718
+ * }
7719
+ */
7720
+ current_employers_linkedin_industries?: {
7721
+ /** @default [] */
7722
+ include?: string[];
7723
+ /** @default [] */
7724
+ exclude?: string[];
7725
+ };
7726
+ years_at_current_company?: ("Less than 1 year" | "1 to 2 years" | "3 to 5 years" | "6 to 10 years" | "More than 10 years")[];
7727
+ previous_employers_website_urls: {
7728
+ /** @default [] */
7729
+ include?: string[];
7730
+ /** @default [] */
7731
+ exclude?: string[];
7732
+ };
7733
+ /**
7734
+ * @default {
7735
+ * "include": [],
7736
+ * "exclude": []
7305
7737
  * }
7306
7738
  */
7307
- company_website_url?: {
7308
- /** @default */
7309
- alias?: string;
7310
- /** @default true */
7311
- enabled?: boolean;
7739
+ previous_seniority_levels?: {
7740
+ /** @default [] */
7741
+ include?: string[];
7742
+ /** @default [] */
7743
+ exclude?: string[];
7744
+ };
7745
+ previous_employers: {
7746
+ /** @default [] */
7747
+ include?: string[];
7748
+ /** @default [] */
7749
+ exclude?: string[];
7750
+ };
7751
+ previous_job_titles: {
7752
+ /** @default [] */
7753
+ include?: string[];
7754
+ /** @default [] */
7755
+ exclude?: string[];
7312
7756
  };
7313
7757
  /**
7314
7758
  * @default {
7315
- * "alias": "",
7316
- * "enabled": true
7759
+ * "include": [],
7760
+ * "exclude": []
7317
7761
  * }
7318
7762
  */
7319
- profile_url?: {
7320
- /** @default */
7321
- alias?: string;
7322
- /** @default true */
7323
- enabled?: boolean;
7763
+ previous_employers_linkedin_industries?: {
7764
+ /** @default [] */
7765
+ include?: string[];
7766
+ /** @default [] */
7767
+ exclude?: string[];
7768
+ };
7769
+ certifications: {
7770
+ /** @default [] */
7771
+ include?: string[];
7772
+ /** @default [] */
7773
+ exclude?: string[];
7774
+ };
7775
+ honors: {
7776
+ /** @default [] */
7777
+ include?: string[];
7778
+ /** @default [] */
7779
+ exclude?: string[];
7324
7780
  };
7781
+ /** @default null */
7782
+ recently_changed_jobs?: boolean | null;
7325
7783
  /**
7326
7784
  * @default {
7327
- * "alias": "",
7328
- * "enabled": true
7785
+ * "include": [],
7786
+ * "exclude": []
7329
7787
  * }
7330
7788
  */
7331
- job_title?: {
7332
- /** @default */
7333
- alias?: string;
7334
- /** @default true */
7335
- enabled?: boolean;
7789
+ fields_of_study?: {
7790
+ /** @default [] */
7791
+ include?: string[];
7792
+ /** @default [] */
7793
+ exclude?: string[];
7336
7794
  };
7337
7795
  /**
7338
7796
  * @default {
7339
- * "alias": "",
7340
- * "enabled": true
7797
+ * "include": [],
7798
+ * "exclude": []
7341
7799
  * }
7342
7800
  */
7343
- crustdata_person_match?: {
7344
- /** @default */
7345
- alias?: string;
7346
- /** @default true */
7347
- enabled?: boolean;
7801
+ degree_names?: {
7802
+ /** @default [] */
7803
+ include?: string[];
7804
+ /** @default [] */
7805
+ exclude?: string[];
7348
7806
  };
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")[];
7360
7807
  /**
7361
7808
  * @default {
7362
7809
  * "include": [],
7363
7810
  * "exclude": []
7364
7811
  * }
7365
7812
  */
7366
- current_seniority_levels?: {
7813
+ school_names?: {
7367
7814
  /** @default [] */
7368
7815
  include?: string[];
7369
7816
  /** @default [] */
7370
7817
  exclude?: string[];
7371
7818
  };
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[];
7382
7819
  /**
7383
7820
  * @default {
7384
7821
  * "include": [],
7385
7822
  * "exclude": []
7386
7823
  * }
7387
7824
  */
7388
- previous_seniority_levels?: {
7825
+ current_school_names?: {
7826
+ /** @default [] */
7827
+ include?: string[];
7828
+ /** @default [] */
7829
+ exclude?: string[];
7830
+ };
7831
+ extracurricular_activities: {
7389
7832
  /** @default [] */
7390
7833
  include?: string[];
7391
7834
  /** @default [] */
7392
7835
  exclude?: string[];
7393
7836
  };
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[];
7411
7837
  };
7412
7838
  };
7413
7839
  } | {
@@ -7501,15 +7927,114 @@ export interface components {
7501
7927
  };
7502
7928
  };
7503
7929
  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+")[];
7930
+ /**
7931
+ * @default {
7932
+ * "include": [],
7933
+ * "exclude": []
7934
+ * }
7935
+ */
7936
+ hq_locations?: {
7937
+ /** @default [] */
7938
+ include?: string[];
7939
+ /** @default [] */
7940
+ exclude?: string[];
7941
+ };
7942
+ /**
7943
+ * @default {
7944
+ * "include": [],
7945
+ * "exclude": []
7946
+ * }
7947
+ */
7948
+ crunchbase_categories?: {
7949
+ /** @default [] */
7950
+ include?: string[];
7951
+ /** @default [] */
7952
+ exclude?: string[];
7953
+ };
7954
+ /**
7955
+ * @default {
7956
+ * "include": [],
7957
+ * "exclude": []
7958
+ * }
7959
+ */
7960
+ crunchbase_investors?: {
7961
+ /** @default [] */
7962
+ include?: string[];
7963
+ /** @default [] */
7964
+ exclude?: string[];
7965
+ };
7966
+ /**
7967
+ * @default {
7968
+ * "include": [],
7969
+ * "exclude": []
7970
+ * }
7971
+ */
7972
+ tracxn_investors?: {
7973
+ /** @default [] */
7974
+ include?: string[];
7975
+ /** @default [] */
7976
+ exclude?: string[];
7977
+ };
7978
+ /**
7979
+ * @default {
7980
+ * "include": [],
7981
+ * "exclude": []
7982
+ * }
7983
+ */
7984
+ company_types?: {
7985
+ /** @default [] */
7986
+ include?: string[];
7987
+ /** @default [] */
7988
+ exclude?: string[];
7989
+ };
7990
+ /**
7991
+ * @default {
7992
+ * "include": [],
7993
+ * "exclude": []
7994
+ * }
7995
+ */
7996
+ linkedin_industries?: {
7997
+ /** @default [] */
7998
+ include?: string[];
7999
+ /** @default [] */
8000
+ exclude?: string[];
8001
+ };
8002
+ /**
8003
+ * @default {
8004
+ * "include": [],
8005
+ * "exclude": []
8006
+ * }
8007
+ */
8008
+ markets?: {
8009
+ /** @default [] */
8010
+ include?: string[];
8011
+ /** @default [] */
8012
+ exclude?: string[];
8013
+ };
8014
+ /**
8015
+ * @default {
8016
+ * "include": [],
8017
+ * "exclude": []
8018
+ * }
8019
+ */
8020
+ linkedin_categories?: {
8021
+ /** @default [] */
8022
+ include?: string[];
8023
+ /** @default [] */
8024
+ exclude?: string[];
8025
+ };
8026
+ /**
8027
+ * @default {
8028
+ * "include": [],
8029
+ * "exclude": []
8030
+ * }
8031
+ */
8032
+ headcount?: {
8033
+ /** @default [] */
8034
+ include?: string[];
8035
+ /** @default [] */
8036
+ exclude?: string[];
8037
+ };
7513
8038
  headcount_growth_last_6m_in_percent?: ("0-10%" | "10-20%" | "20-50%" | "50-70%" | "70%+")[];
7514
8039
  /**
7515
8040
  * @default {
@@ -7521,7 +8046,18 @@ export interface components {
7521
8046
  from?: number | null;
7522
8047
  to?: number | null;
7523
8048
  };
7524
- last_funding_type?: ("Series A" | "Series B" | "Series C" | "Series D")[];
8049
+ /**
8050
+ * @default {
8051
+ * "include": [],
8052
+ * "exclude": []
8053
+ * }
8054
+ */
8055
+ last_funding_type?: {
8056
+ /** @default [] */
8057
+ include?: string[];
8058
+ /** @default [] */
8059
+ exclude?: string[];
8060
+ };
7525
8061
  /**
7526
8062
  * @default {
7527
8063
  * "from": null,
@@ -7534,10 +8070,18 @@ export interface components {
7534
8070
  };
7535
8071
  number_of_followers?: ("1-500" | "501-1000" | "1001-5000" | "5001-10000" | "10001-30000" | "30000+")[];
7536
8072
  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[];
8073
+ profile_summary_keywords: {
8074
+ /** @default [] */
8075
+ include?: string[];
8076
+ /** @default [] */
8077
+ exclude?: string[];
8078
+ };
8079
+ competitor_websites: {
8080
+ /** @default [] */
8081
+ include?: string[];
8082
+ /** @default [] */
8083
+ exclude?: string[];
8084
+ };
7541
8085
  };
7542
8086
  };
7543
8087
  });
package/dist/pipe0.d.ts CHANGED
@@ -4,6 +4,8 @@ export type PipesRequest = paths["/v1/pipes/run"]["post"]["requestBody"]["conten
4
4
  export type PipesResponse = paths["/v1/pipes/check/{run_id}"]["get"]["responses"]["200"]["content"]["application/json"];
5
5
  export type SearchesRequest = paths["/v1/searches/run"]["post"]["requestBody"]["content"]["application/json"];
6
6
  export type SearchesResponse = paths["/v1/searches/check/{run_id}"]["get"]["responses"]["200"]["content"]["application/json"];
7
+ export type SearchRequest = paths["/v1/search/run"]["post"]["requestBody"]["content"]["application/json"];
8
+ export type SearchResponse = paths["/v1/search/check/{run_id}"]["get"]["responses"]["200"]["content"]["application/json"];
7
9
  export declare class Pipe0TimeoutError extends Error {
8
10
  readonly runId?: string | undefined;
9
11
  constructor(message: string, runId?: string | undefined);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipe0/client",
3
- "version": "0.0.19",
3
+ "version": "0.0.21",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "type": "module",