@telos-dev-team/dealernode-permissions 1.0.5 → 1.0.6
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 +7 -0
- package/dist/permissions.js +10 -0
- package/package.json +1 -1
- package/src/permissions.ts +11 -0
package/dist/permissions.d.ts
CHANGED
|
@@ -710,5 +710,12 @@ export declare const PERMISSIONS: {
|
|
|
710
710
|
readonly DELETE: "authorization.user_dealer_permission.delete";
|
|
711
711
|
};
|
|
712
712
|
};
|
|
713
|
+
readonly FAILED_ACTION: {
|
|
714
|
+
readonly OPERATIONS: {
|
|
715
|
+
readonly VIEW: "failed_action.operations.view";
|
|
716
|
+
readonly DELETE: "failed_action.operations.delete";
|
|
717
|
+
readonly EXECUTE: "failed_action.operations.execute";
|
|
718
|
+
};
|
|
719
|
+
};
|
|
713
720
|
};
|
|
714
721
|
export type Permission = typeof PERMISSIONS;
|
package/dist/permissions.js
CHANGED
|
@@ -773,4 +773,14 @@ exports.PERMISSIONS = {
|
|
|
773
773
|
DELETE: 'authorization.user_dealer_permission.delete',
|
|
774
774
|
},
|
|
775
775
|
},
|
|
776
|
+
// ============================================
|
|
777
|
+
// FAILED_ACTION
|
|
778
|
+
// ============================================
|
|
779
|
+
FAILED_ACTION: {
|
|
780
|
+
OPERATIONS: {
|
|
781
|
+
VIEW: 'failed_action.operations.view',
|
|
782
|
+
DELETE: 'failed_action.operations.delete',
|
|
783
|
+
EXECUTE: 'failed_action.operations.execute',
|
|
784
|
+
},
|
|
785
|
+
},
|
|
776
786
|
};
|
package/package.json
CHANGED
package/src/permissions.ts
CHANGED
|
@@ -790,6 +790,17 @@ export const PERMISSIONS = {
|
|
|
790
790
|
DELETE: 'authorization.user_dealer_permission.delete',
|
|
791
791
|
},
|
|
792
792
|
},
|
|
793
|
+
|
|
794
|
+
// ============================================
|
|
795
|
+
// FAILED_ACTION
|
|
796
|
+
// ============================================
|
|
797
|
+
FAILED_ACTION: {
|
|
798
|
+
OPERATIONS: {
|
|
799
|
+
VIEW: 'failed_action.operations.view',
|
|
800
|
+
DELETE: 'failed_action.operations.delete',
|
|
801
|
+
EXECUTE: 'failed_action.operations.execute',
|
|
802
|
+
},
|
|
803
|
+
},
|
|
793
804
|
} as const;
|
|
794
805
|
|
|
795
806
|
export type Permission = typeof PERMISSIONS;
|