@openvoy/openvoy-typescriptmodels 0.0.61
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/core.d.ts +608 -0
- package/package.json +5 -0
package/core.d.ts
ADDED
|
@@ -0,0 +1,608 @@
|
|
|
1
|
+
|
|
2
|
+
export interface ApiKeyResult {
|
|
3
|
+
issuedAt?: string;
|
|
4
|
+
key?: string;
|
|
5
|
+
keyId?: string;
|
|
6
|
+
userId?: UserId;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export interface Category {
|
|
10
|
+
activityTags?: string[];
|
|
11
|
+
alias?: string;
|
|
12
|
+
categoryId?: string;
|
|
13
|
+
city?: string;
|
|
14
|
+
cityTags?: string[];
|
|
15
|
+
country?: string;
|
|
16
|
+
countryTags?: string[];
|
|
17
|
+
name?: string;
|
|
18
|
+
type?: CategoryType;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export interface CategoryCode {
|
|
22
|
+
type?: any;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export interface City {
|
|
26
|
+
alias?: string;
|
|
27
|
+
cityId?: string;
|
|
28
|
+
countryIsoCode?: string;
|
|
29
|
+
details?: CityDetails;
|
|
30
|
+
providerAliases?: string[];
|
|
31
|
+
providerDetails?: { [index: string]: CityProviderDetails };
|
|
32
|
+
tags?: string[];
|
|
33
|
+
tours?: { [index: string]: TourId[] };
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export interface CityDetails {
|
|
37
|
+
description?: string;
|
|
38
|
+
imageUrl?: string;
|
|
39
|
+
name?: string;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export interface CityInfo {
|
|
43
|
+
alias?: string;
|
|
44
|
+
cityId?: string;
|
|
45
|
+
countryDetails?: CountryDetails;
|
|
46
|
+
countryId?: string;
|
|
47
|
+
details?: CityDetails;
|
|
48
|
+
tags?: { [index: string]: TagDetailsInfo };
|
|
49
|
+
timestampOfTourCount?: string;
|
|
50
|
+
tours?: TourId[];
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export interface CityProviderDetails {
|
|
54
|
+
alias?: CityProviderId;
|
|
55
|
+
destinationCode?: string;
|
|
56
|
+
provider?: TourProvider;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export interface CityProviderId {
|
|
60
|
+
type?: any;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
export interface CityReport {
|
|
64
|
+
cityDetails?: CityDetails;
|
|
65
|
+
cityId?: string;
|
|
66
|
+
countryDetails?: CountryDetails;
|
|
67
|
+
countryId?: string;
|
|
68
|
+
tours?: { [index: string]: TourReportSummary };
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
export interface CityTourDetails {
|
|
72
|
+
details?: TourDetails;
|
|
73
|
+
providerDetails?: TourProviderDetails;
|
|
74
|
+
tourId?: TourId;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
export interface CityUpdate extends CountryUpdate {
|
|
78
|
+
cityId?: string;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
export interface Comparable<T> {
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
export interface Country {
|
|
85
|
+
cities?: City[];
|
|
86
|
+
countryId?: string;
|
|
87
|
+
details?: CountryDetails;
|
|
88
|
+
featured?: boolean;
|
|
89
|
+
providerAliases?: string[];
|
|
90
|
+
providerDetails?: { [index: string]: CountryProviderDetails };
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
export interface CountryDetails {
|
|
94
|
+
categories?: string[];
|
|
95
|
+
centerPosition?: LatLong;
|
|
96
|
+
continent?: Continent;
|
|
97
|
+
description?: string;
|
|
98
|
+
iso2Code?: string;
|
|
99
|
+
iso3Code?: string;
|
|
100
|
+
languages?: string[];
|
|
101
|
+
name?: string;
|
|
102
|
+
numeric?: string;
|
|
103
|
+
subContinent?: string;
|
|
104
|
+
synonyms?: string[];
|
|
105
|
+
timeZone?: string;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
export interface CountryInfo {
|
|
109
|
+
cities?: City[];
|
|
110
|
+
countryId?: string;
|
|
111
|
+
details?: CountryDetails;
|
|
112
|
+
tags?: { [index: string]: TagDetailsInfo };
|
|
113
|
+
timestampOfTourCount?: string;
|
|
114
|
+
tours?: TourId[];
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
export interface CountryProviderDetails {
|
|
118
|
+
alias?: CountryProviderId;
|
|
119
|
+
countryCode?: string;
|
|
120
|
+
provider?: TourProvider;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
export interface CountryProviderId {
|
|
124
|
+
type?: any;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
export interface CountryUpdate {
|
|
128
|
+
countryId?: string;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
export interface CreateTour extends TourUpdate {
|
|
132
|
+
cityId?: string;
|
|
133
|
+
countryId?: string;
|
|
134
|
+
providerDetails?: TourProviderDetails;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
export interface CreateUser extends UserUpdate {
|
|
138
|
+
admin?: boolean;
|
|
139
|
+
details?: UserDetails;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
export interface DateRange extends Comparable<DateRange> {
|
|
143
|
+
end?: string;
|
|
144
|
+
start?: string;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
export interface DeleteTour {
|
|
148
|
+
tourId?: TourId;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
export interface DeleteUser extends UserUpdate {
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
export interface Email {
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
export interface EncryptSecret {
|
|
158
|
+
secret?: string;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
export interface EntityChanged<T> {
|
|
162
|
+
after?: any;
|
|
163
|
+
before?: any;
|
|
164
|
+
id?: string;
|
|
165
|
+
lastEventIndex?: number;
|
|
166
|
+
type?: any;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
export interface FacetFilter {
|
|
170
|
+
facetName?: string;
|
|
171
|
+
values?: any[];
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
export interface FacetResult {
|
|
175
|
+
facets?: { [index: string]: FacetValueResult[] };
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
export interface FacetValueResult {
|
|
179
|
+
count?: number;
|
|
180
|
+
value?: string;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
export interface FacetableRequest {
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
export interface FacetedSearch<R> extends FacetableRequest {
|
|
187
|
+
facetFilters?: FacetFilter[];
|
|
188
|
+
pagination?: Pagination;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
export interface FeatureCountry extends CountryUpdate {
|
|
192
|
+
featured?: boolean;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
export interface FetchString {
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
export interface FindCities extends FacetedSearch<City> {
|
|
199
|
+
term?: string;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
export interface FindCitiesByName {
|
|
203
|
+
name?: string;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
export interface FindCityInfo {
|
|
207
|
+
cityId?: string;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
export interface FindCountries extends FacetedSearch<Country> {
|
|
211
|
+
term?: string;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
export interface FindCountriesByCategory {
|
|
215
|
+
category?: string;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
export interface FindCountryCities {
|
|
219
|
+
countryId?: string;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
export interface FindCountryInfo {
|
|
223
|
+
countryId?: string;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
export interface FindRegisteredEmailAddresses {
|
|
227
|
+
from?: string;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
export interface FindTagCities {
|
|
231
|
+
tagId?: string;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
export interface FindTagInfos extends FacetedSearch<TagInfo> {
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
export interface FindTags extends FacetedSearch<Tag> {
|
|
238
|
+
term?: string;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
export interface FindTours extends FacetedSearch<Tour> {
|
|
242
|
+
term?: string;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
export interface FindToursForDestination extends FacetedSearch<Tour> {
|
|
246
|
+
cityId?: string;
|
|
247
|
+
countryId?: string;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
export interface Function<T, R> {
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
export interface GenerateApiKey {
|
|
254
|
+
issuedAt?: string;
|
|
255
|
+
keyId?: string;
|
|
256
|
+
userId?: UserId;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
export interface GenerateKeyPair {
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
export interface GetCategory {
|
|
263
|
+
categoryId?: string;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
export interface GetCategoryByCode {
|
|
267
|
+
categoryType?: CategoryType;
|
|
268
|
+
code?: string;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
export interface GetCategoryEntity {
|
|
272
|
+
categoryId?: string;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
export interface GetCity {
|
|
276
|
+
cityId?: string;
|
|
277
|
+
code?: string;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
export interface GetCityForProvider {
|
|
281
|
+
countryCode?: string;
|
|
282
|
+
name?: string;
|
|
283
|
+
providerId?: CityProviderId;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
export interface GetCityReport {
|
|
287
|
+
countryName?: string;
|
|
288
|
+
destinationName?: string;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
export interface GetCountriesForHomePage {
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
export interface GetCountry {
|
|
295
|
+
code?: string;
|
|
296
|
+
countryId?: string;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
export interface GetCountryForProvider {
|
|
300
|
+
countryName?: string;
|
|
301
|
+
providerId?: CountryProviderId;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
export interface GetFacets extends FacetableRequest {
|
|
305
|
+
query?: FacetableRequest;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
export interface GetPublicKey {
|
|
309
|
+
userId?: UserId;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
export interface GetSender {
|
|
313
|
+
userId?: UserId;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
export interface GetTagInfo {
|
|
317
|
+
tagId?: string;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
export interface GetTourProvider {
|
|
321
|
+
code?: string;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
export interface GetTourProviders {
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
export interface GetUserProfile {
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
export interface GetUsers extends FacetableRequest, FacetedSearch<UserProfile> {
|
|
331
|
+
term?: string;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
export interface InstantRange extends Comparable<InstantRange> {
|
|
335
|
+
end?: string;
|
|
336
|
+
start?: string;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
export interface IsDefaultAdmin {
|
|
340
|
+
email?: Email;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
export interface LatLong {
|
|
344
|
+
latitude?: number;
|
|
345
|
+
longitude?: number;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
export interface Pagination {
|
|
349
|
+
count?: number;
|
|
350
|
+
from?: number;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
export interface RatingDetails {
|
|
354
|
+
numberOfRatings?: number;
|
|
355
|
+
rating?: number;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
export interface RegisterEmailAddress {
|
|
359
|
+
email?: Email;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
export interface RegisteredEmailAddress {
|
|
363
|
+
createdAt?: string;
|
|
364
|
+
emailAddress?: Email;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
export interface SearchCategories {
|
|
368
|
+
converter?: Function<any, Category>;
|
|
369
|
+
term?: string;
|
|
370
|
+
terms?: string[];
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
export interface Secret {
|
|
374
|
+
secret?: string;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
export interface SendWebRequest {
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
export interface SetUserRole extends UserUpdate {
|
|
381
|
+
userRole?: Role;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
export interface Supplier<T> {
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
export interface SystemUserKey {
|
|
388
|
+
issuedAt?: string;
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
export interface Tag {
|
|
392
|
+
details?: TagDetails;
|
|
393
|
+
parentTags?: { [index: string]: TagDetails };
|
|
394
|
+
providerAlias?: string;
|
|
395
|
+
providerDetails?: TagProviderDetails;
|
|
396
|
+
root?: boolean;
|
|
397
|
+
tagId?: string;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
export interface TagDetails {
|
|
401
|
+
name?: string;
|
|
402
|
+
namesByLocale?: { [index: string]: string };
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
export interface TagDetailsInfo {
|
|
406
|
+
details?: TagDetails;
|
|
407
|
+
tagId?: string;
|
|
408
|
+
tours?: TourId[];
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
export interface TagInfo {
|
|
412
|
+
childTags?: { [index: string]: TagDetails };
|
|
413
|
+
details?: TagDetails;
|
|
414
|
+
root?: boolean;
|
|
415
|
+
tagId?: string;
|
|
416
|
+
timestampOfTourCount?: string;
|
|
417
|
+
tours?: TourId[];
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
export interface TagProviderDetails {
|
|
421
|
+
alias?: TagProviderId;
|
|
422
|
+
provider?: TourProvider;
|
|
423
|
+
tagId?: string;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
export interface TagProviderId {
|
|
427
|
+
type?: any;
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
export interface Tour {
|
|
431
|
+
cityId?: string;
|
|
432
|
+
countryId?: string;
|
|
433
|
+
details?: TourDetails;
|
|
434
|
+
externalId?: TourProviderId;
|
|
435
|
+
providerDetails?: TourProviderDetails;
|
|
436
|
+
tourId?: TourId;
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
export interface TourDetails {
|
|
440
|
+
bestSeller?: boolean;
|
|
441
|
+
certified?: boolean;
|
|
442
|
+
description?: string;
|
|
443
|
+
durationInHours?: number[];
|
|
444
|
+
images?: TourImage[];
|
|
445
|
+
name?: string;
|
|
446
|
+
openingHours?: InstantRange[];
|
|
447
|
+
pricing?: { [index: string]: TourPricing };
|
|
448
|
+
provider?: TourProvider;
|
|
449
|
+
providerUrl?: string;
|
|
450
|
+
rating?: RatingDetails;
|
|
451
|
+
tags?: string[];
|
|
452
|
+
timeRange?: InstantRange;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
export interface TourId {
|
|
456
|
+
type?: any;
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
export interface TourImage {
|
|
460
|
+
copyright?: string;
|
|
461
|
+
height?: number;
|
|
462
|
+
ratio?: number;
|
|
463
|
+
url?: string;
|
|
464
|
+
width?: number;
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
export interface TourPricing {
|
|
468
|
+
amount?: number;
|
|
469
|
+
currency?: string;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
export interface TourProvider {
|
|
473
|
+
code?: string;
|
|
474
|
+
name?: string;
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
export interface TourProviderDetails {
|
|
478
|
+
alias?: TourProviderId;
|
|
479
|
+
provider?: TourProvider;
|
|
480
|
+
tourId?: string;
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
export interface TourProviderId {
|
|
484
|
+
type?: any;
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
export interface TourReportSummary {
|
|
488
|
+
priceInUsd?: number;
|
|
489
|
+
supplier?: string;
|
|
490
|
+
tourId?: TourId;
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
export interface TourUpdate {
|
|
494
|
+
details?: TourDetails;
|
|
495
|
+
tourId?: TourId;
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
export interface UiUpdate {
|
|
499
|
+
id?: string;
|
|
500
|
+
index?: number;
|
|
501
|
+
patch?: any;
|
|
502
|
+
type?: Type;
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
export interface UpdateTour extends TourUpdate {
|
|
506
|
+
cityId?: string;
|
|
507
|
+
countryId?: string;
|
|
508
|
+
providerDetails?: TourProviderDetails;
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
export interface UpdateUser extends UserUpdate {
|
|
512
|
+
details?: UserDetails;
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
export interface UpsertCity extends CityUpdate {
|
|
516
|
+
details?: CityDetails;
|
|
517
|
+
providerDetails?: CityProviderDetails;
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
export interface UpsertCountriesFromRefData {
|
|
521
|
+
refData?: Supplier<CountryDetails[]>;
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
export interface UpsertCountry extends CountryUpdate {
|
|
525
|
+
details?: CountryDetails;
|
|
526
|
+
providerDetails?: CountryProviderDetails;
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
export interface UpsertDestinationTags extends CityUpdate {
|
|
530
|
+
tags?: string[];
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
export interface UpsertParentTags {
|
|
534
|
+
parentTags?: { [index: string]: TagDetails };
|
|
535
|
+
tagId?: string;
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
export interface UpsertPublicKey extends UserUpdate {
|
|
539
|
+
issuedAt?: string;
|
|
540
|
+
keyId?: string;
|
|
541
|
+
publicKey?: string;
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
export interface UpsertTag {
|
|
545
|
+
details?: TagDetails;
|
|
546
|
+
providerDetails?: TagProviderDetails;
|
|
547
|
+
tagId?: string;
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
export interface UpsertTour extends TourUpdate {
|
|
551
|
+
cityId?: string;
|
|
552
|
+
countryId?: string;
|
|
553
|
+
providerDetails?: TourProviderDetails;
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
export interface UpsertTours {
|
|
557
|
+
tours?: TourUpdate[];
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
export interface UserDetails {
|
|
561
|
+
email?: Email;
|
|
562
|
+
firstName?: string;
|
|
563
|
+
lastName?: string;
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
export interface UserId {
|
|
567
|
+
type?: any;
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
export interface UserProfile {
|
|
571
|
+
details?: UserDetails;
|
|
572
|
+
publicKey?: SystemUserKey;
|
|
573
|
+
systemUser?: boolean;
|
|
574
|
+
userId?: UserId;
|
|
575
|
+
userRole?: Role;
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
export interface UserUpdate {
|
|
579
|
+
userId?: UserId;
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
export const enum CategoryType {
|
|
583
|
+
continent = "continent",
|
|
584
|
+
country = "country",
|
|
585
|
+
city = "city",
|
|
586
|
+
tag = "tag",
|
|
587
|
+
tour = "tour",
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
export const enum Continent {
|
|
591
|
+
Africa = "Africa",
|
|
592
|
+
Asia = "Asia",
|
|
593
|
+
Europe = "Europe",
|
|
594
|
+
North_America = "North_America",
|
|
595
|
+
South_America = "South_America",
|
|
596
|
+
Oceania = "Oceania",
|
|
597
|
+
Antarctica = "Antarctica",
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
export const enum Role {
|
|
601
|
+
admin = "admin",
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
export const enum Type {
|
|
605
|
+
Organisation = "Organisation",
|
|
606
|
+
UserProfile = "UserProfile",
|
|
607
|
+
Issue = "Issue",
|
|
608
|
+
}
|