@appwrite.io/console 6.0.0 → 7.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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # Change Log
2
2
 
3
+ ## 7.0.0
4
+
5
+ * Breaking: Updated `$sequence` type from `number` to `string` for rows and documents.
6
+ * Updated: Compatibility note now refers to Appwrite server `1.9.x`.
7
+ * Updated: README badge shows API version `1.9.0`.
8
+ * Updated: Set header `X-Appwrite-Response-Format` to `1.9.0`.
9
+
3
10
  ## 6.0.0
4
11
 
5
12
  * Breaking: Renamed `domains.confirmPurchase()` to `domains.updatePurchase()`
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Appwrite Console SDK
2
2
 
3
3
  ![License](https://img.shields.io/github/license/appwrite/sdk-for-console.svg?style=flat-square)
4
- ![Version](https://img.shields.io/badge/api%20version-1.8.2-blue.svg?style=flat-square)
4
+ ![Version](https://img.shields.io/badge/api%20version-1.9.0-blue.svg?style=flat-square)
5
5
  [![Build Status](https://img.shields.io/travis/com/appwrite/sdk-generator?style=flat-square)](https://travis-ci.com/appwrite/sdk-generator)
6
6
  [![Twitter Account](https://img.shields.io/twitter/follow/appwrite?color=00acee&label=twitter&style=flat-square)](https://twitter.com/appwrite)
7
7
  [![Discord](https://img.shields.io/discord/564160730845151244?label=discord&style=flat-square)](https://appwrite.io/discord)
@@ -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@6.0.0"></script>
36
+ <script src="https://cdn.jsdelivr.net/npm/@appwrite.io/console@7.0.0"></script>
37
37
  ```
38
38
 
39
39
 
package/dist/cjs/sdk.js CHANGED
@@ -574,8 +574,8 @@ class Client {
574
574
  'x-sdk-name': 'Console',
575
575
  'x-sdk-platform': 'console',
576
576
  'x-sdk-language': 'web',
577
- 'x-sdk-version': '6.0.0',
578
- 'X-Appwrite-Response-Format': '1.8.0',
577
+ 'x-sdk-version': '7.0.0',
578
+ 'X-Appwrite-Response-Format': '1.9.0',
579
579
  };
580
580
  this.realtime = {
581
581
  socket: undefined,