@telos-dev-team/dealernode-permissions 1.1.4 → 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 +10 -0
- package/dist/permissions.js +432 -422
- package/package.json +1 -1
- package/src/permissions.ts +433 -423
package/dist/permissions.d.ts
CHANGED
|
@@ -296,6 +296,12 @@ export declare const PERMISSIONS: {
|
|
|
296
296
|
readonly DELETE: "deal.workflow.operation.delete";
|
|
297
297
|
};
|
|
298
298
|
};
|
|
299
|
+
readonly PAYMENT: {
|
|
300
|
+
readonly OPERATIONS: {
|
|
301
|
+
readonly VIEW: "deal.payment.operations.view";
|
|
302
|
+
readonly MANAGE: "deal.payment.operations.manage";
|
|
303
|
+
};
|
|
304
|
+
};
|
|
299
305
|
};
|
|
300
306
|
readonly FAIL_DEAL: {
|
|
301
307
|
readonly UNWIND: {
|
|
@@ -426,6 +432,10 @@ export declare const PERMISSIONS: {
|
|
|
426
432
|
readonly VIEW: "payment.terminal.payment.view";
|
|
427
433
|
readonly PROCESS: "payment.terminal.payment.process";
|
|
428
434
|
};
|
|
435
|
+
readonly PIN: {
|
|
436
|
+
readonly MANAGE_OWN: "payment.terminal.pin.manage_own";
|
|
437
|
+
readonly MANAGE_ALL: "payment.terminal.pin.manage_all";
|
|
438
|
+
};
|
|
429
439
|
};
|
|
430
440
|
readonly BILLING: {
|
|
431
441
|
readonly MANAGE: "payment.billing.manage";
|