@telos-dev-team/dealernode-permissions 1.1.1 → 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: {
@@ -710,11 +713,11 @@ export declare const PERMISSIONS: {
710
713
  readonly DELETE: "authorization.user_dealer_permission.delete";
711
714
  };
712
715
  };
713
- readonly FAILED_ACTION: {
716
+ readonly AUTOMATIC_ACTION: {
714
717
  readonly OPERATIONS: {
715
- readonly VIEW: "failed_action.operations.view";
716
- readonly DELETE: "failed_action.operations.delete";
717
- readonly EXECUTE: "failed_action.operations.execute";
718
+ readonly VIEW: "automatic_action.operations.view";
719
+ readonly DELETE: "automatic_action.operations.delete";
720
+ readonly EXECUTE: "automatic_action.operations.execute";
718
721
  };
719
722
  };
720
723
  readonly CALENDAR: {
@@ -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
@@ -774,13 +777,13 @@ exports.PERMISSIONS = {
774
777
  },
775
778
  },
776
779
  // ============================================
777
- // FAILED_ACTION
780
+ // AUTOMATIC_ACTION
778
781
  // ============================================
779
- FAILED_ACTION: {
782
+ AUTOMATIC_ACTION: {
780
783
  OPERATIONS: {
781
- VIEW: 'failed_action.operations.view',
782
- DELETE: 'failed_action.operations.delete',
783
- EXECUTE: 'failed_action.operations.execute',
784
+ VIEW: 'automatic_action.operations.view',
785
+ DELETE: 'automatic_action.operations.delete',
786
+ EXECUTE: 'automatic_action.operations.execute',
784
787
  },
785
788
  },
786
789
  // ============================================
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telos-dev-team/dealernode-permissions",
3
- "version": "1.1.1",
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
  // ============================================
@@ -792,13 +795,13 @@ export const PERMISSIONS = {
792
795
  },
793
796
 
794
797
  // ============================================
795
- // FAILED_ACTION
798
+ // AUTOMATIC_ACTION
796
799
  // ============================================
797
- FAILED_ACTION: {
800
+ AUTOMATIC_ACTION: {
798
801
  OPERATIONS: {
799
- VIEW: 'failed_action.operations.view',
800
- DELETE: 'failed_action.operations.delete',
801
- EXECUTE: 'failed_action.operations.execute',
802
+ VIEW: 'automatic_action.operations.view',
803
+ DELETE: 'automatic_action.operations.delete',
804
+ EXECUTE: 'automatic_action.operations.execute',
802
805
  },
803
806
  },
804
807