@itutoring/itutoring_application_js_api 1.17.3 → 1.17.5

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/index.d.ts CHANGED
@@ -16,7 +16,6 @@ import CookiesManager from "./CookiesManager";
16
16
 
17
17
  import CustomerAuth from "./modules/CustomerAuth";
18
18
  import CustomerPortal from "./modules/CustomerPortal";
19
- import Payments from "./modules/Payments";
20
19
  import SubjectManager from "./modules/SubjectManager";
21
20
  import TeacherAuth from "./modules/TeacherAuth";
22
21
  import TeacherProfiles from "./modules/TeacherProfiles";
@@ -72,7 +71,6 @@ export
72
71
 
73
72
  CustomerAuth,
74
73
  CustomerPortal,
75
- Payments,
76
74
  SubjectManager,
77
75
  TeacherAuth,
78
76
  TeacherProfiles,
@@ -49,11 +49,12 @@ class Checkout
49
49
  return res;
50
50
  }
51
51
 
52
- static async placeOrder(billingInfo, customerId = null)
52
+ static async placeOrder(billingInfo, customerId = null, note = "")
53
53
  {
54
54
  var res = await APIController.Post(this.#MODULE, this.#PLACE_ORDER, {
55
55
  "billingInfo": JSON.stringify(billingInfo),
56
- "customerId": customerId
56
+ "customerId": customerId,
57
+ "note": note
57
58
  });
58
59
  return res;
59
60
  }
@@ -17,6 +17,7 @@ class InquiryAdditionalInfo
17
17
  * Json string
18
18
  */
19
19
  Availability = "";
20
+ StartTime = -1;
20
21
  }
21
22
 
22
23
  export default InquiryAdditionalInfo;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itutoring/itutoring_application_js_api",
3
- "version": "1.17.3",
3
+ "version": "1.17.5",
4
4
  "description": "Javascript API for iTutoring Application",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",