UNPKG

@hotwax/oms-api

Version:

The OMS API package comes with prebuilt methods that helps communicate with HotWax Commerce OMS using Rest API

5 lines (4 loc) 335 B
import { Stock, Response } from "../../types"; declare function fetchProductsStockAtFacility(productIds: Array<string>, facilityId?: string): Promise<Array<Stock> | Response>; declare function fetchProductsStock(productIds: Array<string>): Promise<Array<Stock> | Response>; export { fetchProductsStock, fetchProductsStockAtFacility };