thetadatadx 8.0.19 → 8.0.21

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 +2 -0
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -4,6 +4,8 @@ Node.js SDK for ThetaData market data. napi-rs bindings over the `thetadatadx` R
4
4
 
5
5
  Every call crosses the napi boundary into compiled Rust: gRPC, protobuf, zstd, FIT decoding, and TCP streaming run inside the `thetadatadx` crate.
6
6
 
7
+ > **FLATFILES coverage:** the TypeScript binding currently exposes the MDDS (historical) and FPSS (streaming) surfaces only. The third surface — FLATFILES whole-universe daily blobs — is shipped in the Rust core (v8.0.17+) and is being wired into TypeScript under issue [#436](https://github.com/userFRM/ThetaDataDx/issues/436). See [`ROADMAP.md`](../../ROADMAP.md#flatfiles--binding-coverage) for the per-binding status.
8
+
7
9
  ## Install
8
10
 
9
11
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "thetadatadx",
3
- "version": "8.0.19",
3
+ "version": "8.0.21",
4
4
  "description": "Native ThetaData SDK for Node.js — powered by Rust via napi-rs",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -30,9 +30,9 @@
30
30
  "@napi-rs/cli": "^3.6.2"
31
31
  },
32
32
  "optionalDependencies": {
33
- "thetadatadx-linux-x64-gnu": "8.0.19",
34
- "thetadatadx-darwin-arm64": "8.0.19",
35
- "thetadatadx-win32-x64-msvc": "8.0.19"
33
+ "thetadatadx-linux-x64-gnu": "8.0.21",
34
+ "thetadatadx-darwin-arm64": "8.0.21",
35
+ "thetadatadx-win32-x64-msvc": "8.0.21"
36
36
  },
37
37
  "engines": {
38
38
  "node": ">= 20"