cecon-interfaces 2.0.49 → 2.0.50
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/transaction/entities/transaction-resume-data.entity.mjs +3 -1
- package/dist/esm2022/transaction/interfaces/i-resume-data.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +2 -0
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/transaction/entities/transaction-resume-data.entity.d.ts +2 -0
- package/dist/transaction/entities/transaction-resume-data.entity.js +2 -0
- package/dist/transaction/interfaces/i-resume-data.d.ts +3 -1
- package/package.json +1 -1
|
@@ -7,6 +7,8 @@ export declare class TransactionResumeDataEntity implements ITransactionResumeDa
|
|
|
7
7
|
date: Date;
|
|
8
8
|
operationType: EOperationType;
|
|
9
9
|
period: string;
|
|
10
|
+
periodMonth: string;
|
|
11
|
+
periodYear: string;
|
|
10
12
|
reference: string;
|
|
11
13
|
constructor(data?: Partial<TransactionResumeDataEntity>);
|
|
12
14
|
}
|
|
@@ -10,6 +10,8 @@ var TransactionResumeDataEntity = /** @class */ (function () {
|
|
|
10
10
|
this.date = new Date();
|
|
11
11
|
this.operationType = enums_1.EOperationType.NATIPAY;
|
|
12
12
|
this.period = '';
|
|
13
|
+
this.periodMonth = '';
|
|
14
|
+
this.periodYear = '';
|
|
13
15
|
this.reference = '';
|
|
14
16
|
if (data) {
|
|
15
17
|
for (var key in data) {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EOperationType } from
|
|
1
|
+
import { EOperationType } from '../..';
|
|
2
2
|
export interface ITransactionResumeData {
|
|
3
3
|
amount: number;
|
|
4
4
|
amountMonth: number;
|
|
@@ -6,5 +6,7 @@ export interface ITransactionResumeData {
|
|
|
6
6
|
date: Date;
|
|
7
7
|
operationType: EOperationType;
|
|
8
8
|
period: string;
|
|
9
|
+
periodMonth: string;
|
|
10
|
+
periodYear: string;
|
|
9
11
|
reference: string;
|
|
10
12
|
}
|