@itutoring/itutoring_application_js_api 1.11.2 → 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
  {
@@ -1,21 +1,15 @@
1
1
  /*
2
- * Copyright (C) 2024 iTutoring s.r.o.
2
+ * Copyright (C) 2025 iTutoring s.r.o.
3
3
  * All rights reserved.
4
4
  *
5
-
6
5
  *
7
6
  */
8
-
9
-
10
- /**
11
- * BillingInfo API model representation.
12
- * See documentation: https://zabesstudio.atlassian.net/wiki/spaces/ITUTAPP/pages/70549505/BillingInfo
13
- */
14
7
  class BillingInfo
15
8
  {
16
9
  FirstName = "";
17
10
  LastName = "";
18
11
  StudentName = "";
12
+ StudentAge = 1;
19
13
  Email = "";
20
14
  Phone = "";
21
15
  Address = "";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itutoring/itutoring_application_js_api",
3
- "version": "1.11.2",
3
+ "version": "1.11.4",
4
4
  "description": "Javascript API for iTutoring Application",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",