@telos-dev-team/dealernode-permissions 1.1.14 → 1.1.15
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 +10 -0
- package/dist/permissions.js +13 -0
- package/package.json +1 -1
- package/src/permissions.ts +14 -0
package/dist/permissions.d.ts
CHANGED
|
@@ -618,6 +618,16 @@ export declare const PERMISSIONS: {
|
|
|
618
618
|
readonly UPDATE: "calendar.operations.update";
|
|
619
619
|
};
|
|
620
620
|
};
|
|
621
|
+
readonly NOTIFICATION: {
|
|
622
|
+
readonly ROUTING: {
|
|
623
|
+
readonly VIEW: "notification.routing.view";
|
|
624
|
+
readonly MANAGE: "notification.routing.manage";
|
|
625
|
+
};
|
|
626
|
+
readonly CONFIG: {
|
|
627
|
+
readonly VIEW: "notification.config.view";
|
|
628
|
+
readonly MANAGE: "notification.config.manage";
|
|
629
|
+
};
|
|
630
|
+
};
|
|
621
631
|
readonly GPS_PROVIDER: {
|
|
622
632
|
readonly CONFIG: {
|
|
623
633
|
readonly OPERATIONS: {
|
package/dist/permissions.js
CHANGED
|
@@ -688,6 +688,19 @@ exports.PERMISSIONS = {
|
|
|
688
688
|
},
|
|
689
689
|
},
|
|
690
690
|
// ============================================
|
|
691
|
+
// NOTIFICATION
|
|
692
|
+
// ============================================
|
|
693
|
+
NOTIFICATION: {
|
|
694
|
+
ROUTING: {
|
|
695
|
+
VIEW: "notification.routing.view",
|
|
696
|
+
MANAGE: "notification.routing.manage",
|
|
697
|
+
},
|
|
698
|
+
CONFIG: {
|
|
699
|
+
VIEW: "notification.config.view",
|
|
700
|
+
MANAGE: "notification.config.manage",
|
|
701
|
+
},
|
|
702
|
+
},
|
|
703
|
+
// ============================================
|
|
691
704
|
// GPS PROVIDER
|
|
692
705
|
// ============================================
|
|
693
706
|
GPS_PROVIDER: {
|
package/package.json
CHANGED
package/src/permissions.ts
CHANGED
|
@@ -707,6 +707,20 @@ export const PERMISSIONS = {
|
|
|
707
707
|
},
|
|
708
708
|
},
|
|
709
709
|
|
|
710
|
+
// ============================================
|
|
711
|
+
// NOTIFICATION
|
|
712
|
+
// ============================================
|
|
713
|
+
NOTIFICATION: {
|
|
714
|
+
ROUTING: {
|
|
715
|
+
VIEW: "notification.routing.view",
|
|
716
|
+
MANAGE: "notification.routing.manage",
|
|
717
|
+
},
|
|
718
|
+
CONFIG: {
|
|
719
|
+
VIEW: "notification.config.view",
|
|
720
|
+
MANAGE: "notification.config.manage",
|
|
721
|
+
},
|
|
722
|
+
},
|
|
723
|
+
|
|
710
724
|
// ============================================
|
|
711
725
|
// GPS PROVIDER
|
|
712
726
|
// ============================================
|