kcommons 8.1.2 → 8.1.3
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.
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { IPaginationFilters } from "./common/paginationFilters.typings";
|
|
1
2
|
import { INestedItem } from "./item.typings";
|
|
2
3
|
import { INestedStoreLocation } from "./storeLocation.typings";
|
|
3
4
|
export interface IInventoryItem {
|
|
@@ -22,3 +23,10 @@ export declare enum STORE_INVENTORY_INCLUDE {
|
|
|
22
23
|
store = "store",
|
|
23
24
|
item = "item"
|
|
24
25
|
}
|
|
26
|
+
export interface IStoreInventoryFilters {
|
|
27
|
+
store_location_id?: string;
|
|
28
|
+
item_id?: string;
|
|
29
|
+
include?: STORE_INVENTORY_INCLUDE[];
|
|
30
|
+
}
|
|
31
|
+
export interface IStoreInventoryFiltersWithPagination extends IStoreInventoryFilters, IPaginationFilters {
|
|
32
|
+
}
|