@ikonintegration/mod-license-client 2.0.40 → 2.0.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/operations/Order.js +1 -0
- package/package.json +1 -1
package/lib/operations/Order.js
CHANGED
|
@@ -111,6 +111,7 @@ export default class Order {
|
|
|
111
111
|
async exportOrderRefunds(filterObj) {
|
|
112
112
|
const req = await this.api.newBaseRequest("POST");
|
|
113
113
|
req.path = `/orders/refunds/export`;
|
|
114
|
+
req.bodyType = "JSON/BLOB";
|
|
114
115
|
req.body = { ...filterObj };
|
|
115
116
|
return await req.exec();
|
|
116
117
|
}
|