cecon-interfaces 1.5.95 → 1.5.97
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/esm2022/payio/payload/interfaces/i-payload.mjs +1 -1
- package/dist/esm2022/users/entities/user.entity.mjs +5 -3
- package/dist/esm2022/users/interfaces/i-user.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +4 -2
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/dist/payio/payload/interfaces/i-payload.d.ts +1 -1
- package/dist/users/entities/user.entity.d.ts +2 -0
- package/dist/users/entities/user.entity.js +4 -2
- package/dist/users/interfaces/i-user.d.ts +2 -0
- package/package.json +1 -1
package/dist/package.json
CHANGED
@@ -24,7 +24,7 @@ export interface IPayioJwtPayload {
|
|
24
24
|
* (Emissor): Identifica quem emitiu o JWT (o domínio da sua aplicação).
|
25
25
|
*/
|
26
26
|
iss: string;
|
27
|
-
jti: string
|
27
|
+
jti: string;
|
28
28
|
permissions: IPayioPermissionRole[];
|
29
29
|
sub: string;
|
30
30
|
subscription: IPayioJwtPayloadSubscription | null;
|
@@ -2,12 +2,14 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.UserEntity = void 0;
|
4
4
|
var UserEntity = /** @class */ (function () {
|
5
|
-
// #endregion Properties (
|
5
|
+
// #endregion Properties (14)
|
6
6
|
// #region Constructors (1)
|
7
7
|
function UserEntity(data) {
|
8
|
-
// #region Properties (
|
8
|
+
// #region Properties (14)
|
9
9
|
this.active = true;
|
10
10
|
this.createdAt = new Date();
|
11
|
+
this.currentCompanyId = null;
|
12
|
+
this.currentCompanyName = null;
|
11
13
|
this.email = null;
|
12
14
|
this.engaged = false;
|
13
15
|
this.id = '';
|