@appwrite.io/console 4.0.0 → 23.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +19 -0
- package/README.md +2 -2
- package/dist/cjs/sdk.js +1 -1
- package/dist/cjs/sdk.js.map +1 -1
- package/dist/esm/sdk.js +1 -1
- package/dist/esm/sdk.js.map +1 -1
- package/dist/iife/sdk.js +1 -1
- package/package.json +1 -1
- package/src/client.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
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
|
+
|
|
13
|
+
## 4.0.0
|
|
14
|
+
|
|
15
|
+
* Breaking: Channel.collection() and Channel.table() now require explicit IDs
|
|
16
|
+
* Added migration resource enums: AppwriteMigrationResource, FirebaseMigrationResource, NHostMigrationResource, SupabaseMigrationResource
|
|
17
|
+
* Added DomainTransferStatusStatus enum
|
|
18
|
+
* Added ttl option to listDocuments and listRows
|
|
19
|
+
* Added new docs/examples across domains, health, migrations, projects, sites
|
|
20
|
+
* Updated docs and examples to reflect new resources and transfers
|
|
21
|
+
|
|
3
22
|
## 3.1.0
|
|
4
23
|
|
|
5
24
|
* Add support for `createPurchase` method in `Domains` service
|
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
[](https://twitter.com/appwrite)
|
|
7
7
|
[](https://appwrite.io/discord)
|
|
8
8
|
|
|
9
|
-
**This SDK is compatible with Appwrite server version
|
|
9
|
+
**This SDK is compatible with Appwrite server version latest. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-console/releases).**
|
|
10
10
|
|
|
11
11
|
Appwrite is an open-source backend as a service server that abstracts and simplifies 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)
|
|
12
12
|
|
|
@@ -33,7 +33,7 @@ import { Client, Account } from "@appwrite.io/console";
|
|
|
33
33
|
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:
|
|
34
34
|
|
|
35
35
|
```html
|
|
36
|
-
<script src="https://cdn.jsdelivr.net/npm/@appwrite.io/console@
|
|
36
|
+
<script src="https://cdn.jsdelivr.net/npm/@appwrite.io/console@23.0.0"></script>
|
|
37
37
|
```
|
|
38
38
|
|
|
39
39
|
|
package/dist/cjs/sdk.js
CHANGED