Skip to content

Commit f4cd171

Browse files
committed
chore: regenerate
1 parent 482729e commit f4cd171

File tree

102 files changed

+5230
-71
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+5230
-71
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
![Swift Package Manager](https://img.shields.io/github/v/release/appwrite/sdk-for-swift.svg?color=green&style=flat-square)
44
![License](https://img.shields.io/github/license/appwrite/sdk-for-swift.svg?style=flat-square)
5-
![Version](https://img.shields.io/badge/api%20version-1.7.4-blue.svg?style=flat-square)
5+
![Version](https://img.shields.io/badge/api%20version-1.8.0-blue.svg?style=flat-square)
66
[![Build Status](https://img.shields.io/travis/com/appwrite/sdk-generator?style=flat-square)](https://travis-ci.com/appwrite/sdk-generator)
77
[![Twitter Account](https://img.shields.io/twitter/follow/appwrite?color=00acee&label=twitter&style=flat-square)](https://twitter.com/appwrite)
88
[![Discord](https://img.shields.io/discord/564160730845151244?label=discord&style=flat-square)](https://appwrite.io/discord)
99

10-
**This SDK is compatible with Appwrite server version 1.7.x. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-swift/releases).**
10+
**This SDK is compatible with Appwrite server version 1.8.x. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-swift/releases).**
1111

1212
> This is the Swift SDK for integrating with Appwrite from your Swift server-side code. If you're looking for the Apple SDK you should check [appwrite/sdk-for-apple](https://github.com/appwrite/sdk-for-apple)
1313
@@ -33,7 +33,7 @@ Add the package to your `Package.swift` dependencies:
3333

3434
```swift
3535
dependencies: [
36-
.package(url: "git@github.com:appwrite/sdk-for-swift.git", from: "10.2.0"),
36+
.package(url: "git@github.com:appwrite/sdk-for-swift.git", from: "11.0.0"),
3737
],
3838
```
3939

Sources/Appwrite/Client.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ open class Client {
2121
"x-sdk-name": "Swift",
2222
"x-sdk-platform": "server",
2323
"x-sdk-language": "swift",
24-
"x-sdk-version": "10.2.0",
25-
"x-appwrite-response-format": "1.7.0"
24+
"x-sdk-version": "11.0.0",
25+
"x-appwrite-response-format": "1.8.0"
2626
]
2727

2828
internal var config: [String: String] = [:]

Sources/Appwrite/Services/Account.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1214,6 +1214,7 @@ open class Account: Service {
12141214
/// - Throws: Exception if the request fails
12151215
/// - Returns: AppwriteModels.Session
12161216
///
1217+
@available(*, deprecated, message: "This API has been deprecated.")
12171218
open func updateMagicURLSession(
12181219
userId: String,
12191220
secret: String
@@ -1253,6 +1254,7 @@ open class Account: Service {
12531254
/// - Throws: Exception if the request fails
12541255
/// - Returns: AppwriteModels.Session
12551256
///
1257+
@available(*, deprecated, message: "This API has been deprecated.")
12561258
open func updatePhoneSession(
12571259
userId: String,
12581260
secret: String

Sources/Appwrite/Services/Databases.swift

Lines changed: 63 additions & 26 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)