@posx/core 5.5.161 → 5.5.165

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
@@ -1752,6 +1752,42 @@ declare module '@posx/core/services/printer.service' {
1752
1752
  openCashDrawer(): Promise<void>;
1753
1753
  }
1754
1754
 
1755
+ }
1756
+ declare module '@posx/core/test/services/discount/coupon-calculation-test/coupon-calculation.test' {
1757
+ export {};
1758
+
1759
+ }
1760
+ declare module '@posx/core/test/services/discount/flat-discount-test/flat-discount.test' {
1761
+ export {};
1762
+
1763
+ }
1764
+ declare module '@posx/core/test/services/invoice/invoice-discount-calculations-test/invoice-discount-calculations.test' {
1765
+ export {};
1766
+
1767
+ }
1768
+ declare module '@posx/core/test/services/invoice/invoice-discount-test/invoice-discount.test' {
1769
+ export {};
1770
+
1771
+ }
1772
+ declare module '@posx/core/test/services/invoice/invoice-rounding-test/invoice-rounding.test' {
1773
+ export {};
1774
+
1775
+ }
1776
+ declare module '@posx/core/test/services/payment/add-payment-test/add-payment.test' {
1777
+ export {};
1778
+
1779
+ }
1780
+ declare module '@posx/core/test/services/payment/cash-payment-test/cash-payment.test' {
1781
+ export {};
1782
+
1783
+ }
1784
+ declare module '@posx/core/test/services/report/item-sales-report-test/item-sales-report.test' {
1785
+ export {};
1786
+
1787
+ }
1788
+ declare module '@posx/core/test/services/tax/tax-exempt-test/tax-exempt.test' {
1789
+ export {};
1790
+
1755
1791
  }
1756
1792
  declare module '@posx/core/types/abstract.type' {
1757
1793
  export const transformer: {
@@ -4507,6 +4543,7 @@ declare module '@posx/core/types/section.type' {
4507
4543
  export interface ISectionItem extends IAppBaseModel {
4508
4544
  /** List of printer ID order */
4509
4545
  printer_id_order_list: number[];
4546
+ order_printer_uids: string[];
4510
4547
  /** Total amount */
4511
4548
  total: number;
4512
4549
  /** Time duration */
@@ -4543,6 +4580,7 @@ declare module '@posx/core/types/section.type' {
4543
4580
  }
4544
4581
  export class SectionItem extends AppBaseModel implements ISectionItem {
4545
4582
  printer_id_order_list: number[];
4583
+ order_printer_uids: string[];
4546
4584
  total: number;
4547
4585
  time: number;
4548
4586
  pax: number;