cecon-interfaces 1.5.63 → 1.5.65

Sign up to get free protection for your applications and to get access to all the features.
@@ -3,6 +3,8 @@ import { IMemberAccess } from '../interfaces/i-member-access';
3
3
  export declare class MemberAccessEntity implements IMemberAccess {
4
4
  accessCount: number | null;
5
5
  active: boolean;
6
+ companyId: string;
7
+ containerId: string | null;
6
8
  createdAt: Date;
7
9
  id: string;
8
10
  imageUrl: string | null;
@@ -10,6 +12,7 @@ export declare class MemberAccessEntity implements IMemberAccess {
10
12
  memberId: string;
11
13
  name: string;
12
14
  rule: MemberRulesEnum;
15
+ tags: string[];
13
16
  updated: Date;
14
17
  constructor(data?: Partial<MemberAccessEntity>);
15
18
  }
@@ -3,12 +3,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.MemberAccessEntity = void 0;
4
4
  var enums_1 = require("../../member/enums");
5
5
  var MemberAccessEntity = /** @class */ (function () {
6
- // #endregion Properties (12)
6
+ // #endregion Properties (13)
7
7
  // #region Constructors (1)
8
8
  function MemberAccessEntity(data) {
9
- // #region Properties (12)
9
+ // #region Properties (13)
10
10
  this.accessCount = null;
11
11
  this.active = true;
12
+ this.companyId = '';
13
+ this.containerId = null;
12
14
  this.createdAt = new Date();
13
15
  this.id = '';
14
16
  this.imageUrl = null;
@@ -16,6 +18,7 @@ var MemberAccessEntity = /** @class */ (function () {
16
18
  this.memberId = '';
17
19
  this.name = '';
18
20
  this.rule = enums_1.MemberRulesEnum.USER;
21
+ this.tags = [];
19
22
  this.updated = new Date();
20
23
  if (data) {
21
24
  for (var key in data) {
@@ -2,12 +2,15 @@ import { MemberRulesEnum } from '../../member/enums';
2
2
  export interface IMemberAccess {
3
3
  accessCount: number | null;
4
4
  active: boolean;
5
+ companyId: string;
6
+ containerId: string | null;
5
7
  createdAt: Date;
6
8
  id: string;
7
9
  lastAccessAt: Date | null;
8
10
  memberId: string;
9
11
  imageUrl: string | null;
10
12
  name: string;
13
+ tags: string[];
11
14
  rule: MemberRulesEnum;
12
15
  updated: Date;
13
16
  }
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.5.63",
3
+ "version": "1.5.65",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.5.63",
3
+ "version": "1.5.65",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",