@itutoring/itutoring_application_js_api 1.11.3 → 1.11.4

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.
@@ -18,6 +18,15 @@ class MarketplaceController
18
18
  static #GET_KROUZKY = "GetKrouzky";
19
19
  static #SEARCH = "Search";
20
20
  static #GET_PRODUCT_PAGE = "GetProductPage";
21
+ static #GET_ORDER_DETAIL = "GetOrderDetail";
22
+
23
+ static async getOrderPage(orderId)
24
+ {
25
+ var res = await APIController.Get(this.#MODULE, this.#GET_ORDER_DETAIL, {
26
+ 'orderId': orderId
27
+ });
28
+ return JSON.parse(res);
29
+ }
21
30
 
22
31
  static async getProductPage(sku, instanceId = null)
23
32
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itutoring/itutoring_application_js_api",
3
- "version": "1.11.3",
3
+ "version": "1.11.4",
4
4
  "description": "Javascript API for iTutoring Application",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",