@ikonintegration/mod-license-client 2.0.45 → 2.0.46

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.
@@ -101,4 +101,11 @@ export default class Order {
101
101
  if (filters) req.body = filters;
102
102
  return await req.exec();
103
103
  }
104
+ //Update order
105
+ async updateProductOrder(externalID, orderID, productOrderObj) {
106
+ const req = await this.api.newBaseRequest("PUT");
107
+ req.path = `/productOrder/${externalID}/${orderID}`;
108
+ req.body = productOrderObj;
109
+ return await req.exec();
110
+ }
104
111
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ikonintegration/mod-license-client",
3
- "version": "2.0.45",
3
+ "version": "2.0.46",
4
4
  "description": "Shared module license API client",
5
5
  "main": "index.js",
6
6
  "scripts": {