@telos-dev-team/dealernode-permissions 1.1.6 → 1.1.8
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 -1
- package/dist/permissions.js +3 -1
- package/package.json +1 -1
- package/src/permissions.ts +3 -1
package/dist/permissions.d.ts
CHANGED
|
@@ -433,9 +433,11 @@ export declare const PERMISSIONS: {
|
|
|
433
433
|
readonly PROCESS: "payment.terminal.payment.process";
|
|
434
434
|
};
|
|
435
435
|
readonly PIN: {
|
|
436
|
-
readonly MANAGE_OWN: "payment.terminal.pin.manage_own";
|
|
437
436
|
readonly MANAGE_ALL: "payment.terminal.pin.manage_all";
|
|
438
437
|
};
|
|
438
|
+
readonly DEVICE: {
|
|
439
|
+
readonly PROVISION: "payment.terminal.device.provision";
|
|
440
|
+
};
|
|
439
441
|
};
|
|
440
442
|
readonly BILLING: {
|
|
441
443
|
readonly MANAGE: "payment.billing.manage";
|
package/dist/permissions.js
CHANGED
|
@@ -472,9 +472,11 @@ exports.PERMISSIONS = {
|
|
|
472
472
|
PROCESS: "payment.terminal.payment.process",
|
|
473
473
|
},
|
|
474
474
|
PIN: {
|
|
475
|
-
MANAGE_OWN: 'payment.terminal.pin.manage_own',
|
|
476
475
|
MANAGE_ALL: 'payment.terminal.pin.manage_all',
|
|
477
476
|
},
|
|
477
|
+
DEVICE: {
|
|
478
|
+
PROVISION: 'payment.terminal.device.provision',
|
|
479
|
+
},
|
|
478
480
|
},
|
|
479
481
|
BILLING: {
|
|
480
482
|
MANAGE: "payment.billing.manage",
|
package/package.json
CHANGED
package/src/permissions.ts
CHANGED
|
@@ -480,9 +480,11 @@ export const PERMISSIONS = {
|
|
|
480
480
|
PROCESS: "payment.terminal.payment.process",
|
|
481
481
|
},
|
|
482
482
|
PIN: {
|
|
483
|
-
MANAGE_OWN: 'payment.terminal.pin.manage_own',
|
|
484
483
|
MANAGE_ALL: 'payment.terminal.pin.manage_all',
|
|
485
484
|
},
|
|
485
|
+
DEVICE: {
|
|
486
|
+
PROVISION: 'payment.terminal.device.provision',
|
|
487
|
+
},
|
|
486
488
|
},
|
|
487
489
|
BILLING: {
|
|
488
490
|
MANAGE: "payment.billing.manage",
|