cecon-interfaces 1.7.29 → 1.7.30
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/chef-config/entities/chef-config-operation.entity.mjs +2 -4
- package/dist/esm2022/payio/chef-config/interfaces/i-chef-config-operation.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +1 -3
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/dist/payio/chef-config/entities/chef-config-operation.entity.d.ts +1 -0
- package/dist/payio/chef-config/entities/chef-config-operation.entity.js +1 -3
- package/dist/payio/chef-config/interfaces/i-chef-config-operation.d.ts +1 -0
- package/package.json +1 -1
package/dist/package.json
CHANGED
@@ -17,6 +17,7 @@ export declare class PayioChefConfigOperationEntity implements IPayioChefConfigO
|
|
17
17
|
startOrderIn: number;
|
18
18
|
tabFormat: string | null;
|
19
19
|
tabMode: EPayioChefTabMode;
|
20
|
+
tabRegistred: boolean;
|
20
21
|
urlLogo: string;
|
21
22
|
constructor(data?: Partial<PayioChefConfigOperationEntity>);
|
22
23
|
}
|
@@ -3,10 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.PayioChefConfigOperationEntity = void 0;
|
4
4
|
var enums_1 = require("../enums");
|
5
5
|
var PayioChefConfigOperationEntity = /** @class */ (function () {
|
6
|
-
// #endregion Properties (17)
|
7
|
-
// #region Constructors (1)
|
8
6
|
function PayioChefConfigOperationEntity(data) {
|
9
|
-
// #region Properties (17)
|
10
7
|
this.barcodeFormat = enums_1.EBarcodeFormat.CODE_6_PRICE_6;
|
11
8
|
this.barcodeInitialFlag = '2';
|
12
9
|
this.bipOnPrint = true;
|
@@ -23,6 +20,7 @@ var PayioChefConfigOperationEntity = /** @class */ (function () {
|
|
23
20
|
this.startOrderIn = 1;
|
24
21
|
this.tabFormat = '';
|
25
22
|
this.tabMode = enums_1.EPayioChefTabMode.MANUAL;
|
23
|
+
this.tabRegistred = false;
|
26
24
|
this.urlLogo = '';
|
27
25
|
if (data) {
|
28
26
|
for (var key in data) {
|