feat: inventory items api (#2971)

What:
Admin endpoints to handle inventory items and their stock levels per location

FIXES: CORE-975

Co-authored-by: Sebastian Rindom <7554214+srindom@users.noreply.github.com>
This commit is contained in:
Carlos R. L. Rodrigues
2023-01-23 12:06:23 +00:00
committed by GitHub
co-authored by Sebastian Rindom
parent 7152073b00
commit f65f590a27
21 changed files with 1671 additions and 15 deletions
@@ -28,4 +28,6 @@ export interface IStockLocationService {
create(input: CreateStockLocationInput): Promise<StockLocationDTO>
update(id: string, input: UpdateStockLocationInput): Promise<StockLocationDTO>
delete(id: string): Promise<void>
}