cecon-interfaces 1.5.88 → 1.5.91

Sign up to get free protection for your applications and to get access to all the features.
Files changed (29) hide show
  1. package/dist/esm2022/payio/payload/entities/payload-user.entity.mjs +4 -3
  2. package/dist/esm2022/payio/payload/entities/payload.entity.mjs +1 -1
  3. package/dist/esm2022/payio/payload/interfaces/i-payload-user.mjs +1 -1
  4. package/dist/esm2022/payio/payload/interfaces/i-payload.mjs +1 -1
  5. package/dist/esm2022/users/entities/index.mjs +1 -2
  6. package/dist/esm2022/users/entities/user.entity.mjs +1 -3
  7. package/dist/esm2022/users/interfaces/i-user.mjs +1 -1
  8. package/dist/esm2022/users/interfaces/index.mjs +1 -1
  9. package/dist/fesm2022/cecon-interfaces.mjs +4 -25
  10. package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
  11. package/dist/package.json +1 -1
  12. package/dist/payio/payload/entities/payload-user.entity.d.ts +1 -0
  13. package/dist/payio/payload/entities/payload-user.entity.js +3 -2
  14. package/dist/payio/payload/entities/payload.entity.d.ts +2 -1
  15. package/dist/payio/payload/interfaces/i-payload-user.d.ts +1 -0
  16. package/dist/payio/payload/interfaces/i-payload.d.ts +2 -1
  17. package/dist/users/entities/index.d.ts +0 -1
  18. package/dist/users/entities/index.js +1 -3
  19. package/dist/users/entities/user.entity.d.ts +0 -2
  20. package/dist/users/entities/user.entity.js +0 -2
  21. package/dist/users/interfaces/i-user.d.ts +0 -2
  22. package/dist/users/interfaces/index.d.ts +0 -1
  23. package/package.json +1 -1
  24. package/dist/esm2022/users/entities/user-session.entity.mjs +0 -21
  25. package/dist/esm2022/users/interfaces/i-user-session.mjs +0 -2
  26. package/dist/users/entities/user-session.entity.d.ts +0 -10
  27. package/dist/users/entities/user-session.entity.js +0 -25
  28. package/dist/users/interfaces/i-user-session.d.ts +0 -8
  29. package/dist/users/interfaces/i-user-session.js +0 -2
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.5.88",
3
+ "version": "1.5.91",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -3,6 +3,7 @@ export declare class PayioJwtPayloadUserEntity implements IPayioJwtPayloadUser {
3
3
  email: string | null;
4
4
  id: string;
5
5
  internationalCode: string;
6
+ name: string;
6
7
  phoneNumber: string;
7
8
  roles: string[];
8
9
  constructor(data?: Partial<PayioJwtPayloadUserEntity>);
@@ -2,13 +2,14 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.PayioJwtPayloadUserEntity = void 0;
4
4
  var PayioJwtPayloadUserEntity = /** @class */ (function () {
5
- // #endregion Properties (5)
5
+ // #endregion Properties (6)
6
6
  // #region Constructors (1)
7
7
  function PayioJwtPayloadUserEntity(data) {
8
- // #region Properties (5)
8
+ // #region Properties (6)
9
9
  this.email = null;
10
10
  this.id = '';
11
11
  this.internationalCode = '';
12
+ this.name = '';
12
13
  this.phoneNumber = '';
13
14
  this.roles = [];
14
15
  if (data) {
@@ -1,3 +1,4 @@
1
+ import { PayioPermissionRoleEntity } from '../../permissions';
1
2
  import { IPayioJwtPayload } from '../interfaces/i-payload';
2
3
  import { IPayioJwtPayloadApp } from '../interfaces/i-payload-app';
3
4
  import { IPayioJwtPayloadInfo } from '../interfaces/i-payload-info';
@@ -12,7 +13,7 @@ export declare class PayioJwtPayloadEntity implements IPayioJwtPayload {
12
13
  iat: number;
13
14
  info: IPayioJwtPayloadInfo | null;
14
15
  iss: string;
15
- permissions: string[];
16
+ permissions: PayioPermissionRoleEntity[];
16
17
  sub: string;
17
18
  subscription: PayioJwtPayloadSubscriptionEntity | null;
18
19
  type: string | null;
@@ -3,5 +3,6 @@ export interface IPayioJwtPayloadUser {
3
3
  internationalCode: string;
4
4
  email: string | null;
5
5
  id: string;
6
+ name: string;
6
7
  roles: string[];
7
8
  }
@@ -1,3 +1,4 @@
1
+ import { IPayioPermissionRole } from '../../permissions/interfaces/i-permission-role';
1
2
  import { IPayioJwtPayloadApp } from './i-payload-app';
2
3
  import { IPayioJwtPayloadDevice } from './i-payload-device';
3
4
  import { IPayioJwtPayloadInfo } from './i-payload-info';
@@ -22,7 +23,7 @@ export interface IPayioJwtPayload {
22
23
  * (Emissor): Identifica quem emitiu o JWT (o domínio da sua aplicação).
23
24
  */
24
25
  iss: string;
25
- permissions: string[];
26
+ permissions: IPayioPermissionRole[];
26
27
  info: IPayioJwtPayloadInfo | null;
27
28
  sub: string;
28
29
  subscription: IPayioJwtPayloadSubscription | null;
@@ -1,2 +1 @@
1
- export { UserSessionEntity } from './user-session.entity';
2
1
  export { UserEntity } from './user.entity';
@@ -1,7 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UserEntity = exports.UserSessionEntity = void 0;
4
- var user_session_entity_1 = require("./user-session.entity");
5
- Object.defineProperty(exports, "UserSessionEntity", { enumerable: true, get: function () { return user_session_entity_1.UserSessionEntity; } });
3
+ exports.UserEntity = void 0;
6
4
  var user_entity_1 = require("./user.entity");
7
5
  Object.defineProperty(exports, "UserEntity", { enumerable: true, get: function () { return user_entity_1.UserEntity; } });
@@ -1,6 +1,5 @@
1
1
  import { MemberTypeEnum } from '../../member/enums';
2
2
  import { IUser } from '../interfaces';
3
- import { UserSessionEntity } from './user-session.entity';
4
3
  export declare class UserEntity implements IUser {
5
4
  active: boolean;
6
5
  createdAt: Date;
@@ -11,7 +10,6 @@ export declare class UserEntity implements IUser {
11
10
  internationalCode: string;
12
11
  name: string;
13
12
  phoneNumber: string;
14
- session: UserSessionEntity;
15
13
  tags: string[];
16
14
  type: MemberTypeEnum | null;
17
15
  updatedAt: Date;
@@ -1,7 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.UserEntity = void 0;
4
- var user_session_entity_1 = require("./user-session.entity");
5
4
  var UserEntity = /** @class */ (function () {
6
5
  // #endregion Properties (13)
7
6
  // #region Constructors (1)
@@ -16,7 +15,6 @@ var UserEntity = /** @class */ (function () {
16
15
  this.internationalCode = '55';
17
16
  this.name = '';
18
17
  this.phoneNumber = '';
19
- this.session = new user_session_entity_1.UserSessionEntity();
20
18
  this.tags = [];
21
19
  this.type = null;
22
20
  this.updatedAt = new Date();
@@ -1,5 +1,4 @@
1
1
  import { MemberTypeEnum } from '../../member/enums';
2
- import { IUserSession } from './i-user-session';
3
2
  export interface IUser {
4
3
  active: boolean;
5
4
  createdAt: Date;
@@ -10,7 +9,6 @@ export interface IUser {
10
9
  internationalCode: string;
11
10
  name: string;
12
11
  phoneNumber: string;
13
- session: IUserSession;
14
12
  tags: string[];
15
13
  type: MemberTypeEnum | null;
16
14
  updatedAt: Date;
@@ -1,2 +1 @@
1
1
  export { IUser } from './i-user';
2
- export { IUserSession } from './i-user-session';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.5.88",
3
+ "version": "1.5.91",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,21 +0,0 @@
1
- export class UserSessionEntity {
2
- // #region Properties (6)
3
- currentSessionId = null;
4
- deviceInfo = null;
5
- isLocked = false;
6
- lastLoginAt = null;
7
- lastSessionIp = null;
8
- sessionExpiresAt = null;
9
- // #endregion Properties (6)
10
- // #region Constructors (1)
11
- constructor(data) {
12
- if (data) {
13
- for (let key in data) {
14
- if (data.hasOwnProperty(key) && key in this) {
15
- this[key] = data[key];
16
- }
17
- }
18
- }
19
- }
20
- }
21
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlci1zZXNzaW9uLmVudGl0eS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy91c2Vycy9lbnRpdGllcy91c2VyLXNlc3Npb24uZW50aXR5LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUVBLE1BQU0sT0FBTyxpQkFBaUI7SUFDNUIseUJBQXlCO0lBRWxCLGdCQUFnQixHQUFrQixJQUFJLENBQUM7SUFDdkMsVUFBVSxHQUFrQixJQUFJLENBQUM7SUFDakMsUUFBUSxHQUFZLEtBQUssQ0FBQztJQUMxQixXQUFXLEdBQWdCLElBQUksQ0FBQztJQUNoQyxhQUFhLEdBQWtCLElBQUksQ0FBQztJQUNwQyxnQkFBZ0IsR0FBZ0IsSUFBSSxDQUFDO0lBRTVDLDRCQUE0QjtJQUU1QiwyQkFBMkI7SUFFM0IsWUFBWSxJQUFpQztRQUMzQyxJQUFJLElBQUksRUFBRTtZQUNSLEtBQUssSUFBSSxHQUFHLElBQUksSUFBSSxFQUFFO2dCQUNwQixJQUFJLElBQUksQ0FBQyxjQUFjLENBQUMsR0FBRyxDQUFDLElBQUksR0FBRyxJQUFJLElBQUksRUFBRTtvQkFDMUMsSUFBWSxDQUFDLEdBQUcsQ0FBQyxHQUFJLElBQVksQ0FBQyxHQUFHLENBQUMsQ0FBQztpQkFDekM7YUFDRjtTQUNGO0lBQ0gsQ0FBQztDQUdGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSVVzZXJTZXNzaW9uIH0gZnJvbSAnLi4vaW50ZXJmYWNlcy9pLXVzZXItc2Vzc2lvbic7XHJcblxyXG5leHBvcnQgY2xhc3MgVXNlclNlc3Npb25FbnRpdHkgaW1wbGVtZW50cyBJVXNlclNlc3Npb24ge1xyXG4gIC8vICNyZWdpb24gUHJvcGVydGllcyAoNilcclxuXHJcbiAgcHVibGljIGN1cnJlbnRTZXNzaW9uSWQ6IHN0cmluZyB8IG51bGwgPSBudWxsO1xyXG4gIHB1YmxpYyBkZXZpY2VJbmZvOiBzdHJpbmcgfCBudWxsID0gbnVsbDtcclxuICBwdWJsaWMgaXNMb2NrZWQ6IGJvb2xlYW4gPSBmYWxzZTtcclxuICBwdWJsaWMgbGFzdExvZ2luQXQ6IERhdGUgfCBudWxsID0gbnVsbDtcclxuICBwdWJsaWMgbGFzdFNlc3Npb25JcDogc3RyaW5nIHwgbnVsbCA9IG51bGw7XHJcbiAgcHVibGljIHNlc3Npb25FeHBpcmVzQXQ6IERhdGUgfCBudWxsID0gbnVsbDtcclxuXHJcbiAgLy8gI2VuZHJlZ2lvbiBQcm9wZXJ0aWVzICg2KVxyXG5cclxuICAvLyAjcmVnaW9uIENvbnN0cnVjdG9ycyAoMSlcclxuXHJcbiAgY29uc3RydWN0b3IoZGF0YT86IFBhcnRpYWw8VXNlclNlc3Npb25FbnRpdHk+KSB7XHJcbiAgICBpZiAoZGF0YSkge1xyXG4gICAgICBmb3IgKGxldCBrZXkgaW4gZGF0YSkge1xyXG4gICAgICAgIGlmIChkYXRhLmhhc093blByb3BlcnR5KGtleSkgJiYga2V5IGluIHRoaXMpIHtcclxuICAgICAgICAgICh0aGlzIGFzIGFueSlba2V5XSA9IChkYXRhIGFzIGFueSlba2V5XTtcclxuICAgICAgICB9XHJcbiAgICAgIH1cclxuICAgIH1cclxuICB9XHJcblxyXG4gIC8vICNlbmRyZWdpb24gQ29uc3RydWN0b3JzICgxKVxyXG59XHJcbiJdfQ==
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaS11c2VyLXNlc3Npb24uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvdXNlcnMvaW50ZXJmYWNlcy9pLXVzZXItc2Vzc2lvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGludGVyZmFjZSBJVXNlclNlc3Npb24ge1xyXG4gIC8vICNyZWdpb24gUHJvcGVydGllcyAoNilcclxuXHJcbiAgY3VycmVudFNlc3Npb25JZDogc3RyaW5nIHwgbnVsbDtcclxuICBkZXZpY2VJbmZvOiBzdHJpbmcgfCBudWxsO1xyXG4gIGlzTG9ja2VkOiBib29sZWFuO1xyXG4gIGxhc3RMb2dpbkF0OiBEYXRlIHwgbnVsbDtcclxuICBsYXN0U2Vzc2lvbklwOiBzdHJpbmcgfCBudWxsO1xyXG4gIHNlc3Npb25FeHBpcmVzQXQ6IERhdGUgfCBudWxsO1xyXG5cclxuICAvLyAjZW5kcmVnaW9uIFByb3BlcnRpZXMgKDYpXHJcbn1cclxuIl19
@@ -1,10 +0,0 @@
1
- import { IUserSession } from '../interfaces/i-user-session';
2
- export declare class UserSessionEntity implements IUserSession {
3
- currentSessionId: string | null;
4
- deviceInfo: string | null;
5
- isLocked: boolean;
6
- lastLoginAt: Date | null;
7
- lastSessionIp: string | null;
8
- sessionExpiresAt: Date | null;
9
- constructor(data?: Partial<UserSessionEntity>);
10
- }
@@ -1,25 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UserSessionEntity = void 0;
4
- var UserSessionEntity = /** @class */ (function () {
5
- // #endregion Properties (6)
6
- // #region Constructors (1)
7
- function UserSessionEntity(data) {
8
- // #region Properties (6)
9
- this.currentSessionId = null;
10
- this.deviceInfo = null;
11
- this.isLocked = false;
12
- this.lastLoginAt = null;
13
- this.lastSessionIp = null;
14
- this.sessionExpiresAt = null;
15
- if (data) {
16
- for (var key in data) {
17
- if (data.hasOwnProperty(key) && key in this) {
18
- this[key] = data[key];
19
- }
20
- }
21
- }
22
- }
23
- return UserSessionEntity;
24
- }());
25
- exports.UserSessionEntity = UserSessionEntity;
@@ -1,8 +0,0 @@
1
- export interface IUserSession {
2
- currentSessionId: string | null;
3
- deviceInfo: string | null;
4
- isLocked: boolean;
5
- lastLoginAt: Date | null;
6
- lastSessionIp: string | null;
7
- sessionExpiresAt: Date | null;
8
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });