cecon-interfaces 2.0.24 → 2.0.25

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.
@@ -1,18 +1,9 @@
1
- import { EPayioActivationKeyStatus } from '../..';
2
1
  import { IPayioJwtPayloadDevice } from '../interfaces/i-payload-device';
3
2
  /**
4
3
  * @deprecated Use PayioJwtPayloadMachineEntity instead
5
4
  */
6
5
  export declare class PayioJwtPayloadDeviceEntity implements IPayioJwtPayloadDevice {
7
- activationId: string | null;
8
- activationKey: string | null;
9
- activationStatus: EPayioActivationKeyStatus;
10
- bigChefConfigId: string | null;
11
- cashConfigId: string | null;
12
- chefConfigId: string | null;
13
6
  id: string;
14
7
  name: string | null;
15
- scheduleId: string | null;
16
- smartConfigId: string | null;
17
8
  constructor(data?: Partial<PayioJwtPayloadDeviceEntity>);
18
9
  }
@@ -1,22 +1,13 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.PayioJwtPayloadDeviceEntity = void 0;
4
- var __1 = require("../..");
5
4
  /**
6
5
  * @deprecated Use PayioJwtPayloadMachineEntity instead
7
6
  */
8
7
  var PayioJwtPayloadDeviceEntity = /** @class */ (function () {
9
8
  function PayioJwtPayloadDeviceEntity(data) {
10
- this.activationId = '';
11
- this.activationKey = '';
12
- this.activationStatus = __1.EPayioActivationKeyStatus.NONE;
13
- this.bigChefConfigId = '';
14
- this.cashConfigId = '';
15
- this.chefConfigId = '';
16
9
  this.id = '';
17
10
  this.name = '';
18
- this.scheduleId = '';
19
- this.smartConfigId = '';
20
11
  if (data) {
21
12
  for (var key in data) {
22
13
  if (data.hasOwnProperty(key) && key in this) {
@@ -1,16 +1,7 @@
1
- import { EPayioActivationKeyStatus } from '../../activation-key';
2
1
  /**
3
2
  * @deprecated Use IPayioJwtPayloadMachine instead
4
3
  */
5
4
  export interface IPayioJwtPayloadDevice {
6
- activationId: string | null;
7
- activationKey: string | null;
8
- activationStatus: EPayioActivationKeyStatus;
9
- bigChefConfigId: string | null;
10
- cashConfigId: string | null;
11
- chefConfigId: string | null;
12
5
  id: string;
13
6
  name: string | null;
14
- scheduleId: string | null;
15
- smartConfigId: string | null;
16
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "2.0.24",
3
+ "version": "2.0.25",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",