@openvoy/openvoy-typescriptmodels 0.0.4852 → 0.0.4861
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 +2 -1
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -242,6 +242,7 @@ export interface DestinationSubContinentDetails {
|
|
|
242
242
|
export interface DestinationSummary {
|
|
243
243
|
alias?: string;
|
|
244
244
|
bestTour?: TourInfo;
|
|
245
|
+
categoryName?: string;
|
|
245
246
|
cityDetails?: DestinationCityDetails;
|
|
246
247
|
contentDetails?: ContentDetails;
|
|
247
248
|
continentDetails?: DestinationContinentDetails;
|
|
@@ -474,7 +475,6 @@ export interface GetCategoryEntity {
|
|
|
474
475
|
|
|
475
476
|
export interface GetCity {
|
|
476
477
|
cityId?: string;
|
|
477
|
-
code?: string;
|
|
478
478
|
}
|
|
479
479
|
|
|
480
480
|
export interface GetCityForProvider {
|
|
@@ -778,6 +778,7 @@ export interface TagInfo {
|
|
|
778
778
|
childTags?: { [index: string]: TagDetails };
|
|
779
779
|
contentDetails?: ContentDetails;
|
|
780
780
|
destinationAlias?: string;
|
|
781
|
+
destinationCategoryName?: string;
|
|
781
782
|
destinationId?: string;
|
|
782
783
|
destinationIds?: DestinationIds;
|
|
783
784
|
destinationName?: string;
|
package/package.json
CHANGED