Skip to content

Commit 13298b9

Browse files
Merge pull request #9 from appwrite/dev
feat: update for 1.0.0-RC1
2 parents f076fc9 + 9f8b27f commit 13298b9

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![Twitter Account](https://img.shields.io/twitter/follow/appwrite?color=00acee&label=twitter&style=flat-square)](https://twitter.com/appwrite)
77
[![Discord](https://img.shields.io/discord/564160730845151244?label=discord&style=flat-square)](https://appwrite.io/discord)
88

9-
**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).**
9+
**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).**
1010

1111
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)
1212

src/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export class Client {
1414
'x-sdk-name': 'Deno',
1515
'x-sdk-platform': 'server',
1616
'x-sdk-language': 'deno',
17-
'x-sdk-version': '6.0.0',
17+
'x-sdk-version': '6.1.0',
1818
'X-Appwrite-Response-Format':'1.0.0',
1919
};
2020

src/role.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,4 @@ export class Role {
3131
public static member(id: string): string {
3232
return `member:${id}`
3333
}
34-
35-
public static status(status: string): string {
36-
return `status:${status}`
37-
}
3834
}

0 commit comments

Comments
 (0)