@boarteam/fix-dict-fix44 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 CHANGED
@@ -1,17 +1,24 @@
1
- @boarteam/fix
1
+ @boarteam/fix-dict-fix44
2
2
  Copyright 2026 Boar Team
3
3
 
4
4
  This product includes software developed at Boar Team.
5
5
 
6
- Portions of this library were extracted and re-engineered from an internal
7
- FIX protocol implementation. All proprietary configuration, credentials,
8
- venue endpoints, and business logic were removed during extraction.
6
+ The FIX 4.4 dictionary structure shipped in @boarteam/fix-dict-fix44 (tag
7
+ numbers, field and enum names, datatypes, message and component structure, and
8
+ required-ness) is generated from the QuickFIX FIX44.xml data dictionary.
9
+ QuickFIX is distributed under the QuickFIX Software License; this product
10
+ includes software developed by quickfixengine.org. The names "QuickFIX" and
11
+ "quickfixengine.org" are not used to endorse or promote this product.
9
12
 
10
- The FIX 4.4 dictionary data shipped in @boarteam/fix-dict-fix44 is derived
11
- from the publicly published FIX 4.4 specification (factual protocol-reference
12
- data: tag numbers, field names, datatypes, message structures, and enumerated
13
- values).
13
+ The conditional-required ("C") presence markings are derived from the publicly
14
+ published FIX 4.4 specification.
14
15
 
15
- "FIX" and "Financial Information eXchange" are trademarks of FIX Protocol
16
- Limited. This project is an independent open-source implementation and is not
17
- affiliated with, sponsored by, or endorsed by FIX Protocol Limited.
16
+ Field, enum, and datatype descriptions are derived from the FIX Orchestra
17
+ "orchestrations" repository (OrchestraFIX44.xml), © Copyright FIX Protocol
18
+ Limited, licensed under the Apache License, Version 2.0, and reshaped into this
19
+ dictionary's JSON form. See https://github.com/FIXTradingCommunity/orchestrations.
20
+
21
+ Portions of the FIX specification are "Copyright FIX Protocol Limited". "FIX"
22
+ and "Financial Information eXchange" are trademarks of FIX Protocol Limited.
23
+ This project is an independent open-source implementation and is not affiliated
24
+ with, sponsored by, or endorsed by FIX Protocol Limited.
package/README.md CHANGED
@@ -5,9 +5,9 @@ datatypes) for the [`@boarteam/fix`](https://www.npmjs.com/package/@boarteam/fix
5
5
  Generated from the FIX 4.4 specification and cross-checked against the QuickFIX `FIX44.xml`
6
6
  dictionary by a CI drift gate — never hand-maintained.
7
7
 
8
- > ⚠️ **Experimental (0.x).** See the
9
- > [project README](https://github.com/boarteam/fix-protocol#readme) for maturity, the
10
- > subset-vs-full correctness note, and declared coverage gaps.
8
+ On a 0.x line and actively developed. See the
9
+ [project README](https://github.com/boarteam/fix-protocol#readme) for coverage, the cross-check
10
+ report, and declared coverage gaps.
11
11
 
12
12
  ```ts
13
13
  import { createFixEngine } from '@boarteam/fix';
@@ -0,0 +1,79 @@
1
+ THIRD-PARTY NOTICES — @boarteam/fix-dict-fix44
2
+
3
+ The FIX 4.4 dictionary data in this package is derived from the third-party
4
+ sources below. @boarteam/fix-dict-fix44 itself is licensed under Apache-2.0 (see
5
+ LICENSE); these notices cover the upstream material it incorporates.
6
+
7
+ ================================================================================
8
+ 1. QuickFIX FIX44.xml data dictionary
9
+ Used for: message / field / component / enum structure and required-ness.
10
+ ================================================================================
11
+
12
+ This product includes software developed by quickfixengine.org
13
+ (http://www.quickfixengine.org/).
14
+
15
+ The QuickFIX Software License, Version 1.0
16
+
17
+ Copyright (c) 2001-2020 Oren Miller
18
+
19
+ Redistribution and use in source and binary forms, with or without
20
+ modification, are permitted provided that the following conditions
21
+ are met:
22
+
23
+ 1. Redistributions of source code must retain the above copyright
24
+ notice, this list of conditions and the following disclaimer.
25
+
26
+ 2. Redistributions in binary form must reproduce the above copyright
27
+ notice, this list of conditions and the following disclaimer in
28
+ the documentation and/or other materials provided with the
29
+ distribution.
30
+
31
+ 3. The end-user documentation included with the redistribution,
32
+ if any, must include the following acknowledgment:
33
+ "This product includes software developed by
34
+ quickfixengine.org (http://www.quickfixengine.org/)."
35
+ Alternately, this acknowledgment may appear in the software itself,
36
+ if and wherever such third-party acknowledgments normally appear.
37
+
38
+ 4. The names "QuickFIX" and "quickfixengine.org" must
39
+ not be used to endorse or promote products derived from this
40
+ software without prior written permission. For written
41
+ permission, please contact ask@quickfixengine.org
42
+
43
+ 5. Products derived from this software may not be called "QuickFIX",
44
+ nor may "QuickFIX" appear in their name, without prior written
45
+ permission of quickfixengine.org
46
+
47
+ THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
48
+ WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
49
+ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
50
+ DISCLAIMED. IN NO EVENT SHALL QUICKFIXENGINE.ORG OR
51
+ ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
52
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
53
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
54
+ USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
55
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
56
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
57
+ OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
58
+ SUCH DAMAGE.
59
+
60
+ ================================================================================
61
+ 2. FIX Orchestra — "orchestrations" (OrchestraFIX44.xml)
62
+ Used for: field, enum, and datatype descriptions.
63
+ ================================================================================
64
+
65
+ Field, enum, and datatype descriptions are derived from OrchestraFIX44.xml in
66
+ the FIX Trading Community "orchestrations" repository
67
+ (https://github.com/FIXTradingCommunity/orchestrations), reshaped into this
68
+ dictionary's JSON form.
69
+
70
+ Copyright (c) 2017-2026 FIX Protocol Limited.
71
+
72
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not use
73
+ this file except in compliance with the License. You may obtain a copy of the
74
+ License at http://www.apache.org/licenses/LICENSE-2.0 — a copy is also provided
75
+ in this package's LICENSE file.
76
+
77
+ "FIX" and "Financial Information eXchange" are trademarks of FIX Protocol
78
+ Limited. This is an independent open-source project, not affiliated with or
79
+ endorsed by FIX Protocol Limited.