@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.
- package/dist/permissions.d.ts +6 -0
- package/dist/permissions.js +9 -0
- package/package.json +1 -1
- package/src/permissions.ts +10 -0
package/dist/permissions.d.ts
CHANGED
|
@@ -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;
|
package/dist/permissions.js
CHANGED
|
@@ -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
package/src/permissions.ts
CHANGED
|
@@ -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;
|