@posx/core 5.5.377 → 5.5.379
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/build/index.d.ts +4 -0
- package/build/index.js +2 -0
- package/package.json +1 -1
- package/package.publish.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -3204,11 +3204,13 @@ interface ICustomerDisplaySystemConfig {
|
|
|
3204
3204
|
enabled: boolean;
|
|
3205
3205
|
full_screen_assets: string[];
|
|
3206
3206
|
half_screen_assets: string[];
|
|
3207
|
+
is_logo_hidden: boolean;
|
|
3207
3208
|
}
|
|
3208
3209
|
declare class CustomerDisplaySystemConfig implements ICustomerDisplaySystemConfig {
|
|
3209
3210
|
enabled: boolean;
|
|
3210
3211
|
full_screen_assets: any[];
|
|
3211
3212
|
half_screen_assets: any[];
|
|
3213
|
+
is_logo_hidden: boolean;
|
|
3212
3214
|
constructor();
|
|
3213
3215
|
}
|
|
3214
3216
|
interface IKioskSystemConfig {
|
|
@@ -3321,6 +3323,7 @@ interface IOnlineOrderConfig {
|
|
|
3321
3323
|
category_selector_mode: 'photo_mode' | 'dropdown_mode';
|
|
3322
3324
|
max_dining_time: number;
|
|
3323
3325
|
disable_logo_for_item_photo_fallback: boolean;
|
|
3326
|
+
whatsapp_login_only: boolean;
|
|
3324
3327
|
}
|
|
3325
3328
|
declare class OnlineOrderConfig implements IOnlineOrderConfig {
|
|
3326
3329
|
enable_membership: boolean;
|
|
@@ -3333,6 +3336,7 @@ declare class OnlineOrderConfig implements IOnlineOrderConfig {
|
|
|
3333
3336
|
dynamic_order_qr: TDynamicOrderQR;
|
|
3334
3337
|
max_dining_time: number;
|
|
3335
3338
|
disable_logo_for_item_photo_fallback: boolean;
|
|
3339
|
+
whatsapp_login_only: boolean;
|
|
3336
3340
|
constructor();
|
|
3337
3341
|
}
|
|
3338
3342
|
interface IGeneralConfig {
|
package/build/index.js
CHANGED
|
@@ -1890,6 +1890,7 @@ var CustomerDisplaySystemConfig = class {
|
|
|
1890
1890
|
_defineProperty(this, "enabled", false);
|
|
1891
1891
|
_defineProperty(this, "full_screen_assets", []);
|
|
1892
1892
|
_defineProperty(this, "half_screen_assets", []);
|
|
1893
|
+
_defineProperty(this, "is_logo_hidden", false);
|
|
1893
1894
|
}
|
|
1894
1895
|
};
|
|
1895
1896
|
let CardPaymentCode = /* @__PURE__ */ function(CardPaymentCode$1) {
|
|
@@ -1978,6 +1979,7 @@ var OnlineOrderConfig = class {
|
|
|
1978
1979
|
});
|
|
1979
1980
|
_defineProperty(this, "max_dining_time", 0);
|
|
1980
1981
|
_defineProperty(this, "disable_logo_for_item_photo_fallback", false);
|
|
1982
|
+
_defineProperty(this, "whatsapp_login_only", false);
|
|
1981
1983
|
}
|
|
1982
1984
|
};
|
|
1983
1985
|
let DeployChannel = /* @__PURE__ */ function(DeployChannel$1) {
|
package/package.json
CHANGED