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/esm2022/payio/payload/entities/payload.entity.mjs +4 -3
- package/dist/esm2022/payio/payload/interfaces/i-payload.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +3 -2
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/dist/payio/payload/entities/payload.entity.d.ts +1 -0
- package/dist/payio/payload/entities/payload.entity.js +3 -2
- package/dist/payio/payload/interfaces/i-payload.d.ts +1 -0
- package/package.json +1 -1
package/dist/package.json
CHANGED
@@ -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 (
|
5
|
+
// #endregion Properties (13)
|
6
6
|
// #region Constructors (1)
|
7
7
|
function PayioJwtPayloadEntity(data) {
|
8
|
-
// #region Properties (
|
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;
|