Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new push message parameters #25

Merged
merged 1 commit into from
Jan 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

![Swift Package Manager](https://img.shields.io/github/v/release/appwrite/sdk-for-swift.svg?color=green&style=flat-square)
![License](https://img.shields.io/github/license/appwrite/sdk-for-swift.svg?style=flat-square)
![Version](https://img.shields.io/badge/api%20version-1.6.0-blue.svg?style=flat-square)
![Version](https://img.shields.io/badge/api%20version-1.6.1-blue.svg?style=flat-square)
[![Build Status](https://img.shields.io/travis/com/appwrite/sdk-generator?style=flat-square)](https://travis-ci.com/appwrite/sdk-generator)
[![Twitter Account](https://img.shields.io/twitter/follow/appwrite?color=00acee&label=twitter&style=flat-square)](https://twitter.com/appwrite)
[![Discord](https://img.shields.io/discord/564160730845151244?label=discord&style=flat-square)](https://appwrite.io/discord)
Expand Down Expand Up @@ -33,7 +33,7 @@ Add the package to your `Package.swift` dependencies:

```swift
dependencies: [
.package(url: "[email protected]:appwrite/sdk-for-swift.git", from: "6.1.0"),
.package(url: "[email protected]:appwrite/sdk-for-swift.git", from: "6.2.0"),
],
```

Expand Down
16 changes: 8 additions & 8 deletions Sources/Appwrite/Client.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ open class Client {
"x-sdk-name": "Swift",
"x-sdk-platform": "server",
"x-sdk-language": "swift",
"x-sdk-version": "6.1.0",
"x-sdk-version": "6.2.0",
"x-appwrite-response-format": "1.6.0"
]

Expand Down Expand Up @@ -530,23 +530,23 @@ open class Client {
if param is String
|| param is Int
|| param is Float
|| param is Double
|| param is Bool
|| param is [String]
|| param is [Int]
|| param is [Float]
|| param is [Double]
|| param is [Bool]
|| param is [String: Any]
|| param is [Int: Any]
|| param is [Float: Any]
|| param is [Double: Any]
|| param is [Bool: Any] {
encodedParams[key] = param
} else {
let value = try! (param as! Encodable).toJson()

let range = value.index(value.startIndex, offsetBy: 1)..<value.index(value.endIndex, offsetBy: -1)
let substring = value[range]

encodedParams[key] = substring
} else if let encodable = param as? Encodable {
encodedParams[key] = try encodable.toJson()
} else if let param = param {
encodedParams[key] = String(describing: param)
}
}

Expand Down
26 changes: 12 additions & 14 deletions Sources/Appwrite/Services/Account.swift
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ open class Account: Service {
}

///
/// List Identities
/// List identities
///
/// Get the list of identities for the currently logged in user.
///
Expand Down Expand Up @@ -402,7 +402,7 @@ open class Account: Service {
}

///
/// Create Authenticator
/// Create authenticator
///
/// Add an authenticator app to be used as an MFA factor. Verify the
/// authenticator using the [verify
Expand Down Expand Up @@ -439,7 +439,7 @@ open class Account: Service {
}

///
/// Verify Authenticator
/// Verify authenticator
///
/// Verify an authenticator app after adding it using the [add
/// authenticator](/docs/references/cloud/client-web/account#createMfaAuthenticator)
Expand Down Expand Up @@ -480,7 +480,7 @@ open class Account: Service {
}

///
/// Verify Authenticator
/// Verify authenticator
///
/// Verify an authenticator app after adding it using the [add
/// authenticator](/docs/references/cloud/client-web/account#createMfaAuthenticator)
Expand All @@ -503,7 +503,7 @@ open class Account: Service {
}

///
/// Delete Authenticator
/// Delete authenticator
///
/// Delete an authenticator for a user by ID.
///
Expand Down Expand Up @@ -531,7 +531,7 @@ open class Account: Service {
}

///
/// Create MFA Challenge
/// Create MFA challenge
///
/// Begin the process of MFA verification after sign-in. Finish the flow with
/// [updateMfaChallenge](/docs/references/cloud/client-web/account#updateMfaChallenge)
Expand Down Expand Up @@ -568,7 +568,7 @@ open class Account: Service {
}

///
/// Create MFA Challenge (confirmation)
/// Create MFA challenge (confirmation)
///
/// Complete the MFA challenge by providing the one-time password. Finish the
/// process of MFA verification by providing the one-time password. To begin
Expand Down Expand Up @@ -604,7 +604,7 @@ open class Account: Service {
}

///
/// List Factors
/// List factors
///
/// List the factors available on the account to be used as a MFA challange.
///
Expand Down Expand Up @@ -635,7 +635,7 @@ open class Account: Service {
}

///
/// Get MFA Recovery Codes
/// Get MFA recovery codes
///
/// Get recovery codes that can be used as backup for MFA flow. Before getting
/// codes, they must be generated using
Expand Down Expand Up @@ -669,7 +669,7 @@ open class Account: Service {
}

///
/// Create MFA Recovery Codes
/// Create MFA recovery codes
///
/// Generate recovery codes as backup for MFA flow. It's recommended to
/// generate and show then immediately after user successfully adds their
Expand Down Expand Up @@ -704,7 +704,7 @@ open class Account: Service {
}

///
/// Regenerate MFA Recovery Codes
/// Regenerate MFA recovery codes
///
/// Regenerate recovery codes that can be used as backup for MFA flow. Before
/// regenerating codes, they must be first generated using
Expand Down Expand Up @@ -1596,9 +1596,7 @@ open class Account: Service {
/// [POST
/// /v1/account/sessions/token](https://appwrite.io/docs/references/cloud/client-web/account#createSession)
/// endpoint to complete the login process. The link sent to the user's email
/// address is valid for 1 hour. If you are on a mobile device you can leave
/// the URL parameter empty, so that the login completion will be handled by
/// your Appwrite instance by default.
/// address is valid for 1 hour.
///
/// A user is limited to 10 active sessions at a time by default. [Learn more
/// about session
Expand Down
2 changes: 1 addition & 1 deletion Sources/Appwrite/Services/Locale.swift
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ open class Locale: Service {
}

///
/// List Locale Codes
/// List locale codes
///
/// List of all locale codes in [ISO
/// 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes).
Expand Down
34 changes: 26 additions & 8 deletions Sources/Appwrite/Services/Messaging.swift
Original file line number Diff line number Diff line change
Expand Up @@ -201,16 +201,19 @@ open class Messaging: Service {
/// @param String sound
/// @param String color
/// @param String tag
/// @param String badge
/// @param Int badge
/// @param Bool draft
/// @param String scheduledAt
/// @param Bool contentAvailable
/// @param Bool critical
/// @param AppwriteEnums.MessagePriority priority
/// @throws Exception
/// @return array
///
open func createPush(
messageId: String,
title: String,
body: String,
title: String? = nil,
body: String? = nil,
topics: [String]? = nil,
users: [String]? = nil,
targets: [String]? = nil,
Expand All @@ -221,9 +224,12 @@ open class Messaging: Service {
sound: String? = nil,
color: String? = nil,
tag: String? = nil,
badge: String? = nil,
badge: Int? = nil,
draft: Bool? = nil,
scheduledAt: String? = nil
scheduledAt: String? = nil,
contentAvailable: Bool? = nil,
critical: Bool? = nil,
priority: AppwriteEnums.MessagePriority? = nil
) async throws -> AppwriteModels.Message {
let apiPath: String = "/messaging/messages/push"

Expand All @@ -243,7 +249,10 @@ open class Messaging: Service {
"tag": tag,
"badge": badge,
"draft": draft,
"scheduledAt": scheduledAt
"scheduledAt": scheduledAt,
"contentAvailable": contentAvailable,
"critical": critical,
"priority": priority
]

let apiHeaders: [String: String] = [
Expand Down Expand Up @@ -285,6 +294,9 @@ open class Messaging: Service {
/// @param Int badge
/// @param Bool draft
/// @param String scheduledAt
/// @param Bool contentAvailable
/// @param Bool critical
/// @param AppwriteEnums.MessagePriority priority
/// @throws Exception
/// @return array
///
Expand All @@ -304,7 +316,10 @@ open class Messaging: Service {
tag: String? = nil,
badge: Int? = nil,
draft: Bool? = nil,
scheduledAt: String? = nil
scheduledAt: String? = nil,
contentAvailable: Bool? = nil,
critical: Bool? = nil,
priority: AppwriteEnums.MessagePriority? = nil
) async throws -> AppwriteModels.Message {
let apiPath: String = "/messaging/messages/push/{messageId}"
.replacingOccurrences(of: "{messageId}", with: messageId)
Expand All @@ -324,7 +339,10 @@ open class Messaging: Service {
"tag": tag,
"badge": badge,
"draft": draft,
"scheduledAt": scheduledAt
"scheduledAt": scheduledAt,
"contentAvailable": contentAvailable,
"critical": critical,
"priority": priority
]

let apiHeaders: [String: String] = [
Expand Down
2 changes: 1 addition & 1 deletion Sources/Appwrite/Services/Storage.swift
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ open class Storage: Service {
}

///
/// Delete File
/// Delete file
///
/// Delete a file by its unique ID. Only users with write permissions have
/// access to delete this resource.
Expand Down
6 changes: 4 additions & 2 deletions Sources/Appwrite/Services/Teams.swift
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,8 @@ open class Teams: Service {
/// List team memberships
///
/// Use this endpoint to list a team's members using the team's ID. All team
/// members have read access to this endpoint.
/// members have read access to this endpoint. Hide sensitive attributes from
/// the response by toggling membership privacy in the Console.
///
/// @param String teamId
/// @param [String] queries
Expand Down Expand Up @@ -401,7 +402,8 @@ open class Teams: Service {
/// Get team membership
///
/// Get a team member by the membership unique id. All team members have read
/// access for this resource.
/// access for this resource. Hide sensitive attributes from the response by
/// toggling membership privacy in the Console.
///
/// @param String teamId
/// @param String membershipId
Expand Down
22 changes: 11 additions & 11 deletions Sources/Appwrite/Services/Users.swift
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ open class Users: Service {
}

///
/// List Identities
/// List identities
///
/// Get identities for all users.
///
Expand Down Expand Up @@ -1208,7 +1208,7 @@ open class Users: Service {
}

///
/// Delete Authenticator
/// Delete authenticator
///
/// Delete an authenticator app.
///
Expand Down Expand Up @@ -1246,7 +1246,7 @@ open class Users: Service {
}

///
/// Delete Authenticator
/// Delete authenticator
///
/// Delete an authenticator app.
///
Expand All @@ -1267,7 +1267,7 @@ open class Users: Service {
}

///
/// List Factors
/// List factors
///
/// List the factors available on the account to be used as a MFA challange.
///
Expand Down Expand Up @@ -1301,7 +1301,7 @@ open class Users: Service {
}

///
/// Get MFA Recovery Codes
/// Get MFA recovery codes
///
/// Get recovery codes that can be used as backup for MFA flow by User ID.
/// Before getting codes, they must be generated using
Expand Down Expand Up @@ -1338,7 +1338,7 @@ open class Users: Service {
}

///
/// Regenerate MFA Recovery Codes
/// Regenerate MFA recovery codes
///
/// Regenerate recovery codes that can be used as backup for MFA flow by User
/// ID. Before regenerating codes, they must be first generated using
Expand Down Expand Up @@ -1375,7 +1375,7 @@ open class Users: Service {
}

///
/// Create MFA Recovery Codes
/// Create MFA recovery codes
///
/// Generate recovery codes used as backup for MFA flow for User ID. Recovery
/// codes can be used as a MFA verification type in
Expand Down Expand Up @@ -1903,7 +1903,7 @@ open class Users: Service {
}

///
/// List User Targets
/// List user targets
///
/// List the messaging targets that are associated with a user.
///
Expand Down Expand Up @@ -1941,7 +1941,7 @@ open class Users: Service {
}

///
/// Create User Target
/// Create user target
///
/// Create a messaging target.
///
Expand Down Expand Up @@ -1991,7 +1991,7 @@ open class Users: Service {
}

///
/// Get User Target
/// Get user target
///
/// Get a user's push notification target by ID.
///
Expand Down Expand Up @@ -2028,7 +2028,7 @@ open class Users: Service {
}

///
/// Update User target
/// Update user target
///
/// Update a messaging target.
///
Expand Down
Loading
Loading