@boarteam/fix-dict-fixt11 2.0.0 โ 2.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 +4 -1
- 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
|
@@ -9,6 +9,8 @@ TestRequest(1), ResendRequest(2), Reject(3), SequenceReset(4), Logout(5), and Lo
|
|
|
9
9
|
with its required `DefaultApplVerID(1137)`. Generated from the QuickFIX/J `FIXT11.xml`
|
|
10
10
|
data dictionary โ never hand-maintained.
|
|
11
11
|
|
|
12
|
+
๐ **[Documentation](https://boar.team/fix/docs/)** ยท ๐ **[The FIXT pair API](https://boar.team/fix/docs/dictionaries/)** ยท โถ๏ธ **[Playground](https://boar.team/fix/playground/)** ยท ๐ป **[GitHub](https://github.com/boarteam/fix-protocol)**
|
|
13
|
+
|
|
12
14
|
Use it for transport-layer tooling (session-message construction and validation, layer
|
|
13
15
|
attribution) or pair it with an application dictionary. For a batteries-included FIX 5.0
|
|
14
16
|
SP2 dictionary that already contains this envelope, use
|
|
@@ -36,7 +38,8 @@ Exports: `dictionary` (the data; `version === beginString === 'FIXT.1.1'`),
|
|
|
36
38
|
`Tags`/`TagNames`, `MsgType`/`MsgTypeNames`, `Enums` (e.g. `Enums.ApplVerID`,
|
|
37
39
|
`Enums.SessionRejectReason`), a top-level const + same-name type per enumerated field,
|
|
38
40
|
`DICTIONARY_VERSION`, and the typed message API (`message`, `MessageBodies` with the 7
|
|
39
|
-
admin bodies, `isMessageType
|
|
41
|
+
admin bodies, and a narrowing pair per direction โ `isMessageType`/`MessageOf<M>` for a
|
|
42
|
+
message you built, `isInboundType`/`InboundOf<M>` for one you received).
|
|
40
43
|
|
|
41
44
|
## Provenance & coverage
|
|
42
45
|
|
package/dist/index.cjs
CHANGED
|
@@ -2399,6 +2399,7 @@ var Enums = {
|
|
|
2399
2399
|
};
|
|
2400
2400
|
var message = fix.messageFactory(dictionary);
|
|
2401
2401
|
var isMessageType = fix.messageTypeGuard();
|
|
2402
|
+
var isInboundType = fix.inboundTypeGuard();
|
|
2402
2403
|
|
|
2403
2404
|
exports.ApplVerID = ApplVerID;
|
|
2404
2405
|
exports.DICTIONARY_VERSION = DICTIONARY_VERSION;
|
|
@@ -2417,6 +2418,7 @@ exports.TagNames = TagNames;
|
|
|
2417
2418
|
exports.Tags = Tags;
|
|
2418
2419
|
exports.TestMessageIndicator = TestMessageIndicator;
|
|
2419
2420
|
exports.dictionary = dictionary;
|
|
2421
|
+
exports.isInboundType = isInboundType;
|
|
2420
2422
|
exports.isMessageType = isMessageType;
|
|
2421
2423
|
exports.message = message;
|
|
2422
2424
|
//# sourceMappingURL=index.cjs.map
|