@itutoring/itutoring_application_js_api 1.24.4 → 1.24.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.
@@ -28,8 +28,9 @@ export default class ApiFile
28
28
  let current = this;
29
29
  for (let i = 1; i < files.length; i++)
30
30
  {
31
- current.next = new ApiFile(files[i]);
31
+ current.next = new ApiFile(null);
32
32
  current = current.next;
33
+ current.File = files[i];
33
34
  }
34
35
  }
35
36
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itutoring/itutoring_application_js_api",
3
- "version": "1.24.4",
3
+ "version": "1.24.5",
4
4
  "description": "Javascript API for iTutoring Application",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",