@itutoring/itutoring_application_js_api 1.12.2 → 1.12.3

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.
@@ -19,6 +19,16 @@ class InquiryCheckout
19
19
  static #FINISH_INQUIRY = "FinishInquiry";
20
20
  static #IS_SUBJECT_IN_CHECKOUT = "IsSubjectInCheckout";
21
21
  static #GET_CHECKOUT_SUBJECTS_COUNT = "GetCheckoutSubjectsCount";
22
+ static #FINISH_MULTIPLE_INQUIRIES = "FinishMultipleInquiries";
23
+
24
+ static async finishMultipleInquiries(inquiryIds, additionalInfo)
25
+ {
26
+ var res = await APIController.Post(this.#MODULE, this.#FINISH_MULTIPLE_INQUIRIES, {
27
+ 'inquiryIds': inquiryIds,
28
+ 'additionalInfo': JSON.stringify(additionalInfo)
29
+ });
30
+ return res;
31
+ }
22
32
 
23
33
  static async getCheckoutSubjectsCount()
24
34
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itutoring/itutoring_application_js_api",
3
- "version": "1.12.2",
3
+ "version": "1.12.3",
4
4
  "description": "Javascript API for iTutoring Application",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",