cecon-interfaces 1.6.9 → 1.6.10
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/esm2022/payio/payload/entities/index.mjs +2 -1
- package/dist/esm2022/payio/payload/entities/payload-info.entity.mjs +19 -0
- package/dist/esm2022/payio/payload/interfaces/index.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +20 -1
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/dist/payio/payload/entities/index.d.ts +1 -0
- package/dist/payio/payload/entities/index.js +3 -1
- package/dist/payio/payload/entities/payload-info.entity.d.ts +8 -0
- package/dist/payio/payload/entities/payload-info.entity.js +23 -0
- package/dist/payio/payload/interfaces/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/package.json
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
export { PayioJwtPayloadAppEntity } from './payload-app.entity';
|
2
2
|
export { PayioJwtPayloadDeviceEntity } from './payload-device.entity';
|
3
|
+
export { PayioJwtPayloadInfoEntity } from './payload-info.entity';
|
3
4
|
export { PayioJwtPayloadSubscriptionEntity } from './payload-subscription.entity';
|
4
5
|
export { PayioJwtPayloadUserEntity } from './payload-user.entity';
|
5
6
|
export { PayioJwtPayloadEntity } from './payload.entity';
|
@@ -1,10 +1,12 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.PayioJwtPayloadEntity = exports.PayioJwtPayloadUserEntity = exports.PayioJwtPayloadSubscriptionEntity = exports.PayioJwtPayloadDeviceEntity = exports.PayioJwtPayloadAppEntity = void 0;
|
3
|
+
exports.PayioJwtPayloadEntity = exports.PayioJwtPayloadUserEntity = exports.PayioJwtPayloadSubscriptionEntity = exports.PayioJwtPayloadInfoEntity = exports.PayioJwtPayloadDeviceEntity = exports.PayioJwtPayloadAppEntity = void 0;
|
4
4
|
var payload_app_entity_1 = require("./payload-app.entity");
|
5
5
|
Object.defineProperty(exports, "PayioJwtPayloadAppEntity", { enumerable: true, get: function () { return payload_app_entity_1.PayioJwtPayloadAppEntity; } });
|
6
6
|
var payload_device_entity_1 = require("./payload-device.entity");
|
7
7
|
Object.defineProperty(exports, "PayioJwtPayloadDeviceEntity", { enumerable: true, get: function () { return payload_device_entity_1.PayioJwtPayloadDeviceEntity; } });
|
8
|
+
var payload_info_entity_1 = require("./payload-info.entity");
|
9
|
+
Object.defineProperty(exports, "PayioJwtPayloadInfoEntity", { enumerable: true, get: function () { return payload_info_entity_1.PayioJwtPayloadInfoEntity; } });
|
8
10
|
var payload_subscription_entity_1 = require("./payload-subscription.entity");
|
9
11
|
Object.defineProperty(exports, "PayioJwtPayloadSubscriptionEntity", { enumerable: true, get: function () { return payload_subscription_entity_1.PayioJwtPayloadSubscriptionEntity; } });
|
10
12
|
var payload_user_entity_1 = require("./payload-user.entity");
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import { IPayioJwtPayloadInfo } from '../interfaces/i-payload-info';
|
2
|
+
export declare class PayioJwtPayloadInfoEntity implements IPayioJwtPayloadInfo {
|
3
|
+
companyId: string;
|
4
|
+
companyName: string;
|
5
|
+
containerId: string | null;
|
6
|
+
containerName: string | null;
|
7
|
+
constructor(data?: Partial<PayioJwtPayloadInfoEntity>);
|
8
|
+
}
|
@@ -0,0 +1,23 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.PayioJwtPayloadInfoEntity = void 0;
|
4
|
+
var PayioJwtPayloadInfoEntity = /** @class */ (function () {
|
5
|
+
// #endregion Properties (4)
|
6
|
+
// #region Constructors (1)
|
7
|
+
function PayioJwtPayloadInfoEntity(data) {
|
8
|
+
// #region Properties (4)
|
9
|
+
this.companyId = '';
|
10
|
+
this.companyName = '';
|
11
|
+
this.containerId = null;
|
12
|
+
this.containerName = null;
|
13
|
+
if (data) {
|
14
|
+
for (var key in data) {
|
15
|
+
if (data.hasOwnProperty(key) && key in this) {
|
16
|
+
this[key] = data[key];
|
17
|
+
}
|
18
|
+
}
|
19
|
+
}
|
20
|
+
}
|
21
|
+
return PayioJwtPayloadInfoEntity;
|
22
|
+
}());
|
23
|
+
exports.PayioJwtPayloadInfoEntity = PayioJwtPayloadInfoEntity;
|
@@ -1,5 +1,6 @@
|
|
1
1
|
export { IPayioJwtPayload } from './i-payload';
|
2
2
|
export { IPayioJwtPayloadApp } from './i-payload-app';
|
3
3
|
export { IPayioJwtPayloadDevice } from './i-payload-device';
|
4
|
+
export { IPayioJwtPayloadInfo } from './i-payload-info';
|
4
5
|
export { IPayioJwtPayloadSubscription } from './i-payload-subscription';
|
5
6
|
export { IPayioJwtPayloadUser } from './i-payload-user';
|