@boarteam/fix-dict-fix44 3.0.0 โ 4.0.1
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/README.md +4 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -4,6 +4,8 @@ The **complete FIX 4.4 dictionary as data** (912 fields / 93 messages / 105 comp
|
|
|
4
4
|
datatypes) for the [`@boarteam/fix`](https://www.npmjs.com/package/@boarteam/fix) engine.
|
|
5
5
|
Generated directly from the QuickFIX `FIX44.xml` data dictionary โ never hand-maintained.
|
|
6
6
|
|
|
7
|
+
๐ **[Documentation](https://boar.team/fix/docs/)** ยท ๐ **[Browse FIX 4.4](https://boar.team/fix/dialect/4-4/)** ยท โถ๏ธ **[Playground](https://boar.team/fix/playground/)** ยท ๐ป **[GitHub](https://github.com/boarteam/fix-protocol)**
|
|
8
|
+
|
|
7
9
|
Stable and actively developed. See the
|
|
8
10
|
[project README](https://github.com/boarteam/fix-protocol#readme) for coverage and declared
|
|
9
11
|
coverage gaps.
|
|
@@ -50,8 +52,8 @@ group/component `interface`s (`SecListGrp_NoRelatedSymEntry`, `InstrumentFields`
|
|
|
50
52
|
extensions patch via declaration merging. For the read side it exports `isMessageType` โ a type
|
|
51
53
|
guard that narrows a `MessageView<any>` of unknown type to a specific message's body keyed on its
|
|
52
54
|
`MsgType` value (so `get()` becomes typed) โ and `MessageOf<M>`, the matching annotation alias.
|
|
53
|
-
|
|
54
|
-
typed-
|
|
55
|
+
The typed-message API is documented in full in the
|
|
56
|
+
[Typed messages guide](https://boar.team/fix/docs/typed-messages/).
|
|
55
57
|
|
|
56
58
|
Requires `@boarteam/fix` as a peer dependency.
|
|
57
59
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@boarteam/fix-dict-fix44",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.1",
|
|
4
4
|
"description": "FIX 4.4 dictionary as data (fields, components, messages, datatypes, enums) for @boarteam/fix. Generated from the FIX 4.4 specification.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"url": "git+https://github.com/boarteam/fix-protocol.git",
|
|
34
34
|
"directory": "packages/fix-dict-fix44"
|
|
35
35
|
},
|
|
36
|
-
"homepage": "https://
|
|
36
|
+
"homepage": "https://boar.team/fix/docs/",
|
|
37
37
|
"bugs": "https://github.com/boarteam/fix-protocol/issues",
|
|
38
38
|
"publishConfig": {
|
|
39
39
|
"access": "public"
|
|
@@ -42,12 +42,12 @@
|
|
|
42
42
|
"node": ">=18"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
|
-
"@boarteam/fix": "
|
|
45
|
+
"@boarteam/fix": ">=0.5.0 <1.0.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"tsup": "^8.3.5",
|
|
49
49
|
"typescript": "^5.7.2",
|
|
50
|
-
"@boarteam/fix": "0.
|
|
50
|
+
"@boarteam/fix": "0.5.1"
|
|
51
51
|
},
|
|
52
52
|
"scripts": {
|
|
53
53
|
"build": "tsup",
|