Skip to content

Commit

Permalink
Merge pull request #9 from appwrite/dev
Browse files Browse the repository at this point in the history
feat: update for 1.0.0-RC1
  • Loading branch information
christyjacob4 committed Sep 22, 2022
2 parents f076fc9 + 9f8b27f commit 13298b9
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 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 1.0.0. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-deno/releases).**
**This SDK is compatible with Appwrite server version 1.0.x. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-deno/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 Deno 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
2 changes: 1 addition & 1 deletion src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export class Client {
'x-sdk-name': 'Deno',
'x-sdk-platform': 'server',
'x-sdk-language': 'deno',
'x-sdk-version': '6.0.0',
'x-sdk-version': '6.1.0',
'X-Appwrite-Response-Format':'1.0.0',
};

Expand Down
4 changes: 0 additions & 4 deletions src/role.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,4 @@ export class Role {
public static member(id: string): string {
return `member:${id}`
}

public static status(status: string): string {
return `status:${status}`
}
}

0 comments on commit 13298b9

Please sign in to comment.