pokenode-ts 1.19.0 → 1.20.0
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/README.md +5 -17
- package/lib/index.d.ts +771 -804
- package/lib/index.js +2 -2
- package/lib/index.mjs +2 -2
- package/package.json +28 -24
package/README.md
CHANGED
|
@@ -4,9 +4,9 @@ A lightweight Node.js wrapper for the PokéAPI with built-in types. An easy way
|
|
|
4
4
|
|
|
5
5
|
## Features
|
|
6
6
|
|
|
7
|
-
- Built-in typings
|
|
8
|
-
- Axios with auto-cache requests
|
|
9
|
-
- Logging
|
|
7
|
+
- 🛠️ Built-in typings
|
|
8
|
+
- 📦 Axios with auto-cache requests
|
|
9
|
+
- 🌲 Logging
|
|
10
10
|
|
|
11
11
|
## Installation
|
|
12
12
|
|
|
@@ -23,7 +23,7 @@ pnpm i axios axios-cache-interceptor pokenode-ts
|
|
|
23
23
|
|
|
24
24
|
## Basic Example
|
|
25
25
|
|
|
26
|
-
Using a client, like
|
|
26
|
+
Using a client, like PokemonClient:
|
|
27
27
|
|
|
28
28
|
```js
|
|
29
29
|
import { PokemonClient } from 'pokenode-ts';
|
|
@@ -75,18 +75,6 @@ Every change in this project is analyzed by [SonarCloud](https://sonarcloud.io/)
|
|
|
75
75
|
|
|
76
76
|
## Donate
|
|
77
77
|
|
|
78
|
-
Please consider donating if you think pokenode-ts is helpful to you or that my work is valuable. I am happy if you can buy me a coffee ❤️
|
|
79
|
-
|
|
80
|
-
<a href="https://www.buymeacoffee.com/pokenodets">
|
|
81
|
-
<img alt="bmc-button" src="https://img.shields.io/badge/Buy_Me_A_Coffee-FFDD00?style=for-the-badge&logo=buy-me-a-coffee&logoColor=black">
|
|
82
|
-
</a>
|
|
83
|
-
<a href="https://ko-fi.com/pokenodets">
|
|
84
|
-
<img alt="kofi-button" src="https://img.shields.io/badge/Ko--fi-F16061?style=for-the-badge&logo=ko-fi&logoColor=white">
|
|
85
|
-
</a>
|
|
86
|
-
<a href="https://www.paypal.com/donate?business=8TYDGB7874HT2&no_recurring=0&item_name=development¤cy_code=USD">
|
|
87
|
-
<img alt="paypal-button" src="https://img.shields.io/badge/PayPal-00457C?style=for-the-badge&logo=paypal&logoColor=white">
|
|
88
|
-
</a>
|
|
89
|
-
|
|
90
|
-
## Repository Analytics
|
|
78
|
+
Please consider donating if you think pokenode-ts is helpful to you or that my work is valuable. I am happy if you can [buy me a coffee](https://github.com/sponsors/Gabb-c) ❤️
|
|
91
79
|
|
|
92
80
|

|