@posx/core 5.5.208 → 5.5.210
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 +1 -1
- package/package.json +1 -1
- package/package.publish.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -2244,12 +2244,16 @@ declare module '@posx/core/types/config.type' {
|
|
|
2244
2244
|
menu_banner_image_url: string;
|
|
2245
2245
|
paynow_method: PaynowMethod;
|
|
2246
2246
|
dynamic_order_qr: TDynamicOrderQR;
|
|
2247
|
+
default_language: string;
|
|
2248
|
+
category_selector_mode: 'photo_mode' | 'dropdown_mode';
|
|
2247
2249
|
}
|
|
2248
2250
|
export class OnlineOrderConfig implements IOnlineOrderConfig {
|
|
2249
2251
|
enable_membership: boolean;
|
|
2250
2252
|
login_call_to_action_text: string;
|
|
2251
2253
|
menu_banner_image_url: string;
|
|
2252
2254
|
paynow_method: PaynowMethod.WyoPaynow;
|
|
2255
|
+
default_language: string;
|
|
2256
|
+
category_selector_mode: 'photo_mode' | 'dropdown_mode';
|
|
2253
2257
|
dynamic_order_qr: TDynamicOrderQR;
|
|
2254
2258
|
constructor();
|
|
2255
2259
|
}
|