@blizzard-api/client 1.0.0 → 1.0.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/README.md +1 -2
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +8 -9
package/README.md
CHANGED
|
@@ -4,14 +4,13 @@ This package provides a client that is meant to be used together with one or mor
|
|
|
4
4
|
|
|
5
5
|
Currently available packages are:
|
|
6
6
|
|
|
7
|
+
- `@blizzard-api/d3`
|
|
7
8
|
- `@blizzard-api/wow`
|
|
8
9
|
- `@blizzard-api/classic-wow`
|
|
9
10
|
|
|
10
11
|
Planned packages are:
|
|
11
12
|
|
|
12
|
-
- `@blizzard-api/d3`
|
|
13
13
|
- `@blizzard-api/hs`
|
|
14
|
-
- `@blizzard-api/owl`
|
|
15
14
|
- `@blizzard-api/sc2`
|
|
16
15
|
|
|
17
16
|
## Installation
|
package/dist/index.d.cts
CHANGED
|
@@ -171,7 +171,7 @@ declare class BlizzardApiClient implements IBlizzardApiClient {
|
|
|
171
171
|
'Battlenet-Namespace'?: string | undefined;
|
|
172
172
|
};
|
|
173
173
|
params: {
|
|
174
|
-
locale: "en_US" | "es_MX" | "pt_BR" | "en_GB" | "es_ES" | "fr_FR" | "ru_RU" | "de_DE" | "pt_PT" | "it_IT" | "ko_KR" | "zh_TW" | "multi";
|
|
174
|
+
locale: "en_US" | "es_MX" | "pt_BR" | "en_GB" | "es_ES" | "fr_FR" | "ru_RU" | "de_DE" | "pt_PT" | "it_IT" | "ko_KR" | "zh_TW" | "zh_CN" | "multi";
|
|
175
175
|
};
|
|
176
176
|
};
|
|
177
177
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -171,7 +171,7 @@ declare class BlizzardApiClient implements IBlizzardApiClient {
|
|
|
171
171
|
'Battlenet-Namespace'?: string | undefined;
|
|
172
172
|
};
|
|
173
173
|
params: {
|
|
174
|
-
locale: "en_US" | "es_MX" | "pt_BR" | "en_GB" | "es_ES" | "fr_FR" | "ru_RU" | "de_DE" | "pt_PT" | "it_IT" | "ko_KR" | "zh_TW" | "multi";
|
|
174
|
+
locale: "en_US" | "es_MX" | "pt_BR" | "en_GB" | "es_ES" | "fr_FR" | "ru_RU" | "de_DE" | "pt_PT" | "it_IT" | "ko_KR" | "zh_TW" | "zh_CN" | "multi";
|
|
175
175
|
};
|
|
176
176
|
};
|
|
177
177
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blizzard-api/client",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Putro",
|
|
6
6
|
"description": "A node.js axios client to integrate with the blizzard battle.net api.",
|
|
@@ -39,20 +39,19 @@
|
|
|
39
39
|
"diablo",
|
|
40
40
|
"d3",
|
|
41
41
|
"hs",
|
|
42
|
-
"hearthstone"
|
|
43
|
-
"ow",
|
|
44
|
-
"overwatch"
|
|
42
|
+
"hearthstone"
|
|
45
43
|
],
|
|
46
44
|
"dependencies": {
|
|
47
|
-
"axios": "1.
|
|
45
|
+
"axios": "1.7.2"
|
|
48
46
|
},
|
|
49
47
|
"peerDependencies": {
|
|
50
|
-
"@blizzard-api/core": "1.
|
|
48
|
+
"@blizzard-api/core": "1.1.0"
|
|
51
49
|
},
|
|
52
50
|
"devDependencies": {
|
|
53
|
-
"@blizzard-api/classic-wow": "1.
|
|
54
|
-
"@blizzard-api/core": "1.
|
|
55
|
-
"@blizzard-api/
|
|
51
|
+
"@blizzard-api/classic-wow": "1.1.1",
|
|
52
|
+
"@blizzard-api/core": "1.1.0",
|
|
53
|
+
"@blizzard-api/d3": "0.1.0",
|
|
54
|
+
"@blizzard-api/wow": "1.1.1"
|
|
56
55
|
},
|
|
57
56
|
"scripts": {
|
|
58
57
|
"build": "tsup",
|