cecon-interfaces 1.6.93 → 1.6.94

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.6.93",
3
+ "version": "1.6.94",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -3,6 +3,7 @@ import { IUser } from '../interfaces';
3
3
  export declare class UserEntity implements IUser {
4
4
  accessCount: number;
5
5
  active: boolean;
6
+ code: string | null;
6
7
  createdAt: Date;
7
8
  currentCompanyId: string | null;
8
9
  currentCompanyName: string | null;
@@ -3,12 +3,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.UserEntity = void 0;
4
4
  var enums_1 = require("../enums");
5
5
  var UserEntity = /** @class */ (function () {
6
- // #endregion Properties (17)
6
+ // #endregion Properties (16)
7
7
  // #region Constructors (1)
8
8
  function UserEntity(data) {
9
- // #region Properties (17)
9
+ // #region Properties (16)
10
10
  this.accessCount = 0;
11
11
  this.active = true;
12
+ this.code = null;
12
13
  this.createdAt = new Date();
13
14
  this.currentCompanyId = null;
14
15
  this.currentCompanyName = null;
@@ -11,6 +11,7 @@ export interface IUser {
11
11
  internationalCode: string;
12
12
  lastAccessAt: Date;
13
13
  name: string;
14
+ code: string | null;
14
15
  phoneNumber: string;
15
16
  tags: string[];
16
17
  type: PayioUserTypeEnum;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.6.93",
3
+ "version": "1.6.94",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",