cecon-interfaces 1.6.27 → 1.6.28
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/esm2022/payio/tokens/entities/token.entity.mjs +5 -3
- package/dist/esm2022/payio/tokens/interfaces/i-token.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/tokens/entities/token.entity.d.ts +2 -0
- package/dist/payio/tokens/entities/token.entity.js +4 -2
- package/dist/payio/tokens/interfaces/i-token.d.ts +2 -0
- package/package.json +1 -1
package/dist/package.json
CHANGED
@@ -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 (
|
5
|
+
// #endregion Properties (11)
|
6
6
|
// #region Constructors (1)
|
7
7
|
function PayioTokenEntity(data) {
|
8
|
-
// #region Properties (
|
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) {
|