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 {
3939Next, add the dependency to your project's ` build.gradle(.kts) ` file:
4040
4141``` groovy
42- implementation("io.appwrite:sdk-for-kotlin:6.2.1 ")
42+ implementation("io.appwrite:sdk-for-kotlin:7.0.0 ")
4343```
4444
4545### Maven
@@ -50,7 +50,7 @@ Add this to your project's `pom.xml` file:
5050 <dependency >
5151 <groupId >io.appwrite</groupId >
5252 <artifactId >sdk-for-kotlin</artifactId >
53- <version >6.2.1 </version >
53+ <version >7.0.0 </version >
5454 </dependency >
5555</dependencies >
5656```
Original file line number Diff line number Diff line change @@ -57,11 +57,11 @@ class Client @JvmOverloads constructor(
5757 init {
5858 headers = mutableMapOf (
5959 " 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" )} " ,
6161 " x-sdk-name" to " Kotlin" ,
6262 " x-sdk-platform" to " server" ,
6363 " x-sdk-language" to " kotlin" ,
64- " x-sdk-version" to " 6.2.1 " ,
64+ " x-sdk-version" to " 7.0.0 " ,
6565 " x-appwrite-response-format" to " 1.6.0" ,
6666 )
6767
Original file line number Diff line number Diff line change @@ -1146,25 +1146,6 @@ class Users(client: Client) : Service(client) {
11461146 )
11471147 }
11481148
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-
11681149 /* *
11691150 * List factors
11701151 *
You can’t perform that action at this time.
0 commit comments