@openvoy/openvoy-typescriptmodels 0.0.2831 → 0.0.2851
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 +13 -0
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -781,6 +781,13 @@ export interface TourUpdate {
|
|
|
781
781
|
tourId?: TourId;
|
|
782
782
|
}
|
|
783
783
|
|
|
784
|
+
export interface UiUpdate {
|
|
785
|
+
id?: string;
|
|
786
|
+
index?: number;
|
|
787
|
+
patch?: any;
|
|
788
|
+
type?: Type;
|
|
789
|
+
}
|
|
790
|
+
|
|
784
791
|
export interface UpdateTour extends TourDetailsUpdate {
|
|
785
792
|
cityId?: string;
|
|
786
793
|
continent?: Continent;
|
|
@@ -968,3 +975,9 @@ export const enum SitemapType {
|
|
|
968
975
|
attractions = "attractions",
|
|
969
976
|
tags = "tags",
|
|
970
977
|
}
|
|
978
|
+
|
|
979
|
+
export const enum Type {
|
|
980
|
+
Organisation = "Organisation",
|
|
981
|
+
UserProfile = "UserProfile",
|
|
982
|
+
Issue = "Issue",
|
|
983
|
+
}
|
package/package.json
CHANGED