import type { OmsReasonCode } from './OmsReasonCode'; /** * @type OmsMetaData: Configuration data from Order Management (OMS) that the storefront requires to render cancel and return experiences. * * @property cancelReasonCodes: The reason codes available for cancelling an order. The server applies the reason marked with `default` when no reason is supplied on the cancel request. * * @property returnReasonCodes: The reason codes available for returning order items. The server applies the reason marked with `default` when no reason is supplied on a returned item. * */ export type OmsMetaData = { cancelReasonCodes: Array; returnReasonCodes: Array; } & { [key: string]: any; };