bcchapi 1.0.4 → 1.0.6

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +38 -0
  2. package/package.json +11 -11
package/CHANGELOG.md ADDED
@@ -0,0 +1,38 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [Unreleased]
9
+
10
+ ## [1.0.6] - 2024-06-13
11
+
12
+ ### Changed
13
+
14
+ - Updated the following dependencies:
15
+ - `@types/node` from `20.12.7` to `2.14.2`
16
+ - `@vitest/coverage-v8` from `1.5.1` to `1.6.0`
17
+ - `rimraf` from `5.0.5` to `5.0.7`
18
+ - `prettier` from `3.2.5` to `3.3.2`
19
+ - `vitest` from `1.5.1` to `1.6.0`
20
+
21
+ ## [1.0.5] - 2024-04-24
22
+
23
+ ### Added
24
+
25
+ - This CHANGELOG file to document changes to the project.
26
+
27
+ ### Changed
28
+
29
+ - Updated the following dependencies:
30
+ - `@tsconfig/node20` from `20.1.2` to `20.1.4`
31
+ - `@types/node` from `20.11.5` to `2.12.7`
32
+ - `@typescript-eslint/eslint-plugin` from `6.19.0` to `6.21.0`
33
+ - `@typescript-eslint/parser` from `6.19.0` to `6.21.0`
34
+ - `@vitest/coverage-v8` from `1.2.1` to `1.5.1`
35
+ - `eslint` from `8.56.0` to `8.57.0`
36
+ - `prettier` from `3.2.4` to `3.2.5`
37
+ - `typescript` from `5.3.3` to `5.4.5`
38
+ - `vitest` from `1.2.1` to `1.5.1`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bcchapi",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "API para acceder al Web Service del Banco Central de Chile.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -28,19 +28,19 @@
28
28
  },
29
29
  "homepage": "https://github.com/airarrazaval/bcchapi#readme",
30
30
  "devDependencies": {
31
- "@tsconfig/node20": "^20.1.2",
32
- "@types/node": "^20.11.5",
33
- "@typescript-eslint/eslint-plugin": "^6.19.0",
34
- "@typescript-eslint/parser": "^6.19.0",
35
- "@vitest/coverage-v8": "^1.2.1",
36
- "eslint": "^8.56.0",
31
+ "@tsconfig/node20": "^20.1.4",
32
+ "@types/node": "^20.14.2",
33
+ "@typescript-eslint/eslint-plugin": "^6.21.0",
34
+ "@typescript-eslint/parser": "^6.21.0",
35
+ "@vitest/coverage-v8": "^1.6.0",
36
+ "eslint": "^8.57.0",
37
37
  "eslint-config-prettier": "^9.1.0",
38
38
  "eslint-plugin-import": "^2.29.1",
39
- "prettier": "^3.2.4",
40
- "rimraf": "^5.0.5",
39
+ "prettier": "^3.3.2",
40
+ "rimraf": "^5.0.7",
41
41
  "ts-node": "^10.9.2",
42
- "typescript": "^5.3.3",
43
- "vitest": "^1.2.1"
42
+ "typescript": "^5.4.5",
43
+ "vitest": "^1.6.0"
44
44
  },
45
45
  "engines": {
46
46
  "node": ">=18.19.0",