@posx/core 5.5.222 → 5.5.223
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 +3 -0
- package/build/index.js +1 -1
- package/package.json +1 -1
- package/package.publish.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -2519,6 +2519,8 @@ declare module '@posx/core/types/config.type' {
|
|
|
2519
2519
|
exit_menu_after_payment: boolean;
|
|
2520
2520
|
/** Flag to hide the combo item on receipt view */
|
|
2521
2521
|
hide_combo_item_on_receipt: boolean;
|
|
2522
|
+
/** Flag to hide the point item on receipt view */
|
|
2523
|
+
hide_combo_item_on_interactive_view: boolean;
|
|
2522
2524
|
}
|
|
2523
2525
|
export class OrderConfig implements IOrderConfig {
|
|
2524
2526
|
separation_line: boolean;
|
|
@@ -2527,6 +2529,7 @@ declare module '@posx/core/types/config.type' {
|
|
|
2527
2529
|
max_dinning: number;
|
|
2528
2530
|
exit_menu_after_payment: boolean;
|
|
2529
2531
|
hide_combo_item_on_receipt: boolean;
|
|
2532
|
+
hide_combo_item_on_interactive_view: boolean;
|
|
2530
2533
|
constructor();
|
|
2531
2534
|
}
|
|
2532
2535
|
export interface IPaymentConfig {
|