mgtypes 1.0.26 → 1.0.28

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/package.json +1 -1
  2. package/types/Content.ts +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mgtypes",
3
- "version": "1.0.26",
3
+ "version": "1.0.28",
4
4
  "description": "types for mg development",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/types/Content.ts CHANGED
@@ -42,6 +42,7 @@ export interface AppContent {
42
42
  order: number[];
43
43
  title: string;
44
44
  description: string;
45
+ icon:string;
45
46
  };
46
47
  };
47
48
  }
@@ -140,6 +141,7 @@ export interface Contentable {
140
141
 
141
142
  // Routes
142
143
  routeCategory?: string;
144
+ distance?: string;
143
145
  color?: string;
144
146
  coordinates?: Position[];
145
147