@boarteam/fix-dict-fix42 4.0.0 โ 4.1.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/README.md +9 -5
- package/dist/index.cjs +2 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +31 -2
- package/dist/index.d.ts +31 -2
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- 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.
|
|
@@ -29,11 +31,13 @@ message-type map: use `Enums.MsgType`.
|
|
|
29
31
|
|
|
30
32
|
It also exports the typed encode-side API: `message` (a factory bound to this dictionary),
|
|
31
33
|
`MessageBodies` (the `MsgType` value โ body-type registry), and a named body type per message
|
|
32
|
-
plus augmentable per-container group/component `interface`s.
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
34
|
+
plus augmentable per-container group/component `interface`s. It also exports a narrowing pair per
|
|
35
|
+
direction, keyed on the `MsgType` value: `isMessageType` + `MessageOf<M>` for a message you
|
|
36
|
+
**built** (narrowing a `MessageView<any>` of unknown type to a specific message's body), and
|
|
37
|
+
`isInboundType` + `InboundOf<M>` for one you **received**, which narrow an `InboundMessage` and
|
|
38
|
+
keep its session `envelope` reachable afterwards.
|
|
39
|
+
The typed-message API is documented in full in the
|
|
40
|
+
[Typed messages guide](https://boar.team/fix/docs/typed-messages/).
|
|
37
41
|
|
|
38
42
|
Requires `@boarteam/fix` as a peer dependency.
|
|
39
43
|
|
package/dist/index.cjs
CHANGED
|
@@ -16020,6 +16020,7 @@ var Enums = {
|
|
|
16020
16020
|
};
|
|
16021
16021
|
var message = fix.messageFactory(dictionary);
|
|
16022
16022
|
var isMessageType = fix.messageTypeGuard();
|
|
16023
|
+
var isInboundType = fix.inboundTypeGuard();
|
|
16023
16024
|
|
|
16024
16025
|
exports.Adjustment = Adjustment;
|
|
16025
16026
|
exports.AdvSide = AdvSide;
|
|
@@ -16131,6 +16132,7 @@ exports.TradeType = TradeType;
|
|
|
16131
16132
|
exports.UnsolicitedIndicator = UnsolicitedIndicator;
|
|
16132
16133
|
exports.Urgency = Urgency;
|
|
16133
16134
|
exports.dictionary = dictionary;
|
|
16135
|
+
exports.isInboundType = isInboundType;
|
|
16134
16136
|
exports.isMessageType = isMessageType;
|
|
16135
16137
|
exports.message = message;
|
|
16136
16138
|
//# sourceMappingURL=index.cjs.map
|