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.es.js CHANGED
@@ -1548,6 +1548,7 @@ var BnsItemDto = /** @class */ (function () {
1548
1548
  }
1549
1549
  }
1550
1550
  this.icon = _data["icon"] ? ItemIconDto.fromJS(_data["icon"]) : undefined;
1551
+ this.extraIcon = _data["extraIcon"] ? ItemIconDto.fromJS(_data["extraIcon"]) : undefined;
1551
1552
  this.grade = _data["grade"];
1552
1553
  if (Array.isArray(_data["classRequired"])) {
1553
1554
  this.classRequired = [];
@@ -1655,6 +1656,7 @@ var BnsItemDto = /** @class */ (function () {
1655
1656
  }
1656
1657
  }
1657
1658
  data["icon"] = this.icon ? this.icon.toJSON() : undefined;
1659
+ data["extraIcon"] = this.extraIcon ? this.extraIcon.toJSON() : undefined;
1658
1660
  data["grade"] = this.grade;
1659
1661
  if (Array.isArray(this.classRequired)) {
1660
1662
  data["classRequired"] = [];
@@ -3045,7 +3047,7 @@ function throwException(message, status, response, headers, result) {
3045
3047
  var ItemDownloadClient = /** @class */ (function () {
3046
3048
  function ItemDownloadClient(region, patch) {
3047
3049
  if (patch === void 0) { patch = ""; }
3048
- this.apiV = "v25";
3050
+ this.apiV = "v26";
3049
3051
  this.patch = patch;
3050
3052
  this.region = region;
3051
3053
  var baseUrl = ItemDownloadClient.GetUrlBase();