@mtgame/core 0.1.95 → 0.1.96
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/api/tournament-join-api.d.ts +2 -1
- package/bundles/mtgame-core.umd.js +1 -0
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/esm2015/api/tournament-join-api.js +2 -1
- package/fesm2015/mtgame-core.js +1 -0
- package/fesm2015/mtgame-core.js.map +1 -1
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -7,7 +7,8 @@ import { ConfigService } from '../services/config.service';
|
|
|
7
7
|
export declare enum TournamentJoin1x1Status {
|
|
8
8
|
not_sent = 1,
|
|
9
9
|
invite_sent = 2,
|
|
10
|
-
in_tournament = 3
|
|
10
|
+
in_tournament = 3,
|
|
11
|
+
not_valid = 4
|
|
11
12
|
}
|
|
12
13
|
export declare class TournamentJoinApi {
|
|
13
14
|
private httpClient;
|
|
@@ -8822,6 +8822,7 @@
|
|
|
8822
8822
|
TournamentJoin1x1Status[TournamentJoin1x1Status["not_sent"] = 1] = "not_sent";
|
|
8823
8823
|
TournamentJoin1x1Status[TournamentJoin1x1Status["invite_sent"] = 2] = "invite_sent";
|
|
8824
8824
|
TournamentJoin1x1Status[TournamentJoin1x1Status["in_tournament"] = 3] = "in_tournament";
|
|
8825
|
+
TournamentJoin1x1Status[TournamentJoin1x1Status["not_valid"] = 4] = "not_valid";
|
|
8825
8826
|
})(exports.TournamentJoin1x1Status || (exports.TournamentJoin1x1Status = {}));
|
|
8826
8827
|
var TournamentJoinApi = /** @class */ (function () {
|
|
8827
8828
|
function TournamentJoinApi(httpClient, configService) {
|