Skip to content

Commit

Permalink
sync
Browse files Browse the repository at this point in the history
  • Loading branch information
TorstenDittmann committed Feb 17, 2024
1 parent 4358277 commit 57c6575
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![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)

**This SDK is compatible with Appwrite server version latest. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-console/releases).**
**This SDK is compatible with Appwrite server version 1.5.x. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-console/releases).**

Appwrite is an open-source backend as a service server that abstract and simplify complex and repetitive development tasks behind a very simple to use REST API. Appwrite aims to help you develop your apps faster and in a more secure way. Use the Console SDK to integrate your app with the Appwrite server to easily start interacting with all of Appwrite backend APIs and tools. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs)

Expand Down
12 changes: 10 additions & 2 deletions src/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3392,9 +3392,17 @@ export namespace Models {
*/
name: string;
/**
* Total count of subscribers subscribed to topic.
* Total count of email subscribers subscribed to the topic.
*/
total: number;
emailTotal: number;
/**
* Total count of SMS subscribers subscribed to the topic.
*/
smsTotal: number;
/**
* Total count of push subscribers subscribed to the topic.
*/
pushTotal: number;
/**
* Subscribe permissions.
*/
Expand Down

0 comments on commit 57c6575

Please sign in to comment.