osrs-json-hiscores 2.16.0 → 2.16.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -55,7 +55,7 @@ export declare const rsnFromElement: (el: Element | null) => string;
55
55
  * @param url URL to run a `GET` request against.
56
56
  * @returns Axios response.
57
57
  */
58
- export declare const httpGet: <Response_1>(url: string, config?: AxiosRequestConfig) => Promise<import("axios").AxiosResponse<Response_1>>;
58
+ export declare const httpGet: <Response_1>(url: string, config?: AxiosRequestConfig) => Promise<import("axios").AxiosResponse<Response_1, any>>;
59
59
  /**
60
60
  * Validates that a provided RSN has the same username restrictions as Jagex.
61
61
  * @param rsn Username to validate.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "osrs-json-hiscores",
3
- "version": "2.16.0",
3
+ "version": "2.16.1",
4
4
  "description": "The Old School Runescape API wrapper that does more!",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -92,7 +92,7 @@
92
92
  "testEnvironment": "node"
93
93
  },
94
94
  "dependencies": {
95
- "axios": "^0.21.1",
95
+ "axios": "^1.6.2",
96
96
  "jsdom": "^22.1.0",
97
97
  "useragent-generator": "^1.1.0"
98
98
  },