@posx/core 5.5.66 → 5.5.67

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
@@ -2830,6 +2830,8 @@ declare module '@posx/core/types/invoice.type' {
2830
2830
  charges: IInvoiceCharge[];
2831
2831
  /** Flag to track if charge has been manually deleted by user */
2832
2832
  is_charge_triggered?: boolean;
2833
+ /** Meta data for the line item */
2834
+ meta: Record<string, any>;
2833
2835
  }
2834
2836
  export class InvoiceCoreLine implements IInvoiceCoreLine {
2835
2837
  item_uid: string;
@@ -2934,6 +2936,7 @@ declare module '@posx/core/types/invoice.type' {
2934
2936
  /** Flag to track if charge has been manually deleted by user */
2935
2937
  is_charge_triggered: boolean;
2936
2938
  uid: string;
2939
+ meta: Record<string, any>;
2937
2940
  constructor();
2938
2941
  }
2939
2942
  export type CreateInvoiceOptions = {