@absolutejs/dataset-gleif 0.0.1 → 0.0.2
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/THIRD_PARTY_NOTICES.md +25 -0
- package/package.json +3 -2
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Third-Party Notices
|
|
2
|
+
|
|
3
|
+
`@absolutejs/dataset-gleif` accesses third-party data **at runtime** by querying
|
|
4
|
+
the source's public API. It does **not** bundle, embed, or redistribute any
|
|
5
|
+
third-party dataset.
|
|
6
|
+
|
|
7
|
+
## GLEIF — Global Legal Entity Identifier Foundation
|
|
8
|
+
|
|
9
|
+
This package retrieves Legal Entity Identifier (LEI) records from the GLEIF API
|
|
10
|
+
(<https://api.gleif.org>).
|
|
11
|
+
|
|
12
|
+
- **License:** GLEIF publishes LEI data under the **Creative Commons CC0 1.0
|
|
13
|
+
Universal Public Domain Dedication**
|
|
14
|
+
(<https://creativecommons.org/publicdomain/zero/1.0/>). No attribution is
|
|
15
|
+
legally required; this notice is provided as acknowledgment.
|
|
16
|
+
- **Source / terms:** <https://www.gleif.org/en/about/open-data>
|
|
17
|
+
- **Trademarks:** "GLEIF" and "LEI" (Legal Entity Identifier) are marks of the
|
|
18
|
+
Global Legal Entity Identifier Foundation. This package is not affiliated with,
|
|
19
|
+
endorsed by, or sponsored by GLEIF.
|
|
20
|
+
|
|
21
|
+
## Runtime dependencies
|
|
22
|
+
|
|
23
|
+
This package bundles no third-party runtime dependencies. `@absolutejs/discover`
|
|
24
|
+
is a peer dependency, used only for the `DatasetSource` / `NormalizedCompany`
|
|
25
|
+
TypeScript types.
|
package/package.json
CHANGED
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
"files": [
|
|
10
10
|
"dist",
|
|
11
11
|
"README.md",
|
|
12
|
-
"LICENSE"
|
|
12
|
+
"LICENSE",
|
|
13
|
+
"THIRD_PARTY_NOTICES.md"
|
|
13
14
|
],
|
|
14
15
|
"keywords": [
|
|
15
16
|
"absolutejs",
|
|
@@ -40,5 +41,5 @@
|
|
|
40
41
|
},
|
|
41
42
|
"type": "module",
|
|
42
43
|
"types": "./dist/index.d.ts",
|
|
43
|
-
"version": "0.0.
|
|
44
|
+
"version": "0.0.2"
|
|
44
45
|
}
|