@openvoy/openvoy-typescriptmodels 0.0.2182 → 0.0.2192
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 +6 -10
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -16,14 +16,14 @@ export interface ApiKeyResult {
|
|
|
16
16
|
|
|
17
17
|
export interface Attraction {
|
|
18
18
|
alias?: string;
|
|
19
|
-
attractionId?:
|
|
19
|
+
attractionId?: string;
|
|
20
20
|
countryIsoCode?: string;
|
|
21
21
|
details?: AttractionDetails;
|
|
22
22
|
providerDetails?: { [index: string]: AttractionProviderDetails };
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
export interface AttractionCommand extends CountryUpdate {
|
|
26
|
-
attractionId?:
|
|
26
|
+
attractionId?: string;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
export interface AttractionDetails {
|
|
@@ -40,13 +40,9 @@ export interface AttractionDetails {
|
|
|
40
40
|
tours?: TourProviderId[];
|
|
41
41
|
}
|
|
42
42
|
|
|
43
|
-
export interface AttractionId {
|
|
44
|
-
type?: any;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
43
|
export interface AttractionInfo {
|
|
48
44
|
alias?: string;
|
|
49
|
-
attractionId?:
|
|
45
|
+
attractionId?: string;
|
|
50
46
|
cities?: string[];
|
|
51
47
|
continent?: Continent;
|
|
52
48
|
countryId?: string;
|
|
@@ -230,7 +226,7 @@ export interface DateRange extends Comparable<DateRange> {
|
|
|
230
226
|
}
|
|
231
227
|
|
|
232
228
|
export interface DeleteAttraction {
|
|
233
|
-
attractionId?:
|
|
229
|
+
attractionId?: string;
|
|
234
230
|
}
|
|
235
231
|
|
|
236
232
|
export interface DeleteTour {
|
|
@@ -667,7 +663,7 @@ export interface TagUpdate extends TagCommand {
|
|
|
667
663
|
}
|
|
668
664
|
|
|
669
665
|
export interface Tour {
|
|
670
|
-
attractions?:
|
|
666
|
+
attractions?: string[];
|
|
671
667
|
cityId?: string;
|
|
672
668
|
continent?: Continent;
|
|
673
669
|
countryId?: string;
|
|
@@ -821,7 +817,7 @@ export interface UpsertTour extends TourDetailsUpdate {
|
|
|
821
817
|
}
|
|
822
818
|
|
|
823
819
|
export interface UpsertTourAttraction extends TourUpdate {
|
|
824
|
-
attractionId?:
|
|
820
|
+
attractionId?: string;
|
|
825
821
|
}
|
|
826
822
|
|
|
827
823
|
export interface UpsertTours {
|
package/package.json
CHANGED