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.
- package/dist/esm2022/payio/big-chef-config/entities/config-operation.entity.mjs +2 -2
- package/dist/esm2022/payio/big-chef-config/interfaces/i-chef-config-operation.mjs +1 -1
- package/dist/esm2022/payio/cash-config/entities/config-operation.entity.mjs +2 -2
- package/dist/esm2022/payio/cash-config/interfaces/i-cash-config-operation.mjs +1 -1
- package/dist/esm2022/payio/company/entities/company.entity.mjs +2 -1
- package/dist/esm2022/payio/company/interfaces/i-company.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +3 -2
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/payio/big-chef-config/entities/config-operation.entity.d.ts +1 -1
- package/dist/payio/big-chef-config/entities/config-operation.entity.js +1 -1
- package/dist/payio/big-chef-config/interfaces/i-chef-config-operation.d.ts +1 -1
- package/dist/payio/cash-config/entities/config-operation.entity.d.ts +1 -1
- package/dist/payio/cash-config/entities/config-operation.entity.js +1 -1
- package/dist/payio/cash-config/interfaces/i-cash-config-operation.d.ts +1 -1
- package/dist/payio/company/entities/company.entity.d.ts +1 -0
- package/dist/payio/company/entities/company.entity.js +1 -0
- package/dist/payio/company/interfaces/i-company.d.ts +1 -0
- package/package.json +1 -1
@@ -15,6 +15,6 @@ export declare class PayioBigChefConfigOperationEntity implements IPayioBigChefC
|
|
15
15
|
tabStartOrderIn: number;
|
16
16
|
tabMode: EPayioChefTabMode;
|
17
17
|
tabUrlLogo: string;
|
18
|
-
|
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.
|
21
|
+
this.visionDeviceId = '';
|
22
22
|
if (data) {
|
23
23
|
for (var key in data) {
|
24
24
|
if (data.hasOwnProperty(key) && key in this) {
|
@@ -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
|
-
|
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.
|
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
|
-
|
4
|
+
barcodeFormat: EBarcodeFormat | null;
|
5
5
|
/** @deprecated */
|
6
6
|
tabFormat: string | null;
|
7
7
|
tef: IPayioCashConfigOperationTef;
|