@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.
Files changed (2) hide show
  1. package/core.d.ts +13 -0
  2. 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
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@openvoy/openvoy-typescriptmodels",
3
- "version": "0.0.2831",
3
+ "version": "0.0.2851",
4
4
  "types": "core.d.ts"
5
5
  }