File tree Expand file tree Collapse file tree 3 files changed +4
-23
lines changed
src/main/kotlin/io/appwrite Expand file tree Collapse file tree 3 files changed +4
-23
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ repositories {
39
39
Next, add the dependency to your project's ` build.gradle(.kts) ` file:
40
40
41
41
``` groovy
42
- implementation("io.appwrite:sdk-for-kotlin:6.2.1 ")
42
+ implementation("io.appwrite:sdk-for-kotlin:7.0.0 ")
43
43
```
44
44
45
45
### Maven
@@ -50,7 +50,7 @@ Add this to your project's `pom.xml` file:
50
50
<dependency >
51
51
<groupId >io.appwrite</groupId >
52
52
<artifactId >sdk-for-kotlin</artifactId >
53
- <version >6.2.1 </version >
53
+ <version >7.0.0 </version >
54
54
</dependency >
55
55
</dependencies >
56
56
```
Original file line number Diff line number Diff line change @@ -57,11 +57,11 @@ class Client @JvmOverloads constructor(
57
57
init {
58
58
headers = mutableMapOf (
59
59
" content-type" to " application/json" ,
60
- " user-agent" to " AppwriteKotlinSDK/6.2.1 ${System .getProperty(" http.agent" )} " ,
60
+ " user-agent" to " AppwriteKotlinSDK/7.0.0 ${System .getProperty(" http.agent" )} " ,
61
61
" x-sdk-name" to " Kotlin" ,
62
62
" x-sdk-platform" to " server" ,
63
63
" x-sdk-language" to " kotlin" ,
64
- " x-sdk-version" to " 6.2.1 " ,
64
+ " x-sdk-version" to " 7.0.0 " ,
65
65
" x-appwrite-response-format" to " 1.6.0" ,
66
66
)
67
67
Original file line number Diff line number Diff line change @@ -1146,25 +1146,6 @@ class Users(client: Client) : Service(client) {
1146
1146
)
1147
1147
}
1148
1148
1149
- /* *
1150
- * Delete authenticator
1151
- *
1152
- * Delete an authenticator app.
1153
- *
1154
- * @param userId User ID.
1155
- * @param type Type of authenticator.
1156
- * @return [io.appwrite.models.User<T>]
1157
- */
1158
- @Throws(AppwriteException ::class )
1159
- suspend fun deleteMfaAuthenticator (
1160
- userId : String ,
1161
- type : io.appwrite.enums.AuthenticatorType ,
1162
- ): io.appwrite.models.User <Map <String , Any >> = deleteMfaAuthenticator(
1163
- userId,
1164
- type,
1165
- nestedType = classOf(),
1166
- )
1167
-
1168
1149
/* *
1169
1150
* List factors
1170
1151
*
You can’t perform that action at this time.
0 commit comments