cecon-interfaces 1.7.12 → 1.7.13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.7.12",
3
+ "version": "1.7.13",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -5,9 +5,9 @@ export declare class PayioPermissionEntity implements IPayioPermission {
5
5
  createdAt: Date;
6
6
  description: string;
7
7
  id: string;
8
- isActive: boolean;
9
8
  name: string;
10
9
  role: EPayioRole;
10
+ tags: string[];
11
11
  updatedAt: Date;
12
12
  constructor(data?: Partial<PayioPermissionEntity>);
13
13
  }
@@ -8,9 +8,9 @@ var PayioPermissionEntity = /** @class */ (function () {
8
8
  this.createdAt = new Date();
9
9
  this.description = '';
10
10
  this.id = '';
11
- this.isActive = true;
12
11
  this.name = '';
13
12
  this.role = enums_1.EPayioRole.GENERAL;
13
+ this.tags = [];
14
14
  this.updatedAt = new Date();
15
15
  if (data) {
16
16
  for (var key in data) {
@@ -7,5 +7,8 @@ export declare enum EPayioRole {
7
7
  SETTINGS = "SETTINGS",
8
8
  GENERAL = "GENERAL",
9
9
  ACCOUNT = "ACCOUNT",
10
+ CHEF_CONFIG = "CHEF_CONFIG",
11
+ CHEF_SCHEDULE = "CHEF_SCHEDULE",
12
+ CASH_CONFIG = "CASH_CONFIG",
10
13
  OWNER = "OWNER"
11
14
  }
@@ -11,5 +11,8 @@ var EPayioRole;
11
11
  EPayioRole["SETTINGS"] = "SETTINGS";
12
12
  EPayioRole["GENERAL"] = "GENERAL";
13
13
  EPayioRole["ACCOUNT"] = "ACCOUNT";
14
+ EPayioRole["CHEF_CONFIG"] = "CHEF_CONFIG";
15
+ EPayioRole["CHEF_SCHEDULE"] = "CHEF_SCHEDULE";
16
+ EPayioRole["CASH_CONFIG"] = "CASH_CONFIG";
14
17
  EPayioRole["OWNER"] = "OWNER";
15
18
  })(EPayioRole || (exports.EPayioRole = EPayioRole = {}));
@@ -4,8 +4,8 @@ export interface IPayioPermission {
4
4
  createdAt: Date;
5
5
  description: string;
6
6
  id: string;
7
- isActive: boolean;
8
7
  name: string;
9
8
  role: EPayioRole;
9
+ tags: string[];
10
10
  updatedAt: Date;
11
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.7.12",
3
+ "version": "1.7.13",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",