cecon-interfaces 1.5.42 → 1.5.43

Sign up to get free protection for your applications and to get access to all the features.
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.5.42",
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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.5.42",
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",