cecon-interfaces 1.2.20 → 1.2.21

Sign up to get free protection for your applications and to get access to all the features.
@@ -5,10 +5,12 @@ import { SubscriptionCompanyProfileEntity } from './subscription-company.entity'
5
5
  export declare class SubscriptionCompanyEntity extends SubscriptionBaseEntity implements ISubscriptionCompany {
6
6
  appId: string;
7
7
  appName: string;
8
- profile: SubscriptionCompanyProfileEntity;
8
+ companyId: string;
9
+ containerId: string;
9
10
  features: FeatureEntity[];
10
11
  partnerId: string | null;
11
12
  planId: string;
12
13
  planName: string;
14
+ profile: SubscriptionCompanyProfileEntity;
13
15
  constructor(data?: Partial<SubscriptionCompanyEntity>);
14
16
  }
@@ -20,18 +20,20 @@ var subscription_base_entity_1 = require("../../subscription-base/entities/subsc
20
20
  var subscription_company_entity_1 = require("./subscription-company.entity");
21
21
  var SubscriptionCompanyEntity = /** @class */ (function (_super) {
22
22
  __extends(SubscriptionCompanyEntity, _super);
23
- // #endregion Properties (7)
23
+ // #endregion Properties (9)
24
24
  // #region Constructors (1)
25
25
  function SubscriptionCompanyEntity(data) {
26
26
  var _this = _super.call(this, data) || this;
27
- // #region Properties (7)
27
+ // #region Properties (9)
28
28
  _this.appId = '';
29
29
  _this.appName = '';
30
- _this.profile = new subscription_company_entity_1.SubscriptionCompanyProfileEntity();
30
+ _this.companyId = '';
31
+ _this.containerId = '';
31
32
  _this.features = [];
32
33
  _this.partnerId = '';
33
34
  _this.planId = '';
34
35
  _this.planName = '';
36
+ _this.profile = new subscription_company_entity_1.SubscriptionCompanyProfileEntity();
35
37
  if (data) {
36
38
  for (var key in data) {
37
39
  if (data.hasOwnProperty(key) && key in _this) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.2.20",
3
+ "version": "1.2.21",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",