@itutoring/itutoring_application_js_api 1.6.9 → 1.6.10
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/CookiesManager.js +9 -0
- package/apiController.js +9 -0
- package/cache.js +9 -0
- package/index.d.ts +9 -0
- package/index.js +9 -0
- package/modules/AttendanceManager.js +9 -0
- package/modules/Authentication.js +9 -0
- package/modules/CustomerAuth.js +9 -0
- package/modules/CustomerEduPortal.js +9 -0
- package/modules/CustomerPortal.js +8 -0
- package/modules/Email.js +9 -0
- package/modules/EventManager.js +9 -0
- package/modules/FAQ.js +9 -0
- package/modules/GoogleReviews.js +10 -0
- package/modules/Inventory.js +9 -1
- package/modules/LectorDatabase.js +9 -0
- package/modules/LessonManager.js +9 -0
- package/modules/Models.js +9 -0
- package/modules/Newsletters.js +9 -0
- package/modules/Payments.js +9 -0
- package/modules/Pricing.js +9 -0
- package/modules/ReservationSystem.js +9 -0
- package/modules/Reviews.js +9 -0
- package/modules/SubjectManager.js +9 -0
- package/modules/TableExplorer.js +12 -3
- package/modules/TeacherAuth.js +9 -0
- package/modules/TeacherManager.js +9 -1
- package/modules/TeacherPortal.js +9 -1
- package/modules/TeacherProfileModule.js +9 -0
- package/modules/TeacherProfiles.js +9 -0
- package/modules/Version.js +9 -0
- package/modules/WebinarsSystem.js +9 -0
- package/objects/AttendanceEvent.js +9 -0
- package/objects/AuthUser.js +9 -0
- package/objects/Course.js +8 -0
- package/objects/CourseReservation.js +8 -0
- package/objects/Customer.js +11 -0
- package/objects/Enums.js +9 -0
- package/objects/Event.js +11 -1
- package/objects/Reservation.js +9 -0
- package/objects/Subject.js +9 -0
- package/objects/Teacher.js +9 -0
- package/objects/TeacherProfile.js +9 -0
- package/objects/Webinar.js +9 -0
- package/objects/billingInfo.js +9 -0
- package/package.json +1 -1
package/CookiesManager.js
CHANGED
package/apiController.js
CHANGED
package/cache.js
CHANGED
package/index.d.ts
CHANGED
package/index.js
CHANGED
package/modules/CustomerAuth.js
CHANGED
package/modules/Email.js
CHANGED
package/modules/EventManager.js
CHANGED
package/modules/FAQ.js
CHANGED
package/modules/GoogleReviews.js
CHANGED
package/modules/Inventory.js
CHANGED
package/modules/LessonManager.js
CHANGED
package/modules/Models.js
CHANGED
package/modules/Newsletters.js
CHANGED
package/modules/Payments.js
CHANGED
package/modules/Pricing.js
CHANGED
package/modules/Reviews.js
CHANGED
package/modules/TableExplorer.js
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (C) 2024 iTutoring s.r.o.
|
|
3
|
+
* All rights reserved.
|
|
4
|
+
*
|
|
5
|
+
|
|
6
|
+
*
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
|
|
1
10
|
import APIController from "../apiController";
|
|
2
11
|
|
|
3
12
|
class TableExplorer
|
|
@@ -7,7 +16,7 @@ class TableExplorer
|
|
|
7
16
|
static #CREATE_INQUIRY_EXPLORER = "CreateInquiryExplorer";
|
|
8
17
|
static #CREATE_EVENT_EXPLORER = "CreateEventExplorer";
|
|
9
18
|
static #CREATE_OFFER_EXPLORER = "CreateOfferExplorer";
|
|
10
|
-
static #
|
|
19
|
+
static #CREATE_CUSTOMER_EXPLORER = "CreateCustomerExplorer";
|
|
11
20
|
static #CREATE_LECTURE_EXPLORER = "CreateLectureExplorer";
|
|
12
21
|
static #CREATE_LECTURE_ATTENDANCE_EXPLORER = "CreateLectureAttendanceExplorer";
|
|
13
22
|
static #CREATE_STUDENT_EXPLORER = "CreateStudentExplorer";
|
|
@@ -47,9 +56,9 @@ class TableExplorer
|
|
|
47
56
|
return data['token'];
|
|
48
57
|
}
|
|
49
58
|
|
|
50
|
-
static async
|
|
59
|
+
static async createCustomerExplorer()
|
|
51
60
|
{
|
|
52
|
-
var data = await APIController.Get(this.#MODULE, this.#
|
|
61
|
+
var data = await APIController.Get(this.#MODULE, this.#CREATE_CUSTOMER_EXPLORER);
|
|
53
62
|
|
|
54
63
|
return data['token'];
|
|
55
64
|
}
|
package/modules/TeacherAuth.js
CHANGED
package/modules/TeacherPortal.js
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
1
|
-
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (C) 2024 iTutoring s.r.o.
|
|
3
|
+
* All rights reserved.
|
|
4
|
+
*
|
|
5
|
+
|
|
6
|
+
*
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
|
|
2
10
|
import APIController from "./../apiController";
|
|
3
11
|
import Reservation from "./../objects/Reservation";
|
|
4
12
|
import Teacher from "./../objects/Teacher";
|
package/modules/Version.js
CHANGED
package/objects/AuthUser.js
CHANGED
package/objects/Course.js
CHANGED
package/objects/Customer.js
CHANGED
package/objects/Enums.js
CHANGED
package/objects/Event.js
CHANGED
package/objects/Reservation.js
CHANGED
package/objects/Subject.js
CHANGED
package/objects/Teacher.js
CHANGED
package/objects/Webinar.js
CHANGED
package/objects/billingInfo.js
CHANGED