cecon-interfaces 1.6.23 → 1.6.24
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/esm2022/payio/subscriptions/entities/subscription.entity.mjs +3 -3
- package/dist/esm2022/payio/subscriptions/interfaces/i-subscription.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +1 -1
- 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 -1
- package/dist/payio/subscriptions/entities/subscription.entity.js +1 -1
- package/dist/payio/subscriptions/interfaces/i-subscription.d.ts +1 -1
- package/package.json +1 -1
package/dist/package.json
CHANGED
@@ -18,7 +18,7 @@ export declare class PayioSubscriptionEntity implements IPayioSubscription {
|
|
18
18
|
items: PayioFeatureEntity[];
|
19
19
|
logs: PayioSubscriptionLogEntity[];
|
20
20
|
notes: string;
|
21
|
-
payment: PaymentMethodEntity;
|
21
|
+
payment: PaymentMethodEntity | null;
|
22
22
|
planId: string;
|
23
23
|
planName: string;
|
24
24
|
renewPaymentDate: Date;
|
@@ -20,7 +20,7 @@ var PayioSubscriptionEntity = /** @class */ (function () {
|
|
20
20
|
this.items = [];
|
21
21
|
this.logs = [];
|
22
22
|
this.notes = '';
|
23
|
-
this.payment =
|
23
|
+
this.payment = null;
|
24
24
|
this.planId = '';
|
25
25
|
this.planName = '';
|
26
26
|
this.renewPaymentDate = new Date();
|