front-back-poker-types 5.0.209 → 5.0.210
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { TournamentType, Nullable } from '../types';
|
|
1
|
+
import { TournamentType, Nullable, TournamentStatus } from '../types';
|
|
2
2
|
export declare const TOURNAMENT_PATHNAME = "/tournament";
|
|
3
3
|
export declare const REGISTRATION_PATHNAME = "/registration";
|
|
4
4
|
export declare const TOURNAMENT_REGISTRATION_PATHNAME = "/tournament/registration";
|
|
@@ -35,6 +35,7 @@ export type GetTournamentMainInfoResponse = {
|
|
|
35
35
|
* В какой руме находится юзер сейчас в турнире
|
|
36
36
|
*/
|
|
37
37
|
targetRoomId: number | undefined;
|
|
38
|
+
status: TournamentStatus;
|
|
38
39
|
};
|
|
39
40
|
export type GetTournamentGeneralInfoResponse = {
|
|
40
41
|
type: TournamentType;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { TournamentType, Nullable } from '../types';
|
|
1
|
+
import { TournamentType, Nullable, TournamentStatus } from '../types';
|
|
2
2
|
export declare const TOURNAMENT_PATHNAME = "/tournament";
|
|
3
3
|
export declare const REGISTRATION_PATHNAME = "/registration";
|
|
4
4
|
export declare const TOURNAMENT_REGISTRATION_PATHNAME = "/tournament/registration";
|
|
@@ -35,6 +35,7 @@ export type GetTournamentMainInfoResponse = {
|
|
|
35
35
|
* В какой руме находится юзер сейчас в турнире
|
|
36
36
|
*/
|
|
37
37
|
targetRoomId: number | undefined;
|
|
38
|
+
status: TournamentStatus;
|
|
38
39
|
};
|
|
39
40
|
export type GetTournamentGeneralInfoResponse = {
|
|
40
41
|
type: TournamentType;
|
package/dist/index.d.ts
CHANGED