mgtypes 1.0.42 → 1.0.44
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 +1 -1
- package/types/Configuration.ts +3 -1
package/package.json
CHANGED
package/types/Configuration.ts
CHANGED
|
@@ -100,6 +100,7 @@ export interface mgNavigationConfig {
|
|
|
100
100
|
primary: mgNavButton[];
|
|
101
101
|
secondary: mgNavButton[];
|
|
102
102
|
};
|
|
103
|
+
homePage: 'Settings' | 'Map' | 'Feed' | 'Calendar' | 'Lists'
|
|
103
104
|
}
|
|
104
105
|
|
|
105
106
|
/**
|
|
@@ -347,7 +348,8 @@ export interface mgPermissionsProfile {
|
|
|
347
348
|
NATIVE_PERMISSIONS: {
|
|
348
349
|
LOCATION_FOREGROUND: { isRequired: boolean; requestOnInit: boolean };
|
|
349
350
|
LOCATION_BACKGROUND: { isRequired: boolean; requestOnInit: boolean };
|
|
350
|
-
|
|
351
|
+
MEDIA_LIBRARY: { isRequired: boolean; requestOnInit: boolean };
|
|
352
|
+
REMINDERS: { isRequired: boolean; requestOnInit: boolean };
|
|
351
353
|
CAMERA: { isRequired: boolean; requestOnInit: boolean };
|
|
352
354
|
MICROPHONE: { isRequired: boolean; requestOnInit: boolean };
|
|
353
355
|
CONTACTS: { isRequired: boolean; requestOnInit: boolean };
|