@posx/core 5.5.260 → 5.5.261

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
@@ -2050,6 +2050,10 @@ declare module '@posx/core/test/services/invoice/invoice-discount-calculations-t
2050
2050
  declare module '@posx/core/test/services/invoice/invoice-discount-test/invoice-discount.test' {
2051
2051
  export {};
2052
2052
 
2053
+ }
2054
+ declare module '@posx/core/test/services/invoice/invoice-print-job-uids-test/invoice-print-job-uids.test' {
2055
+ export {};
2056
+
2053
2057
  }
2054
2058
  declare module '@posx/core/test/services/invoice/invoice-rounding-test/invoice-rounding.test' {
2055
2059
  export {};
@@ -3398,6 +3402,10 @@ declare module '@posx/core/types/invoice.type' {
3398
3402
  activities: any[];
3399
3403
  /** Receipt printer unique id */
3400
3404
  receipt_print_job_uid: string;
3405
+ /** Kitchen print job uids */
3406
+ kitchen_print_job_uids: string[];
3407
+ /** Label print job uids */
3408
+ label_print_job_uids: string[];
3401
3409
  /** Additional charges */
3402
3410
  charges: IInvoiceCharge[];
3403
3411
  /** Flag to track if charge has been manually deleted by user */
@@ -3512,6 +3520,8 @@ declare module '@posx/core/types/invoice.type' {
3512
3520
  otp: string;
3513
3521
  activities: any[];
3514
3522
  receipt_print_job_uid: string;
3523
+ kitchen_print_job_uids: string[];
3524
+ label_print_job_uids: string[];
3515
3525
  charges: IInvoiceCharge[];
3516
3526
  /** Flag to track if charge has been manually deleted by user */
3517
3527
  is_charge_triggered: boolean;