@posx/core 5.5.215 → 5.5.217
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 -1
- package/build/index.js +1 -1
- package/package.json +1 -1
- package/package.publish.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -23,7 +23,6 @@ declare module '@posx/core/index' {
|
|
|
23
23
|
export * from '@posx/core/types/report.type';
|
|
24
24
|
export * from '@posx/core/services/printer.service';
|
|
25
25
|
export * from '@posx/core/utils/misc.utils';
|
|
26
|
-
export * from '@posx/core/service.factory';
|
|
27
26
|
export * from '@posx/core/libs/escpos.printer';
|
|
28
27
|
export * from '@posx/core/services/ods.service';
|
|
29
28
|
export * from '@posx/core/types/ods.type';
|
|
@@ -32,6 +31,7 @@ declare module '@posx/core/index' {
|
|
|
32
31
|
export * from '@posx/core/types/condition.type';
|
|
33
32
|
export * from '@posx/core/types/merchant.type';
|
|
34
33
|
export * from '@posx/core/types/storage.type';
|
|
34
|
+
export * from '@posx/core/types/menu.type';
|
|
35
35
|
|
|
36
36
|
}
|
|
37
37
|
declare module '@posx/core/libs/FindOptions' {
|
|
@@ -2511,6 +2511,8 @@ declare module '@posx/core/types/config.type' {
|
|
|
2511
2511
|
max_dinning: number;
|
|
2512
2512
|
/** Flag to exit the menu after payment */
|
|
2513
2513
|
exit_menu_after_payment: boolean;
|
|
2514
|
+
/** Flag to hide the combo item on receipt view */
|
|
2515
|
+
hide_combo_item_on_receipt: boolean;
|
|
2514
2516
|
}
|
|
2515
2517
|
export class OrderConfig implements IOrderConfig {
|
|
2516
2518
|
separation_line: boolean;
|
|
@@ -2518,6 +2520,7 @@ declare module '@posx/core/types/config.type' {
|
|
|
2518
2520
|
slip_font_size_ratio: number;
|
|
2519
2521
|
max_dinning: number;
|
|
2520
2522
|
exit_menu_after_payment: boolean;
|
|
2523
|
+
hide_combo_item_on_receipt: boolean;
|
|
2521
2524
|
constructor();
|
|
2522
2525
|
}
|
|
2523
2526
|
export interface IPaymentConfig {
|