@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.
- package/bundles/mtgame-core.umd.js +3 -3
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/bundles/mtgame-core.umd.min.js +1 -1
- package/bundles/mtgame-core.umd.min.js.map +1 -1
- package/esm2015/models/league.js +4 -4
- package/esm5/models/league.js +4 -4
- package/fesm2015/mtgame-core.js +3 -3
- package/fesm2015/mtgame-core.js.map +1 -1
- package/fesm5/mtgame-core.js +3 -3
- package/fesm5/mtgame-core.js.map +1 -1
- package/models/league.d.ts +1 -1
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -1096,7 +1096,7 @@
|
|
|
1096
1096
|
__extends(League, _super);
|
|
1097
1097
|
function League() {
|
|
1098
1098
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
1099
|
-
_this.
|
|
1099
|
+
_this.documents = [];
|
|
1100
1100
|
return _this;
|
|
1101
1101
|
}
|
|
1102
1102
|
League.toFront = function (data) { };
|
|
@@ -1146,14 +1146,14 @@
|
|
|
1146
1146
|
closest_game_datetime: 'closestGameDatetime',
|
|
1147
1147
|
cover: 'cover',
|
|
1148
1148
|
about: 'about',
|
|
1149
|
-
|
|
1149
|
+
documents: 'documents',
|
|
1150
1150
|
},
|
|
1151
1151
|
relation: {
|
|
1152
1152
|
organization: Organization,
|
|
1153
1153
|
logo: File,
|
|
1154
1154
|
cover: File,
|
|
1155
1155
|
sport: Sport,
|
|
1156
|
-
|
|
1156
|
+
documents: listField(File),
|
|
1157
1157
|
}
|
|
1158
1158
|
})
|
|
1159
1159
|
], League);
|