cecon-interfaces 1.8.93 → 1.8.95

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.
@@ -8,5 +8,6 @@ export declare class PayioOrderEntity extends OrderEntity implements IPayioOrder
8
8
  deviceId: string | null;
9
9
  indoor: PayioOrderIndoorEntity | null;
10
10
  resumeVersion: string;
11
+ tags: string[];
11
12
  constructor(data?: Partial<PayioOrderEntity>);
12
13
  }
@@ -27,6 +27,7 @@ var PayioOrderEntity = /** @class */ (function (_super) {
27
27
  _this.deviceId = null;
28
28
  _this.indoor = null;
29
29
  _this.resumeVersion = '';
30
+ _this.tags = [];
30
31
  if (data) {
31
32
  for (var key in data) {
32
33
  if (data.hasOwnProperty(key) && key in _this) {
@@ -7,4 +7,5 @@ export interface IPayioOrder extends IOrder {
7
7
  deviceId: string | null;
8
8
  indoor: IPayioOrderIndoor | null;
9
9
  resumeVersion: string;
10
+ tags: string[];
10
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.8.93",
3
+ "version": "1.8.95",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",