cecon-interfaces 1.2.5 → 1.2.6
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/esm2022/subscription-customer/entities/subscription.entity.mjs +4 -3
- package/dist/esm2022/subscription-customer/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/subscription-customer/entities/subscription.entity.d.ts +1 -0
- package/dist/subscription-customer/entities/subscription.entity.js +3 -2
- package/dist/subscription-customer/interfaces/i-subscription.d.ts +1 -0
- package/package.json +1 -1
package/dist/package.json
CHANGED
@@ -6,6 +6,7 @@ export declare class SubscriptionCustomerEntity extends SubscriptionBaseEntity i
|
|
6
6
|
amountUsed: number;
|
7
7
|
creditLimit: number;
|
8
8
|
currentBalance: number;
|
9
|
+
customerId: string | null;
|
9
10
|
openedInvoices: IInvoice[];
|
10
11
|
profile: SubscriptionCustomerProfileEntity;
|
11
12
|
constructor(data?: Partial<SubscriptionCustomerEntity>);
|
@@ -20,14 +20,15 @@ var subscription_base_1 = require("../../subscription-base");
|
|
20
20
|
var subscription_customer_entity_1 = require("./subscription-customer.entity");
|
21
21
|
var SubscriptionCustomerEntity = /** @class */ (function (_super) {
|
22
22
|
__extends(SubscriptionCustomerEntity, _super);
|
23
|
-
// #endregion Properties (
|
23
|
+
// #endregion Properties (6)
|
24
24
|
// #region Constructors (1)
|
25
25
|
function SubscriptionCustomerEntity(data) {
|
26
26
|
var _this = _super.call(this, data) || this;
|
27
|
-
// #region Properties (
|
27
|
+
// #region Properties (6)
|
28
28
|
_this.amountUsed = 0;
|
29
29
|
_this.creditLimit = 0;
|
30
30
|
_this.currentBalance = 0;
|
31
|
+
_this.customerId = null;
|
31
32
|
_this.openedInvoices = [];
|
32
33
|
_this.profile = new subscription_customer_entity_1.SubscriptionCustomerProfileEntity();
|
33
34
|
if (data) {
|