bcchapi 1.0.4 → 1.0.5

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 +27 -0
  2. package/package.json +10 -10
package/CHANGELOG.md ADDED
@@ -0,0 +1,27 @@
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.5] - 2024-04-24
11
+
12
+ ### Added
13
+
14
+ - This CHANGELOG file to document changes to the project.
15
+
16
+ ### Changed
17
+
18
+ - Updated the following dependencies:
19
+ - `@tsconfig/node20` from `20.1.2` to `20.1.4`
20
+ - `@types/node` from `20.11.5` to `2.12.7`
21
+ - `@typescript-eslint/eslint-plugin` from `6.19.0` to `6.21.0`
22
+ - `@typescript-eslint/parser` from `6.19.0` to `6.21.0`
23
+ - `@vitest/coverage-v8` from `1.2.1` to `1.5.1`
24
+ - `eslint` from `8.56.0` to `8.57.0`
25
+ - `prettier` from `3.2.4` to `3.2.5`
26
+ - `typescript` from `5.3.3` to `5.4.5`
27
+ - `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.5",
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.12.7",
33
+ "@typescript-eslint/eslint-plugin": "^6.21.0",
34
+ "@typescript-eslint/parser": "^6.21.0",
35
+ "@vitest/coverage-v8": "^1.5.1",
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",
39
+ "prettier": "^3.2.5",
40
40
  "rimraf": "^5.0.5",
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.5.1"
44
44
  },
45
45
  "engines": {
46
46
  "node": ">=18.19.0",