@telos-dev-team/dealernode-permissions 1.1.1 → 1.1.2
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 +4 -4
- package/dist/permissions.js +5 -5
- package/package.json +1 -1
- package/src/permissions.ts +5 -5
package/dist/permissions.d.ts
CHANGED
|
@@ -710,11 +710,11 @@ export declare const PERMISSIONS: {
|
|
|
710
710
|
readonly DELETE: "authorization.user_dealer_permission.delete";
|
|
711
711
|
};
|
|
712
712
|
};
|
|
713
|
-
readonly
|
|
713
|
+
readonly AUTOMATIC_ACTION: {
|
|
714
714
|
readonly OPERATIONS: {
|
|
715
|
-
readonly VIEW: "
|
|
716
|
-
readonly DELETE: "
|
|
717
|
-
readonly EXECUTE: "
|
|
715
|
+
readonly VIEW: "automatic_action.operations.view";
|
|
716
|
+
readonly DELETE: "automatic_action.operations.delete";
|
|
717
|
+
readonly EXECUTE: "automatic_action.operations.execute";
|
|
718
718
|
};
|
|
719
719
|
};
|
|
720
720
|
readonly CALENDAR: {
|
package/dist/permissions.js
CHANGED
|
@@ -774,13 +774,13 @@ exports.PERMISSIONS = {
|
|
|
774
774
|
},
|
|
775
775
|
},
|
|
776
776
|
// ============================================
|
|
777
|
-
//
|
|
777
|
+
// AUTOMATIC_ACTION
|
|
778
778
|
// ============================================
|
|
779
|
-
|
|
779
|
+
AUTOMATIC_ACTION: {
|
|
780
780
|
OPERATIONS: {
|
|
781
|
-
VIEW: '
|
|
782
|
-
DELETE: '
|
|
783
|
-
EXECUTE: '
|
|
781
|
+
VIEW: 'automatic_action.operations.view',
|
|
782
|
+
DELETE: 'automatic_action.operations.delete',
|
|
783
|
+
EXECUTE: 'automatic_action.operations.execute',
|
|
784
784
|
},
|
|
785
785
|
},
|
|
786
786
|
// ============================================
|
package/package.json
CHANGED
package/src/permissions.ts
CHANGED
|
@@ -792,13 +792,13 @@ export const PERMISSIONS = {
|
|
|
792
792
|
},
|
|
793
793
|
|
|
794
794
|
// ============================================
|
|
795
|
-
//
|
|
795
|
+
// AUTOMATIC_ACTION
|
|
796
796
|
// ============================================
|
|
797
|
-
|
|
797
|
+
AUTOMATIC_ACTION: {
|
|
798
798
|
OPERATIONS: {
|
|
799
|
-
VIEW: '
|
|
800
|
-
DELETE: '
|
|
801
|
-
EXECUTE: '
|
|
799
|
+
VIEW: 'automatic_action.operations.view',
|
|
800
|
+
DELETE: 'automatic_action.operations.delete',
|
|
801
|
+
EXECUTE: 'automatic_action.operations.execute',
|
|
802
802
|
},
|
|
803
803
|
},
|
|
804
804
|
|