cecon-interfaces 1.5.59 → 1.5.60

Sign up to get free protection for your applications and to get access to all the features.
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.5.59",
3
+ "version": "1.5.60",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -5,6 +5,7 @@ export declare class UserEntity implements IUser {
5
5
  active: boolean;
6
6
  createdAt: Date;
7
7
  email: string | null;
8
+ engaged: boolean;
8
9
  id: string;
9
10
  imageUrl: string | null;
10
11
  internationalCode: string;
@@ -3,13 +3,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.UserEntity = void 0;
4
4
  var user_session_entity_1 = require("./user-session.entity");
5
5
  var UserEntity = /** @class */ (function () {
6
- // #endregion Properties (12)
6
+ // #endregion Properties (13)
7
7
  // #region Constructors (1)
8
8
  function UserEntity(data) {
9
- // #region Properties (12)
9
+ // #region Properties (13)
10
10
  this.active = true;
11
11
  this.createdAt = new Date();
12
12
  this.email = null;
13
+ this.engaged = false;
13
14
  this.id = '';
14
15
  this.imageUrl = null;
15
16
  this.internationalCode = '55';
@@ -4,6 +4,7 @@ export interface IUser {
4
4
  active: boolean;
5
5
  createdAt: Date;
6
6
  email: string | null;
7
+ engaged: boolean;
7
8
  id: string;
8
9
  imageUrl: string | null;
9
10
  internationalCode: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.5.59",
3
+ "version": "1.5.60",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",