@ikonintegration/mod-license-client 2.0.30 → 2.0.31

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