@posx/core 5.5.291 → 5.5.292

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
@@ -1851,7 +1851,7 @@ declare module '@posx/core/services/invoice.service' {
1851
1851
  private formatDate;
1852
1852
  private addEmployeeToInvoice;
1853
1853
  private createReceiptPrintJob;
1854
- private sortLinesByItem;
1854
+ private sortLinesByItemSequence;
1855
1855
  private createKitchenPrintJobs;
1856
1856
  private createOrderPrintJobs;
1857
1857
  private createLabelPrintJobs;
@@ -2479,6 +2479,11 @@ declare module '@posx/core/types/config.type' {
2479
2479
  menu_banner_image: string;
2480
2480
  home_page_images: string[];
2481
2481
  paynow_method: PaynowMethod;
2482
+ card_payment_code: CardPaymentCode;
2483
+ }
2484
+ export enum CardPaymentCode {
2485
+ SmoochPay = "SPCD",
2486
+ YeahPay = "YEAP"
2482
2487
  }
2483
2488
  export class KioskSystemConfig implements IKioskSystemConfig {
2484
2489
  takeaway_only: boolean;
@@ -2489,6 +2494,7 @@ declare module '@posx/core/types/config.type' {
2489
2494
  menu_banner_image: string;
2490
2495
  home_page_images: any[];
2491
2496
  paynow_method: PaynowMethod;
2497
+ card_payment_code: CardPaymentCode;
2492
2498
  constructor();
2493
2499
  }
2494
2500
  export interface IMarketing {