@mtgame/core 0.2.66 → 0.2.68
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 +7 -0
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/esm2015/localization/team-user-role.js +4 -1
- package/esm2015/models/handball-game-config.js +2 -1
- package/esm2015/models/team-user.js +4 -1
- package/fesm2015/mtgame-core.js +7 -0
- package/fesm2015/mtgame-core.js.map +1 -1
- package/localization/team-user-role.d.ts +3 -0
- package/models/handball-game-config.d.ts +1 -0
- package/models/team-user.d.ts +4 -1
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -2164,6 +2164,7 @@
|
|
|
2164
2164
|
overtime_timeout_count: 'overtimeTimeoutCount',
|
|
2165
2165
|
timeout_time: 'timeoutTime',
|
|
2166
2166
|
game_time_type: 'gameTimeType',
|
|
2167
|
+
substitute_manage_enabled: 'substituteManageEnabled',
|
|
2167
2168
|
},
|
|
2168
2169
|
relation: {
|
|
2169
2170
|
overtimeType: enumField(exports.OvertimeTypes),
|
|
@@ -3231,6 +3232,9 @@
|
|
|
3231
3232
|
TeamUserRole[TeamUserRole["vice_president"] = 12] = "vice_president";
|
|
3232
3233
|
TeamUserRole[TeamUserRole["press_attache"] = 13] = "press_attache";
|
|
3233
3234
|
TeamUserRole[TeamUserRole["executive"] = 14] = "executive";
|
|
3235
|
+
TeamUserRole[TeamUserRole["senior_coach"] = 15] = "senior_coach";
|
|
3236
|
+
TeamUserRole[TeamUserRole["assistant_coach"] = 16] = "assistant_coach";
|
|
3237
|
+
TeamUserRole[TeamUserRole["serviceman"] = 17] = "serviceman";
|
|
3234
3238
|
})(exports.TeamUserRole || (exports.TeamUserRole = {}));
|
|
3235
3239
|
exports.TeamUser = /** @class */ (function (_super) {
|
|
3236
3240
|
__extends(TeamUser, _super);
|
|
@@ -13443,6 +13447,9 @@
|
|
|
13443
13447
|
_a$5[exports.TeamUserRole.vice_president] = 'Вице-президент',
|
|
13444
13448
|
_a$5[exports.TeamUserRole.press_attache] = 'Пресс-атташе',
|
|
13445
13449
|
_a$5[exports.TeamUserRole.executive] = 'Администратор',
|
|
13450
|
+
_a$5[exports.TeamUserRole.senior_coach] = 'Старший тренер',
|
|
13451
|
+
_a$5[exports.TeamUserRole.assistant_coach] = 'Помощник тренера',
|
|
13452
|
+
_a$5[exports.TeamUserRole.serviceman] = 'Сервисмен',
|
|
13446
13453
|
_a$5);
|
|
13447
13454
|
|
|
13448
13455
|
var _a$4, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r;
|