cecon-interfaces 1.6.93 → 1.6.94
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/esm2022/users/entities/user.entity.mjs +4 -3
- package/dist/esm2022/users/interfaces/i-user.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +3 -2
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/dist/users/entities/user.entity.d.ts +1 -0
- package/dist/users/entities/user.entity.js +3 -2
- package/dist/users/interfaces/i-user.d.ts +1 -0
- package/package.json +1 -1
package/dist/package.json
CHANGED
@@ -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 (
|
6
|
+
// #endregion Properties (16)
|
7
7
|
// #region Constructors (1)
|
8
8
|
function UserEntity(data) {
|
9
|
-
// #region Properties (
|
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;
|