@posx/core 5.5.286 → 5.5.289

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,6 +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
1855
  private createKitchenPrintJobs;
1855
1856
  private createOrderPrintJobs;
1856
1857
  private createLabelPrintJobs;
@@ -5611,6 +5612,16 @@ declare module '@posx/core/utils/csv.utils' {
5611
5612
  products: IItem[];
5612
5613
  }>;
5613
5614
 
5615
+ }
5616
+ declare module '@posx/core/utils/date.utils' {
5617
+ /**
5618
+ * Adjust date to specific timezone offset and return ISO string
5619
+ * @param date - The date to adjust
5620
+ * @param timezoneOffset - Timezone offset in hours (e.g., 8 for UTC+8, -5 for UTC-5)
5621
+ * @returns ISO string of the adjusted date
5622
+ */
5623
+ export const adjustToTimezone: (date: Date, timezoneOffset: number) => string;
5624
+
5614
5625
  }
5615
5626
  declare module '@posx/core/utils/http.utils' {
5616
5627
  /**