@telos-dev-team/dealernode-permissions 1.1.2 → 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.
@@ -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: {
@@ -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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telos-dev-team/dealernode-permissions",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "description": "Shared permissions constants for dealernode projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -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
  // ============================================