Skip to content

Commit a8672d5

Browse files
regen
1 parent ffff13a commit a8672d5

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Change Log
22

3+
## 5.0.0
4+
5+
* Breaking: Channel.collection() and Channel.table() now require explicit IDs
6+
* Added DomainTransferStatusStatus enum
7+
* Added migration resource enums: AppwriteMigrationResource, FirebaseMigrationResource, NHostMigrationResource, SupabaseMigrationResource
8+
* Added ttl option to listDocuments and listRows
9+
* Added new docs/examples across domains, health, migrations, projects, sites
10+
* Updated docs and examples to reflect new resources and transfers
11+
* Updated README compatibility note to latest server version
12+
313
## 4.0.0
414

515
* Breaking: Channel.collection() and Channel.table() now require explicit IDs

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import { Client, Account } from "@appwrite.io/console";
3333
To install with a CDN (content delivery network) add the following scripts to the bottom of your <body> tag, but before you use any Appwrite services:
3434

3535
```html
36-
<script src="https://cdn.jsdelivr.net/npm/@appwrite.io/console@5.0.0"></script>
36+
<script src="https://cdn.jsdelivr.net/npm/@appwrite.io/console@23.0.0"></script>
3737
```
3838

3939

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@appwrite.io/console",
33
"homepage": "https://appwrite.io/support",
44
"description": "Appwrite is an open-source self-hosted backend server that abstracts and simplifies complex and repetitive development tasks behind a very simple REST API",
5-
"version": "5.0.0",
5+
"version": "23.0.0",
66
"license": "BSD-3-Clause",
77
"main": "dist/cjs/sdk.js",
88
"exports": {

src/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ class Client {
400400
'x-sdk-name': 'Console',
401401
'x-sdk-platform': 'console',
402402
'x-sdk-language': 'web',
403-
'x-sdk-version': '5.0.0',
403+
'x-sdk-version': '23.0.0',
404404
'X-Appwrite-Response-Format': '1.8.0',
405405
};
406406

0 commit comments

Comments
 (0)