@posx/core 5.5.193 → 5.5.194
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 -1
- package/build/index.js +1 -1
- package/package.json +1 -1
- package/package.publish.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -2212,18 +2212,19 @@ declare module '@posx/core/types/config.type' {
|
|
|
2212
2212
|
default_order_flow: OrderFlow;
|
|
2213
2213
|
select_order_flow: boolean;
|
|
2214
2214
|
select_menus: boolean;
|
|
2215
|
-
paynow_method: PaynowMethod;
|
|
2216
2215
|
};
|
|
2217
2216
|
export interface IOnlineOrderConfig {
|
|
2218
2217
|
enable_membership: boolean;
|
|
2219
2218
|
login_call_to_action_text: string;
|
|
2220
2219
|
menu_banner_image_url: string;
|
|
2220
|
+
paynow_method: PaynowMethod;
|
|
2221
2221
|
dynamic_order_qr: TDynamicOrderQR;
|
|
2222
2222
|
}
|
|
2223
2223
|
export class OnlineOrderConfig implements IOnlineOrderConfig {
|
|
2224
2224
|
enable_membership: boolean;
|
|
2225
2225
|
login_call_to_action_text: string;
|
|
2226
2226
|
menu_banner_image_url: string;
|
|
2227
|
+
paynow_method: PaynowMethod.WyoPaynow;
|
|
2227
2228
|
dynamic_order_qr: TDynamicOrderQR;
|
|
2228
2229
|
constructor();
|
|
2229
2230
|
}
|