cecon-interfaces 1.6.27 → 1.6.28

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.6.27",
3
+ "version": "1.6.28",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -7,6 +7,8 @@ export declare class PayioTokenEntity implements IPayioToken {
7
7
  ipAddress: string | null;
8
8
  isRevoked: boolean;
9
9
  refreshToken: string;
10
+ revokedAt: Date | null;
11
+ updatedAt: Date;
10
12
  userAgent: string | null;
11
13
  userId: string;
12
14
  constructor(data?: Partial<PayioTokenEntity>);
@@ -2,10 +2,10 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.PayioTokenEntity = void 0;
4
4
  var PayioTokenEntity = /** @class */ (function () {
5
- // #endregion Properties (9)
5
+ // #endregion Properties (11)
6
6
  // #region Constructors (1)
7
7
  function PayioTokenEntity(data) {
8
- // #region Properties (9)
8
+ // #region Properties (11)
9
9
  this.createdAt = new Date();
10
10
  this.deviceId = null;
11
11
  this.expiresAt = new Date();
@@ -13,6 +13,8 @@ var PayioTokenEntity = /** @class */ (function () {
13
13
  this.ipAddress = null;
14
14
  this.isRevoked = false;
15
15
  this.refreshToken = '';
16
+ this.revokedAt = null;
17
+ this.updatedAt = new Date();
16
18
  this.userAgent = null;
17
19
  this.userId = '';
18
20
  if (data) {
@@ -6,6 +6,8 @@ export interface IPayioToken {
6
6
  ipAddress: string | null;
7
7
  isRevoked: boolean;
8
8
  refreshToken: string;
9
+ revokedAt: Date | null;
10
+ updatedAt: Date;
9
11
  userAgent: string | null;
10
12
  userId: string;
11
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.6.27",
3
+ "version": "1.6.28",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",