import { BigNumberInput } from "@medusajs/framework/types"; export interface CreateLineItemAdjustmentDTO { item_id: string; amount: BigNumberInput; code?: string; description?: string; promotion_id?: string; provider_id?: string; } export interface UpdateLineItemAdjustmentDTO extends Partial { id: string; } //# sourceMappingURL=line-item-adjustment.d.ts.map