@mtgame/core 0.0.64 → 0.0.65

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.
@@ -883,7 +883,7 @@ var League = /** @class */ (function (_super) {
883
883
  __extends(League, _super);
884
884
  function League() {
885
885
  var _this = _super !== null && _super.apply(this, arguments) || this;
886
- _this.regulationFiles = [];
886
+ _this.documents = [];
887
887
  return _this;
888
888
  }
889
889
  League.toFront = function (data) { };
@@ -933,14 +933,14 @@ var League = /** @class */ (function (_super) {
933
933
  closest_game_datetime: 'closestGameDatetime',
934
934
  cover: 'cover',
935
935
  about: 'about',
936
- regulation_files: 'regulationFiles',
936
+ documents: 'documents',
937
937
  },
938
938
  relation: {
939
939
  organization: Organization,
940
940
  logo: File,
941
941
  cover: File,
942
942
  sport: Sport,
943
- regulationFiles: listField(File),
943
+ documents: listField(File),
944
944
  }
945
945
  })
946
946
  ], League);