mgtypes 1.0.47 → 1.0.48
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 +16 -1
package/package.json
CHANGED
package/types/Configuration.ts
CHANGED
|
@@ -194,7 +194,6 @@ export interface mgFeaturesConfig {
|
|
|
194
194
|
IS_CONTENT_THREADED: boolean;
|
|
195
195
|
}
|
|
196
196
|
|
|
197
|
-
|
|
198
197
|
// ** AUTH **
|
|
199
198
|
|
|
200
199
|
export interface mgAuthenticationConfig {
|
|
@@ -368,6 +367,7 @@ export interface mgPermissionsProfile {
|
|
|
368
367
|
LOCATION_BACKGROUND: { isRequired: boolean; requestOnInit: boolean };
|
|
369
368
|
MEDIA_LIBRARY: { isRequired: boolean; requestOnInit: boolean };
|
|
370
369
|
REMINDERS: { isRequired: boolean; requestOnInit: boolean };
|
|
370
|
+
NOTIFICATIONS: { isRequired: boolean; requestOnInit: boolean };
|
|
371
371
|
CAMERA: { isRequired: boolean; requestOnInit: boolean };
|
|
372
372
|
MICROPHONE: { isRequired: boolean; requestOnInit: boolean };
|
|
373
373
|
CONTACTS: { isRequired: boolean; requestOnInit: boolean };
|
|
@@ -418,6 +418,21 @@ export interface mgPermissionsProfile {
|
|
|
418
418
|
default: boolean;
|
|
419
419
|
};
|
|
420
420
|
};
|
|
421
|
+
|
|
422
|
+
NOTIFICATIONS: {
|
|
423
|
+
ALLOW_FOR_RSVPS: {
|
|
424
|
+
canToggle: boolean;
|
|
425
|
+
default: boolean;
|
|
426
|
+
};
|
|
427
|
+
ALLOW_FOR_UPDATES: {
|
|
428
|
+
canToggle: boolean;
|
|
429
|
+
default: boolean;
|
|
430
|
+
};
|
|
431
|
+
ALLOW_FOR_MARKETING: {
|
|
432
|
+
canToggle: boolean;
|
|
433
|
+
default: boolean;
|
|
434
|
+
};
|
|
435
|
+
};
|
|
421
436
|
}
|
|
422
437
|
|
|
423
438
|
/**
|