@itutoring/itutoring_application_js_api 1.1.35 → 1.1.37
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 +2 -0
- package/index.js +2 -0
- package/modules/EventManager.js +1 -1
- package/modules/Version.js +16 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ import WebinarSystem from "./modules/WebinarsSystem";
|
|
|
21
21
|
import GoogleReviews from "./modules/GoogleReviews";
|
|
22
22
|
import CustomerEduPortal from "./modules/CustomerEduPortal";
|
|
23
23
|
import EventManager from "./modules/EventManager";
|
|
24
|
+
import iTutoringApplicationVersion from "./modules/Version";
|
|
24
25
|
|
|
25
26
|
import Course from "./objects/Course";
|
|
26
27
|
import CourseReservation from "./objects/CourseReservation";
|
|
@@ -62,6 +63,7 @@ export
|
|
|
62
63
|
GoogleReviews,
|
|
63
64
|
CustomerEduPortal,
|
|
64
65
|
EventManager,
|
|
66
|
+
iTutoringApplicationVersion,
|
|
65
67
|
|
|
66
68
|
Course,
|
|
67
69
|
CourseReservation,
|
package/index.js
CHANGED
|
@@ -19,6 +19,7 @@ import WebinarSystem from "./modules/WebinarsSystem";
|
|
|
19
19
|
import GoogleReviews from "./modules/GoogleReviews";
|
|
20
20
|
import CustomerEduPortal from "./modules/CustomerEduPortal";
|
|
21
21
|
import EventManager from "./modules/EventManager";
|
|
22
|
+
import iTutoringApplicationVersion from "./modules/Version";
|
|
22
23
|
|
|
23
24
|
import Course from "./objects/Course";
|
|
24
25
|
import CourseReservation from "./objects/CourseReservation";
|
|
@@ -60,6 +61,7 @@ export
|
|
|
60
61
|
GoogleReviews,
|
|
61
62
|
CustomerEduPortal,
|
|
62
63
|
EventManager,
|
|
64
|
+
iTutoringApplicationVersion,
|
|
63
65
|
|
|
64
66
|
Course,
|
|
65
67
|
CourseReservation,
|
package/modules/EventManager.js
CHANGED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import APIController from "../apiController";
|
|
2
|
+
|
|
3
|
+
class iTutoringApplicationVersion
|
|
4
|
+
{
|
|
5
|
+
static #MODULE = "Version";
|
|
6
|
+
|
|
7
|
+
static #GET_VERSION = "GetVersion";
|
|
8
|
+
|
|
9
|
+
static async GetVersion()
|
|
10
|
+
{
|
|
11
|
+
var ver = await APIController.Get(this.#MODULE, this.#GET_VERSION);
|
|
12
|
+
return ver;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export default iTutoringApplicationVersion;
|