@boarteam/fix-dict-fix42 4.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
|
@@ -5,6 +5,8 @@ The **complete FIX 4.2 dictionary as data** (405 fields / 46 messages / 21 datat
|
|
|
5
5
|
official FIX 4.2 specification (FIX Repository, 2010 Edition) and cross-checked against the
|
|
6
6
|
QuickFIX `FIX42.xml` dictionary by a CI drift gate โ never hand-maintained.
|
|
7
7
|
|
|
8
|
+
๐ **[Documentation](https://boar.team/fix/docs/)** ยท ๐ **[Browse FIX 4.2](https://boar.team/fix/dialect/4-2/)** ยท โถ๏ธ **[Playground](https://boar.team/fix/playground/)** ยท ๐ป **[GitHub](https://github.com/boarteam/fix-protocol)**
|
|
9
|
+
|
|
8
10
|
Stable and actively developed. See the
|
|
9
11
|
[project README](https://github.com/boarteam/fix-protocol#readme) for coverage, the cross-check
|
|
10
12
|
report, and declared coverage gaps.
|
|
@@ -32,8 +34,8 @@ It also exports the typed encode-side API: `message` (a factory bound to this di
|
|
|
32
34
|
plus augmentable per-container group/component `interface`s. For the read side it exports
|
|
33
35
|
`isMessageType` (a type guard that narrows a `MessageView<any>` of unknown type to a specific
|
|
34
36
|
message's body, keyed on its `MsgType` value) and `MessageOf<M>` (the matching annotation alias).
|
|
35
|
-
|
|
36
|
-
typed-
|
|
37
|
+
The typed-message API is documented in full in the
|
|
38
|
+
[Typed messages guide](https://boar.team/fix/docs/typed-messages/).
|
|
37
39
|
|
|
38
40
|
Requires `@boarteam/fix` as a peer dependency.
|
|
39
41
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@boarteam/fix-dict-fix42",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.1",
|
|
4
4
|
"description": "FIX 4.2 dictionary as data (fields, components, messages, datatypes, enums) for @boarteam/fix. Generated from the official FIX 4.2 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-fix42"
|
|
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.5.
|
|
50
|
+
"@boarteam/fix": "0.5.1"
|
|
51
51
|
},
|
|
52
52
|
"scripts": {
|
|
53
53
|
"build": "tsup",
|