@mtgame/core 0.0.2 → 0.0.3
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 -4
- 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/basketball-game-config.js +4 -4
- package/esm2015/services/centrifugo.service.js +1 -2
- package/esm5/models/basketball-game-config.js +4 -4
- package/esm5/services/centrifugo.service.js +1 -2
- package/fesm2015/mtgame-core.js +3 -4
- package/fesm2015/mtgame-core.js.map +1 -1
- package/fesm5/mtgame-core.js +3 -4
- package/fesm5/mtgame-core.js.map +1 -1
- package/localization/overtime-types.d.ts +2 -2
- package/models/basketball-game-config.d.ts +3 -3
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -1119,9 +1119,9 @@
|
|
|
1119
1119
|
|
|
1120
1120
|
|
|
1121
1121
|
(function (OvertimeTypes) {
|
|
1122
|
-
OvertimeTypes[OvertimeTypes["to_score_total"] =
|
|
1123
|
-
OvertimeTypes[OvertimeTypes["to_score_diff"] =
|
|
1124
|
-
OvertimeTypes[OvertimeTypes["time"] =
|
|
1122
|
+
OvertimeTypes[OvertimeTypes["to_score_total"] = 1] = "to_score_total";
|
|
1123
|
+
OvertimeTypes[OvertimeTypes["to_score_diff"] = 2] = "to_score_diff";
|
|
1124
|
+
OvertimeTypes[OvertimeTypes["time"] = 3] = "time";
|
|
1125
1125
|
})(exports.OvertimeTypes || (exports.OvertimeTypes = {}));
|
|
1126
1126
|
var BasketballGameConfig = /** @class */ (function (_super) {
|
|
1127
1127
|
__extends(BasketballGameConfig, _super);
|
|
@@ -4335,7 +4335,6 @@
|
|
|
4335
4335
|
this.subscriptions = {};
|
|
4336
4336
|
};
|
|
4337
4337
|
CentrifugoService.prototype.initializeEngine = function (config) {
|
|
4338
|
-
console.log(config);
|
|
4339
4338
|
this.centrifuge = new Centrifuge(config);
|
|
4340
4339
|
};
|
|
4341
4340
|
CentrifugoService.prototype.addEngineSubscription = function (channel) {
|