@telos-dev-team/dealernode-permissions 1.1.5 → 1.1.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 +4 -0
- package/dist/permissions.js +4 -0
- package/package.json +1 -1
- package/src/permissions.ts +4 -0
package/dist/permissions.d.ts
CHANGED
|
@@ -432,6 +432,10 @@ export declare const PERMISSIONS: {
|
|
|
432
432
|
readonly VIEW: "payment.terminal.payment.view";
|
|
433
433
|
readonly PROCESS: "payment.terminal.payment.process";
|
|
434
434
|
};
|
|
435
|
+
readonly PIN: {
|
|
436
|
+
readonly MANAGE_OWN: "payment.terminal.pin.manage_own";
|
|
437
|
+
readonly MANAGE_ALL: "payment.terminal.pin.manage_all";
|
|
438
|
+
};
|
|
435
439
|
};
|
|
436
440
|
readonly BILLING: {
|
|
437
441
|
readonly MANAGE: "payment.billing.manage";
|
package/dist/permissions.js
CHANGED
|
@@ -471,6 +471,10 @@ exports.PERMISSIONS = {
|
|
|
471
471
|
VIEW: "payment.terminal.payment.view",
|
|
472
472
|
PROCESS: "payment.terminal.payment.process",
|
|
473
473
|
},
|
|
474
|
+
PIN: {
|
|
475
|
+
MANAGE_OWN: 'payment.terminal.pin.manage_own',
|
|
476
|
+
MANAGE_ALL: 'payment.terminal.pin.manage_all',
|
|
477
|
+
},
|
|
474
478
|
},
|
|
475
479
|
BILLING: {
|
|
476
480
|
MANAGE: "payment.billing.manage",
|
package/package.json
CHANGED
package/src/permissions.ts
CHANGED
|
@@ -479,6 +479,10 @@ export const PERMISSIONS = {
|
|
|
479
479
|
VIEW: "payment.terminal.payment.view",
|
|
480
480
|
PROCESS: "payment.terminal.payment.process",
|
|
481
481
|
},
|
|
482
|
+
PIN: {
|
|
483
|
+
MANAGE_OWN: 'payment.terminal.pin.manage_own',
|
|
484
|
+
MANAGE_ALL: 'payment.terminal.pin.manage_all',
|
|
485
|
+
},
|
|
482
486
|
},
|
|
483
487
|
BILLING: {
|
|
484
488
|
MANAGE: "payment.billing.manage",
|