@itutoring/itutoring_application_js_api 1.3.11 → 1.3.14

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itutoring/itutoring_application_js_api",
3
- "version": "1.3.11",
3
+ "version": "1.3.14",
4
4
  "description": "Javascript API for iTutoring Application",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -5,6 +5,7 @@ class Toolkit
5
5
  {
6
6
  static ModuleInfo = null;
7
7
  static UserDataLoaded = false;
8
+ static AuthDone = false;
8
9
 
9
10
  /**
10
11
  * Main function to initialize any toolkit module.
@@ -15,6 +16,8 @@ class Toolkit
15
16
  this.ModuleInfo = await this.GetModuleProperties(moduleUid);
16
17
 
17
18
  await this.RequestAccess(moduleUid);
19
+
20
+ this.AuthDone = true;
18
21
  }
19
22
 
20
23
  /***** API Methods ******/