cecon-interfaces 1.2.61 → 1.2.63

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.2.61",
3
+ "version": "1.2.63",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -10,5 +10,6 @@ export declare class RequestedItemsEntity implements IRequestedItems {
10
10
  preview: boolean;
11
11
  token: string;
12
12
  updatedAt: Date;
13
+ isPaid: boolean;
13
14
  constructor(data?: Partial<RequestedItemsEntity>);
14
15
  }
@@ -15,6 +15,7 @@ var RequestedItemsEntity = /** @class */ (function () {
15
15
  this.preview = false;
16
16
  this.token = '';
17
17
  this.updatedAt = new Date();
18
+ this.isPaid = false;
18
19
  if (data) {
19
20
  for (var key in data) {
20
21
  if (data.hasOwnProperty(key) && key in this) {
@@ -7,6 +7,7 @@ export interface IRequestedItems {
7
7
  id: string;
8
8
  updatedAt: Date;
9
9
  preview: boolean;
10
+ isPaid: boolean;
10
11
  token: string;
11
12
  data: IRequestedItemData[];
12
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.2.61",
3
+ "version": "1.2.63",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",