cecon-interfaces 1.6.34 → 1.6.35

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.6.34",
3
+ "version": "1.6.35",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,6 +1,8 @@
1
1
  import { OrderEntity } from '../../../order';
2
+ import { IPayioOrder } from '../interfaces';
2
3
  import { PayioOrderIndoorEntity } from './indoor.entity';
3
- export declare class PayioOrderEntity extends OrderEntity {
4
+ export declare class PayioOrderEntity extends OrderEntity implements IPayioOrder {
5
+ deviceId: string | null;
4
6
  indoor: PayioOrderIndoorEntity | null;
5
7
  constructor(data?: Partial<PayioOrderEntity>);
6
8
  }
@@ -19,9 +19,12 @@ exports.PayioOrderEntity = void 0;
19
19
  var order_1 = require("../../../order");
20
20
  var PayioOrderEntity = /** @class */ (function (_super) {
21
21
  __extends(PayioOrderEntity, _super);
22
+ // #endregion Properties (2)
23
+ // #region Constructors (1)
22
24
  function PayioOrderEntity(data) {
23
25
  var _this = _super.call(this) || this;
24
- // #region Constructors (1)
26
+ // #region Properties (2)
27
+ _this.deviceId = null;
25
28
  _this.indoor = null;
26
29
  if (data) {
27
30
  for (var key in data) {
@@ -2,4 +2,5 @@ import { IOrder } from '../../../order';
2
2
  import { IPayioOrderIndoor } from './i-order-indoor';
3
3
  export interface IPayioOrder extends IOrder {
4
4
  indoor: IPayioOrderIndoor | null;
5
+ deviceId: string | null;
5
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.6.34",
3
+ "version": "1.6.35",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",