cecon-interfaces 1.5.41 → 1.5.43

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.5.41",
3
+ "version": "1.5.43",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -11,5 +11,7 @@ export declare class RequestedItemsEntity implements IRequestedItems {
11
11
  token: string;
12
12
  updatedAt: Date;
13
13
  isPaid: boolean;
14
+ referenceToken: string | null;
15
+ resendCount: number;
14
16
  constructor(data?: Partial<RequestedItemsEntity>);
15
17
  }
@@ -16,6 +16,8 @@ var RequestedItemsEntity = /** @class */ (function () {
16
16
  this.token = '';
17
17
  this.updatedAt = new Date();
18
18
  this.isPaid = false;
19
+ this.referenceToken = null;
20
+ this.resendCount = 0;
19
21
  if (data) {
20
22
  for (var key in data) {
21
23
  if (data.hasOwnProperty(key) && key in this) {
@@ -10,4 +10,6 @@ export interface IRequestedItems {
10
10
  isPaid: boolean;
11
11
  token: string;
12
12
  data: IRequestedItemData[];
13
+ referenceToken: string | null;
14
+ resendCount: number;
13
15
  }
@@ -7,6 +7,7 @@ export declare class TransactionResumeEntity implements ITransactionResume {
7
7
  info: ITransactionInfoResume;
8
8
  interval: EResumeIntervalType;
9
9
  id: string;
10
+ resumeVersion: string;
10
11
  createdAt: Date;
11
12
  updatedAt: Date;
12
13
  totalTarget: {
@@ -10,6 +10,7 @@ var TransactionResumeEntity = /** @class */ (function () {
10
10
  this.info = new transaction_info_resume_entity_1.TransactionInfoResumeEntity();
11
11
  this.interval = resume_1.EResumeIntervalType.YEAR;
12
12
  this.id = '';
13
+ this.resumeVersion = '';
13
14
  this.createdAt = new Date();
14
15
  this.updatedAt = new Date();
15
16
  this.totalTarget = [];
@@ -8,6 +8,7 @@ export interface ITransactionResume {
8
8
  id: string;
9
9
  createdAt: Date;
10
10
  updatedAt: Date;
11
+ resumeVersion: string;
11
12
  totalTarget: {
12
13
  target: ETransactionResumesTargetType;
13
14
  item: ITransactionResumeItemDetail;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.5.41",
3
+ "version": "1.5.43",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",