cecon-interfaces 1.1.77 → 1.1.78
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/customer/entities/customer.entity.d.ts +2 -1
- package/dist/customer/entities/customer.entity.js +1 -0
- package/dist/customer/interfaces/i-customer.d.ts +2 -1
- package/dist/esm2022/customer/entities/customer.entity.mjs +3 -2
- package/dist/esm2022/customer/interfaces/i-customer.mjs +1 -1
- package/dist/esm2022/subscription-company/entities/index.mjs +2 -2
- package/dist/esm2022/subscription-company/entities/subscription-company.entity.mjs +2 -2
- package/dist/esm2022/subscription-company/entities/subscription.entity.mjs +3 -3
- package/dist/esm2022/subscription-company/interfaces/i-subscription-company.mjs +1 -1
- package/dist/esm2022/subscription-company/interfaces/i-subscription.mjs +1 -1
- package/dist/esm2022/subscription-company/interfaces/index.mjs +1 -1
- package/dist/esm2022/subscription-customer/entities/index.mjs +2 -2
- package/dist/esm2022/subscription-customer/entities/subscription-customer.entity.mjs +2 -2
- package/dist/esm2022/subscription-customer/entities/subscription.entity.mjs +3 -3
- package/dist/esm2022/subscription-customer/interfaces/i-subscription-customer.mjs +1 -1
- package/dist/esm2022/subscription-customer/interfaces/i-subscription.mjs +1 -1
- package/dist/esm2022/subscription-customer/interfaces/index.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +6 -5
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/dist/subscription-company/entities/index.d.ts +1 -1
- package/dist/subscription-company/entities/index.js +1 -1
- package/dist/subscription-company/entities/subscription-company.entity.d.ts +3 -3
- package/dist/subscription-company/entities/subscription-company.entity.js +5 -5
- package/dist/subscription-company/entities/subscription.entity.d.ts +2 -2
- package/dist/subscription-company/entities/subscription.entity.js +1 -1
- package/dist/subscription-company/interfaces/i-subscription-company.d.ts +1 -1
- package/dist/subscription-company/interfaces/i-subscription.d.ts +2 -2
- package/dist/subscription-company/interfaces/index.d.ts +1 -1
- package/dist/subscription-customer/entities/index.d.ts +1 -1
- package/dist/subscription-customer/entities/index.js +1 -1
- package/dist/subscription-customer/entities/subscription-customer.entity.d.ts +3 -3
- package/dist/subscription-customer/entities/subscription-customer.entity.js +5 -5
- package/dist/subscription-customer/entities/subscription.entity.d.ts +2 -2
- package/dist/subscription-customer/entities/subscription.entity.js +1 -1
- package/dist/subscription-customer/interfaces/i-subscription-customer.d.ts +1 -1
- package/dist/subscription-customer/interfaces/i-subscription.d.ts +2 -2
- package/dist/subscription-customer/interfaces/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/package.json
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export { SubscriptionCompanyCompanyEntity } from './subscription-company.entity';
|
1
|
+
export { SubscriptionCompanyProfileEntity as SubscriptionCompanyCompanyEntity } from './subscription-company.entity';
|
2
2
|
export { SubscriptionCompanyEntity } from './subscription.entity';
|
@@ -2,6 +2,6 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.SubscriptionCompanyEntity = exports.SubscriptionCompanyCompanyEntity = void 0;
|
4
4
|
var subscription_company_entity_1 = require("./subscription-company.entity");
|
5
|
-
Object.defineProperty(exports, "SubscriptionCompanyCompanyEntity", { enumerable: true, get: function () { return subscription_company_entity_1.
|
5
|
+
Object.defineProperty(exports, "SubscriptionCompanyCompanyEntity", { enumerable: true, get: function () { return subscription_company_entity_1.SubscriptionCompanyProfileEntity; } });
|
6
6
|
var subscription_entity_1 = require("./subscription.entity");
|
7
7
|
Object.defineProperty(exports, "SubscriptionCompanyEntity", { enumerable: true, get: function () { return subscription_entity_1.SubscriptionCompanyEntity; } });
|
@@ -1,10 +1,10 @@
|
|
1
|
-
import {
|
2
|
-
export declare class
|
1
|
+
import { ISubscriptionCompanyProfile } from '../interfaces/i-subscription-company';
|
2
|
+
export declare class SubscriptionCompanyProfileEntity implements ISubscriptionCompanyProfile {
|
3
3
|
containerId: string | null;
|
4
4
|
doc: string | null;
|
5
5
|
docType: string | null;
|
6
6
|
id: string | null;
|
7
7
|
imageUrl: string | null;
|
8
8
|
name: string | null;
|
9
|
-
constructor(data?: Partial<
|
9
|
+
constructor(data?: Partial<SubscriptionCompanyProfileEntity>);
|
10
10
|
}
|
@@ -1,10 +1,10 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.
|
4
|
-
var
|
3
|
+
exports.SubscriptionCompanyProfileEntity = void 0;
|
4
|
+
var SubscriptionCompanyProfileEntity = /** @class */ (function () {
|
5
5
|
// #endregion Properties (6)
|
6
6
|
// #region Constructors (1)
|
7
|
-
function
|
7
|
+
function SubscriptionCompanyProfileEntity(data) {
|
8
8
|
// #region Properties (6)
|
9
9
|
this.containerId = '';
|
10
10
|
this.doc = '';
|
@@ -20,6 +20,6 @@ var SubscriptionCompanyCompanyEntity = /** @class */ (function () {
|
|
20
20
|
}
|
21
21
|
}
|
22
22
|
}
|
23
|
-
return
|
23
|
+
return SubscriptionCompanyProfileEntity;
|
24
24
|
}());
|
25
|
-
exports.
|
25
|
+
exports.SubscriptionCompanyProfileEntity = SubscriptionCompanyProfileEntity;
|
@@ -1,11 +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 {
|
4
|
+
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
|
-
|
8
|
+
profile: SubscriptionCompanyProfileEntity;
|
9
9
|
features: FeatureEntity[];
|
10
10
|
partnerId: string | null;
|
11
11
|
planId: string;
|
@@ -27,7 +27,7 @@ var SubscriptionCompanyEntity = /** @class */ (function (_super) {
|
|
27
27
|
// #region Properties (7)
|
28
28
|
_this.appId = '';
|
29
29
|
_this.appName = '';
|
30
|
-
_this.
|
30
|
+
_this.profile = new subscription_company_entity_1.SubscriptionCompanyProfileEntity();
|
31
31
|
_this.features = [];
|
32
32
|
_this.partnerId = '';
|
33
33
|
_this.planId = '';
|
@@ -1,10 +1,10 @@
|
|
1
1
|
import { IFeature } from '../../feature';
|
2
2
|
import { ISubscriptionBase } from '../../subscription-base/interfaces/i-subscription-base';
|
3
|
-
import {
|
3
|
+
import { ISubscriptionCompanyProfile } from './i-subscription-company';
|
4
4
|
export interface ISubscriptionCompany extends ISubscriptionBase {
|
5
5
|
appId: string;
|
6
6
|
appName: string;
|
7
|
-
|
7
|
+
profile: ISubscriptionCompanyProfile;
|
8
8
|
features: IFeature[];
|
9
9
|
partnerId: string | null;
|
10
10
|
planId: string;
|
@@ -1,2 +1,2 @@
|
|
1
1
|
export { ISubscriptionCompany } from './i-subscription';
|
2
|
-
export { ISubscriptionCompanyCompany } from './i-subscription-company';
|
2
|
+
export { ISubscriptionCompanyProfile as ISubscriptionCompanyCompany } from './i-subscription-company';
|
@@ -1,2 +1,2 @@
|
|
1
|
-
export { SubscriptionCustomerCustomerEntity } from './subscription-customer.entity';
|
1
|
+
export { SubscriptionCustomerProfileEntity as SubscriptionCustomerCustomerEntity } from './subscription-customer.entity';
|
2
2
|
export { SubscriptionCustomerEntity } from './subscription.entity';
|
@@ -2,6 +2,6 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.SubscriptionCustomerEntity = exports.SubscriptionCustomerCustomerEntity = void 0;
|
4
4
|
var subscription_customer_entity_1 = require("./subscription-customer.entity");
|
5
|
-
Object.defineProperty(exports, "SubscriptionCustomerCustomerEntity", { enumerable: true, get: function () { return subscription_customer_entity_1.
|
5
|
+
Object.defineProperty(exports, "SubscriptionCustomerCustomerEntity", { enumerable: true, get: function () { return subscription_customer_entity_1.SubscriptionCustomerProfileEntity; } });
|
6
6
|
var subscription_entity_1 = require("./subscription.entity");
|
7
7
|
Object.defineProperty(exports, "SubscriptionCustomerEntity", { enumerable: true, get: function () { return subscription_entity_1.SubscriptionCustomerEntity; } });
|
@@ -1,10 +1,10 @@
|
|
1
|
-
import {
|
2
|
-
export declare class
|
1
|
+
import { ISubscriptionCustomerProfile } from '../interfaces/i-subscription-customer';
|
2
|
+
export declare class SubscriptionCustomerProfileEntity implements ISubscriptionCustomerProfile {
|
3
3
|
doc: string | null;
|
4
4
|
docType: string | null;
|
5
5
|
id: string | null;
|
6
6
|
imageUrl: string | null;
|
7
7
|
name: string | null;
|
8
8
|
uid: string | null;
|
9
|
-
constructor(data?: Partial<
|
9
|
+
constructor(data?: Partial<SubscriptionCustomerProfileEntity>);
|
10
10
|
}
|
@@ -1,10 +1,10 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.
|
4
|
-
var
|
3
|
+
exports.SubscriptionCustomerProfileEntity = void 0;
|
4
|
+
var SubscriptionCustomerProfileEntity = /** @class */ (function () {
|
5
5
|
// #endregion Properties (6)
|
6
6
|
// #region Constructors (1)
|
7
|
-
function
|
7
|
+
function SubscriptionCustomerProfileEntity(data) {
|
8
8
|
// #region Properties (6)
|
9
9
|
this.doc = '';
|
10
10
|
this.docType = '';
|
@@ -20,6 +20,6 @@ var SubscriptionCustomerCustomerEntity = /** @class */ (function () {
|
|
20
20
|
}
|
21
21
|
}
|
22
22
|
}
|
23
|
-
return
|
23
|
+
return SubscriptionCustomerProfileEntity;
|
24
24
|
}());
|
25
|
-
exports.
|
25
|
+
exports.SubscriptionCustomerProfileEntity = SubscriptionCustomerProfileEntity;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { SubscriptionBaseEntity } from '../../subscription-base';
|
2
2
|
import { ISubscriptionCustomer } from '../interfaces/i-subscription';
|
3
|
-
import {
|
3
|
+
import { SubscriptionCustomerProfileEntity } from './subscription-customer.entity';
|
4
4
|
export declare class SubscriptionCustomerEntity extends SubscriptionBaseEntity implements ISubscriptionCustomer {
|
5
|
-
|
5
|
+
profile: SubscriptionCustomerProfileEntity;
|
6
6
|
constructor(data?: Partial<SubscriptionCustomerEntity>);
|
7
7
|
}
|
@@ -25,7 +25,7 @@ var SubscriptionCustomerEntity = /** @class */ (function (_super) {
|
|
25
25
|
function SubscriptionCustomerEntity(data) {
|
26
26
|
var _this = _super.call(this, data) || this;
|
27
27
|
// #region Properties (1)
|
28
|
-
_this.
|
28
|
+
_this.profile = new subscription_customer_entity_1.SubscriptionCustomerProfileEntity();
|
29
29
|
if (data) {
|
30
30
|
for (var key in data) {
|
31
31
|
if (data.hasOwnProperty(key) && key in _this) {
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { ISubscriptionBase } from '../../subscription-base';
|
2
|
-
import {
|
2
|
+
import { ISubscriptionCustomerProfile } from './i-subscription-customer';
|
3
3
|
export interface ISubscriptionCustomer extends ISubscriptionBase {
|
4
|
-
|
4
|
+
profile: ISubscriptionCustomerProfile;
|
5
5
|
}
|
@@ -1,2 +1,2 @@
|
|
1
1
|
export { ISubscriptionCustomer } from './i-subscription';
|
2
|
-
export { ISubscriptionCustomerCustomer } from './i-subscription-customer';
|
2
|
+
export { ISubscriptionCustomerProfile as ISubscriptionCustomerCustomer } from './i-subscription-customer';
|