@posx/core 5.5.378 → 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 +2 -0
- package/build/index.js +1 -0
- package/package.json +1 -1
- package/package.publish.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -3323,6 +3323,7 @@ interface IOnlineOrderConfig {
|
|
|
3323
3323
|
category_selector_mode: 'photo_mode' | 'dropdown_mode';
|
|
3324
3324
|
max_dining_time: number;
|
|
3325
3325
|
disable_logo_for_item_photo_fallback: boolean;
|
|
3326
|
+
whatsapp_login_only: boolean;
|
|
3326
3327
|
}
|
|
3327
3328
|
declare class OnlineOrderConfig implements IOnlineOrderConfig {
|
|
3328
3329
|
enable_membership: boolean;
|
|
@@ -3335,6 +3336,7 @@ declare class OnlineOrderConfig implements IOnlineOrderConfig {
|
|
|
3335
3336
|
dynamic_order_qr: TDynamicOrderQR;
|
|
3336
3337
|
max_dining_time: number;
|
|
3337
3338
|
disable_logo_for_item_photo_fallback: boolean;
|
|
3339
|
+
whatsapp_login_only: boolean;
|
|
3338
3340
|
constructor();
|
|
3339
3341
|
}
|
|
3340
3342
|
interface IGeneralConfig {
|
package/build/index.js
CHANGED
|
@@ -1979,6 +1979,7 @@ var OnlineOrderConfig = class {
|
|
|
1979
1979
|
});
|
|
1980
1980
|
_defineProperty(this, "max_dining_time", 0);
|
|
1981
1981
|
_defineProperty(this, "disable_logo_for_item_photo_fallback", false);
|
|
1982
|
+
_defineProperty(this, "whatsapp_login_only", false);
|
|
1982
1983
|
}
|
|
1983
1984
|
};
|
|
1984
1985
|
let DeployChannel = /* @__PURE__ */ function(DeployChannel$1) {
|
package/package.json
CHANGED