@itutoring/itutoring_application_js_api 1.1.21 → 1.1.23

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.
@@ -27,13 +27,10 @@ class CustomerEduPortal
27
27
  var events = await APIController.Get(this.#MODULE, this.#GET_ALL_EVENTS);
28
28
 
29
29
  var eventObjs = [];
30
- alert("SS");
31
30
  var eventsJson = JSON.parse(events)
32
- console.log(eventsJson);
33
31
  for (const [key, value] of Object.entries(eventsJson))
34
32
  {
35
- console.log(value);
36
- eventObjs.push(((new iEvent()).CreateFromJSON(value)));
33
+ eventObjs.push(((new iEvent()).CreateFromJSON(JSON.parse(value))));
37
34
  }
38
35
 
39
36
  return eventObjs;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itutoring/itutoring_application_js_api",
3
- "version": "1.1.21",
3
+ "version": "1.1.23",
4
4
  "description": "Javascript API for iTutoring Application",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",