@itutoring/itutoring_application_js_api 1.6.33 → 1.6.34

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/modules/Models.js CHANGED
@@ -41,6 +41,14 @@ class Models
41
41
  static #GET_LECTURES_FOR_EVENT = 'GetLecturesForEvent';
42
42
  static #GET_ATTENDANCE_FOR_LECTURE = 'GetAttendanceForLecture';
43
43
  static #GET_PLANNED_LECTURE_COUNT = 'GetPlannedLectureCount';
44
+ static #CREATE_EVENT_FROM_INQUIRY = 'CreateEventFromInquiry';
45
+
46
+ static async createEventFromInquiry(inquiryId)
47
+ {
48
+ return await APIController.Post(this.#MODULE, this.#CREATE_EVENT_FROM_INQUIRY, {
49
+ 'inquiryId': inquiryId,
50
+ });
51
+ }
44
52
 
45
53
  static async getPlannedLectureCount(customerId, lessonType, lessonLength)
46
54
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itutoring/itutoring_application_js_api",
3
- "version": "1.6.33",
3
+ "version": "1.6.34",
4
4
  "description": "Javascript API for iTutoring Application",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",