@mtgame/core 0.2.23 → 0.2.25

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.
@@ -1481,6 +1481,10 @@
1481
1481
  enumerable: false,
1482
1482
  configurable: true
1483
1483
  });
1484
+ League.prototype.getRuDomain = function () {
1485
+ var domainSplit = this.domain.split('.');
1486
+ return domainSplit[(domainSplit.length - 1)] === 'ru';
1487
+ };
1484
1488
  return League;
1485
1489
  }(BaseModel));
1486
1490
  __decorate([
@@ -1498,6 +1502,7 @@
1498
1502
  contact_phone: 'contactPhone',
1499
1503
  name: 'name',
1500
1504
  alias: 'alias',
1505
+ domain: 'domain',
1501
1506
  sport: 'sport',
1502
1507
  description: 'description',
1503
1508
  social_links: 'socialLinks',
@@ -3466,6 +3471,7 @@
3466
3471
  ModelInstance({
3467
3472
  mappingFields: {
3468
3473
  id: 'id',
3474
+ active: 'active',
3469
3475
  tournament_team: 'tournamentTeam',
3470
3476
  team_user: 'teamUser',
3471
3477
  disqualified: 'disqualified',