bnstooltips 1.16.5 → 1.17.0

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
@@ -1561,35 +1561,6 @@ var GetRegionsResponse = /** @class */ (function () {
1561
1561
  };
1562
1562
  return GetRegionsResponse;
1563
1563
  }());
1564
- var Int32StringTuple = /** @class */ (function () {
1565
- function Int32StringTuple(data) {
1566
- if (data) {
1567
- for (var property in data) {
1568
- if (data.hasOwnProperty(property))
1569
- this[property] = data[property];
1570
- }
1571
- }
1572
- }
1573
- Int32StringTuple.prototype.init = function (_data) {
1574
- if (_data) {
1575
- this.item1 = _data["item1"];
1576
- this.item2 = _data["item2"];
1577
- }
1578
- };
1579
- Int32StringTuple.fromJS = function (data) {
1580
- data = typeof data === 'object' ? data : {};
1581
- var result = new Int32StringTuple();
1582
- result.init(data);
1583
- return result;
1584
- };
1585
- Int32StringTuple.prototype.toJSON = function (data) {
1586
- data = typeof data === 'object' ? data : {};
1587
- data["item1"] = this.item1;
1588
- data["item2"] = this.item2;
1589
- return data;
1590
- };
1591
- return Int32StringTuple;
1592
- }());
1593
1564
  var ItemAccountTransferDto = /** @class */ (function () {
1594
1565
  function ItemAccountTransferDto(data) {
1595
1566
  if (data) {
@@ -2424,7 +2395,7 @@ var SkillModifierDto = /** @class */ (function () {
2424
2395
  this.skills = [];
2425
2396
  for (var _i = 0, _a = _data["skills"]; _i < _a.length; _i++) {
2426
2397
  var item = _a[_i];
2427
- this.skills.push(Int32StringTuple.fromJS(item));
2398
+ this.skills.push(SkillModifierSkillDto.fromJS(item));
2428
2399
  }
2429
2400
  }
2430
2401
  this.verb = _data["verb"];
@@ -2493,6 +2464,35 @@ var SkillModifierGroupDto = /** @class */ (function () {
2493
2464
  };
2494
2465
  return SkillModifierGroupDto;
2495
2466
  }());
2467
+ var SkillModifierSkillDto = /** @class */ (function () {
2468
+ function SkillModifierSkillDto(data) {
2469
+ if (data) {
2470
+ for (var property in data) {
2471
+ if (data.hasOwnProperty(property))
2472
+ this[property] = data[property];
2473
+ }
2474
+ }
2475
+ }
2476
+ SkillModifierSkillDto.prototype.init = function (_data) {
2477
+ if (_data) {
2478
+ this.item1 = _data["item1"];
2479
+ this.item2 = _data["item2"];
2480
+ }
2481
+ };
2482
+ SkillModifierSkillDto.fromJS = function (data) {
2483
+ data = typeof data === 'object' ? data : {};
2484
+ var result = new SkillModifierSkillDto();
2485
+ result.init(data);
2486
+ return result;
2487
+ };
2488
+ SkillModifierSkillDto.prototype.toJSON = function (data) {
2489
+ data = typeof data === 'object' ? data : {};
2490
+ data["item1"] = this.item1;
2491
+ data["item2"] = this.item2;
2492
+ return data;
2493
+ };
2494
+ return SkillModifierSkillDto;
2495
+ }());
2496
2496
  var SlateStoneDto = /** @class */ (function () {
2497
2497
  function SlateStoneDto(data) {
2498
2498
  if (data) {