cecon-interfaces 1.5.92 → 1.5.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.5.92",
3
+ "version": "1.5.94",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -8,6 +8,7 @@ import { PayioJwtPayloadUserEntity } from './payload-user.entity';
8
8
  export declare class PayioJwtPayloadEntity implements IPayioJwtPayload {
9
9
  app: IPayioJwtPayloadApp | null;
10
10
  aud: string;
11
+ currentSessionId: string | null;
11
12
  device: PayioJwtPayloadDeviceEntity | null;
12
13
  exp: number;
13
14
  iat: number;
@@ -2,12 +2,13 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.PayioJwtPayloadEntity = void 0;
4
4
  var PayioJwtPayloadEntity = /** @class */ (function () {
5
- // #endregion Properties (12)
5
+ // #endregion Properties (13)
6
6
  // #region Constructors (1)
7
7
  function PayioJwtPayloadEntity(data) {
8
- // #region Properties (12)
8
+ // #region Properties (13)
9
9
  this.app = null;
10
10
  this.aud = '';
11
+ this.currentSessionId = null;
11
12
  this.device = null;
12
13
  this.exp = 0;
13
14
  this.iat = 0;
@@ -28,5 +28,6 @@ export interface IPayioJwtPayload {
28
28
  sub: string;
29
29
  subscription: IPayioJwtPayloadSubscription | null;
30
30
  type: string | null;
31
+ currentSessionId: string | null;
31
32
  user: IPayioJwtPayloadUser | null;
32
33
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.5.92",
3
+ "version": "1.5.94",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",