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