@boarteam/fix-dict-fix42 0.1.0 → 1.0.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/NOTICE CHANGED
@@ -3,16 +3,17 @@ Copyright 2026 Boar Team
3
3
 
4
4
  This product includes software developed at Boar Team.
5
5
 
6
- The FIX 4.2 dictionary data shipped in @boarteam/fix-dict-fix42 is derived
7
- from the official FIX 4.2 specification as published in the FIX Repository
8
- (2010 Edition) by FIX Protocol Limited (factual protocol-reference data: tag
9
- numbers, field names, datatypes, message structures, and enumerated values).
6
+ The FIX 4.2 dictionary structure shipped in @boarteam/fix-dict-fix42 (tag
7
+ numbers, field and enum names, datatypes, message and component structure, and
8
+ required-ness) is generated from the official FIX 4.2 specification as published
9
+ in the FIX Repository (2010 Edition) by FIX Protocol Limited.
10
10
 
11
- Portions of the FIX specification are "Copyright FIX Protocol Limited". The
12
- FIX Repository is published by FIX Protocol Limited; the specification itself
13
- remains "Copyright FIX Protocol Limited", and FIX Protocol Limited claims no
14
- intellectual property over an implementation of the protocol.
11
+ Field, enum, and datatype descriptions are derived from the FIX Orchestra
12
+ "orchestrations" repository (OrchestraFIX42.xml), © Copyright FIX Protocol
13
+ Limited, licensed under the Apache License, Version 2.0, and reshaped into this
14
+ dictionary's JSON form. See https://github.com/FIXTradingCommunity/orchestrations.
15
15
 
16
- "FIX" and "Financial Information eXchange" are trademarks of FIX Protocol
17
- Limited. This project is an independent open-source implementation and is not
18
- affiliated with, sponsored by, or endorsed by FIX Protocol Limited.
16
+ Portions of the FIX specification are "Copyright FIX Protocol Limited". "FIX"
17
+ and "Financial Information eXchange" are trademarks of FIX Protocol Limited.
18
+ This project is an independent open-source implementation and is not affiliated
19
+ with, sponsored by, or endorsed by FIX Protocol Limited.
package/README.md CHANGED
@@ -17,8 +17,15 @@ const fix = createFixEngine(dictionary);
17
17
  const wire = fix.encode({ msgType: MsgType.OrderSingle, fields: { [Tags.ClOrdID]: 'A1' } });
18
18
  ```
19
19
 
20
- Exports: `dictionary` (the data), `Tags` (field name → tag), `MsgType` (message name
21
- MsgType value), and `DICTIONARY_VERSION`.
20
+ Exports: `dictionary` (the data), `Tags` (field name → tag), `TagNames` (tag field
21
+ name), `MsgType` (message name → MsgType value), `MsgTypeNames` (MsgType value →
22
+ message name), `Enums` (field name → spec value name → wire string, e.g.
23
+ `Enums.MDEntryType.Bid === '0'`), a top-level const per enumerated field (`Side`,
24
+ `OrdType`, `MDEntryType`, ...), and `DICTIONARY_VERSION`. `MsgType` and every
25
+ per-field const are also same-name types — unions of their wire values — so
26
+ `msgType: MsgType` and `side: Side` work in type positions. The one enumerated
27
+ field without a top-level const is `MsgType` (tag 35), whose name belongs to the
28
+ message-type map: use `Enums.MsgType`.
22
29
 
23
30
  Requires `@boarteam/fix` as a peer dependency.
24
31
 
@@ -0,0 +1,36 @@
1
+ THIRD-PARTY NOTICES — @boarteam/fix-dict-fix42
2
+
3
+ The FIX 4.2 dictionary data in this package is derived from the third-party
4
+ sources below. @boarteam/fix-dict-fix42 itself is licensed under Apache-2.0 (see
5
+ LICENSE); these notices cover the upstream material it incorporates.
6
+
7
+ ================================================================================
8
+ 1. FIX Repository, 2010 Edition
9
+ Used for: message / field / component / enum structure and required-ness.
10
+ ================================================================================
11
+
12
+ The structural data (tag numbers, field and enum names, datatypes, message and
13
+ component structure, and required-ness) is generated from the official FIX 4.2
14
+ specification as published in the FIX Repository (2010 Edition) by FIX Protocol
15
+ Limited. Portions of the FIX specification are "Copyright FIX Protocol Limited".
16
+
17
+ ================================================================================
18
+ 2. FIX Orchestra — "orchestrations" (OrchestraFIX42.xml)
19
+ Used for: field, enum, and datatype descriptions.
20
+ ================================================================================
21
+
22
+ Field, enum, and datatype descriptions are derived from OrchestraFIX42.xml in
23
+ the FIX Trading Community "orchestrations" repository
24
+ (https://github.com/FIXTradingCommunity/orchestrations), reshaped into this
25
+ dictionary's JSON form.
26
+
27
+ Copyright (c) 2017-2026 FIX Protocol Limited.
28
+
29
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not use
30
+ this file except in compliance with the License. You may obtain a copy of the
31
+ License at http://www.apache.org/licenses/LICENSE-2.0 — a copy is also provided
32
+ in this package's LICENSE file.
33
+
34
+ "FIX" and "Financial Information eXchange" are trademarks of FIX Protocol
35
+ Limited. This is an independent open-source project, not affiliated with or
36
+ endorsed by FIX Protocol Limited.