front-back-poker-types 5.0.207 → 5.0.209
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/dist/cjs/index.js +0 -10
- package/dist/cjs/types/api/room.d.ts +7 -2
- package/dist/cjs/types/api/user.d.ts +10 -2
- package/dist/cjs/types/config.d.ts +0 -4
- package/dist/esm/index.js +1 -7
- package/dist/esm/types/api/room.d.ts +7 -2
- package/dist/esm/types/api/user.d.ts +10 -2
- package/dist/esm/types/config.d.ts +0 -4
- package/dist/index.d.ts +18 -9
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -524,7 +524,6 @@ var StartAppParamKey = {
|
|
|
524
524
|
ReferralProgram: 'referral-program',
|
|
525
525
|
};
|
|
526
526
|
|
|
527
|
-
// tg bot
|
|
528
527
|
var DEVELOPMENT_USERNAME_TG_BOT = 'nah_bot';
|
|
529
528
|
var DEVELOPMENT_SHORT_NAME_TG_BOT = 'nah';
|
|
530
529
|
var TEST_USERNAME_TG_BOT = 'huh_bot';
|
|
@@ -533,11 +532,6 @@ var TEST_SHORT_NAME_TG_BOT = 'huh';
|
|
|
533
532
|
var PROD_USERNAME_TG_BOT = '';
|
|
534
533
|
var PROD_SHORT_NAME_TG_BOT = '';
|
|
535
534
|
var CONTACT_US_URL = '';
|
|
536
|
-
var REFERRAL_COMMISSION_PERCENT = 10;
|
|
537
|
-
// ?
|
|
538
|
-
var ROOM_COMMISSION_PERCENT = 10;
|
|
539
|
-
var FREE_CHIPS_AMOUNT = 100;
|
|
540
|
-
var FREE_CHIPS_COOLDOWN_SECONDS = 100;
|
|
541
535
|
|
|
542
536
|
/**
|
|
543
537
|
* Кодирует строку UTF-8 в Base64 (без паддинга, +→-, /→_)
|
|
@@ -563,19 +557,15 @@ exports.ApiErrorCode = ApiErrorCode;
|
|
|
563
557
|
exports.CONTACT_US_URL = CONTACT_US_URL;
|
|
564
558
|
exports.DEVELOPMENT_SHORT_NAME_TG_BOT = DEVELOPMENT_SHORT_NAME_TG_BOT;
|
|
565
559
|
exports.DEVELOPMENT_USERNAME_TG_BOT = DEVELOPMENT_USERNAME_TG_BOT;
|
|
566
|
-
exports.FREE_CHIPS_AMOUNT = FREE_CHIPS_AMOUNT;
|
|
567
|
-
exports.FREE_CHIPS_COOLDOWN_SECONDS = FREE_CHIPS_COOLDOWN_SECONDS;
|
|
568
560
|
exports.FREE_CHIPS_PATHNAME = FREE_CHIPS_PATHNAME;
|
|
569
561
|
exports.NOTIFICATION_WS_PATHNAME = NOTIFICATION_WS_PATHNAME;
|
|
570
562
|
exports.PROD_SHORT_NAME_TG_BOT = PROD_SHORT_NAME_TG_BOT;
|
|
571
563
|
exports.PROD_USERNAME_TG_BOT = PROD_USERNAME_TG_BOT;
|
|
572
564
|
exports.PROMO_CODE_PATHNAME = PROMO_CODE_PATHNAME;
|
|
573
565
|
exports.REFERRALS_PATHNAME = REFERRALS_PATHNAME;
|
|
574
|
-
exports.REFERRAL_COMMISSION_PERCENT = REFERRAL_COMMISSION_PERCENT;
|
|
575
566
|
exports.REGISTRATION_PATHNAME = REGISTRATION_PATHNAME;
|
|
576
567
|
exports.ROOMS_LOGS_PATHNAME = ROOMS_LOGS_PATHNAME;
|
|
577
568
|
exports.ROOMS_PATHNAME = ROOMS_PATHNAME;
|
|
578
|
-
exports.ROOM_COMMISSION_PERCENT = ROOM_COMMISSION_PERCENT;
|
|
579
569
|
exports.ROOM_PATHNAME = ROOM_PATHNAME;
|
|
580
570
|
exports.ROOM_WS_PATHNAME = ROOM_WS_PATHNAME;
|
|
581
571
|
exports.SETTINGS_PATHNAME = SETTINGS_PATHNAME;
|
|
@@ -21,12 +21,16 @@ type Room = {
|
|
|
21
21
|
userInRoom: boolean | undefined;
|
|
22
22
|
};
|
|
23
23
|
export type GetRoomsResponse = Room[];
|
|
24
|
-
export type
|
|
24
|
+
export type Tournament = {
|
|
25
25
|
id: number;
|
|
26
26
|
title: string;
|
|
27
27
|
type: TournamentType;
|
|
28
28
|
status: TournamentStatus;
|
|
29
29
|
prizeType: TournamentPrizeType;
|
|
30
|
+
/**
|
|
31
|
+
* в таймстемпе
|
|
32
|
+
*/
|
|
33
|
+
openRegIn: number;
|
|
30
34
|
/**
|
|
31
35
|
* в таймстемпе
|
|
32
36
|
*/
|
|
@@ -58,5 +62,6 @@ export type GetTournamentsResponse = Array<{
|
|
|
58
62
|
*/
|
|
59
63
|
targetRoomId: number | undefined;
|
|
60
64
|
startingChips: number;
|
|
61
|
-
}
|
|
65
|
+
};
|
|
66
|
+
export type GetTournamentsResponse = Array<Tournament>;
|
|
62
67
|
export {};
|
|
@@ -32,6 +32,10 @@ export type PostUserWithdrawRequest = {
|
|
|
32
32
|
};
|
|
33
33
|
export declare const TRANSACTIONS_PATHNAME = "/transactions";
|
|
34
34
|
export declare const USER_TRANSACTIONS_PATHNAME = "/user/transactions";
|
|
35
|
+
export type GetUserTransactionsRequest = {
|
|
36
|
+
limit: number;
|
|
37
|
+
page: number;
|
|
38
|
+
};
|
|
35
39
|
export declare enum TransactionType {
|
|
36
40
|
/**
|
|
37
41
|
* Вывод денег из системы
|
|
@@ -91,12 +95,16 @@ export type TournamentTransaction = {
|
|
|
91
95
|
type: TransactionType.TournamentBuyIn | TransactionType.TournamentPrize | TransactionType.TournamentCancel;
|
|
92
96
|
tournamentTitle: string;
|
|
93
97
|
};
|
|
98
|
+
export type PromoCodeTransaction = {
|
|
99
|
+
type: TransactionType.PromoCode;
|
|
100
|
+
promoCode: string;
|
|
101
|
+
};
|
|
94
102
|
export type UserTransaction = {
|
|
95
103
|
id: number;
|
|
96
104
|
amount: number;
|
|
97
105
|
createdAt: number;
|
|
98
|
-
} & (WithdrawUserTransaction | RoomUserTransaction | TournamentTransaction | {
|
|
99
|
-
type: Exclude<TransactionType, TransactionType.Withdraw | TransactionType.BuyIn | TransactionType.CashOut | TransactionType.TournamentBuyIn | TransactionType.TournamentPrize | TransactionType.TournamentCancel>;
|
|
106
|
+
} & (WithdrawUserTransaction | RoomUserTransaction | TournamentTransaction | PromoCodeTransaction | {
|
|
107
|
+
type: Exclude<TransactionType, TransactionType.Withdraw | TransactionType.BuyIn | TransactionType.CashOut | TransactionType.TournamentBuyIn | TransactionType.TournamentPrize | TransactionType.TournamentCancel | TransactionType.PromoCode>;
|
|
100
108
|
});
|
|
101
109
|
export type GetUserTransactionsResponse = {
|
|
102
110
|
totalCount: number;
|
|
@@ -5,7 +5,3 @@ export declare const TEST_SHORT_NAME_TG_BOT = "huh";
|
|
|
5
5
|
export declare const PROD_USERNAME_TG_BOT = "";
|
|
6
6
|
export declare const PROD_SHORT_NAME_TG_BOT = "";
|
|
7
7
|
export declare const CONTACT_US_URL = "";
|
|
8
|
-
export declare const REFERRAL_COMMISSION_PERCENT = 10;
|
|
9
|
-
export declare const ROOM_COMMISSION_PERCENT = 10;
|
|
10
|
-
export declare const FREE_CHIPS_AMOUNT = 100;
|
|
11
|
-
export declare const FREE_CHIPS_COOLDOWN_SECONDS = 100;
|
package/dist/esm/index.js
CHANGED
|
@@ -522,7 +522,6 @@ var StartAppParamKey = {
|
|
|
522
522
|
ReferralProgram: 'referral-program',
|
|
523
523
|
};
|
|
524
524
|
|
|
525
|
-
// tg bot
|
|
526
525
|
var DEVELOPMENT_USERNAME_TG_BOT = 'nah_bot';
|
|
527
526
|
var DEVELOPMENT_SHORT_NAME_TG_BOT = 'nah';
|
|
528
527
|
var TEST_USERNAME_TG_BOT = 'huh_bot';
|
|
@@ -531,11 +530,6 @@ var TEST_SHORT_NAME_TG_BOT = 'huh';
|
|
|
531
530
|
var PROD_USERNAME_TG_BOT = '';
|
|
532
531
|
var PROD_SHORT_NAME_TG_BOT = '';
|
|
533
532
|
var CONTACT_US_URL = '';
|
|
534
|
-
var REFERRAL_COMMISSION_PERCENT = 10;
|
|
535
|
-
// ?
|
|
536
|
-
var ROOM_COMMISSION_PERCENT = 10;
|
|
537
|
-
var FREE_CHIPS_AMOUNT = 100;
|
|
538
|
-
var FREE_CHIPS_COOLDOWN_SECONDS = 100;
|
|
539
533
|
|
|
540
534
|
/**
|
|
541
535
|
* Кодирует строку UTF-8 в Base64 (без паддинга, +→-, /→_)
|
|
@@ -556,4 +550,4 @@ function decodeBase64(base64) {
|
|
|
556
550
|
// need timestamp from server
|
|
557
551
|
// (0-6 0-60 seconds)(timestamp / 10000)BufferedBySecret
|
|
558
552
|
|
|
559
|
-
export { AUTH_PATHNAME, ActionType, ApiErrorCode, CONTACT_US_URL, CardRank, CardSuit, CardView, DEVELOPMENT_SHORT_NAME_TG_BOT, DEVELOPMENT_USERNAME_TG_BOT,
|
|
553
|
+
export { AUTH_PATHNAME, ActionType, ApiErrorCode, CONTACT_US_URL, CardRank, CardSuit, CardView, DEVELOPMENT_SHORT_NAME_TG_BOT, DEVELOPMENT_USERNAME_TG_BOT, FREE_CHIPS_PATHNAME, NOTIFICATION_WS_PATHNAME, NotificationType, PROD_SHORT_NAME_TG_BOT, PROD_USERNAME_TG_BOT, PROMO_CODE_PATHNAME, REFERRALS_PATHNAME, REGISTRATION_PATHNAME, ROOMS_LOGS_PATHNAME, ROOMS_PATHNAME, ROOM_PATHNAME, ROOM_WS_PATHNAME, RoomType, RoomWSErrorToFront, SETTINGS_PATHNAME, ShowCardsType, StartAppParamKey, TEST_SHORT_NAME_TG_BOT, TEST_USERNAME_TG_BOT, TOURNAMENT_PATHNAME, TOURNAMENT_REGISTRATION_PATHNAME, TRANSACTIONS_PATHNAME, TournamentInfoType, TournamentPrizeType, TournamentStatus, TournamentType, TransactionType, USER_AUTH_PATHNAME, USER_FREE_CHIPS_PATHNAME, USER_PATHNAME, USER_PROMO_CODE_PATHNAME, USER_REFERRALS_PATHNAME, USER_ROOMS_PATHNAME, USER_SETTINGS_PATHNAME, USER_TRANSACTIONS_PATHNAME, USER_WITHDRAW_PATHNAME, WITHDRAW_PATHNAME, WSMessageTypeToBack, WSMessageTypeToFront, WSNotificationSearchParams, WSRoomSearchParams, WsCloseCode, WsErrorCode, decodeBase64, encodeBase64 };
|
|
@@ -21,12 +21,16 @@ type Room = {
|
|
|
21
21
|
userInRoom: boolean | undefined;
|
|
22
22
|
};
|
|
23
23
|
export type GetRoomsResponse = Room[];
|
|
24
|
-
export type
|
|
24
|
+
export type Tournament = {
|
|
25
25
|
id: number;
|
|
26
26
|
title: string;
|
|
27
27
|
type: TournamentType;
|
|
28
28
|
status: TournamentStatus;
|
|
29
29
|
prizeType: TournamentPrizeType;
|
|
30
|
+
/**
|
|
31
|
+
* в таймстемпе
|
|
32
|
+
*/
|
|
33
|
+
openRegIn: number;
|
|
30
34
|
/**
|
|
31
35
|
* в таймстемпе
|
|
32
36
|
*/
|
|
@@ -58,5 +62,6 @@ export type GetTournamentsResponse = Array<{
|
|
|
58
62
|
*/
|
|
59
63
|
targetRoomId: number | undefined;
|
|
60
64
|
startingChips: number;
|
|
61
|
-
}
|
|
65
|
+
};
|
|
66
|
+
export type GetTournamentsResponse = Array<Tournament>;
|
|
62
67
|
export {};
|
|
@@ -32,6 +32,10 @@ export type PostUserWithdrawRequest = {
|
|
|
32
32
|
};
|
|
33
33
|
export declare const TRANSACTIONS_PATHNAME = "/transactions";
|
|
34
34
|
export declare const USER_TRANSACTIONS_PATHNAME = "/user/transactions";
|
|
35
|
+
export type GetUserTransactionsRequest = {
|
|
36
|
+
limit: number;
|
|
37
|
+
page: number;
|
|
38
|
+
};
|
|
35
39
|
export declare enum TransactionType {
|
|
36
40
|
/**
|
|
37
41
|
* Вывод денег из системы
|
|
@@ -91,12 +95,16 @@ export type TournamentTransaction = {
|
|
|
91
95
|
type: TransactionType.TournamentBuyIn | TransactionType.TournamentPrize | TransactionType.TournamentCancel;
|
|
92
96
|
tournamentTitle: string;
|
|
93
97
|
};
|
|
98
|
+
export type PromoCodeTransaction = {
|
|
99
|
+
type: TransactionType.PromoCode;
|
|
100
|
+
promoCode: string;
|
|
101
|
+
};
|
|
94
102
|
export type UserTransaction = {
|
|
95
103
|
id: number;
|
|
96
104
|
amount: number;
|
|
97
105
|
createdAt: number;
|
|
98
|
-
} & (WithdrawUserTransaction | RoomUserTransaction | TournamentTransaction | {
|
|
99
|
-
type: Exclude<TransactionType, TransactionType.Withdraw | TransactionType.BuyIn | TransactionType.CashOut | TransactionType.TournamentBuyIn | TransactionType.TournamentPrize | TransactionType.TournamentCancel>;
|
|
106
|
+
} & (WithdrawUserTransaction | RoomUserTransaction | TournamentTransaction | PromoCodeTransaction | {
|
|
107
|
+
type: Exclude<TransactionType, TransactionType.Withdraw | TransactionType.BuyIn | TransactionType.CashOut | TransactionType.TournamentBuyIn | TransactionType.TournamentPrize | TransactionType.TournamentCancel | TransactionType.PromoCode>;
|
|
100
108
|
});
|
|
101
109
|
export type GetUserTransactionsResponse = {
|
|
102
110
|
totalCount: number;
|
|
@@ -5,7 +5,3 @@ export declare const TEST_SHORT_NAME_TG_BOT = "huh";
|
|
|
5
5
|
export declare const PROD_USERNAME_TG_BOT = "";
|
|
6
6
|
export declare const PROD_SHORT_NAME_TG_BOT = "";
|
|
7
7
|
export declare const CONTACT_US_URL = "";
|
|
8
|
-
export declare const REFERRAL_COMMISSION_PERCENT = 10;
|
|
9
|
-
export declare const ROOM_COMMISSION_PERCENT = 10;
|
|
10
|
-
export declare const FREE_CHIPS_AMOUNT = 100;
|
|
11
|
-
export declare const FREE_CHIPS_COOLDOWN_SECONDS = 100;
|
package/dist/index.d.ts
CHANGED
|
@@ -75,6 +75,10 @@ type PostUserWithdrawRequest = {
|
|
|
75
75
|
};
|
|
76
76
|
declare const TRANSACTIONS_PATHNAME = "/transactions";
|
|
77
77
|
declare const USER_TRANSACTIONS_PATHNAME = "/user/transactions";
|
|
78
|
+
type GetUserTransactionsRequest = {
|
|
79
|
+
limit: number;
|
|
80
|
+
page: number;
|
|
81
|
+
};
|
|
78
82
|
declare enum TransactionType {
|
|
79
83
|
/**
|
|
80
84
|
* Вывод денег из системы
|
|
@@ -134,12 +138,16 @@ type TournamentTransaction = {
|
|
|
134
138
|
type: TransactionType.TournamentBuyIn | TransactionType.TournamentPrize | TransactionType.TournamentCancel;
|
|
135
139
|
tournamentTitle: string;
|
|
136
140
|
};
|
|
141
|
+
type PromoCodeTransaction = {
|
|
142
|
+
type: TransactionType.PromoCode;
|
|
143
|
+
promoCode: string;
|
|
144
|
+
};
|
|
137
145
|
type UserTransaction = {
|
|
138
146
|
id: number;
|
|
139
147
|
amount: number;
|
|
140
148
|
createdAt: number;
|
|
141
|
-
} & (WithdrawUserTransaction | RoomUserTransaction | TournamentTransaction | {
|
|
142
|
-
type: Exclude<TransactionType, TransactionType.Withdraw | TransactionType.BuyIn | TransactionType.CashOut | TransactionType.TournamentBuyIn | TransactionType.TournamentPrize | TransactionType.TournamentCancel>;
|
|
149
|
+
} & (WithdrawUserTransaction | RoomUserTransaction | TournamentTransaction | PromoCodeTransaction | {
|
|
150
|
+
type: Exclude<TransactionType, TransactionType.Withdraw | TransactionType.BuyIn | TransactionType.CashOut | TransactionType.TournamentBuyIn | TransactionType.TournamentPrize | TransactionType.TournamentCancel | TransactionType.PromoCode>;
|
|
143
151
|
});
|
|
144
152
|
type GetUserTransactionsResponse = {
|
|
145
153
|
totalCount: number;
|
|
@@ -233,12 +241,16 @@ type Room = {
|
|
|
233
241
|
userInRoom: boolean | undefined;
|
|
234
242
|
};
|
|
235
243
|
type GetRoomsResponse = Room[];
|
|
236
|
-
type
|
|
244
|
+
type Tournament = {
|
|
237
245
|
id: number;
|
|
238
246
|
title: string;
|
|
239
247
|
type: TournamentType;
|
|
240
248
|
status: TournamentStatus;
|
|
241
249
|
prizeType: TournamentPrizeType;
|
|
250
|
+
/**
|
|
251
|
+
* в таймстемпе
|
|
252
|
+
*/
|
|
253
|
+
openRegIn: number;
|
|
242
254
|
/**
|
|
243
255
|
* в таймстемпе
|
|
244
256
|
*/
|
|
@@ -270,7 +282,8 @@ type GetTournamentsResponse = Array<{
|
|
|
270
282
|
*/
|
|
271
283
|
targetRoomId: number | undefined;
|
|
272
284
|
startingChips: number;
|
|
273
|
-
}
|
|
285
|
+
};
|
|
286
|
+
type GetTournamentsResponse = Array<Tournament>;
|
|
274
287
|
|
|
275
288
|
declare const TOURNAMENT_PATHNAME = "/tournament";
|
|
276
289
|
declare const REGISTRATION_PATHNAME = "/registration";
|
|
@@ -1262,10 +1275,6 @@ declare const TEST_SHORT_NAME_TG_BOT = "huh";
|
|
|
1262
1275
|
declare const PROD_USERNAME_TG_BOT = "";
|
|
1263
1276
|
declare const PROD_SHORT_NAME_TG_BOT = "";
|
|
1264
1277
|
declare const CONTACT_US_URL = "";
|
|
1265
|
-
declare const REFERRAL_COMMISSION_PERCENT = 10;
|
|
1266
|
-
declare const ROOM_COMMISSION_PERCENT = 10;
|
|
1267
|
-
declare const FREE_CHIPS_AMOUNT = 100;
|
|
1268
|
-
declare const FREE_CHIPS_COOLDOWN_SECONDS = 100;
|
|
1269
1278
|
|
|
1270
1279
|
/**
|
|
1271
1280
|
* Кодирует строку UTF-8 в Base64 (без паддинга, +→-, /→_)
|
|
@@ -1276,4 +1285,4 @@ declare function encodeBase64(str: string): string;
|
|
|
1276
1285
|
*/
|
|
1277
1286
|
declare function decodeBase64(base64: string): string;
|
|
1278
1287
|
|
|
1279
|
-
export { AUTH_PATHNAME, ActionMessageContentToFront, ActionType, AmountWSMessageContent, ApiErrorCode, BalanceUpdateNotification, CONTACT_US_URL, CallWSMessageToBack, CallWSMessageToFront, Card, CardRank, CardSuit, CardView, Cards, ChangeRoomWSMessageToFront, ChatWSMessageToBack, ChatWSMessageToFront, ChipsUpdateWSMessageToBack, ChipsUpdateWSMessageToFront, DEVELOPMENT_SHORT_NAME_TG_BOT, DEVELOPMENT_USERNAME_TG_BOT, EmojiWSMessageToBack, EmojiWSMessageToFront, EndGameWSMessageToFront, ErrorWSMessageToFront, ExtendTimeWSMessageToBack, ExtendTimeWSMessageToFront,
|
|
1288
|
+
export { AUTH_PATHNAME, ActionMessageContentToFront, ActionType, AmountWSMessageContent, ApiErrorCode, BalanceUpdateNotification, CONTACT_US_URL, CallWSMessageToBack, CallWSMessageToFront, Card, CardRank, CardSuit, CardView, Cards, ChangeRoomWSMessageToFront, ChatWSMessageToBack, ChatWSMessageToFront, ChipsUpdateWSMessageToBack, ChipsUpdateWSMessageToFront, DEVELOPMENT_SHORT_NAME_TG_BOT, DEVELOPMENT_USERNAME_TG_BOT, EmojiWSMessageToBack, EmojiWSMessageToFront, EndGameWSMessageToFront, ErrorWSMessageToFront, ExtendTimeWSMessageToBack, ExtendTimeWSMessageToFront, FREE_CHIPS_PATHNAME, FoldWSMessageToBack, FoldWSMessageToFront, GameNotStartWSMessageToFront, GameStartUser, GameStartWSMessageToFront, GetFreeChipsDataResponse, GetReferralsResponse, GetRoomsLogsQuery, GetRoomsLogsResponse, GetRoomsQuery, GetRoomsResponse, GetSettingsResponse, GetTournamentBlindsInfoResponse, GetTournamentGeneralInfoResponse, GetTournamentInfoQuery, GetTournamentInfoResponse, GetTournamentMainInfoResponse, GetTournamentPlayersInfoResponse, GetTournamentPrizePoolInfoResponse, GetTournamentTablesInfoResponse, GetTournamentsResponse, GetUpWSMessageToBack, GetUpWSMessageToFront, GetUserRoomIdsResponse, GetUserTransactionsRequest, GetUserTransactionsResponse, Keys, KickedByTimeWSMessageToFront, NOTIFICATION_WS_PATHNAME, NewRoundWSMessageToFront, Notification, NotificationType, Nullable, PROD_SHORT_NAME_TG_BOT, PROD_USERNAME_TG_BOT, PROMO_CODE_PATHNAME, PlainObject, PostActivePromoCodeRequest, PostActivePromoCodeResponse, PostFreeChipsResponse, PostRoomLogRequest, PostSettingsRequest, PostTournamentRegistrationRequest, PostTournamentRegistrationResponse, PostUserWithdrawRequest, PromoCodeTransaction, REFERRALS_PATHNAME, REGISTRATION_PATHNAME, ROOMS_LOGS_PATHNAME, ROOMS_PATHNAME, ROOM_PATHNAME, ROOM_WS_PATHNAME, RaiseWSMessageToBack, RaiseWSMessageToFront, RoomLog, RoomLogSource, RoomType, RoomUserTransaction, RoomWSErrorToFront, SETTINGS_PATHNAME, ShowCardsType, ShowCardsWSMessageToBack, ShowCardsWSMessageToFront, ShowdownCardsWSMessageToFront, SitDownWSMessageToBack, SitDownWSMessageToFront, SitOutWSMessageToBack, SitOutWSMessageToFront, SitWSMessageToBack, SitWSMessageToFront, StartAppParamKey, StartExtraTimeWSMessageToFront, TEST_SHORT_NAME_TG_BOT, TEST_USERNAME_TG_BOT, TOURNAMENT_PATHNAME, TOURNAMENT_REGISTRATION_PATHNAME, TRANSACTIONS_PATHNAME, TableDataWSMessageToBack, TableDataWSMessageToFront, Tournament, TournamentData, TournamentInfoType, TournamentPrizeType, TournamentResultWSMessageToFront, TournamentStartNotification, TournamentStatus, TournamentTransaction, TournamentType, TransactionType, USER_AUTH_PATHNAME, USER_FREE_CHIPS_PATHNAME, USER_PATHNAME, USER_PROMO_CODE_PATHNAME, USER_REFERRALS_PATHNAME, USER_ROOMS_PATHNAME, USER_SETTINGS_PATHNAME, USER_TRANSACTIONS_PATHNAME, USER_WITHDRAW_PATHNAME, User, UserAuthRequest, UserAuthResponse, UserAuthType, UserDataNotification, UserId, UserTransaction, UsersOnlineNotification, Values, WITHDRAW_PATHNAME, WSMessageToBack, WSMessageToFront, WSMessageTypeToBack, WSMessageTypeToFront, WSNotificationSearchParams, WSRoomSearchParams, Winners, WithdrawUserTransaction, WsCloseCode, WsErrorCode, decodeBase64, encodeBase64 };
|