@itutoring/itutoring_application_js_api 1.2.4 → 1.2.5

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.
Files changed (3) hide show
  1. package/index.d.ts +4 -0
  2. package/index.js +4 -0
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -23,6 +23,7 @@ import CustomerEduPortal from "./modules/CustomerEduPortal";
23
23
  import EventManager from "./modules/EventManager";
24
24
  import iTutoringApplicationVersion from "./modules/Version";
25
25
  import LessonManager from "./modules/LessonManager";
26
+ import AttendanceManager from "./modules/AttendanceManager";
26
27
 
27
28
  import Course from "./objects/Course";
28
29
  import CourseReservation from "./objects/CourseReservation";
@@ -34,6 +35,7 @@ import TeacherProfile from "./objects/TeacherProfile";
34
35
  import iEvent from "./objects/Event";
35
36
  import AuthUser from "./objects/AuthUser";
36
37
  import Authentication from "./modules/Authentication";
38
+ import AttendanceEvent from "./objects/AttendanceEvent";
37
39
 
38
40
  import
39
41
  {
@@ -70,6 +72,7 @@ export
70
72
  iTutoringApplicationVersion,
71
73
  LessonManager,
72
74
  Authentication,
75
+ AttendanceManager,
73
76
 
74
77
  Course,
75
78
  CourseReservation,
@@ -80,6 +83,7 @@ export
80
83
  TeacherProfile,
81
84
  iEvent,
82
85
  AuthUser,
86
+ AttendanceEvent,
83
87
 
84
88
  BookReturn,
85
89
  AuthResult,
package/index.js CHANGED
@@ -21,6 +21,7 @@ import CustomerEduPortal from "./modules/CustomerEduPortal";
21
21
  import EventManager from "./modules/EventManager";
22
22
  import iTutoringApplicationVersion from "./modules/Version";
23
23
  import LessonManager from "./modules/LessonManager";
24
+ import AttendanceManager from "./modules/AttendanceManager";
24
25
 
25
26
  import Course from "./objects/Course";
26
27
  import CourseReservation from "./objects/CourseReservation";
@@ -32,6 +33,7 @@ import TeacherProfile from "./objects/TeacherProfile";
32
33
  import iEvent from "./objects/Event";
33
34
  import AuthUser from "./objects/AuthUser";
34
35
  import Authentication from "./modules/Authentication";
36
+ import AttendanceEvent from "./objects/AttendanceEvent";
35
37
 
36
38
  import
37
39
  {
@@ -68,6 +70,7 @@ export
68
70
  iTutoringApplicationVersion,
69
71
  LessonManager,
70
72
  Authentication,
73
+ AttendanceManager,
71
74
 
72
75
  Course,
73
76
  CourseReservation,
@@ -78,6 +81,7 @@ export
78
81
  TeacherProfile,
79
82
  iEvent,
80
83
  AuthUser,
84
+ AttendanceEvent,
81
85
 
82
86
  BookReturn,
83
87
  AuthResult,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itutoring/itutoring_application_js_api",
3
- "version": "1.2.4",
3
+ "version": "1.2.5",
4
4
  "description": "Javascript API for iTutoring Application",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",