import { InventoryItemBase } from './inventory-item-base'; /** * 3rd-party inventory recipients may have a requirement for "location" or "warehouse" when * updating a quantity. When required, the location may be supplied using `warehouse_id`. */ export interface InventoryPushItem extends InventoryItemBase { }