@itutoring/itutoring_application_js_api 1.13.2 → 1.13.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.
@@ -24,6 +24,15 @@ class InquiryCheckout
24
24
  static #SELECT_OFFER = "SelectOffer";
25
25
  static #GET_SELECTED_OFFER = "GetSelectedOffer";
26
26
  static #AGREE_OFFER = "AgreeOffer";
27
+ static #GET_INQUIRY_TYPE = "GetInquiryType";
28
+
29
+ static async getInquiryType(inquiryId)
30
+ {
31
+ var res = await APIController.Get(this.#MODULE, this.#GET_INQUIRY_TYPE, {
32
+ 'inquiryId': inquiryId
33
+ });
34
+ return res;
35
+ }
27
36
 
28
37
  static async isInquiryFinished(inquiryId)
29
38
  {
@@ -17,6 +17,7 @@ class InquiryAdditionalInfo
17
17
  * Json string
18
18
  */
19
19
  Availability = "";
20
+ Place = "";
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.13.2",
3
+ "version": "1.13.4",
4
4
  "description": "Javascript API for iTutoring Application",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",