cecon-interfaces 1.6.19 → 1.6.20
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/payio/subscriptions/entities/subscription.entity.mjs +4 -3
- package/dist/esm2022/payio/subscriptions/interfaces/i-subscription.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +3 -2
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/dist/payio/subscriptions/entities/subscription.entity.d.ts +1 -0
- package/dist/payio/subscriptions/entities/subscription.entity.js +3 -2
- package/dist/payio/subscriptions/interfaces/i-subscription.d.ts +1 -0
- package/package.json +1 -1
package/dist/package.json
CHANGED
@@ -3,14 +3,15 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.PayioSubscriptionEntity = void 0;
|
4
4
|
var general_1 = require("../../../general");
|
5
5
|
var PayioSubscriptionEntity = /** @class */ (function () {
|
6
|
-
// #endregion Properties (
|
6
|
+
// #endregion Properties (25)
|
7
7
|
// #region Constructors (1)
|
8
8
|
function PayioSubscriptionEntity(data) {
|
9
|
-
// #region Properties (
|
9
|
+
// #region Properties (25)
|
10
10
|
this.activeDevices = [];
|
11
11
|
this.amount = 0;
|
12
12
|
this.appIds = [];
|
13
13
|
this.cancellationReason = '';
|
14
|
+
this.companyId = '';
|
14
15
|
this.createdAt = new Date();
|
15
16
|
this.customVariables = [];
|
16
17
|
this.expiresAt = new Date();
|