@influxdata/influxdb3-client 1.4.0-nightly.9526 → 1.4.0-nightly.9550

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.
Files changed (2) hide show
  1. package/README.md +7 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -188,6 +188,13 @@ for await (const row of queryPointsResult) {
188
188
  }
189
189
  ```
190
190
 
191
+ ### gRPC Compression
192
+
193
+ The JavaScript client supports gRPC response compression.
194
+
195
+ If the server chooses to compress query responses (e.g., with gzip), the client
196
+ will automatically decompress them — no extra configuration is required.
197
+
191
198
  ## Examples
192
199
 
193
200
  For more advanced usage, see [examples](https://github.com/InfluxCommunity/influxdb3-js/blob/HEAD/examples/README.md).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@influxdata/influxdb3-client",
3
- "version": "1.4.0-nightly.9526",
3
+ "version": "1.4.0-nightly.9550",
4
4
  "description": "The Client that provides a simple and convenient way to interact with InfluxDB 3.",
5
5
  "scripts": {
6
6
  "build": "yarn cp ../../README.md ./README.md && yarn run clean && yarn run build:browser && yarn run build:node",
@@ -92,5 +92,5 @@
92
92
  "apache-arrow": "^19.0.0",
93
93
  "grpc-web": "^1.5.0"
94
94
  },
95
- "gitHead": "0982877e77f47837b140518273903d689c762772"
95
+ "gitHead": "2ac7c9fb85521ac2631d2fc51b1fb165b1243638"
96
96
  }