@posx/core 5.5.222 → 5.5.224

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 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 {
@@ -3244,12 +3247,14 @@ declare module '@posx/core/types/menu.type' {
3244
3247
  icon: string;
3245
3248
  meta: Record<string, any>;
3246
3249
  category_uids: string[];
3250
+ online_order_expiry_in_minutes: number;
3247
3251
  }
3248
3252
  export class Menu extends AppBaseModel implements IMenu {
3249
3253
  uid: string;
3250
3254
  icon: string;
3251
3255
  meta: {};
3252
3256
  category_uids: any[];
3257
+ online_order_expiry_in_minutes: number;
3253
3258
  }
3254
3259
 
3255
3260
  }