@fatehan/tsrp 1.3.2 → 1.3.3
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/dist/auth.js +2 -2
- package/package.json +1 -1
package/dist/auth.js
CHANGED
|
@@ -63,11 +63,11 @@ class AuthService {
|
|
|
63
63
|
}
|
|
64
64
|
async AuthRequest(request) {
|
|
65
65
|
const { AuthRequest, AuthResponse } = await Promise.resolve().then(() => __importStar(require("./fatehan/identities/authentication")));
|
|
66
|
-
return this._call("
|
|
66
|
+
return this._call("AuthRequest", request, AuthRequest, AuthResponse);
|
|
67
67
|
}
|
|
68
68
|
async OtpCode(request) {
|
|
69
69
|
const { OtpCodeRequest, OtpCodeResponse } = await Promise.resolve().then(() => __importStar(require("./fatehan/identities/authentication")));
|
|
70
|
-
return this._call("
|
|
70
|
+
return this._call("OtpCode", request, OtpCodeRequest, OtpCodeResponse);
|
|
71
71
|
}
|
|
72
72
|
}
|
|
73
73
|
exports.AuthService = AuthService;
|