cecon-interfaces 1.6.11 → 1.6.14
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/esm2022/general/entities/payment-method.entity.mjs +2 -1
- package/dist/esm2022/general/interfaces/i-payment-method.mjs +1 -1
- package/dist/esm2022/payio/payload/entities/payload-subscription.entity.mjs +5 -4
- package/dist/esm2022/payio/payload/interfaces/i-payload-subscription.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +5 -3
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/general/entities/payment-method.entity.d.ts +1 -0
- package/dist/general/entities/payment-method.entity.js +1 -0
- package/dist/general/interfaces/i-payment-method.d.ts +1 -0
- package/dist/package.json +1 -1
- package/dist/payio/payload/entities/payload-subscription.entity.d.ts +2 -1
- package/dist/payio/payload/entities/payload-subscription.entity.js +4 -3
- package/dist/payio/payload/interfaces/i-payload-subscription.d.ts +2 -1
- package/package.json +1 -1
@@ -7,6 +7,7 @@ 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;
|
10
11
|
code: string;
|
11
12
|
currency: 'BRL';
|
12
13
|
id: string;
|
package/dist/package.json
CHANGED
@@ -2,7 +2,8 @@ import { ESubsStatus } from '../../../general';
|
|
2
2
|
import { IPayioJwtPayloadSubscription } from '../interfaces/i-payload-subscription';
|
3
3
|
export declare class PayioJwtPayloadSubscriptionEntity implements IPayioJwtPayloadSubscription {
|
4
4
|
expiresAt: number;
|
5
|
-
|
5
|
+
id: string;
|
6
|
+
planId: string;
|
6
7
|
status: ESubsStatus;
|
7
8
|
constructor(data?: Partial<PayioJwtPayloadSubscriptionEntity>);
|
8
9
|
}
|
@@ -3,12 +3,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.PayioJwtPayloadSubscriptionEntity = void 0;
|
4
4
|
var general_1 = require("../../../general");
|
5
5
|
var PayioJwtPayloadSubscriptionEntity = /** @class */ (function () {
|
6
|
-
// #endregion Properties (
|
6
|
+
// #endregion Properties (4)
|
7
7
|
// #region Constructors (1)
|
8
8
|
function PayioJwtPayloadSubscriptionEntity(data) {
|
9
|
-
// #region Properties (
|
9
|
+
// #region Properties (4)
|
10
10
|
this.expiresAt = 0;
|
11
|
-
this.
|
11
|
+
this.id = '';
|
12
|
+
this.planId = '';
|
12
13
|
this.status = general_1.ESubsStatus.PENDING;
|
13
14
|
if (data) {
|
14
15
|
for (var key in data) {
|