cecon-interfaces 1.6.23 → 1.6.25
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/README.md +3 -1
- package/dist/esm2022/general/entities/payment-method.entity.mjs +5 -4
- package/dist/esm2022/general/interfaces/i-payment-method.mjs +1 -1
- 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 +5 -4
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/general/entities/payment-method.entity.d.ts +2 -1
- package/dist/general/entities/payment-method.entity.js +4 -3
- package/dist/general/interfaces/i-payment-method.d.ts +1 -0
- 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/readme.md +3 -1
@@ -7,11 +7,12 @@ import { PaymentWalletEntity } from './payment-wallet.entity';
|
|
7
7
|
export declare class PaymentMethodEntity implements IPaymentMethod {
|
8
8
|
card?: PaymentCardEntity | null;
|
9
9
|
cash?: PaymentCashEntity | null;
|
10
|
-
payAt?: Date;
|
11
10
|
code: string;
|
12
11
|
currency: 'BRL';
|
12
|
+
status?: string;
|
13
13
|
id: string;
|
14
14
|
method: EPaymentType;
|
15
|
+
payAt?: Date;
|
15
16
|
pix?: PaymentPixEntity | null;
|
16
17
|
prepaid: boolean;
|
17
18
|
type: 'ONLINE' | 'OFFLINE';
|
@@ -3,17 +3,18 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.PaymentMethodEntity = void 0;
|
4
4
|
var __1 = require("..");
|
5
5
|
var PaymentMethodEntity = /** @class */ (function () {
|
6
|
-
// #endregion Properties (
|
6
|
+
// #endregion Properties (12)
|
7
7
|
// #region Constructors (1)
|
8
8
|
function PaymentMethodEntity(data) {
|
9
|
-
// #region Properties (
|
9
|
+
// #region Properties (12)
|
10
10
|
this.card = null;
|
11
11
|
this.cash = null;
|
12
|
-
this.payAt = undefined;
|
13
12
|
this.code = '';
|
14
13
|
this.currency = 'BRL';
|
14
|
+
this.status = undefined;
|
15
15
|
this.id = '';
|
16
16
|
this.method = __1.EPaymentType.CASH;
|
17
|
+
this.payAt = undefined;
|
17
18
|
this.pix = null;
|
18
19
|
this.prepaid = false;
|
19
20
|
this.type = 'OFFLINE';
|
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();
|
package/package.json
CHANGED
package/readme.md
CHANGED