Skip to content

Commit cda8a0c

Browse files
committed
chore: bump versions
1 parent 2117ba9 commit cda8a0c

File tree

3 files changed

+3
-26
lines changed

3 files changed

+3
-26
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Add the package to your `Package.swift` dependencies:
3333

3434
```swift
3535
dependencies: [
36-
.package(url: "[email protected]:appwrite/sdk-for-swift.git", from: "6.2.1"),
36+
.package(url: "[email protected]:appwrite/sdk-for-swift.git", from: "7.0.0"),
3737
],
3838
```
3939

Sources/Appwrite/Client.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ open class Client {
2121
"x-sdk-name": "Swift",
2222
"x-sdk-platform": "server",
2323
"x-sdk-language": "swift",
24-
"x-sdk-version": "6.2.1",
24+
"x-sdk-version": "7.0.0",
2525
"x-appwrite-response-format": "1.6.0"
2626
]
2727

Sources/Appwrite/Services/Users.swift

+1-24
Original file line numberDiff line numberDiff line change
@@ -1235,30 +1235,7 @@ open class Users: Service {
12351235
method: "DELETE",
12361236
path: apiPath,
12371237
headers: apiHeaders,
1238-
params: apiParams,
1239-
converter: converter
1240-
)
1241-
}
1242-
1243-
///
1244-
/// Delete authenticator
1245-
///
1246-
/// Delete an authenticator app.
1247-
///
1248-
/// @param String userId
1249-
/// @param AppwriteEnums.AuthenticatorType type
1250-
/// @throws Exception
1251-
/// @return array
1252-
///
1253-
open func deleteMfaAuthenticator(
1254-
userId: String,
1255-
type: AppwriteEnums.AuthenticatorType
1256-
) async throws -> AppwriteModels.User<[String: AnyCodable]> {
1257-
return try await deleteMfaAuthenticator(
1258-
userId: userId,
1259-
type: type,
1260-
nestedType: [String: AnyCodable].self
1261-
)
1238+
params: apiParams )
12621239
}
12631240

12641241
///

0 commit comments

Comments
 (0)