@posx/core 5.3.73 → 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 +6 -0
- package/build/index.js +1 -1
- package/package.json +2 -1
- package/package.publish.json +2 -1
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
|
/**
|
|
@@ -3656,6 +3657,10 @@ declare module '@posx/core/types/product.type' {
|
|
|
3656
3657
|
* Order printer IDs of the item
|
|
3657
3658
|
*/
|
|
3658
3659
|
order_printers_uids: Array<string>;
|
|
3660
|
+
/**
|
|
3661
|
+
* Label printer IDs of the item
|
|
3662
|
+
*/
|
|
3663
|
+
label_printers_uids: Array<string>;
|
|
3659
3664
|
/**
|
|
3660
3665
|
* if editor will be opened by default when item is clicked
|
|
3661
3666
|
*/
|
|
@@ -3699,6 +3704,7 @@ declare module '@posx/core/types/product.type' {
|
|
|
3699
3704
|
uid: string;
|
|
3700
3705
|
kitchen_printers_uids: any[];
|
|
3701
3706
|
order_printers_uids: any[];
|
|
3707
|
+
label_printers_uids: any[];
|
|
3702
3708
|
open_editor_panel: boolean;
|
|
3703
3709
|
open_price_editor: boolean;
|
|
3704
3710
|
constructor();
|