@telos-dev-team/dealernode-permissions 1.1.1 → 1.1.3
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 -4
- package/dist/permissions.js +8 -5
- package/package.json +1 -1
- package/src/permissions.ts +8 -5
package/dist/permissions.d.ts
CHANGED
|
@@ -427,6 +427,9 @@ export declare const PERMISSIONS: {
|
|
|
427
427
|
readonly PROCESS: "payment.terminal.payment.process";
|
|
428
428
|
};
|
|
429
429
|
};
|
|
430
|
+
readonly BILLING: {
|
|
431
|
+
readonly MANAGE: "payment.billing.manage";
|
|
432
|
+
};
|
|
430
433
|
};
|
|
431
434
|
readonly CAR: {
|
|
432
435
|
readonly OPERATIONS: {
|
|
@@ -710,11 +713,11 @@ export declare const PERMISSIONS: {
|
|
|
710
713
|
readonly DELETE: "authorization.user_dealer_permission.delete";
|
|
711
714
|
};
|
|
712
715
|
};
|
|
713
|
-
readonly
|
|
716
|
+
readonly AUTOMATIC_ACTION: {
|
|
714
717
|
readonly OPERATIONS: {
|
|
715
|
-
readonly VIEW: "
|
|
716
|
-
readonly DELETE: "
|
|
717
|
-
readonly EXECUTE: "
|
|
718
|
+
readonly VIEW: "automatic_action.operations.view";
|
|
719
|
+
readonly DELETE: "automatic_action.operations.delete";
|
|
720
|
+
readonly EXECUTE: "automatic_action.operations.execute";
|
|
718
721
|
};
|
|
719
722
|
};
|
|
720
723
|
readonly CALENDAR: {
|
package/dist/permissions.js
CHANGED
|
@@ -466,6 +466,9 @@ exports.PERMISSIONS = {
|
|
|
466
466
|
PROCESS: 'payment.terminal.payment.process',
|
|
467
467
|
},
|
|
468
468
|
},
|
|
469
|
+
BILLING: {
|
|
470
|
+
MANAGE: 'payment.billing.manage',
|
|
471
|
+
},
|
|
469
472
|
},
|
|
470
473
|
// ============================================
|
|
471
474
|
// CAR
|
|
@@ -774,13 +777,13 @@ exports.PERMISSIONS = {
|
|
|
774
777
|
},
|
|
775
778
|
},
|
|
776
779
|
// ============================================
|
|
777
|
-
//
|
|
780
|
+
// AUTOMATIC_ACTION
|
|
778
781
|
// ============================================
|
|
779
|
-
|
|
782
|
+
AUTOMATIC_ACTION: {
|
|
780
783
|
OPERATIONS: {
|
|
781
|
-
VIEW: '
|
|
782
|
-
DELETE: '
|
|
783
|
-
EXECUTE: '
|
|
784
|
+
VIEW: 'automatic_action.operations.view',
|
|
785
|
+
DELETE: 'automatic_action.operations.delete',
|
|
786
|
+
EXECUTE: 'automatic_action.operations.execute',
|
|
784
787
|
},
|
|
785
788
|
},
|
|
786
789
|
// ============================================
|
package/package.json
CHANGED
package/src/permissions.ts
CHANGED
|
@@ -474,6 +474,9 @@ export const PERMISSIONS = {
|
|
|
474
474
|
PROCESS: 'payment.terminal.payment.process',
|
|
475
475
|
},
|
|
476
476
|
},
|
|
477
|
+
BILLING: {
|
|
478
|
+
MANAGE: 'payment.billing.manage',
|
|
479
|
+
},
|
|
477
480
|
},
|
|
478
481
|
|
|
479
482
|
// ============================================
|
|
@@ -792,13 +795,13 @@ export const PERMISSIONS = {
|
|
|
792
795
|
},
|
|
793
796
|
|
|
794
797
|
// ============================================
|
|
795
|
-
//
|
|
798
|
+
// AUTOMATIC_ACTION
|
|
796
799
|
// ============================================
|
|
797
|
-
|
|
800
|
+
AUTOMATIC_ACTION: {
|
|
798
801
|
OPERATIONS: {
|
|
799
|
-
VIEW: '
|
|
800
|
-
DELETE: '
|
|
801
|
-
EXECUTE: '
|
|
802
|
+
VIEW: 'automatic_action.operations.view',
|
|
803
|
+
DELETE: 'automatic_action.operations.delete',
|
|
804
|
+
EXECUTE: 'automatic_action.operations.execute',
|
|
802
805
|
},
|
|
803
806
|
},
|
|
804
807
|
|