@posx/core 5.5.91 → 5.5.92
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 +4 -1
- package/build/index.js +1 -1
- package/package.json +1 -1
- package/package.publish.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -2857,8 +2857,10 @@ declare module '@posx/core/types/invoice.type' {
|
|
|
2857
2857
|
charges: IInvoiceCharge[];
|
|
2858
2858
|
/** Flag to track if charge has been manually deleted by user */
|
|
2859
2859
|
is_charge_triggered?: boolean;
|
|
2860
|
-
/** Meta data for the
|
|
2860
|
+
/** Meta data for the invoice */
|
|
2861
2861
|
meta: Record<string, any>;
|
|
2862
|
+
/** If the key is not null or empty, meaning the items prices are from this price lookup key tier */
|
|
2863
|
+
price_lookup_key: string;
|
|
2862
2864
|
}
|
|
2863
2865
|
export class InvoiceCoreLine implements IInvoiceCoreLine {
|
|
2864
2866
|
item_uid: string;
|
|
@@ -2968,6 +2970,7 @@ declare module '@posx/core/types/invoice.type' {
|
|
|
2968
2970
|
is_charge_triggered: boolean;
|
|
2969
2971
|
uid: string;
|
|
2970
2972
|
meta: Record<string, any>;
|
|
2973
|
+
price_lookup_key: string;
|
|
2971
2974
|
constructor();
|
|
2972
2975
|
}
|
|
2973
2976
|
export type CreateInvoiceOptions = {
|