cecon-interfaces 1.6.9 → 1.6.10

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.09",
3
+ "version": "1.6.10",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -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';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.6.09",
3
+ "version": "1.6.10",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",