@openvoy/openvoy-typescriptmodels 0.0.1681 → 0.0.1701
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 +11 -1
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -287,6 +287,10 @@ export interface FindToursForDestination extends FacetedSearch<Tour> {
|
|
|
287
287
|
subContinentId?: string;
|
|
288
288
|
}
|
|
289
289
|
|
|
290
|
+
export interface FindToursWithTag extends FacetedSearch<Tour> {
|
|
291
|
+
tagId?: string;
|
|
292
|
+
}
|
|
293
|
+
|
|
290
294
|
export interface Function<T, R> {
|
|
291
295
|
}
|
|
292
296
|
|
|
@@ -374,8 +378,12 @@ export interface GetSubContinentInfo {
|
|
|
374
378
|
subContinentId?: string;
|
|
375
379
|
}
|
|
376
380
|
|
|
381
|
+
export interface GetTagByAlias {
|
|
382
|
+
alias?: string;
|
|
383
|
+
}
|
|
384
|
+
|
|
377
385
|
export interface GetTagInfo {
|
|
378
|
-
|
|
386
|
+
alias?: string;
|
|
379
387
|
}
|
|
380
388
|
|
|
381
389
|
export interface GetTourProvider {
|
|
@@ -486,6 +494,7 @@ export interface SystemUserKey {
|
|
|
486
494
|
}
|
|
487
495
|
|
|
488
496
|
export interface Tag {
|
|
497
|
+
alias?: string;
|
|
489
498
|
childTags?: { [index: string]: TagDetails };
|
|
490
499
|
details?: TagDetails;
|
|
491
500
|
internalDetails?: TagInternalDetails;
|
|
@@ -507,6 +516,7 @@ export interface TagDetails {
|
|
|
507
516
|
|
|
508
517
|
export interface TagInfo {
|
|
509
518
|
active?: boolean;
|
|
519
|
+
alias?: string;
|
|
510
520
|
bestTour?: TourInfo;
|
|
511
521
|
childTagIds?: string[];
|
|
512
522
|
childTags?: { [index: string]: TagDetails };
|
package/package.json
CHANGED