@@ -378,7 +378,7 @@ class Account(client: Client) : Service(client) {
378378 * @return [io.appwrite.models.MfaType]
379379 */
380380 suspend fun createMfaAuthenticator (
381- type : AuthenticatorType ,
381+ type : io.appwrite.enums. AuthenticatorType ,
382382 ): io.appwrite.models.MfaType {
383383 val apiPath = " /account/mfa/authenticators/{type}"
384384 .replace(" {type}" , type.value)
@@ -413,7 +413,7 @@ class Account(client: Client) : Service(client) {
413413 * @return [io.appwrite.models.User<T>]
414414 */
415415 suspend fun <T > updateMfaAuthenticator (
416- type : AuthenticatorType ,
416+ type : io.appwrite.enums. AuthenticatorType ,
417417 otp : String ,
418418 nestedType : Class <T >,
419419 ): io.appwrite.models.User <T > {
@@ -451,7 +451,7 @@ class Account(client: Client) : Service(client) {
451451 */
452452 @Throws(AppwriteException ::class )
453453 suspend fun updateMfaAuthenticator (
454- type : AuthenticatorType ,
454+ type : io.appwrite.enums. AuthenticatorType ,
455455 otp : String ,
456456 ): io.appwrite.models.User <Map <String , Any >> = updateMfaAuthenticator(
457457 type,
@@ -469,7 +469,7 @@ class Account(client: Client) : Service(client) {
469469 * @return [io.appwrite.models.User<T>]
470470 */
471471 suspend fun <T > deleteMfaAuthenticator (
472- type : AuthenticatorType ,
472+ type : io.appwrite.enums. AuthenticatorType ,
473473 otp : String ,
474474 nestedType : Class <T >,
475475 ): io.appwrite.models.User <T > {
@@ -507,7 +507,7 @@ class Account(client: Client) : Service(client) {
507507 */
508508 @Throws(AppwriteException ::class )
509509 suspend fun deleteMfaAuthenticator (
510- type : AuthenticatorType ,
510+ type : io.appwrite.enums. AuthenticatorType ,
511511 otp : String ,
512512 ): io.appwrite.models.User <Map <String , Any >> = deleteMfaAuthenticator(
513513 type,
@@ -524,7 +524,7 @@ class Account(client: Client) : Service(client) {
524524 * @return [io.appwrite.models.MfaChallenge]
525525 */
526526 suspend fun createMfaChallenge (
527- factor : AuthenticationFactor ,
527+ factor : io.appwrite.enums. AuthenticationFactor ,
528528 ): io.appwrite.models.MfaChallenge {
529529 val apiPath = " /account/mfa/challenge"
530530
@@ -1215,7 +1215,7 @@ class Account(client: Client) : Service(client) {
12151215 @JvmOverloads
12161216 suspend fun createOAuth2Session (
12171217 activity : ComponentActivity ,
1218- provider : OAuthProvider ,
1218+ provider : io.appwrite.enums. OAuthProvider ,
12191219 success : String? = null,
12201220 failure : String? = null,
12211221 scopes : List <String >? = null,
@@ -1694,7 +1694,7 @@ class Account(client: Client) : Service(client) {
16941694 @JvmOverloads
16951695 suspend fun createOAuth2Token (
16961696 activity : ComponentActivity ,
1697- provider : OAuthProvider ,
1697+ provider : io.appwrite.enums. OAuthProvider ,
16981698 success : String? = null,
16991699 failure : String? = null,
17001700 scopes : List <String >? = null,
0 commit comments