cecon-interfaces 1.2.19 → 1.2.21
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/esm2022/plan/enums/plans-identifier.enum.mjs +3 -1
- package/dist/esm2022/subscription-company/entities/subscription.entity.mjs +6 -4
- package/dist/fesm2022/cecon-interfaces.mjs +7 -3
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/dist/plan/enums/plans-identifier.enum.d.ts +3 -1
- package/dist/plan/enums/plans-identifier.enum.js +2 -0
- package/dist/subscription-company/entities/subscription.entity.d.ts +3 -1
- package/dist/subscription-company/entities/subscription.entity.js +5 -3
- package/package.json +1 -1
package/dist/package.json
CHANGED
@@ -5,4 +5,6 @@ var EPlanIdentifier;
|
|
5
5
|
(function (EPlanIdentifier) {
|
6
6
|
EPlanIdentifier["NATIGO"] = "NATIGO-UNO";
|
7
7
|
EPlanIdentifier["SAT_MANAGER_NAPOLEON"] = "SAT-MANAGER-NAPOLEON";
|
8
|
+
EPlanIdentifier["NATI_PDV"] = "NATI-PDV";
|
9
|
+
EPlanIdentifier["NATI_WA"] = "NATI-WA";
|
8
10
|
})(EPlanIdentifier || (exports.EPlanIdentifier = EPlanIdentifier = {}));
|
@@ -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
|
-
|
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 (
|
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 (
|
27
|
+
// #region Properties (9)
|
28
28
|
_this.appId = '';
|
29
29
|
_this.appName = '';
|
30
|
-
_this.
|
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) {
|