mgtypes 1.0.40 → 1.0.41

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.40",
3
+ "version": "1.0.41",
4
4
  "description": "types for mg development",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -383,6 +383,21 @@ export interface mgPermissionsProfile {
383
383
  // requires both foreground and background location tracking
384
384
  EMERGENCY_LOCATION_SHARING: { canToggle: boolean; default: boolean };
385
385
  };
386
+
387
+ CALENDAR: {
388
+ CREATE_EVENTS: {
389
+ canToggle: boolean;
390
+ default: boolean;
391
+ };
392
+ CREATE_REMINDERS: {
393
+ canToggle: boolean;
394
+ default: boolean;
395
+ };
396
+ ADD_ATTENDEES: {
397
+ canToggle: boolean;
398
+ default: boolean;
399
+ };
400
+ };
386
401
  }
387
402
 
388
403
  /**