cecon-interfaces 1.8.70 → 1.8.72

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.
@@ -15,6 +15,6 @@ export declare class PayioBigChefConfigOperationEntity implements IPayioBigChefC
15
15
  tabStartOrderIn: number;
16
16
  tabMode: EPayioChefTabMode;
17
17
  tabUrlLogo: string;
18
- VisionDeviceId: string;
18
+ visionDeviceId: string;
19
19
  constructor(data?: Partial<PayioBigChefConfigOperationEntity>);
20
20
  }
@@ -18,7 +18,7 @@ var PayioBigChefConfigOperationEntity = /** @class */ (function () {
18
18
  this.tabStartOrderIn = 1;
19
19
  this.tabMode = chef_config_1.EPayioChefTabMode.MANUAL;
20
20
  this.tabUrlLogo = '';
21
- this.VisionDeviceId = '';
21
+ this.visionDeviceId = '';
22
22
  if (data) {
23
23
  for (var key in data) {
24
24
  if (data.hasOwnProperty(key) && key in this) {
@@ -14,5 +14,5 @@ export interface IPayioBigChefConfigOperation {
14
14
  tabStartOrderIn: number;
15
15
  tabMode: EPayioChefTabMode;
16
16
  tabUrlLogo: string;
17
- VisionDeviceId: string;
17
+ visionDeviceId: string;
18
18
  }
@@ -2,7 +2,7 @@ import { EBarcodeFormat } from '../../chef-config';
2
2
  import { ETefProvider } from '../enums';
3
3
  import { IPayioCashConfigOperation, IPayioCashConfigOperationTef } from '../interfaces/i-cash-config-operation';
4
4
  export declare class PayioCashConfigOperationEntity implements IPayioCashConfigOperation {
5
- balanceMethod: EBarcodeFormat;
5
+ barcodeFormat: EBarcodeFormat;
6
6
  tabFormat: string | null;
7
7
  tef: IPayioCashConfigOperationTef;
8
8
  pdvId: string;
@@ -5,7 +5,7 @@ var chef_config_1 = require("../../chef-config");
5
5
  var enums_1 = require("../enums");
6
6
  var PayioCashConfigOperationEntity = /** @class */ (function () {
7
7
  function PayioCashConfigOperationEntity(data) {
8
- this.balanceMethod = chef_config_1.EBarcodeFormat.CODE_6_PRICE_6;
8
+ this.barcodeFormat = chef_config_1.EBarcodeFormat.CODE_6_PRICE_6;
9
9
  this.tabFormat = null;
10
10
  this.tef = new PayioCashConfigOperationTefEntity();
11
11
  this.pdvId = '';
@@ -1,7 +1,7 @@
1
1
  import { EBarcodeFormat } from '../../chef-config';
2
2
  import { ETefProvider } from '../enums';
3
3
  export interface IPayioCashConfigOperation {
4
- balanceMethod: EBarcodeFormat | null;
4
+ barcodeFormat: EBarcodeFormat | null;
5
5
  /** @deprecated */
6
6
  tabFormat: string | null;
7
7
  tef: IPayioCashConfigOperationTef;
@@ -22,6 +22,7 @@ export declare class PayioCompanyEntity implements IPayioCompany {
22
22
  paymentProvider: IPaymentProvider | null;
23
23
  phoneNumber: string;
24
24
  sandbox: boolean;
25
+ secret: string;
25
26
  shortName: string;
26
27
  tags: string[];
27
28
  updatedAt: Date;
@@ -25,6 +25,7 @@ var PayioCompanyEntity = /** @class */ (function () {
25
25
  this.paymentProvider = null;
26
26
  this.phoneNumber = '';
27
27
  this.sandbox = false;
28
+ this.secret = '';
28
29
  this.shortName = '';
29
30
  this.tags = [];
30
31
  this.updatedAt = new Date();
@@ -21,6 +21,7 @@ export interface IPayioCompany {
21
21
  paymentProvider: IPaymentProvider | null;
22
22
  phoneNumber: string;
23
23
  sandbox: boolean;
24
+ secret: string;
24
25
  ifoodMerchantId: string | null;
25
26
  shortName: string;
26
27
  tags: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.8.70",
3
+ "version": "1.8.72",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",