@itutoring/itutoring_application_js_api 1.3.29 → 1.3.31

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.
@@ -58,7 +58,7 @@ class AttendanceManager
58
58
  for (const [k0, v0] of Object.entries(data))
59
59
  {
60
60
  var ev = new AttendanceEvent();
61
- ev.CreateFromJSON(JSON.parse(v0));
61
+ ev.CreateFromJSON(v0);
62
62
  atEvents.push(ev);
63
63
  }
64
64
 
@@ -10,6 +10,7 @@ class AttendanceEvent
10
10
  EventDescription;
11
11
  Class;
12
12
  Place;
13
+ Recursivity
13
14
 
14
15
  CreateFromJSON(json)
15
16
  {
@@ -23,6 +24,7 @@ class AttendanceEvent
23
24
  this.EventDescription = json['EventDescription'];
24
25
  this.Class = json['Class'];
25
26
  this.Place = json['Place'];
27
+ this.Recursivity = json['Recursivity'];
26
28
  }
27
29
  }
28
30
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itutoring/itutoring_application_js_api",
3
- "version": "1.3.29",
3
+ "version": "1.3.31",
4
4
  "description": "Javascript API for iTutoring Application",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",