mgtypes 1.0.94 → 1.0.95

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mgtypes",
3
- "version": "1.0.94",
3
+ "version": "1.0.95",
4
4
  "description": "types for mg development",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/types/Content.ts CHANGED
@@ -225,6 +225,7 @@ export interface mgPhoto {
225
225
 
226
226
  export interface mgRoute {
227
227
  routeCategory: string;
228
+ routeType:string;
228
229
  primaryText: string;
229
230
  secondaryText: string;
230
231
  mediaURL?: string;
@@ -373,7 +373,7 @@ export interface mgStylesConfig {
373
373
  */
374
374
  export interface mgProfilesConfig {
375
375
  GUEST: mgProfileConfig;
376
- MEMBER: mgProfileConfig;
376
+ USER: mgProfileConfig;
377
377
  ADMIN: mgProfileConfig;
378
378
  DEFAULT: mgProfileConfig;
379
379
  }