@konversi/konversi-client 1.5.5 → 1.5.6
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/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -888,6 +888,7 @@ interface StockAdjustment {
|
|
|
888
888
|
date?: string;
|
|
889
889
|
warehouse: Partial<Warehouse>;
|
|
890
890
|
product: Partial<Product>;
|
|
891
|
+
productItem: Partial<ProductItem>;
|
|
891
892
|
type: StockAdjustmentType;
|
|
892
893
|
memo: string;
|
|
893
894
|
user: Partial<User>;
|
|
@@ -1440,6 +1441,7 @@ interface ProductItem {
|
|
|
1440
1441
|
description: string;
|
|
1441
1442
|
quantity: number;
|
|
1442
1443
|
product: Partial<Product>;
|
|
1444
|
+
stockAdjustments: Partial<StockAdjustment>[];
|
|
1443
1445
|
warehouse: Partial<Warehouse>;
|
|
1444
1446
|
customFields: any;
|
|
1445
1447
|
rentalOrderLines: Partial<RentalOrderLine>[];
|
package/dist/index.d.ts
CHANGED
|
@@ -888,6 +888,7 @@ interface StockAdjustment {
|
|
|
888
888
|
date?: string;
|
|
889
889
|
warehouse: Partial<Warehouse>;
|
|
890
890
|
product: Partial<Product>;
|
|
891
|
+
productItem: Partial<ProductItem>;
|
|
891
892
|
type: StockAdjustmentType;
|
|
892
893
|
memo: string;
|
|
893
894
|
user: Partial<User>;
|
|
@@ -1440,6 +1441,7 @@ interface ProductItem {
|
|
|
1440
1441
|
description: string;
|
|
1441
1442
|
quantity: number;
|
|
1442
1443
|
product: Partial<Product>;
|
|
1444
|
+
stockAdjustments: Partial<StockAdjustment>[];
|
|
1443
1445
|
warehouse: Partial<Warehouse>;
|
|
1444
1446
|
customFields: any;
|
|
1445
1447
|
rentalOrderLines: Partial<RentalOrderLine>[];
|