pokenode-ts 1.13.0 → 1.13.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 +3 -7
- package/dist/index.d.ts +3 -3
- package/package.json +22 -22
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
## [1.13.1](https://github.com/Gabb-c/pokenode-ts/compare/v1.13.0...v1.13.1) (2022-04-28)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
* **models:**
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
### Features
|
|
10
|
-
|
|
11
|
-
* **deps:** update pino ([c0d8484](https://github.com/Gabb-c/pokenode-ts/commit/c0d8484b7c92345600cff88a4971c16b14ada14f))
|
|
6
|
+
* **models:** Move interface typo ([bcd44e7](https://github.com/Gabb-c/pokenode-ts/commit/bcd44e727e7f266073340aa430602cea18efe1b7))
|
|
7
|
+
* **models:** namedapiresourcelist result interface [#413](https://github.com/Gabb-c/pokenode-ts/issues/413) ([88787be](https://github.com/Gabb-c/pokenode-ts/commit/88787bedc0ef4838851e2aafdbeff9dd9e7f398b))
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Generated by dts-bundle-generator v6.
|
|
1
|
+
// Generated by dts-bundle-generator v6.9.0
|
|
2
2
|
|
|
3
3
|
import { AxiosInstance } from 'axios';
|
|
4
4
|
import { IAxiosCacheAdapterOptions } from 'axios-cache-adapter';
|
|
@@ -26,7 +26,7 @@ export interface NamedAPIResourceList {
|
|
|
26
26
|
/** The URL for the previous page in the list */
|
|
27
27
|
previous: string | null;
|
|
28
28
|
/** A list of named API resources */
|
|
29
|
-
results: NamedAPIResource[]
|
|
29
|
+
results: NamedAPIResource[];
|
|
30
30
|
}
|
|
31
31
|
/** An URL for another resource in the API */
|
|
32
32
|
export interface APIResource {
|
|
@@ -2086,7 +2086,7 @@ export interface Move {
|
|
|
2086
2086
|
/** The flavor text of this move listed in different languages */
|
|
2087
2087
|
flavor_text_entries: MoveFlavorText[];
|
|
2088
2088
|
/** The generation in which this move was introduced */
|
|
2089
|
-
|
|
2089
|
+
generation: NamedAPIResource;
|
|
2090
2090
|
/** A list of the machines that teach this move */
|
|
2091
2091
|
machines: MachineVersionDetail[];
|
|
2092
2092
|
/** Metadata about this move */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pokenode-ts",
|
|
3
|
-
"version": "1.13.
|
|
3
|
+
"version": "1.13.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A lightweight Node.js wrapper for the PokéAPI with built-in types.",
|
|
6
6
|
"keywords": [
|
|
@@ -50,54 +50,54 @@
|
|
|
50
50
|
}
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"axios": "^0.
|
|
53
|
+
"axios": "^0.27.2",
|
|
54
54
|
"axios-cache-adapter": "^2.7.3",
|
|
55
|
-
"pino": "^7.
|
|
56
|
-
"pino-pretty": "^7.6.
|
|
57
|
-
"tslib": "^2.
|
|
55
|
+
"pino": "^7.11.0",
|
|
56
|
+
"pino-pretty": "^7.6.1",
|
|
57
|
+
"tslib": "^2.4.0"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
60
|
"@babel/cli": "^7.17.6",
|
|
61
|
-
"@babel/core": "^7.17.
|
|
61
|
+
"@babel/core": "^7.17.9",
|
|
62
62
|
"@babel/node": "^7.16.8",
|
|
63
63
|
"@babel/preset-env": "^7.16.11",
|
|
64
64
|
"@babel/preset-typescript": "^7.16.7",
|
|
65
|
-
"@commitlint/cli": "^16.2.
|
|
66
|
-
"@commitlint/config-conventional": "^16.2.
|
|
65
|
+
"@commitlint/cli": "^16.2.4",
|
|
66
|
+
"@commitlint/config-conventional": "^16.2.4",
|
|
67
67
|
"@semantic-release/changelog": "^6.0.1",
|
|
68
68
|
"@semantic-release/commit-analyzer": "^9.0.2",
|
|
69
69
|
"@semantic-release/git": "^10.0.1",
|
|
70
|
-
"@semantic-release/github": "^8.0.
|
|
70
|
+
"@semantic-release/github": "^8.0.4",
|
|
71
71
|
"@semantic-release/npm": "^9.0.1",
|
|
72
72
|
"@semantic-release/release-notes-generator": "^10.0.3",
|
|
73
|
-
"@swc/core": "^1.2.
|
|
73
|
+
"@swc/core": "^1.2.173",
|
|
74
74
|
"@swc/jest": "^0.2.20",
|
|
75
75
|
"@types/jest": "^27.4.1",
|
|
76
|
-
"@types/node": "^17.0.
|
|
77
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
78
|
-
"@typescript-eslint/parser": "^5.
|
|
76
|
+
"@types/node": "^17.0.29",
|
|
77
|
+
"@typescript-eslint/eslint-plugin": "^5.21.0",
|
|
78
|
+
"@typescript-eslint/parser": "^5.21.0",
|
|
79
79
|
"babel-plugin-module-resolver": "^4.1.0",
|
|
80
80
|
"conventional-changelog-conventionalcommits": "^4.6.3",
|
|
81
|
-
"dts-bundle-generator": "^6.
|
|
82
|
-
"eslint": "^8.
|
|
81
|
+
"dts-bundle-generator": "^6.9.0",
|
|
82
|
+
"eslint": "^8.14.0",
|
|
83
83
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
84
|
-
"eslint-config-airbnb-typescript": "^
|
|
84
|
+
"eslint-config-airbnb-typescript": "^17.0.0",
|
|
85
85
|
"eslint-config-node": "^4.1.0",
|
|
86
86
|
"eslint-config-prettier": "^8.5.0",
|
|
87
87
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
88
|
-
"eslint-plugin-import": "^2.
|
|
89
|
-
"eslint-plugin-jest": "^26.1.
|
|
88
|
+
"eslint-plugin-import": "^2.26.0",
|
|
89
|
+
"eslint-plugin-jest": "^26.1.5",
|
|
90
90
|
"eslint-plugin-node": "^11.1.0",
|
|
91
91
|
"eslint-plugin-prettier": "^4.0.0",
|
|
92
92
|
"eslint-plugin-promise": "^6.0.0",
|
|
93
|
-
"eslint-plugin-unicorn": "^
|
|
93
|
+
"eslint-plugin-unicorn": "^42.0.0",
|
|
94
94
|
"http-status-codes": "^2.2.0",
|
|
95
95
|
"husky": "^7.0.4",
|
|
96
96
|
"is-ci": "^3.0.1",
|
|
97
|
-
"jest": "^
|
|
98
|
-
"lint-staged": "^12.
|
|
97
|
+
"jest": "^28.0.2",
|
|
98
|
+
"lint-staged": "^12.4.1",
|
|
99
99
|
"lockfile-lint": "^4.7.4",
|
|
100
|
-
"prettier": "^2.6.
|
|
100
|
+
"prettier": "^2.6.2",
|
|
101
101
|
"semantic-release": "^19.0.2",
|
|
102
102
|
"sort-package-json": "^1.55.0",
|
|
103
103
|
"ts-node-dev": "^1.1.8",
|