Merge remote-tracking branch 'origin/main' into efril

This commit is contained in:
efrilm
2025-08-14 03:19:02 +07:00
12 changed files with 718 additions and 395 deletions
+12
View File
@@ -29,3 +29,15 @@ export interface InventoryAdjustRequest {
delta: number
reason: string
}
export interface Item {
item_id: string
item_type: string
quantity: number | string
}
export interface InventoryRestockRequest {
outlet_id: string
items: Item[]
reason: string
}