@itutoring/itutoring_application_js_api 1.1.44 → 1.1.45

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.
@@ -15,9 +15,11 @@ class LessonManager
15
15
  static #UPDATE_EVENT = "UpdateEvent";
16
16
  static #CREATE_EVENT = "CreateEvent";
17
17
 
18
- static async GetAllEvents()
18
+ static async GetAllEvents(filters)
19
19
  {
20
- var events = await APIController.Get(this.#MODULE, this.#GET_ALL_EVENTS);
20
+ var events = await APIController.Get(this.#MODULE, this.#GET_ALL_EVENTS, {
21
+ "filters": JSON.stringify(filters),
22
+ });
21
23
 
22
24
  var eventObjs = [];
23
25
  var eventsJson = JSON.parse(events)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itutoring/itutoring_application_js_api",
3
- "version": "1.1.44",
3
+ "version": "1.1.45",
4
4
  "description": "Javascript API for iTutoring Application",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",