bcchapi 2.2.0 → 2.2.1
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/CHANGELOG.md +10 -0
- package/package.json +15 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,15 @@ The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and
|
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
+
## [2.2.1] - 2026-03-10
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Add npm keywords for discoverability
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
---
|
|
9
18
|
## [2.2.0] - 2026-03-10
|
|
10
19
|
|
|
11
20
|
|
|
@@ -16,6 +25,7 @@ The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and
|
|
|
16
25
|
|
|
17
26
|
### Changed
|
|
18
27
|
|
|
28
|
+
- Release v2.2.0
|
|
19
29
|
- Always run format before check in dev workflow
|
|
20
30
|
- Fix formatting
|
|
21
31
|
- Add check script and move release docs to CONTRIBUTING.md
|
package/package.json
CHANGED
|
@@ -1,12 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bcchapi",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.1",
|
|
4
4
|
"description": "Node.js wrapper for the Banco Central de Chile API. Features a fully typed API client and utility tools to streamline macroeconomic data integration.",
|
|
5
5
|
"homepage": "https://github.com/airarrazaval/bcchapi#readme",
|
|
6
6
|
"bugs": {
|
|
7
7
|
"url": "https://github.com/airarrazaval/bcchapi/issues"
|
|
8
8
|
},
|
|
9
9
|
"license": "MIT",
|
|
10
|
+
"keywords": [
|
|
11
|
+
"bcch",
|
|
12
|
+
"banco-central",
|
|
13
|
+
"banco-central-de-chile",
|
|
14
|
+
"chile",
|
|
15
|
+
"economics",
|
|
16
|
+
"macroeconomics",
|
|
17
|
+
"api",
|
|
18
|
+
"api-client",
|
|
19
|
+
"time-series",
|
|
20
|
+
"finance",
|
|
21
|
+
"uf",
|
|
22
|
+
"utm"
|
|
23
|
+
],
|
|
10
24
|
"repository": {
|
|
11
25
|
"type": "git",
|
|
12
26
|
"url": "https://github.com/airarrazaval/bcchapi.git"
|