@posx/core 5.5.159 → 5.5.161
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 -0
- package/build/index.js +1 -1
- package/package.json +1 -1
- package/package.publish.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -2751,6 +2751,8 @@ declare module '@posx/core/types/invoice.type' {
|
|
|
2751
2751
|
quantity: number;
|
|
2752
2752
|
/** Whether it is sent to server*/
|
|
2753
2753
|
sent: number;
|
|
2754
|
+
/** Whether it is selected */
|
|
2755
|
+
selected: boolean;
|
|
2754
2756
|
}
|
|
2755
2757
|
/**
|
|
2756
2758
|
* Represents a line item on an invoice.
|
|
@@ -2957,6 +2959,7 @@ declare module '@posx/core/types/invoice.type' {
|
|
|
2957
2959
|
unit_of_measure: UomType;
|
|
2958
2960
|
quantity: number;
|
|
2959
2961
|
sent: number;
|
|
2962
|
+
selected: boolean;
|
|
2960
2963
|
constructor();
|
|
2961
2964
|
}
|
|
2962
2965
|
export class InvoiceLine extends AppCoreModel implements IInvoiceLine {
|
|
@@ -2984,6 +2987,7 @@ declare module '@posx/core/types/invoice.type' {
|
|
|
2984
2987
|
modifiers: any[];
|
|
2985
2988
|
duplicated_from_uid: string;
|
|
2986
2989
|
sent: number;
|
|
2990
|
+
selected: boolean;
|
|
2987
2991
|
meta: {};
|
|
2988
2992
|
constructor();
|
|
2989
2993
|
}
|