@@ -370,7 +370,7 @@ class Account(client: Client) : Service(client) {
370370 */
371371 @Throws(AppwriteException ::class )
372372 suspend fun createMfaAuthenticator (
373- type : AuthenticatorType ,
373+ type : io.appwrite.enums. AuthenticatorType ,
374374 ): io.appwrite.models.MfaType {
375375 val apiPath = " /account/mfa/authenticators/{type}"
376376 .replace(" {type}" , type.value)
@@ -404,7 +404,7 @@ class Account(client: Client) : Service(client) {
404404 */
405405 @Throws(AppwriteException ::class )
406406 suspend fun <T > updateMfaAuthenticator (
407- type : AuthenticatorType ,
407+ type : io.appwrite.enums. AuthenticatorType ,
408408 otp : String ,
409409 nestedType : Class <T >,
410410 ): io.appwrite.models.User <T > {
@@ -441,7 +441,7 @@ class Account(client: Client) : Service(client) {
441441 */
442442 @Throws(AppwriteException ::class )
443443 suspend fun updateMfaAuthenticator (
444- type : AuthenticatorType ,
444+ type : io.appwrite.enums. AuthenticatorType ,
445445 otp : String ,
446446 ): io.appwrite.models.User <Map <String , Any >> = updateMfaAuthenticator(
447447 type,
@@ -460,7 +460,7 @@ class Account(client: Client) : Service(client) {
460460 */
461461 @Throws(AppwriteException ::class )
462462 suspend fun <T > deleteMfaAuthenticator (
463- type : AuthenticatorType ,
463+ type : io.appwrite.enums. AuthenticatorType ,
464464 otp : String ,
465465 nestedType : Class <T >,
466466 ): io.appwrite.models.User <T > {
@@ -497,7 +497,7 @@ class Account(client: Client) : Service(client) {
497497 */
498498 @Throws(AppwriteException ::class )
499499 suspend fun deleteMfaAuthenticator (
500- type : AuthenticatorType ,
500+ type : io.appwrite.enums. AuthenticatorType ,
501501 otp : String ,
502502 ): io.appwrite.models.User <Map <String , Any >> = deleteMfaAuthenticator(
503503 type,
@@ -515,7 +515,7 @@ class Account(client: Client) : Service(client) {
515515 */
516516 @Throws(AppwriteException ::class )
517517 suspend fun createMfaChallenge (
518- factor : AuthenticationFactor ,
518+ factor : io.appwrite.enums. AuthenticationFactor ,
519519 ): io.appwrite.models.MfaChallenge {
520520 val apiPath = " /account/mfa/challenge"
521521
@@ -1489,7 +1489,7 @@ class Account(client: Client) : Service(client) {
14891489 @JvmOverloads
14901490 @Throws(AppwriteException ::class )
14911491 suspend fun createOAuth2Token (
1492- provider : OAuthProvider ,
1492+ provider : io.appwrite.enums. OAuthProvider ,
14931493 success : String? = null,
14941494 failure : String? = null,
14951495 scopes : List <String >? = null,
0 commit comments