UNPKG

@hotwax/oms-api

Version:

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

8 lines (7 loc) 278 B
import { Order, Response } from '../../types'; export declare function getOrderDetails(orderId: string): Promise<Order | Response>; export declare function updateOrderStatus(payload: { orderId: string; statusId: string; setItemStatus: string; }): Promise<Response>;