@boarteam/fix-dict-fix42 0.1.0 → 0.2.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 +12 -11
- package/THIRD-PARTY-NOTICES.txt +36 -0
- package/dist/index.cjs +333 -333
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +333 -333
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
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
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
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
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
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
|
-
|
|
17
|
-
|
|
18
|
-
|
|
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.
|
|
@@ -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.
|