bnstooltips 1.20.2 → 1.20.3

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/index.js CHANGED
@@ -1556,6 +1556,7 @@ var BnsItemDto = /** @class */ (function () {
1556
1556
  }
1557
1557
  }
1558
1558
  this.icon = _data["icon"] ? ItemIconDto.fromJS(_data["icon"]) : undefined;
1559
+ this.extraIcon = _data["extraIcon"] ? ItemIconDto.fromJS(_data["extraIcon"]) : undefined;
1559
1560
  this.grade = _data["grade"];
1560
1561
  if (Array.isArray(_data["classRequired"])) {
1561
1562
  this.classRequired = [];
@@ -1663,6 +1664,7 @@ var BnsItemDto = /** @class */ (function () {
1663
1664
  }
1664
1665
  }
1665
1666
  data["icon"] = this.icon ? this.icon.toJSON() : undefined;
1667
+ data["extraIcon"] = this.extraIcon ? this.extraIcon.toJSON() : undefined;
1666
1668
  data["grade"] = this.grade;
1667
1669
  if (Array.isArray(this.classRequired)) {
1668
1670
  data["classRequired"] = [];
@@ -3053,7 +3055,7 @@ function throwException(message, status, response, headers, result) {
3053
3055
  var ItemDownloadClient = /** @class */ (function () {
3054
3056
  function ItemDownloadClient(region, patch) {
3055
3057
  if (patch === void 0) { patch = ""; }
3056
- this.apiV = "v25";
3058
+ this.apiV = "v26";
3057
3059
  this.patch = patch;
3058
3060
  this.region = region;
3059
3061
  var baseUrl = ItemDownloadClient.GetUrlBase();