cecon-interfaces 1.1.40 → 1.1.42
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/company/entities/company.entity.d.ts +0 -1
- package/dist/company/entities/company.entity.js +0 -1
- package/dist/company/interfaces/i-company.d.ts +0 -1
- package/dist/esm2022/company/entities/company.entity.mjs +1 -2
- package/dist/esm2022/company/interfaces/i-company.mjs +1 -1
- package/dist/esm2022/partner/entities/partner.entity.mjs +2 -1
- package/dist/esm2022/partner/interfaces/i-partner.mjs +1 -1
- package/dist/esm2022/subscription/entities/subscription.entity.mjs +4 -3
- package/dist/esm2022/subscription/interfaces/i-subscription.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +4 -3
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/dist/partner/entities/partner.entity.d.ts +1 -0
- package/dist/partner/entities/partner.entity.js +1 -0
- package/dist/partner/interfaces/i-partner.d.ts +1 -0
- package/dist/subscription/entities/subscription.entity.d.ts +1 -0
- package/dist/subscription/entities/subscription.entity.js +3 -2
- package/dist/subscription/interfaces/i-subscription.d.ts +1 -0
- package/package.json +1 -1
package/dist/package.json
CHANGED
@@ -5,10 +5,10 @@ var general_1 = require("../../general");
|
|
5
5
|
var enums_1 = require("../enums");
|
6
6
|
var subscription_company_entity_1 = require("./subscription-company.entity");
|
7
7
|
var SubscriptionEntity = /** @class */ (function () {
|
8
|
-
// #endregion Properties (
|
8
|
+
// #endregion Properties (31)
|
9
9
|
// #region Constructors (1)
|
10
10
|
function SubscriptionEntity(data) {
|
11
|
-
// #region Properties (
|
11
|
+
// #region Properties (31)
|
12
12
|
this.amount = 0;
|
13
13
|
this.appId = '';
|
14
14
|
this.appName = '';
|
@@ -32,6 +32,7 @@ var SubscriptionEntity = /** @class */ (function () {
|
|
32
32
|
this.phoneNumberNotification = '';
|
33
33
|
this.planId = '';
|
34
34
|
this.planName = '';
|
35
|
+
this.recentInvoice = [];
|
35
36
|
this.renewPaymentDate = new Date();
|
36
37
|
this.renovatedAt = new Date();
|
37
38
|
this.startsAt = new Date();
|