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.js CHANGED
@@ -1569,35 +1569,6 @@ var GetRegionsResponse = /** @class */ (function () {
1569
1569
  };
1570
1570
  return GetRegionsResponse;
1571
1571
  }());
1572
- var Int32StringTuple = /** @class */ (function () {
1573
- function Int32StringTuple(data) {
1574
- if (data) {
1575
- for (var property in data) {
1576
- if (data.hasOwnProperty(property))
1577
- this[property] = data[property];
1578
- }
1579
- }
1580
- }
1581
- Int32StringTuple.prototype.init = function (_data) {
1582
- if (_data) {
1583
- this.item1 = _data["item1"];
1584
- this.item2 = _data["item2"];
1585
- }
1586
- };
1587
- Int32StringTuple.fromJS = function (data) {
1588
- data = typeof data === 'object' ? data : {};
1589
- var result = new Int32StringTuple();
1590
- result.init(data);
1591
- return result;
1592
- };
1593
- Int32StringTuple.prototype.toJSON = function (data) {
1594
- data = typeof data === 'object' ? data : {};
1595
- data["item1"] = this.item1;
1596
- data["item2"] = this.item2;
1597
- return data;
1598
- };
1599
- return Int32StringTuple;
1600
- }());
1601
1572
  var ItemAccountTransferDto = /** @class */ (function () {
1602
1573
  function ItemAccountTransferDto(data) {
1603
1574
  if (data) {
@@ -2432,7 +2403,7 @@ var SkillModifierDto = /** @class */ (function () {
2432
2403
  this.skills = [];
2433
2404
  for (var _i = 0, _a = _data["skills"]; _i < _a.length; _i++) {
2434
2405
  var item = _a[_i];
2435
- this.skills.push(Int32StringTuple.fromJS(item));
2406
+ this.skills.push(SkillModifierSkillDto.fromJS(item));
2436
2407
  }
2437
2408
  }
2438
2409
  this.verb = _data["verb"];
@@ -2501,6 +2472,35 @@ var SkillModifierGroupDto = /** @class */ (function () {
2501
2472
  };
2502
2473
  return SkillModifierGroupDto;
2503
2474
  }());
2475
+ var SkillModifierSkillDto = /** @class */ (function () {
2476
+ function SkillModifierSkillDto(data) {
2477
+ if (data) {
2478
+ for (var property in data) {
2479
+ if (data.hasOwnProperty(property))
2480
+ this[property] = data[property];
2481
+ }
2482
+ }
2483
+ }
2484
+ SkillModifierSkillDto.prototype.init = function (_data) {
2485
+ if (_data) {
2486
+ this.item1 = _data["item1"];
2487
+ this.item2 = _data["item2"];
2488
+ }
2489
+ };
2490
+ SkillModifierSkillDto.fromJS = function (data) {
2491
+ data = typeof data === 'object' ? data : {};
2492
+ var result = new SkillModifierSkillDto();
2493
+ result.init(data);
2494
+ return result;
2495
+ };
2496
+ SkillModifierSkillDto.prototype.toJSON = function (data) {
2497
+ data = typeof data === 'object' ? data : {};
2498
+ data["item1"] = this.item1;
2499
+ data["item2"] = this.item2;
2500
+ return data;
2501
+ };
2502
+ return SkillModifierSkillDto;
2503
+ }());
2504
2504
  var SlateStoneDto = /** @class */ (function () {
2505
2505
  function SlateStoneDto(data) {
2506
2506
  if (data) {