bnstooltips 1.14.0 → 1.14.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/build/Utilities/ItemDownloadClient.d.ts +1 -0
- package/build/index.es.js +92 -26
- package/build/index.es.js.map +1 -1
- package/build/index.js +92 -26
- package/build/index.js.map +1 -1
- package/build/itemapiclient/ItemApiClient.d.ts +26 -13
- package/package.json +1 -1
|
@@ -12,70 +12,80 @@ export declare class BnsItemApiClient extends BnsItemApiClientBase {
|
|
|
12
12
|
ping(): Promise<string>;
|
|
13
13
|
protected processPing(response: Response): Promise<string>;
|
|
14
14
|
/**
|
|
15
|
+
* @param v (optional)
|
|
15
16
|
* @return Success
|
|
16
17
|
*/
|
|
17
|
-
patches(region: string): Promise<GetPatchesResponse>;
|
|
18
|
+
patches(region: string, v: string | undefined): Promise<GetPatchesResponse>;
|
|
18
19
|
protected processPatches(response: Response): Promise<GetPatchesResponse>;
|
|
19
20
|
/**
|
|
21
|
+
* @param v (optional)
|
|
20
22
|
* @return Success
|
|
21
23
|
*/
|
|
22
|
-
latestPatch(region: string): Promise<PatchesListPatch>;
|
|
24
|
+
latestPatch(region: string, v: string | undefined): Promise<PatchesListPatch>;
|
|
23
25
|
protected processLatestPatch(response: Response): Promise<PatchesListPatch>;
|
|
24
26
|
/**
|
|
27
|
+
* @param v (optional)
|
|
25
28
|
* @return Success
|
|
26
29
|
*/
|
|
27
|
-
regions(): Promise<GetRegionsResponse>;
|
|
30
|
+
regions(v: string | undefined): Promise<GetRegionsResponse>;
|
|
28
31
|
protected processRegions(response: Response): Promise<GetRegionsResponse>;
|
|
29
32
|
/**
|
|
30
33
|
* @param patch (optional)
|
|
34
|
+
* @param v (optional)
|
|
31
35
|
* @return Success
|
|
32
36
|
*/
|
|
33
|
-
yastItems(region: string, itemType: string, technicalJobName: string, patch: string | undefined): Promise<ItemsResponse>;
|
|
37
|
+
yastItems(region: string, itemType: string, technicalJobName: string, patch: string | undefined, v: string | undefined): Promise<ItemsResponse>;
|
|
34
38
|
protected processYastItems(response: Response): Promise<ItemsResponse>;
|
|
35
39
|
/**
|
|
36
40
|
* @param itemId (optional)
|
|
37
41
|
* @param itemLevel (optional)
|
|
38
42
|
* @param region (optional)
|
|
39
43
|
* @param patch (optional)
|
|
44
|
+
* @param v (optional)
|
|
40
45
|
* @return Success
|
|
41
46
|
*/
|
|
42
|
-
allStagesForItem(itemId: number | undefined, itemLevel: number | undefined, region: string | undefined, patch: string | undefined): Promise<ItemWithStagesDto>;
|
|
47
|
+
allStagesForItem(itemId: number | undefined, itemLevel: number | undefined, region: string | undefined, patch: string | undefined, v: string | undefined): Promise<ItemWithStagesDto>;
|
|
43
48
|
protected processAllStagesForItem(response: Response): Promise<ItemWithStagesDto>;
|
|
44
49
|
/**
|
|
45
50
|
* @param itemId (optional)
|
|
46
51
|
* @param itemLevel (optional)
|
|
47
52
|
* @param region (optional)
|
|
48
53
|
* @param patch (optional)
|
|
54
|
+
* @param v (optional)
|
|
49
55
|
* @return Success
|
|
50
56
|
* @deprecated
|
|
51
57
|
*/
|
|
52
|
-
allUpgradesForItem(itemId: number | undefined, itemLevel: number | undefined, region: string | undefined, patch: string | undefined): Promise<ItemsResponse>;
|
|
58
|
+
allUpgradesForItem(itemId: number | undefined, itemLevel: number | undefined, region: string | undefined, patch: string | undefined, v: string | undefined): Promise<ItemsResponse>;
|
|
53
59
|
protected processAllUpgradesForItem(response: Response): Promise<ItemsResponse>;
|
|
54
60
|
/**
|
|
55
61
|
* @param patch (optional)
|
|
62
|
+
* @param v (optional)
|
|
56
63
|
* @return Success
|
|
57
64
|
*/
|
|
58
|
-
addedOrModifiedItems(added: boolean, modified: boolean, region: string, patch: string | undefined): Promise<ItemsResponse>;
|
|
65
|
+
addedOrModifiedItems(added: boolean, modified: boolean, region: string, patch: string | undefined, v: string | undefined): Promise<ItemsResponse>;
|
|
59
66
|
protected processAddedOrModifiedItems(response: Response): Promise<ItemsResponse>;
|
|
60
67
|
/**
|
|
61
68
|
* @param light (optional)
|
|
62
69
|
* @param patch (optional)
|
|
70
|
+
* @param v (optional)
|
|
63
71
|
* @return Success
|
|
64
72
|
*/
|
|
65
|
-
itemByString(idLevel: string, region: string, light: boolean | undefined, patch: string | undefined): Promise<BnsItemDto>;
|
|
73
|
+
itemByString(idLevel: string, region: string, light: boolean | undefined, patch: string | undefined, v: string | undefined): Promise<BnsItemDto>;
|
|
66
74
|
protected processItemByString(response: Response): Promise<BnsItemDto>;
|
|
67
75
|
/**
|
|
68
76
|
* @param light (optional)
|
|
69
77
|
* @param patch (optional)
|
|
78
|
+
* @param v (optional)
|
|
70
79
|
* @return Success
|
|
71
80
|
*/
|
|
72
|
-
item(id: number, level: number, region: string, light: boolean | undefined, patch: string | undefined): Promise<BnsItemDto>;
|
|
81
|
+
item(id: number, level: number, region: string, light: boolean | undefined, patch: string | undefined, v: string | undefined): Promise<BnsItemDto>;
|
|
73
82
|
protected processItem(response: Response): Promise<BnsItemDto>;
|
|
74
83
|
/**
|
|
75
84
|
* @param patch (optional)
|
|
85
|
+
* @param v (optional)
|
|
76
86
|
* @return Success
|
|
77
87
|
*/
|
|
78
|
-
itemsByName(name: string, region: string, patch: string | undefined): Promise<ItemsResponse>;
|
|
88
|
+
itemsByName(name: string, region: string, patch: string | undefined, v: string | undefined): Promise<ItemsResponse>;
|
|
79
89
|
protected processItemsByName(response: Response): Promise<ItemsResponse>;
|
|
80
90
|
/**
|
|
81
91
|
* @param category (optional)
|
|
@@ -84,23 +94,26 @@ export declare class BnsItemApiClient extends BnsItemApiClientBase {
|
|
|
84
94
|
* @param minGs (optional)
|
|
85
95
|
* @param patch (optional)
|
|
86
96
|
* @param noDupes (optional)
|
|
97
|
+
* @param v (optional)
|
|
87
98
|
* @return Success
|
|
88
99
|
*/
|
|
89
|
-
itemsByCategory(region: string, category: string | undefined, technicalJobName: string | undefined, gradesString: string | undefined, minGs: string | undefined, patch: string | undefined, noDupes: boolean | undefined): Promise<ItemsResponse>;
|
|
100
|
+
itemsByCategory(region: string, category: string | undefined, technicalJobName: string | undefined, gradesString: string | undefined, minGs: string | undefined, patch: string | undefined, noDupes: boolean | undefined, v: string | undefined): Promise<ItemsResponse>;
|
|
90
101
|
protected processItemsByCategory(response: Response): Promise<ItemsResponse>;
|
|
91
102
|
/**
|
|
92
103
|
* @param offset (optional)
|
|
93
104
|
* @param patch (optional)
|
|
105
|
+
* @param v (optional)
|
|
94
106
|
* @return Success
|
|
95
107
|
*/
|
|
96
|
-
items(count: number, region: string, offset: number | undefined, patch: string | undefined): Promise<ItemsResponse>;
|
|
108
|
+
items(count: number, region: string, offset: number | undefined, patch: string | undefined, v: string | undefined): Promise<ItemsResponse>;
|
|
97
109
|
protected processItems(response: Response): Promise<ItemsResponse>;
|
|
98
110
|
/**
|
|
99
111
|
* @param light (optional)
|
|
100
112
|
* @param patch (optional)
|
|
113
|
+
* @param v (optional)
|
|
101
114
|
* @return Success
|
|
102
115
|
*/
|
|
103
|
-
itemsByIds(region: string, light: boolean | undefined, patch: string | undefined, body: IdAndLevel[]): Promise<ItemsResponse>;
|
|
116
|
+
itemsByIds(region: string, light: boolean | undefined, patch: string | undefined, v: string | undefined, body: IdAndLevel[]): Promise<ItemsResponse>;
|
|
104
117
|
protected processItemsByIds(response: Response): Promise<ItemsResponse>;
|
|
105
118
|
}
|
|
106
119
|
export declare class BnsItemDto implements IBnsItemDto {
|