@itutoring/itutoring_application_js_api 1.1.37 → 1.1.38

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/apiController.js CHANGED
@@ -95,7 +95,6 @@ class APIController
95
95
  var formData = new FormData();
96
96
  if (file != null)
97
97
  {
98
- console.log("api - U_F");
99
98
  var formData = new FormData();
100
99
  formData.append("file", file);
101
100
 
@@ -13,6 +13,15 @@ class TeacherAuth
13
13
  static #IS_AUTHENTICATED = "IsAuthenticated";
14
14
  static #CHANGE_PASSWOD = "ChangePassword";
15
15
 
16
+ /**
17
+ * This mothod will force default auth dialog
18
+ */
19
+ static async Auth()
20
+ {
21
+ var res = await APIController.Post("Auth", "AuthScreens/tauth");
22
+ return res;
23
+ }
24
+
16
25
  /**
17
26
  *
18
27
  * @param {*} email
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itutoring/itutoring_application_js_api",
3
- "version": "1.1.37",
3
+ "version": "1.1.38",
4
4
  "description": "Javascript API for iTutoring Application",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",