cecon-interfaces 1.1.67 → 1.1.68

Sign up to get free protection for your applications and to get access to all the features.
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.1.67",
3
+ "version": "1.1.68",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,10 +1,11 @@
1
1
  import { FeatureEntity } from '../../feature';
2
2
  import { SubscriptionBaseEntity } from '../../subscription-base/entities/subscription-base.entity';
3
3
  import { ISubscriptionCompany } from '../interfaces/i-subscription';
4
+ import { SubscriptionCompanyCompanyEntity } from './subscription-company.entity';
4
5
  export declare class SubscriptionCompanyEntity extends SubscriptionBaseEntity implements ISubscriptionCompany {
5
6
  appId: string;
6
7
  appName: string;
7
- company: SubscriptionCompanyEntity;
8
+ company: SubscriptionCompanyCompanyEntity;
8
9
  features: FeatureEntity[];
9
10
  partnerId: string | null;
10
11
  planId: string;
@@ -17,6 +17,7 @@ var __extends = (this && this.__extends) || (function () {
17
17
  Object.defineProperty(exports, "__esModule", { value: true });
18
18
  exports.SubscriptionCompanyEntity = void 0;
19
19
  var subscription_base_entity_1 = require("../../subscription-base/entities/subscription-base.entity");
20
+ var subscription_company_entity_1 = require("./subscription-company.entity");
20
21
  var SubscriptionCompanyEntity = /** @class */ (function (_super) {
21
22
  __extends(SubscriptionCompanyEntity, _super);
22
23
  // #endregion Properties (7)
@@ -26,7 +27,7 @@ var SubscriptionCompanyEntity = /** @class */ (function (_super) {
26
27
  // #region Properties (7)
27
28
  _this.appId = '';
28
29
  _this.appName = '';
29
- _this.company = new SubscriptionCompanyEntity();
30
+ _this.company = new subscription_company_entity_1.SubscriptionCompanyCompanyEntity();
30
31
  _this.features = [];
31
32
  _this.partnerId = '';
32
33
  _this.planId = '';
@@ -1,9 +1,10 @@
1
1
  import { IFeature } from '../../feature';
2
2
  import { ISubscriptionBase } from '../../subscription-base/interfaces/i-subscription-base';
3
+ import { ISubscriptionCompanyCompany } from './i-subscription-company';
3
4
  export interface ISubscriptionCompany extends ISubscriptionBase {
4
5
  appId: string;
5
6
  appName: string;
6
- company: ISubscriptionCompany;
7
+ company: ISubscriptionCompanyCompany;
7
8
  features: IFeature[];
8
9
  partnerId: string | null;
9
10
  planId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.1.67",
3
+ "version": "1.1.68",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",