@openvoy/openvoy-typescriptmodels 0.0.1371 → 0.0.1401
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 +8 -0
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -490,6 +490,7 @@ export interface SystemUserKey {
|
|
|
490
490
|
|
|
491
491
|
export interface Tag {
|
|
492
492
|
details?: TagDetails;
|
|
493
|
+
internalDetails?: TagInternalDetails;
|
|
493
494
|
parentTags?: { [index: string]: TagDetails };
|
|
494
495
|
providerAlias?: string;
|
|
495
496
|
providerDetails?: TagProviderDetails;
|
|
@@ -503,8 +504,10 @@ export interface TagDetails {
|
|
|
503
504
|
}
|
|
504
505
|
|
|
505
506
|
export interface TagInfo {
|
|
507
|
+
active?: boolean;
|
|
506
508
|
bestTour?: TourInfo;
|
|
507
509
|
details?: TagDetails;
|
|
510
|
+
internalDetails?: TagInternalDetails;
|
|
508
511
|
parentTags?: { [index: string]: TagDetails };
|
|
509
512
|
root?: boolean;
|
|
510
513
|
tagId?: string;
|
|
@@ -512,6 +515,10 @@ export interface TagInfo {
|
|
|
512
515
|
tours?: { [index: string]: TourInfo };
|
|
513
516
|
}
|
|
514
517
|
|
|
518
|
+
export interface TagInternalDetails {
|
|
519
|
+
hiddenOnWebsite?: boolean;
|
|
520
|
+
}
|
|
521
|
+
|
|
515
522
|
export interface TagProviderDetails {
|
|
516
523
|
alias?: TagProviderId;
|
|
517
524
|
provider?: TourProvider;
|
|
@@ -643,6 +650,7 @@ export interface UpsertPublicKey extends UserUpdate {
|
|
|
643
650
|
|
|
644
651
|
export interface UpsertTag {
|
|
645
652
|
details?: TagDetails;
|
|
653
|
+
internalDetails?: TagInternalDetails;
|
|
646
654
|
providerDetails?: TagProviderDetails;
|
|
647
655
|
tagId?: string;
|
|
648
656
|
}
|
package/package.json
CHANGED