@blizzard-api/client 2.3.1 → 2.3.2
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/dist/index.d.ts +2 -2
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -36,13 +36,13 @@ interface AccessTokenRequestArguments {
|
|
|
36
36
|
origin?: Origins;
|
|
37
37
|
secret?: string;
|
|
38
38
|
}
|
|
39
|
-
type AxiosCompatability<T> = T & {
|
|
39
|
+
type AxiosCompatability<T$1> = T$1 & {
|
|
40
40
|
/**
|
|
41
41
|
* @deprecated
|
|
42
42
|
* This property is only here for backward compatibility, it will be removed in the next major version.
|
|
43
43
|
* All data should be accessed directly from the response object instead of through this property.
|
|
44
44
|
*/
|
|
45
|
-
data: T;
|
|
45
|
+
data: T$1;
|
|
46
46
|
};
|
|
47
47
|
/**
|
|
48
48
|
* A client configuration object.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blizzard-api/client",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Putro",
|
|
6
6
|
"description": "A node.js client to integrate with the blizzard battle.net api.",
|
|
@@ -40,17 +40,17 @@
|
|
|
40
40
|
"hearthstone"
|
|
41
41
|
],
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"ky": "1.
|
|
43
|
+
"ky": "1.13.0"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
46
|
"@blizzard-api/core": "2.1.1"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@blizzard-api/classic-wow": "2.1.3",
|
|
50
49
|
"@blizzard-api/d3": "1.0.5",
|
|
51
|
-
"@blizzard-api/core": "2.1.1",
|
|
52
50
|
"@blizzard-api/hs": "1.0.5",
|
|
51
|
+
"@blizzard-api/core": "2.1.1",
|
|
53
52
|
"@blizzard-api/sc2": "1.0.5",
|
|
53
|
+
"@blizzard-api/classic-wow": "2.1.3",
|
|
54
54
|
"@blizzard-api/wow": "2.1.0"
|
|
55
55
|
},
|
|
56
56
|
"scripts": {
|