@posx/core 5.3.72 → 5.3.75

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
@@ -1439,6 +1439,7 @@ declare module '@posx/core/services/invoice.service' {
1439
1439
  private createReceiptPrintJob;
1440
1440
  private createKitchenPrintJobs;
1441
1441
  private createOrderPrintJobs;
1442
+ private createLabelPrintJobs;
1442
1443
  private filterLinesAndPrintersToPrint;
1443
1444
  private preprocessInvoice;
1444
1445
  /**
@@ -3264,6 +3265,7 @@ declare module '@posx/core/types/printer.type' {
3264
3265
  protocol: PrinterProtocols;
3265
3266
  connection_type: PrinterConnections;
3266
3267
  data: IPrintCommand;
3268
+ commands: string;
3267
3269
  status: PrintJobStatus;
3268
3270
  retries: number;
3269
3271
  save_only: boolean;
@@ -3287,6 +3289,7 @@ declare module '@posx/core/types/printer.type' {
3287
3289
  data: PrintCommand;
3288
3290
  status: PrintJobStatus;
3289
3291
  retries: number;
3292
+ commands: string;
3290
3293
  uid: string;
3291
3294
  save_only: boolean;
3292
3295
  print_times: number;
@@ -3654,6 +3657,10 @@ declare module '@posx/core/types/product.type' {
3654
3657
  * Order printer IDs of the item
3655
3658
  */
3656
3659
  order_printers_uids: Array<string>;
3660
+ /**
3661
+ * Label printer IDs of the item
3662
+ */
3663
+ label_printers_uids: Array<string>;
3657
3664
  /**
3658
3665
  * if editor will be opened by default when item is clicked
3659
3666
  */
@@ -3697,6 +3704,7 @@ declare module '@posx/core/types/product.type' {
3697
3704
  uid: string;
3698
3705
  kitchen_printers_uids: any[];
3699
3706
  order_printers_uids: any[];
3707
+ label_printers_uids: any[];
3700
3708
  open_editor_panel: boolean;
3701
3709
  open_price_editor: boolean;
3702
3710
  constructor();