UNPKG

@shipengine/connect-fulfillment-provider-api

Version:

OpenAPI specification and TypeScript definitions for the Connect Fulfillment Provider API

18 lines (17 loc) 427 B
export type AdditionalQuantity = { additional_quantity: string; type: string; label: string; }; export type InventoryItem = { sku: string; warehouse_id?: string; available_quantity: number; committed_quantity?: number; on_hand_quantity: number; additional_quantities?: AdditionalQuantity[]; }; export type GetInventoryResponse = { inventory?: InventoryItem[]; next_request?: any; };