cecon-interfaces 1.9.63 → 1.9.66

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.
@@ -2,5 +2,6 @@ export declare enum EPayioCardKeyType {
2
2
  CPF = "CPF",
3
3
  CNPJ = "CNPJ",
4
4
  PHONE = "PHONE",
5
- EMAIL = "EMAIL"
5
+ EMAIL = "EMAIL",
6
+ RANDOM = "RANDOM"
6
7
  }
@@ -7,4 +7,5 @@ var EPayioCardKeyType;
7
7
  EPayioCardKeyType["CNPJ"] = "CNPJ";
8
8
  EPayioCardKeyType["PHONE"] = "PHONE";
9
9
  EPayioCardKeyType["EMAIL"] = "EMAIL";
10
+ EPayioCardKeyType["RANDOM"] = "RANDOM";
10
11
  })(EPayioCardKeyType || (exports.EPayioCardKeyType = EPayioCardKeyType = {}));
@@ -1,12 +1,15 @@
1
- import { EPayioActivationKeyStatus } from '../../activation-key/enums/activation-key-status.enum';
2
- import { IPayioJwtPayloadDevice } from '../interfaces/i-payload-device';
1
+ import { EPayioActivationKeyStatus } from "../../activation-key/enums/activation-key-status.enum";
2
+ import { IPayioJwtPayloadDevice } from "../interfaces/i-payload-device";
3
3
  export declare class PayioJwtPayloadDeviceEntity implements IPayioJwtPayloadDevice {
4
4
  activationId: string | null;
5
5
  activationKey: string | null;
6
6
  activationStatus: EPayioActivationKeyStatus;
7
+ bigChefConfigId: string | null;
8
+ cashConfigId: string | null;
7
9
  chefConfigId: string | null;
8
10
  id: string;
9
11
  name: string | null;
10
12
  scheduleId: string | null;
13
+ smartConfigId: string | null;
11
14
  constructor(data?: Partial<PayioJwtPayloadDeviceEntity>);
12
15
  }
@@ -7,10 +7,13 @@ var PayioJwtPayloadDeviceEntity = /** @class */ (function () {
7
7
  this.activationId = '';
8
8
  this.activationKey = '';
9
9
  this.activationStatus = activation_key_status_enum_1.EPayioActivationKeyStatus.NONE;
10
+ this.bigChefConfigId = '';
11
+ this.cashConfigId = '';
10
12
  this.chefConfigId = '';
11
13
  this.id = '';
12
14
  this.name = '';
13
15
  this.scheduleId = '';
16
+ this.smartConfigId = '';
14
17
  if (data) {
15
18
  for (var key in data) {
16
19
  if (data.hasOwnProperty(key) && key in this) {
@@ -6,6 +6,7 @@ export declare enum EPayioJwtTokenType {
6
6
  CHECKIN = "CHECKIN",
7
7
  CHECKOUT = "CHECKOUT",
8
8
  DEVICE = "DEVICE",
9
+ IOT = "IOT",
9
10
  ACCESS_TOKEN = "ACCESS_TOKEN",
10
11
  DEVELOPER_APP = "DEVELOPER_APP"
11
12
  }
@@ -10,6 +10,7 @@ var EPayioJwtTokenType;
10
10
  EPayioJwtTokenType["CHECKIN"] = "CHECKIN";
11
11
  EPayioJwtTokenType["CHECKOUT"] = "CHECKOUT";
12
12
  EPayioJwtTokenType["DEVICE"] = "DEVICE";
13
+ EPayioJwtTokenType["IOT"] = "IOT";
13
14
  EPayioJwtTokenType["ACCESS_TOKEN"] = "ACCESS_TOKEN";
14
15
  EPayioJwtTokenType["DEVELOPER_APP"] = "DEVELOPER_APP";
15
16
  })(EPayioJwtTokenType || (exports.EPayioJwtTokenType = EPayioJwtTokenType = {}));
@@ -3,8 +3,11 @@ export interface IPayioJwtPayloadDevice {
3
3
  activationId: string | null;
4
4
  activationKey: string | null;
5
5
  activationStatus: EPayioActivationKeyStatus;
6
+ bigChefConfigId: string | null;
7
+ cashConfigId: string | null;
6
8
  chefConfigId: string | null;
7
9
  id: string;
8
10
  name: string | null;
9
11
  scheduleId: string | null;
12
+ smartConfigId: string | null;
10
13
  }
package/package.json CHANGED
@@ -1,9 +1,21 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.9.63",
3
+ "version": "1.9.66",
4
4
  "description": "Interfaces de Projetos Cecon",
5
- "main": "dist/index.js",
5
+ "main": "dist/fesm2022/cecon-interfaces.mjs",
6
6
  "types": "dist/index.d.ts",
7
+ "module": "dist/fesm2022/cecon-interfaces.mjs",
8
+ "exports": {
9
+ "./package.json": {
10
+ "default": "./dist/package.json"
11
+ },
12
+ ".": {
13
+ "types": "./dist/index.d.ts",
14
+ "esm2022": "./dist/esm2022/cecon-interfaces.mjs",
15
+ "esm": "./dist/esm2022/cecon-interfaces.mjs",
16
+ "default": "./dist/fesm2022/cecon-interfaces.mjs"
17
+ }
18
+ },
7
19
  "private": false,
8
20
  "scripts": {
9
21
  "packagr": "ng-packagr -p ng-package.json",