@telos-dev-team/dealernode-permissions 1.0.6 → 1.0.7

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.
@@ -717,5 +717,11 @@ export declare const PERMISSIONS: {
717
717
  readonly EXECUTE: "failed_action.operations.execute";
718
718
  };
719
719
  };
720
+ readonly CALENDAR: {
721
+ readonly OPERATIONS: {
722
+ readonly VIEW: "calendar.operations.view";
723
+ readonly UPDATE: "calendar.operations.update";
724
+ };
725
+ };
720
726
  };
721
727
  export type Permission = typeof PERMISSIONS;
@@ -783,4 +783,13 @@ exports.PERMISSIONS = {
783
783
  EXECUTE: 'failed_action.operations.execute',
784
784
  },
785
785
  },
786
+ // ============================================
787
+ // CALENDAR
788
+ // ============================================
789
+ CALENDAR: {
790
+ OPERATIONS: {
791
+ VIEW: 'calendar.operations.view',
792
+ UPDATE: 'calendar.operations.update',
793
+ },
794
+ },
786
795
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telos-dev-team/dealernode-permissions",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "Shared permissions constants for dealernode projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -801,6 +801,16 @@ export const PERMISSIONS = {
801
801
  EXECUTE: 'failed_action.operations.execute',
802
802
  },
803
803
  },
804
+
805
+ // ============================================
806
+ // CALENDAR
807
+ // ============================================
808
+ CALENDAR: {
809
+ OPERATIONS: {
810
+ VIEW: 'calendar.operations.view',
811
+ UPDATE: 'calendar.operations.update',
812
+ },
813
+ },
804
814
  } as const;
805
815
 
806
816
  export type Permission = typeof PERMISSIONS;