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/esm2022/subscription-company/entities/subscription.entity.mjs +3 -2
- package/dist/esm2022/subscription-company/interfaces/i-subscription.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/dist/subscription-company/entities/subscription.entity.d.ts +2 -1
- package/dist/subscription-company/entities/subscription.entity.js +2 -1
- package/dist/subscription-company/interfaces/i-subscription.d.ts +2 -1
- package/package.json +1 -1
package/dist/package.json
CHANGED
@@ -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:
|
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
|
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:
|
7
|
+
company: ISubscriptionCompanyCompany;
|
7
8
|
features: IFeature[];
|
8
9
|
partnerId: string | null;
|
9
10
|
planId: string;
|