@itutoring/itutoring_application_js_api 1.0.5 → 1.0.7
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 +71 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1 +1,71 @@
|
|
|
1
|
-
declare module 'iTutoring Application JS API';
|
|
1
|
+
declare module 'iTutoring Application JS API';
|
|
2
|
+
|
|
3
|
+
"use strict";
|
|
4
|
+
|
|
5
|
+
import APIController from "./apiController";
|
|
6
|
+
import CookiesManager from "./CookiesManager";
|
|
7
|
+
|
|
8
|
+
import CoursesSystem from "./modules/CoursesSystem";
|
|
9
|
+
import CustomerAuth from "./modules/CustomerAuth";
|
|
10
|
+
import CustomerPortal from "./modules/CustomerPortal";
|
|
11
|
+
import Email from "./modules/Email";
|
|
12
|
+
import Newsletters from "./modules/Newsletters";
|
|
13
|
+
import Payments from "./modules/Payments";
|
|
14
|
+
import ReservationSystem from "./modules/ReservationSystem";
|
|
15
|
+
import SubjectManager from "./modules/SubjectManager";
|
|
16
|
+
import TeacherAuth from "./modules/TeacherAuth";
|
|
17
|
+
import TeacherManager from "./modules/TeacherManager";
|
|
18
|
+
import TeacherPortal from "./modules/TeacherPortal";
|
|
19
|
+
import TeacherProfiles from "./modules/TeacherProfiles";
|
|
20
|
+
|
|
21
|
+
import Course from "./objects/Course";
|
|
22
|
+
import CourseReservation from "./objects/CourseReservation";
|
|
23
|
+
import Customer from "./objects/Customer";
|
|
24
|
+
import Reservation from "./objects/Reservation";
|
|
25
|
+
import Subject from "./objects/Subject";
|
|
26
|
+
import Teacher from "./objects/Teacher";
|
|
27
|
+
import TeacherProfile from "./objects/TeacherProfile";
|
|
28
|
+
|
|
29
|
+
import
|
|
30
|
+
{
|
|
31
|
+
BookReturn,
|
|
32
|
+
AuthResult,
|
|
33
|
+
PaymentType,
|
|
34
|
+
DeviceOS,
|
|
35
|
+
PasswordChange,
|
|
36
|
+
R_KEYs
|
|
37
|
+
} from "./objects/Enums";
|
|
38
|
+
|
|
39
|
+
export
|
|
40
|
+
{
|
|
41
|
+
APIController,
|
|
42
|
+
CookiesManager,
|
|
43
|
+
|
|
44
|
+
CoursesSystem,
|
|
45
|
+
CustomerAuth,
|
|
46
|
+
CustomerPortal,
|
|
47
|
+
Email,
|
|
48
|
+
Newsletters,
|
|
49
|
+
Payments,
|
|
50
|
+
ReservationSystem,
|
|
51
|
+
SubjectManager,
|
|
52
|
+
TeacherAuth,
|
|
53
|
+
TeacherManager,
|
|
54
|
+
TeacherPortal,
|
|
55
|
+
TeacherProfiles,
|
|
56
|
+
|
|
57
|
+
Course,
|
|
58
|
+
CourseReservation,
|
|
59
|
+
Customer,
|
|
60
|
+
Reservation,
|
|
61
|
+
Subject,
|
|
62
|
+
Teacher,
|
|
63
|
+
TeacherProfile,
|
|
64
|
+
|
|
65
|
+
BookReturn,
|
|
66
|
+
AuthResult,
|
|
67
|
+
PaymentType,
|
|
68
|
+
DeviceOS,
|
|
69
|
+
PasswordChange,
|
|
70
|
+
R_KEYs
|
|
71
|
+
}
|