-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomponents.types.ts
917 lines (858 loc) · 25.6 KB
/
components.types.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
/**
* Documentation links:
* @link https://data.crunchbase.com/docs
* @link https://app.swaggerhub.com/apis-docs/Crunchbase/crunchbase-enterprise_api/1.0.3
*/
export type InterfaceKeys<T> = keyof T;
/** Globally unique id of this entity */
export type uuid = string;
export type dateTime = string;
export type date = string;
export type imageId = string;
export type permalink = string;
export type url = string;
export type Order = "asc" | "desc";
export type Operator =
| "blank"
| "eq"
| "not_eq"
| "gt"
| "gte"
| "lt"
| "lte"
| "starts"
| "contains"
| "not_contains"
| "between"
| "includes"
| "not_includes"
| "includes_all"
| "not_includes_all"
| "domain_eq";
export enum AcquisitionDisposition {
Combined = "combined",
Division = "division",
Product = "product",
SeparateEntity = "separate_entity",
Subsidiary = "subsidiary",
}
export enum AcquisitionTerms {
Cash = "cash",
CashAndStock = "cash_and_stock",
Stock = "stock",
}
export enum AcquisitionType {
Acquihire = "acquihire",
Acquisition = "acquisition",
LeveragedBuyout = "lbo",
ManagementBuyout = "management_buyout",
Merger = "merge",
}
export enum CompanyType {
ForProfit = "for_profit",
NonProfit = "non_profit",
}
/**
* @link https://data.crunchbase.com/reference#currency-codes
*/
export enum CurrencyCode {
unknown = "",
AED = "AED", // United Arab Emirates Dirham
AFN = "AFN", // Afghanistan Afghani
ALL = "ALL", // Albania Lek
AMD = "AMD", // Armenia Dram
ANG = "ANG", // Netherlands Antilles Guilder
AOA = "AOA", // Angola Kwanza
ARS = "ARS", // Argentina Peso
AUD = "AUD", // Australia Dollar
AWG = "AWG", // Aruba Guilder
AZN = "AZN", // Azerbaijan New Manat
BAM = "BAM", // Bosnia and Herzegovina Convertible Marka
BBD = "BBD", // Barbados Dollar
BDT = "BDT", // Bangladesh Taka
BGN = "BGN", // Bulgaria Lev
BHD = "BHD", // Bahrain Dinar
BIF = "BIF", // Burundi Franc
BMD = "BMD", // Bermuda Dollar
BND = "BND", // Brunei Darussalam Dollar
BOB = "BOB", // Bolivia Boliviano
BRL = "BRL", // Brazil Real
BSD = "BSD", // Bahamas Dollar
BTC = "BTC", //
BTN = "BTN", // Bhutan Ngultrum
BWP = "BWP", // Botswana Pula
BYR = "BYR", // Belarus Ruble
BZD = "BZD", // Belize Dollar
CAD = "CAD", // Canada Dollar
CDF = "CDF", // Congo/Kinshasa Franc
CHF = "CHF", // Switzerland Franc
CLF = "CLF", //
CLP = "CLP", // Chile Peso
CNY = "CNY", // China Yuan Renminbi
COP = "COP", // Colombia Peso
CRC = "CRC", // Costa Rica Colon
CUC = "CUC", // Cuba Convertible Peso
CUP = "CUP", // Cuba Peso
CVE = "CVE", // Cape Verde Escudo
CZK = "CZK", // Czech Republic Koruna
DJF = "DJF", // Djibouti Franc
DKK = "DKK", // Denmark Krone
DOP = "DOP", // Dominican Republic Peso
DZD = "DZD", // Algeria Dinar
EEK = "EEK", //
EGP = "EGP", // Egypt Pound
ERN = "ERN", // Eritrea Nakfa
ETB = "ETB", // Ethiopia Birr
EUR = "EUR", // Euro Member Countries
FJD = "FJD", // Fiji Dollar
FKP = "FKP", // Falkland Islands (Malvinas) Pound
GBP = "GBP", // United Kingdom Pound
GEL = "GEL", // Georgia Lari
GGP = "GGP", // Guernsey Pound
GHS = "GHS", // Ghana Cedi
GIP = "GIP", // Gibraltar Pound
GMD = "GMD", // Gambia Dalasi
GNF = "GNF", // Guinea Franc
GTQ = "GTQ", // Guatemala Quetzal
GYD = "GYD", // Guyana Dollar
HKD = "HKD", // Hong Kong Dollar
HNL = "HNL", // Honduras Lempira
HRK = "HRK", // Croatia Kuna
HTG = "HTG", // Haiti Gourde
HUF = "HUF", // Hungary Forint
IDR = "IDR", // Indonesia Rupiah
ILS = "ILS", // Israel Shekel
IMP = "IMP", // Isle of Man Pound
INR = "INR", // India Rupee
IQD = "IQD", // Iraq Dinar
IRR = "IRR", // Iran Rial
ISK = "ISK", // Iceland Krona
JEP = "JEP", // Jersey Pound
JMD = "JMD", // Jamaica Dollar
JOD = "JOD", // Jordan Dinar
JPY = "JPY", // Japan Yen
KES = "KES", // Kenya Shilling
KGS = "KGS", // Kyrgyzstan Som
KHR = "KHR", // Cambodia Riel
KMF = "KMF", // Comoros Franc
KPW = "KPW", // Korea (North) Won
KRW = "KRW", // Korea (South) Won
KWD = "KWD", // Kuwait Dinar
KYD = "KYD", // Cayman Islands Dollar
KZT = "KZT", // Kazakhstan Tenge
LAK = "LAK", // Laos Kip
LBP = "LBP", // Lebanon Pound
LKR = "LKR", // Sri Lanka Rupee
LRD = "LRD", // Liberia Dollar
LSL = "LSL", // Lesotho Loti
LTL = "LTL", //
LVL = "LVL", //
LYD = "LYD", // Libya Dinar
MAD = "MAD", // Morocco Dirham
MDL = "MDL", // Moldova Leu
MGA = "MGA", // Madagascar Ariary
MKD = "MKD", // Macedonia Denar
MMK = "MMK", // Myanmar (Burma) Kyat
MNT = "MNT", // Mongolia Tughrik
MOP = "MOP", // Macau Pataca
MRO = "MRO", // Mauritania Ouguiya
MTL = "MTL", //
MUR = "MUR", // Mauritius Rupee
MVR = "MVR", // Maldives (Maldive Islands) Rufiyaa
MWK = "MWK", // Malawi Kwacha
MXN = "MXN", // Mexico Peso
MYR = "MYR", // Malaysia Ringgit
MZN = "MZN", // Mozambique Metical
NAD = "NAD", // Namibia Dollar
NGN = "NGN", // Nigeria Naira
NIO = "NIO", // Nicaragua Cordoba
NOK = "NOK", // Norway Krone
NPR = "NPR", // Nepal Rupee
NZD = "NZD", // New Zealand Dollar
OMR = "OMR", // Oman Rial
PAB = "PAB", // Panama Balboa
PEN = "PEN", // Peru Nuevo Sol
PGK = "PGK", // Papua New Guinea Kina
PHP = "PHP", // Philippines Peso
PKR = "PKR", // Pakistan Rupee
PLN = "PLN", // Poland Zloty
PYG = "PYG", // Paraguay Guarani
QAR = "QAR", // Qatar Riyal
RON = "RON", // Romania New Leu
RSD = "RSD", // Serbia Dinar
RUB = "RUB", // Russia Ruble
RWF = "RWF", // Rwanda Franc
SAR = "SAR", // Saudi Arabia Riyal
SBD = "SBD", // Solomon Islands Dollar
SCR = "SCR", // Seychelles Rupee
SDG = "SDG", // Sudan Pound
SEK = "SEK", // Sweden Krona
SGD = "SGD", // Singapore Dollar
SHP = "SHP", // Saint Helena Pound
SLL = "SLL", // Sierra Leone Leone
SOS = "SOS", // Somalia Shilling
SPL = "SPL*", // Seborga Luigino
SRD = "SRD", // Suriname Dollar
STD = "STD", // São Tomé and Príncipe Dobra
SVC = "SVC", // El Salvador Colon
SYP = "SYP", // Syria Pound
SZL = "SZL", // Swaziland Lilangeni
THB = "THB", // Thailand Baht
TJS = "TJS", // Tajikistan Somoni
TMT = "TMT", // Turkmenistan Manat
TND = "TND", // Tunisia Dinar
TOP = "TOP", // Tonga Pa'anga
TRY = "TRY", // Turkey Lira
TTD = "TTD", // Trinidad and Tobago Dollar
TVD = "TVD", // Tuvalu Dollar
TWD = "TWD", // Taiwan New Dollar
TZS = "TZS", // Tanzania Shilling
UAH = "UAH", // Ukraine Hryvnia
UGX = "UGX", // Uganda Shilling
USD = "USD", // United States Dollar
UYU = "UYU", // Uruguay Peso
UZS = "UZS", // Uzbekistan Som
VEF = "VEF", // Venezuela Bolivar
VND = "VND", // Viet Nam Dong
VUV = "VUV", // Vanuatu Vatu
WST = "WST", // Samoa Tala
XAF = "XAF", // Communauté Financière Africaine (BEAC) CFA Franc BEAC
XAG = "XAG", //
XAU = "XAU", //
XCD = "XCD", // East Caribbean Dollar
XDR = "XDR", // International Monetary Fund (IMF) Special Drawing Rights
XOF = "XOF", // Communauté Financière Africaine (BCEAO) Franc
XPF = "XPF", // Comptoirs Français du Pacifique (CFP) Franc
YER = "YER", // Yemen Rial
ZAR = "ZAR", // South Africa Rand
ZMK = "ZMK", //
ZMW = "ZMW", // Zambia Kwacha
ZWD = "ZWD", // Zimbabwe Dollar
ZWL = "ZWL", //
}
export enum EntityDefId {
Organization = "organization",
Person = "person",
FundingRound = "funding_round",
Acquisition = "acquisition",
Investment = "investment",
Event = "event",
PressReference = "press_reference",
Fund = "fund",
Event_appearance = "event_appearance",
Ipo = "ipo",
Ownership = "ownership",
Category = "category",
CategoryGroup = "category_group",
Location = "location",
Job = "job",
KeyEmployeeChange = "key_employee_change",
Address = "address",
Degree = "degree",
}
export enum EventType {
Class = "class",
Competition = "competition",
Conference = "conference",
DemoDay = "demo_day",
Expo = "expo",
Festival = "festival",
Hackathon = "hackathon",
Meetup = "meetup",
Networking = "networking",
Other = "other",
Seminar = "seminar",
Virtual = "virtual",
Webinar = "webinar",
}
export enum FacetId {
Company = "company",
Investor = "investor",
School = "school",
City = "city",
Continent = "continent",
Country = "country",
RegionalArea = "group",
Region = "region",
}
export enum FundingState {
EarlyStageVenture = "early_stage_venture",
IPO = "ipo",
LateStageVenture = "late_stage_venture",
MAndA = "m_and_a",
PrivateEquity = "private_equity",
Seed = "seed",
}
export enum FundingType {
Angel = "angel",
ConvertibleNote = "convertible_note",
CorporateRound = "corporate_round",
DebtFinancing = "debt_financing",
EquityCrowdfunding = "equity_crowdfunding",
Grant = "grant",
InitialCoinOffering = "initial_coin_offering",
NonEquityAssistance = "non_equity_assistance",
PostIPODebt = "post_ipo_debt",
PostIPOEquity = "post_ipo_equity",
PostIPOSecondary = "post_ipo_secondary",
PreSeed = "pre_seed",
PrivateEquity = "private_equity",
ProductCrowdfunding = "product_crowdfunding",
SecondaryMarket = "secondary_market",
Seed = "seed",
SeriesA = "series_a",
SeriesB = "series_b",
SeriesC = "series_c",
SeriesD = "series_d",
SeriesE = "series_e",
SeriesF = "series_f",
SeriesG = "series_g",
SeriesH = "series_h",
SeriesI = "series_i",
SeriesJ = "series_j",
VentureSeriesUnknown = "series_unknown",
Undisclosed = "undisclosed",
}
export enum Gender {
Agender = "agender",
Androgyne = "androgyne",
Androgynous = "androgynous",
BiGender = "bigender",
Female = "female",
FemaleToMale = "ftm",
GenderFluid = "gender_fluid",
GenderNonconforming = "gender_nonconforming",
GenderQuestioning = "gender_questioning",
GenderVariant = "gender_variant",
GenderQueer = "genderqueer",
Male = "male",
MaleToFemale = "mtf",
Neutrois = "neutrois",
NonBinary = "non_binary",
PreferNotToIdentify = "not_provided",
Other = "other",
Pangender = "pangender",
Transfeminine = "transfeminine",
TransgenderFemale = "transgender_female",
TransgenderMale = "transgender_male",
TransgenderMan = "transgender_man",
TransgenderPerson = "transgender_person",
TransgenderWoman = "transgender_woman",
Transmasculine = "transmasculine",
TranssexualFemale = "transsexual_female",
TranssexualMale = "transsexual_male",
TranssexualMan = "transsexual_man",
TranssexualPerson = "transsexual_person",
TranssexualWoman = "transsexual_woman",
TwoSpirit = "two_spirit",
}
export enum HubTags {
CrunchbaseVentureProgram = "cbvp",
EmergingUnicorn = "emerging_unicorn",
ExitedUnicorn = "exited_unicorn",
PledgeOnePercent = "pledge_one_percent",
Unicorn = "unicorn",
}
export enum InvestmentState {
EarlyStageVenture = "early_stage_venture",
LateStageVenture = "late_stage_venture",
PrivateEquity = "private_equity",
Seed = "seed",
}
export enum InvestorStage {
ConvertibleNote = "convertible_note",
Crowdfunding = "crowdfunding",
Debt = "debt",
EarlyStageVenture = "early_stage_venture",
Grant = "grant",
InitialCoinOffering = "initial_coin_offering",
LateStageVenture = "late_stage_venture",
NonEquityAssistance = "non_equity_assistance",
PostIpo = "post_ipo",
PrivateEquity = "private_equity",
SecondaryMarket = "secondary_market",
Seed = "seed",
Venture = "venture",
}
export enum InvestorType {
Accelerator = "accelerator",
AngelGroup = "angel_group",
CoWorkingSpace = "co_working_space",
CorporateVentureCapital = "corporate_venture_capital",
EntrepreneurshipProgram = "entrepreneurship_program",
FamilyInvestmentOffice = "family_investment_office",
FundOfFunds = "fund_of_funds",
GovernmentOffice = "government_office",
HedgeFund = "hedge_fund",
Incubator = "incubator",
IndividualOrAngel = "angel",
InvestmentBank = "investment_bank",
InvestmentPartner = "investment_partner",
MicroVC = "micro_vc",
PensionFunds = "pension_funds",
PrivateEquityFirm = "private_equity_firm",
SecondaryPurchaser = "secondary_purchaser",
StartupCompetition = "startup_competition",
Syndicate = "syndicate",
UniversityProgram = "university_program",
VentureCapital = "venture_capital",
VentureDebt = "venture_debt",
}
export enum IPOStatus {
Delisted = "delisted",
Private = "private",
Public = "public",
}
export enum LayoutId {
DefaultLayout = "default",
InvestorLayout = "investor",
SchoolLayout = "school",
}
export enum LocationType {
City = "city",
Region = "region",
Country = "country",
Continent = "continent",
Group = "group",
}
export enum NumberOfEmployees {
Between1And10 = "c_00001_00010",
Between11And50 = "c_00011_00050",
Between51And100 = "c_00051_00100",
Between101And250 = "c_00101_00250",
Between251And500 = "c_00251_00500",
Between501And1000 = "c_00501_01000",
Between1001And5000 = "c_01001_05000",
Between5001And10000 = "c_05001_10000",
Between10001Plus = "c_10001_max",
}
export enum OperatingStatus {
Active = "active",
Closed = "closed",
}
export enum ProgramType {
OnSite = "on_site",
Online = "online",
}
export enum RevenueRange {
LessThan1M = "r_00000000",
Between1MAnd$10M = "r_00001000",
Between10MAnd$50M = "r_00010000",
Between50MAnd$100M = "r_00050000",
Between100MAnd$500M = "r_00100000",
Between500MAnd$1B = "r_00500000",
Between1BAnd$10B = "r_01000000",
MoreThan10B = "r_10000000",
}
export enum SchoolMethod {
OnCampus = "on_compus",
Online = "online",
OnlineAndOnCampus = "online_and_on_campus",
}
export enum SchoolProgram {
Bootcamp = "bootcamp",
CommunityCollege = "community_college",
FourYearUniversity = "four_year_university",
GraduateUniversity = "graduate_university",
HighSchool = "high_school",
TradeSchool = "trade_school",
TwoYearUniversity = "two_year_university",
}
export enum SchoolType {
Private = "for_profit_private",
PrivateNonProfit = "non_profit_private",
Public = "public",
}
export enum Status {
Complete = "complete",
Closed = "closed",
IPO = "ipo",
Pending = "pending",
Operating = "operating",
WasAcquired = "was_acquired",
}
export enum StockExchangeSymbol {
ADX_AbuDhabiSecuritiesExchange = "adx",
AFX_AfghanistanStockExchange = "afx",
ALTX_ALTXEastAfricaExchange = "altx",
AMEX_AmericanStockExchange = "amex",
AMS_EuronextAmsterdam = "ams",
AMX_ArmeniaSecuritiesExchange = "amx",
ASCE_AbujaSecuritiesAndCommoditiesExchange = "asce",
ASX_AustralianSecuritiesExchange = "asx",
ATH_AthensStockExchange = "ath",
BCBA_BuenosAiresStockExchange = "bcba",
BDP_BudapestStockExchange = "bdp",
BELEX_BelgradeStockExchange = "belex",
BER_BerlinerBorse = "ber",
BFB_BakuStockExchange = "bfb",
BIT_ItalianStockExchange = "bit",
BKK_ThailandStockExchange = "bkk",
BLSE_BanjaLukaStockExchange = "blse",
BME_MadridStockExchange = "bme",
BMV_MexicanStockExchange = "bmv",
BOM_BombayStockExchange = "bom",
BRVM_RegionalSecuritiesExchangeSA = "brvm",
BSE_BulgarianStockExchange = "bse",
BSE_BeirutStockExchange = "bse_lb",
BSSE_BratislavaStockExchange = "bsse",
BSX_BermudaStockExchange = "bsx",
BVB_BucharestStockExchange = "bvb",
BVC_ColombianStockExchange = "bvc",
BVFB_BelarusianCurrencyAndStockExchange = "bvfb",
BVM_MontevideoStockExchange = "bvm",
B3_BrazilStockExchangeAndOTCMarket = "bvmf",
BVMT_TunisStockExchange = "bvmt",
BX_BerneStockExchange = "bx",
CAS_CasablancaStockExchange = "cas",
CISE_ChannelIslandsStockExchange = "cise",
CNSX_CanadianNationalStockExchange = "cnsx",
COL_ColomboStockExchange = "col",
CPH_CopenhagenStockExchange = "cph",
CSE_CanadianSecuritiesExchange = "cse",
CSE_CyprusStockExchange = "cse_cy",
CSX_CambodiaSecuritiesExchange = "csx",
TSX_V_TorontoTSXVentureExchange = "cve",
DFM_DubaiFinancialMarket = "dfm",
DSE_DhakaStockExchange = "dse",
DSX_DoualaStockExchange = "dsx",
DUS_BorseDusseldorf = "dus",
EBR_EuronextBrussels = "ebr",
EGX_EgyptStockExchange = "egx",
ELI_EuronextLisbon = "eli",
EPA_EuronextParis = "epa",
ETR_DeutscheBorseXETRA = "etr",
EUREX_EurexExchange = "eurex",
FRA_FrankfurtStockExchange = "fra",
FWB_BorseFrankfurtStockExchange = "fwb",
GHA_GhanaStockExchange = "gha",
GSX_GeorgianStockExchange = "gsx",
GSX_GibraltarStockExchange = "gsx_gi",
HEL_HelsinkiStockExchange = "hel",
HKG_HongKongStockExchange = "hkg",
HNX_HanoiStockExchange = "hnx",
HOSE_HoChiMinhStockExchange = "hose",
ICE_IcelandStockExchange = "ice",
IDX_IndonesiaStockExchange = "idx",
IEX_InvestorsExchange = "iex",
IFB_IranFaraBourse = "ifb",
IME_IranMercantileExchange = "ime",
IRENEX_IranEnergyExchange = "irenex",
ISE_IrishStockExchange = "ise",
IST_IstanbulStockExchange = "ist",
ISX_IraqStockExchange = "isx",
JP_JapanExchange = "jp",
JSC_BelarusianCurrencyAndStockExchange = "jsc",
JSE_JohannesburgStockExchange = "jse",
JSE_JamaicaStockExchange = "jse_jam",
KASE_KazakhstanStockExchange = "kase",
KLSE_MalaysiaStockExchange = "klse",
KOSDAQ_KoreanSecuritiesDealersAutomatedQuotations = "kosdaq",
KRX_KoreaStockExchange = "krx",
KSE_KuwaitStockExchange = "kse",
LJE_LjubljanaStockExchange = "lje",
LSE_LondonStockExchange = "lse",
LSM_LibyanStockMarket = "lsm",
LSX_LaoSecuritiesExchange = "lsx",
LuSE_LusakaSecuritiesExchange = "luse",
LuxSE_LuxembourgStockExchange = "luxse",
MAL_MaltaStockExchange = "mal",
MCX_MultiCommodityExchangeOfIndia = "mcx",
MEFF_MercadoSpanishFinancialFuturesMarket = "meff",
MNSE_MontenegroStockExchange = "mnse",
MOEX_MoscowExchange = "moex",
MSE_MetropolitanStockExchange = "mse",
MSE_MoldovaStockExchange = "mse_md",
MSE_MacedonianStockExchange = "mse_mk",
MSEI_MetropolitanStockExchangeOfIndia = "msei",
MSM_MuscatSecuritiesMarket = "msm",
MUN_BorseMunchen = "mun",
NASDAQ = "nasdaq",
NSE_NairobiSecuritiesExchange = "nbo",
NEEQ_NationalEquitiesExchangeAndQuotations = "neeq",
NEPSE_NepalStockExchange = "nepse",
NEX_NEXExchange = "nex",
NGM_NordicGrowthMarketExchange = "ngm",
NIG_NigerianStockExchange = "nig",
NOTC_NorwegianOTC = "notc",
NPEX_NPEXStockExchange = "npex",
NSE_NationalStockExchangeOfIndia = "nse",
NSX_NationalStockExchangeOfAustralia = "nsx",
NYSE_NewYorkStockExchange = "nyse",
NYSEARCA_NYSEArca = "nysearca",
NYSEAMERICAN_NYSEAmerican = "nysemkt",
NZE_NewZealandStockExchange = "nze",
OSE_OsloStockExchange = "ose",
OTCBB_FINRAOTCBulletinBoard = "otcbb",
OTCPink = "otcpink",
OTCQB = "otcqb",
OTCQX = "otcqx",
PDEx_PhilippineDealingExchange = "pdex",
PEX_PalestineExchange = "pex",
PFTS_PFTSUkraineStockExchange = "pfts",
POMSoX_PortMoresbyStockExchange = "pomsox",
PRA_PragueStockExchange = "prg",
PSE_PhilippineStockExchange = "pse",
PSX_PakistanStockExchange = "psx",
QSE_QatarStockExchange = "qse",
RFB_RigaStockExchange = "rfb",
RSE_RwandaStockExchange = "rse",
RSEBL_RoyalSecuritiesExchangeOfBhutan = "rsebl",
SASE_SarajevoStockExchange = "sase",
SBX_BXSwiss = "sbx",
SEHK_TheStockExchangeOfHongKong = "sehk",
SEM_StockExchangeOfMauritius = "sem",
SGBV_AlgiersStockExchange = "sgbv",
SGX_SingaporeStockExchange = "sgx",
SIX_SIXSwissExchange = "six",
SPBEX_SaintPetersburgStockExchange = "spbex",
SPSE_SouthPacificStockExchange = "spse",
SSE_ShanghaiStockExchange = "sse",
SSX_SydneyStockExchange = "ssx",
STO_StockholmStockExchange = "sto",
STU_BorseStuttgart = "stu",
SWX_SIXSwissExchange = "swx",
SZSE_ShenzhenStockExchange = "szse",
Tadawul_SaudiStockExchange = "tadawul",
TSE_TallinnStockExchange = "tal",
TFEX_ThailandFuturesExchange = "tfex",
TISE_TheInternationalStockExchange = "tise",
TLV_TelAvivStockExchange = "tlv",
TWSE_TaiwanStockExchange = "tpe",
TSE_TiranaStockExchange = "tse_al",
TSE_TehranStockExchange = "tse_ir",
TWO_TaiwanOTCExchange = "tsec",
TSX_TorontoStockExchange = "tsx",
TTSE_TrinidadandTobagoStockExchange = "ttse",
TYO_TokyoStockExchange = "tyo",
USE_UgandaSecuritiesExchange = "use",
UX_UkrainianExchange = "ux",
VIE_ViennaStockExchange = "vie",
VMF_FaroeseSecuritiesMarket = "vmf",
VSE_VancouverStockExchange = "vse",
WSE_WarsawStockExchange = "wse",
YSX_YangonStockExchange = "ysx",
ZAMACE_ZambianCommodityExchange = "zamace",
ZSE_ZimbabweStockExchange = "zse",
ZSE_ZagrebStockExchange = "zse_hr",
}
export interface IAnnouncedOn {
/**
* Date the acquisition was announced
* Searchable: Yes
* Search Operators: between, blank, eq, gte, lte
*/
announced_on?: IDateWithPrecision;
}
export interface IDateWithPrecision {
/** A field that will contain date information up to a certain level of precision. E.g. month, day, etc. */
description: "none" | "year" | "month" | "day";
value: string;
}
export interface IDatetimeWithPrecision {
/** A field that will contain date information up to a certain level of precision. E.g. month, day, etc. */
description: "none" | "year" | "month" | "day" | "hour" | "minute" | "second";
value: string;
}
/** Every entity in the system has a unique identifier that contains all necessary properties to represent it. */
export interface IEntityIdentifier {
uuid: uuid;
/** Optionally provided within Entity Def unique nice id of this entity */
permalink?: permalink;
/** Textual representation of this entity (i.e. its "name") */
value?: string;
/** Optionally provided location to obtain an image representing this entity */
image_id?: imageId;
/** What type of entity this be */
entity_def_id: EntityDefId;
}
export interface IErrors {
value: string;
}
export interface ILink {
value: string;
label?: string;
}
/** Every location entity in the system has a unique identifier that contains all necessary properties to represent it. */
export interface ILocationIdentifier extends IEntityIdentifier {
/** Type of location (city, country, etc) */
location_type?: LocationType;
}
export interface IName {
/**
* string
* maxLength: 8192
* Searchable: No
*/
name?: string;
}
export interface IMoneyDecimal {
/** A field containing decimal data that represents some amount of money */
description: CurrencyCode;
value_usd?: number;
value: number;
}
export interface IMoney {
/** A field containing decimal data that represents some amount of money */
description: CurrencyCode;
value_usd?: number;
value: number;
}
export interface ICategories {
/**
* Descriptive keyword for an Organization (e.g. SaaS, Android, Cloud Computing, Medical Device)
* Searchable: Yes
* Search Operators: blank, includes, includes_all, not_includes, not_includes_all
*/
categories?: IEntityIdentifier[];
/**
* Superset of Industries (e.g. Software, Mobile, Health Care)
* Searchable: Yes
* Search Operators: blank, includes, includes_all, not_includes, not_includes_all
*/
category_groups?: IEntityIdentifier[];
}
export interface ICreated {
/**
* Searchable: Yes
* Search Operators: between, blank, eq, gte, lte
*/
created_at?: dateTime;
}
export interface ICompanyType {
/**
* Whether an Organization is for profit or non-profit
* Searchable: Yes
* Search Operators: blank, eq, includes, not_eq, not_includes
*/
company_type?: CompanyType;
}
export interface IDescription {
/**
* maxLength: 8192
* Text from a Entity
* Searchable: Yes
* Search Operators: blank, contains, not_contains
*/
description?: string;
}
export interface IFacebook {
/**
* Link to a Person's Facebook page
* Field Type: link
* Searchable: No
*/
facebook?: ILink;
}
export interface IIdentifier {
/**
* Name of the Entity
* Searchable: Yes
* Search Operators: blank, contains, eq, includes, not_contains, not_eq, not_includes, starts
*/
identifier: IEntityIdentifier;
}
export interface IImageId {
/**
* maxLength: 255
* The profile image of the entity on Crunchbase
* Searchable: No
*/
image_id?: imageId;
}
export interface IImageUrl {
/**
* maxLength: 8192
* The cloudinary url of the profile image
* Searchable: No
*/
image_url?: string;
}
export interface ILinkedIn {
/**
* Link to a Entity's LinkedIn page
* Field Type: link
* Searchable: No
*/
linkedin?: ILink;
}
export interface IPermalink {
/**
* maxLength: 255
* Searchable: No
*/
permalink?: permalink;
}
export interface IPermalinkAliases {
/**
* maxItems: 255
* These are the alternative aliases to the primary permalink of the Entity
* Searchable: Yes
* Search Operators: blank, includes, includes_all, not_includes, not_includes_all
* maxLength: 255
*/
permalink_aliases?: string[];
}
export interface IShortDescription {
/**
* maxLength: 8192
* Text of Entity Description
* Field Type: text_long
* Searchable: Yes
* Search Operators: blank, contains, not_contains
*/
short_description?: string;
}
export interface IStockExchange {
/**
* Stock exchange where the Organization is listed (e.g. NYSE, NASDAQ)
* Searchable: Yes
* Search Operators: blank, eq, includes, not_eq, not_includes
*/
stock_exchange_symbol?: StockExchangeSymbol;
/**
* Stock ticker symbol (e.g. AAPL, FB, TWTR)
* Searchable: Yes
* Search Operators: blank, contains, eq, includes, not_contains, not_eq, not_includes, starts
*/
stock_symbol?: IEntityIdentifier;
}
export interface ITwitter {
/**
* Link to a Entity's Twitter page
* Field Type: link
* Searchable: No
*/
twitter?: ILink;
}
export interface IUpdated {
/**
* Searchable: Yes
* Search Operators: between, blank, eq, gte, lte
*/
updated_at?: dateTime;
}
export interface IWebsite {
/**
* Link to a Entity's website. note: website_url has replaced this field; this field will be deprecated in the near future
* Searchable: No
* @deprecated
*/
website?: ILink;
}
export interface IUUID {
/**
* Searchable: Yes
* Search Operators: blank, eq, includes
*/
uuid?: uuid;
}
export interface IWebsiteUrl {
/**
* maxLength: 8192
* Link to a Entity's website
* Searchable: Yes
* Search Operators: domain_blank, domain_eq, domain_includes, not_domain_eq, not_domain_includes
*/
website_url?: url;
}