Feat(inventory-next, medusa): Add List inventory items endpoint (#6694)

* code for list inventory items

* fix integration tests

* move integration test

* calculate reserved and stocked quantities in db

* update lockfile
This commit is contained in:
Philip Korsholm
2024-03-14 14:48:34 +01:00
committed by GitHub
parent 3dd55efd15
commit c3f8c30ba6
14 changed files with 1247 additions and 16 deletions

View File

@@ -46,6 +46,7 @@ export interface InventoryLevelDTO {
stocked_quantity: number
reserved_quantity: number
incoming_quantity: number
available_quantity: number
metadata: Record<string, unknown> | null
created_at: string | Date
updated_at: string | Date