@omniumretail/shared-resources 0.3.78 → 0.3.80

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.
@@ -1,6 +1,8 @@
1
1
  export interface Permissions {
2
2
  Id: string;
3
+ RoleNames: string[];
3
4
  RoleName: string;
5
+ Permissions: string[];
4
6
  Permission: string;
5
7
  Description: string;
6
8
  Status: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@omniumretail/shared-resources",
3
- "version": "0.3.78",
3
+ "version": "0.3.80",
4
4
  "private": false,
5
5
  "description": "Shared Components and services or utils to the frontend versions",
6
6
  "main": "dist/bundle.js",
@@ -1,13 +1,15 @@
1
1
  export interface Permissions {
2
- Id: string;
3
- RoleName: string;
4
- Permission: string;
5
- Description: string;
6
- Status: string;
7
- Tags: string[];
2
+ Id: string;
3
+ RoleNames: string[];
4
+ RoleName: string;
5
+ Permissions: string[];
6
+ Permission: string;
7
+ Description: string;
8
+ Status: string;
9
+ Tags: string[];
8
10
  }
9
11
 
10
- export interface Applications{
12
+ export interface Applications {
11
13
  Application: string;
12
14
  ApplicationKey: string;
13
15
  PermissionsCount: number;