@itutoring/itutoring_application_js_api 1.10.3 → 1.10.4

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.
@@ -42,18 +42,13 @@ class CustomerAuth
42
42
  *
43
43
  * @param {*} email
44
44
  * @param {*} pass
45
- * @param {*} fname
46
- * @param {*} lname
47
45
  * @returns Int (AuthResult)
48
46
  */
49
- static async SignIn(email, pass, fname, lname, phone)
47
+ static async SignIn(email, pass)
50
48
  {
51
49
  var result = await APIController.Post(this.#MODULE, this.#SIGN_IN, {
52
50
  'email': email,
53
51
  'pass': pass,
54
- 'fname': fname,
55
- 'lname': lname,
56
- 'phone': phone,
57
52
  });
58
53
 
59
54
  return result;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itutoring/itutoring_application_js_api",
3
- "version": "1.10.3",
3
+ "version": "1.10.4",
4
4
  "description": "Javascript API for iTutoring Application",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",