@smartico/public-api 0.0.355 → 0.0.357
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/README.md +33 -8
- package/dist/SmarticoAPI.d.ts +1 -1
- package/dist/WSAPI/WSAPI.d.ts +27 -56
- package/dist/WSAPI/WSAPITypes.d.ts +515 -32
- package/dist/index.d.ts +0 -1
- package/dist/index.js +92 -231
- package/dist/index.js.map +1 -1
- package/dist/index.modern.mjs +27 -159
- package/dist/index.modern.mjs.map +1 -1
- package/docs/api/README.md +27 -0
- package/docs/api/classes/WSAPI.md +37 -57
- package/docs/api/enums/GPRoundStatus.md +43 -0
- package/docs/api/enums/GamePickMarketType.md +19 -0
- package/docs/api/enums/GamePickResolutionType.md +35 -0
- package/docs/api/enums/GamePickScoreType.md +19 -0
- package/docs/api/enums/GamePickSportType.md +375 -0
- package/docs/api/enums/GameRoundOrderType.md +35 -0
- package/docs/api/enums/PointChangeSourceType.md +6 -0
- package/docs/api/interfaces/AchRelatedGame-1.md +1 -1
- package/docs/api/interfaces/BonusTemplateMetaMap.md +1 -1
- package/docs/api/interfaces/GamePickBoardUser.md +75 -0
- package/docs/api/interfaces/GamePickEvent.md +121 -0
- package/docs/api/interfaces/GamePickEventMeta.md +181 -0
- package/docs/api/interfaces/GamePickGameInfo.md +27 -0
- package/docs/api/interfaces/GamePickRequestParams.md +41 -0
- package/docs/api/interfaces/GamePickRound.md +385 -0
- package/docs/api/interfaces/GamePickRoundBase.md +235 -0
- package/docs/api/interfaces/GamePickRoundBoard.md +361 -0
- package/docs/api/interfaces/GamePickRoundPublicMeta.md +103 -0
- package/docs/api/interfaces/GamePickRoundRequestParams.md +65 -0
- package/docs/api/interfaces/GamePickUserInfo.md +107 -0
- package/docs/api/interfaces/GamesApiResponse.md +33 -0
- package/docs/api/interfaces/QuizEventMeta.md +41 -0
- package/docs/api/interfaces/TInboxMessageBody.md +1 -1
- package/docs/api/interfaces/TLevel.md +1 -1
- package/docs/api/interfaces/TLevelCurrent.md +1 -1
- package/docs/api/interfaces/TMiniGamePrize.md +1 -1
- package/docs/api/interfaces/TMiniGameTemplate.md +2 -2
- package/docs/api/interfaces/TMissionOrBadge.md +2 -2
- package/docs/api/interfaces/TRaffle.md +2 -2
- package/docs/api/interfaces/TRaffleDraw.md +14 -2
- package/docs/api/interfaces/TRaffleDrawRun.md +20 -0
- package/docs/api/interfaces/TRafflePrize.md +1 -1
- package/docs/api/interfaces/TStoreItem.md +3 -3
- package/docs/api/interfaces/TTournament.md +4 -4
- package/docs/api/interfaces/TTournamentDetailed.md +4 -4
- package/docs/api/interfaces/TUICustomSection.md +1 -1
- package/package.json +6 -6
- package/src/SmarticoAPI.ts +1 -1
- package/src/WSAPI/WSAPI.ts +27 -63
- package/src/WSAPI/WSAPITypes.ts +525 -32
- package/src/index.ts +1 -2
- package/dist/GamePick/GPTypes.d.ts +0 -268
- package/dist/GamePick/index.d.ts +0 -1
- package/src/GamePick/GPTypes.ts +0 -277
- package/src/GamePick/index.ts +0 -1
package/dist/index.modern.mjs
CHANGED
|
@@ -3031,7 +3031,7 @@ class WSAPI {
|
|
|
3031
3031
|
*
|
|
3032
3032
|
* **Example**:
|
|
3033
3033
|
* ```
|
|
3034
|
-
* _smartico.api.
|
|
3034
|
+
* _smartico.api.gamePickGetActiveRounds({
|
|
3035
3035
|
* saw_template_id: 1083,
|
|
3036
3036
|
* }).then((result) => {
|
|
3037
3037
|
* console.log(result.data); // GamePickRound[]
|
|
@@ -3043,7 +3043,7 @@ class WSAPI {
|
|
|
3043
3043
|
*
|
|
3044
3044
|
* **Visitor mode: not supported**
|
|
3045
3045
|
*/
|
|
3046
|
-
async
|
|
3046
|
+
async gamePickGetActiveRounds(props) {
|
|
3047
3047
|
if (!props.saw_template_id) {
|
|
3048
3048
|
throw new Error('saw_template_id is required');
|
|
3049
3049
|
}
|
|
@@ -3058,12 +3058,12 @@ class WSAPI {
|
|
|
3058
3058
|
*
|
|
3059
3059
|
* **Response** `GamesApiResponse<GamePickRound>`:
|
|
3060
3060
|
* - `errCode` - 0 on success
|
|
3061
|
-
* - `data` - Single round object with the same structure as in `
|
|
3061
|
+
* - `data` - Single round object with the same structure as in `gamePickGetActiveRounds`,
|
|
3062
3062
|
* including `events[]` with full event details, user selections, and resolution info
|
|
3063
3063
|
*
|
|
3064
3064
|
* **Example**:
|
|
3065
3065
|
* ```
|
|
3066
|
-
* _smartico.api.
|
|
3066
|
+
* _smartico.api.gamePickGetActiveRound({
|
|
3067
3067
|
* saw_template_id: 1083,
|
|
3068
3068
|
* round_id: 31652,
|
|
3069
3069
|
* }).then((result) => {
|
|
@@ -3074,7 +3074,7 @@ class WSAPI {
|
|
|
3074
3074
|
*
|
|
3075
3075
|
* **Visitor mode: not supported**
|
|
3076
3076
|
*/
|
|
3077
|
-
async
|
|
3077
|
+
async gamePickGetActiveRound(props) {
|
|
3078
3078
|
if (!props.saw_template_id) {
|
|
3079
3079
|
throw new Error('saw_template_id is required');
|
|
3080
3080
|
}
|
|
@@ -3092,12 +3092,12 @@ class WSAPI {
|
|
|
3092
3092
|
* **Response** `GamesApiResponse<GamePickRound[]>`:
|
|
3093
3093
|
* - `errCode` - 0 on success
|
|
3094
3094
|
* - `data` - Array of rounds ordered by `round_row_id` descending (newest first).
|
|
3095
|
-
* Each round has the same structure as in `
|
|
3095
|
+
* Each round has the same structure as in `gamePickGetActiveRounds`, including resolved events
|
|
3096
3096
|
* with `resolution_type_id` (0=None, 2=Lost, 3=PartialWin, 4=FullWin) and `resolution_score`
|
|
3097
3097
|
*
|
|
3098
3098
|
* **Example**:
|
|
3099
3099
|
* ```
|
|
3100
|
-
* _smartico.api.
|
|
3100
|
+
* _smartico.api.gamePickGetHistory({
|
|
3101
3101
|
* saw_template_id: 1083,
|
|
3102
3102
|
* }).then((result) => {
|
|
3103
3103
|
* result.data.forEach(round => {
|
|
@@ -3108,7 +3108,7 @@ class WSAPI {
|
|
|
3108
3108
|
*
|
|
3109
3109
|
* **Visitor mode: not supported**
|
|
3110
3110
|
*/
|
|
3111
|
-
async
|
|
3111
|
+
async gamePickGetHistory(props) {
|
|
3112
3112
|
if (!props.saw_template_id) {
|
|
3113
3113
|
throw new Error('saw_template_id is required');
|
|
3114
3114
|
}
|
|
@@ -3135,7 +3135,7 @@ class WSAPI {
|
|
|
3135
3135
|
*
|
|
3136
3136
|
* **Example**:
|
|
3137
3137
|
* ```
|
|
3138
|
-
* _smartico.api.
|
|
3138
|
+
* _smartico.api.gamePickGetBoard({
|
|
3139
3139
|
* saw_template_id: 1083,
|
|
3140
3140
|
* round_id: 31652,
|
|
3141
3141
|
* }).then((result) => {
|
|
@@ -3146,7 +3146,7 @@ class WSAPI {
|
|
|
3146
3146
|
*
|
|
3147
3147
|
* **Visitor mode: not supported**
|
|
3148
3148
|
*/
|
|
3149
|
-
async
|
|
3149
|
+
async gamePickGetBoard(props) {
|
|
3150
3150
|
if (!props.saw_template_id) {
|
|
3151
3151
|
throw new Error('saw_template_id is required');
|
|
3152
3152
|
}
|
|
@@ -3163,7 +3163,7 @@ class WSAPI {
|
|
|
3163
3163
|
* Predictions can be edited until each match starts (if `allow_edit_answers` is enabled on the round).
|
|
3164
3164
|
*
|
|
3165
3165
|
* @param props.saw_template_id - The ID of the MatchX game template
|
|
3166
|
-
* @param props.round - Round object containing `round_id` and `events[]`. Typically obtained from `
|
|
3166
|
+
* @param props.round - Round object containing `round_id` and `events[]`. Typically obtained from `gamePickGetActiveRound`
|
|
3167
3167
|
* and modified with user predictions. Each event needs: `gp_event_id`, `team1_user_selection`, `team2_user_selection`
|
|
3168
3168
|
*
|
|
3169
3169
|
* **Response** `GamesApiResponse<GamePickRound>`:
|
|
@@ -3173,7 +3173,7 @@ class WSAPI {
|
|
|
3173
3173
|
*
|
|
3174
3174
|
* **Example**:
|
|
3175
3175
|
* ```
|
|
3176
|
-
* _smartico.api.
|
|
3176
|
+
* _smartico.api.gamePickGetActiveRound({
|
|
3177
3177
|
* saw_template_id: 1190,
|
|
3178
3178
|
* round_id: 38665,
|
|
3179
3179
|
* }).then((roundData) => {
|
|
@@ -3183,7 +3183,7 @@ class WSAPI {
|
|
|
3183
3183
|
* team1_user_selection: 1,
|
|
3184
3184
|
* team2_user_selection: 0,
|
|
3185
3185
|
* }));
|
|
3186
|
-
* _smartico.api.
|
|
3186
|
+
* _smartico.api.gamePickSubmitSelection({
|
|
3187
3187
|
* saw_template_id: 1190,
|
|
3188
3188
|
* round: round,
|
|
3189
3189
|
* }).then((result) => {
|
|
@@ -3194,7 +3194,7 @@ class WSAPI {
|
|
|
3194
3194
|
*
|
|
3195
3195
|
* **Visitor mode: not supported**
|
|
3196
3196
|
*/
|
|
3197
|
-
async
|
|
3197
|
+
async gamePickSubmitSelection(props) {
|
|
3198
3198
|
var _props$round;
|
|
3199
3199
|
if (!props.saw_template_id) {
|
|
3200
3200
|
throw new Error('saw_template_id is required');
|
|
@@ -3212,7 +3212,7 @@ class WSAPI {
|
|
|
3212
3212
|
* Answers can be edited until each match starts (if `allow_edit_answers` is enabled on the round).
|
|
3213
3213
|
*
|
|
3214
3214
|
* @param props.saw_template_id - The ID of the Quiz game template
|
|
3215
|
-
* @param props.round - Round object containing `round_id` and `events[]`. Typically obtained from `
|
|
3215
|
+
* @param props.round - Round object containing `round_id` and `events[]`. Typically obtained from `gamePickGetActiveRound`
|
|
3216
3216
|
* and modified with user answers. Each event needs: `gp_event_id`, `user_selection`
|
|
3217
3217
|
*
|
|
3218
3218
|
* **Response** `GamesApiResponse<GamePickRound>`:
|
|
@@ -3222,7 +3222,7 @@ class WSAPI {
|
|
|
3222
3222
|
*
|
|
3223
3223
|
* **Example**:
|
|
3224
3224
|
* ```
|
|
3225
|
-
* _smartico.api.
|
|
3225
|
+
* _smartico.api.gamePickGetActiveRound({
|
|
3226
3226
|
* saw_template_id: 1183,
|
|
3227
3227
|
* round_id: 37974,
|
|
3228
3228
|
* }).then((roundData) => {
|
|
@@ -3231,7 +3231,7 @@ class WSAPI {
|
|
|
3231
3231
|
* gp_event_id: e.gp_event_id,
|
|
3232
3232
|
* user_selection: 'x',
|
|
3233
3233
|
* }));
|
|
3234
|
-
* _smartico.api.
|
|
3234
|
+
* _smartico.api.gamePickSubmitSelectionQuiz({
|
|
3235
3235
|
* saw_template_id: 1183,
|
|
3236
3236
|
* round: round,
|
|
3237
3237
|
* }).then((result) => {
|
|
@@ -3242,7 +3242,7 @@ class WSAPI {
|
|
|
3242
3242
|
*
|
|
3243
3243
|
* **Visitor mode: not supported**
|
|
3244
3244
|
*/
|
|
3245
|
-
async
|
|
3245
|
+
async gamePickSubmitSelectionQuiz(props) {
|
|
3246
3246
|
var _props$round2;
|
|
3247
3247
|
if (!props.saw_template_id) {
|
|
3248
3248
|
throw new Error('saw_template_id is required');
|
|
@@ -3274,7 +3274,7 @@ class WSAPI {
|
|
|
3274
3274
|
*
|
|
3275
3275
|
* **Example**:
|
|
3276
3276
|
* ```
|
|
3277
|
-
* _smartico.api.
|
|
3277
|
+
* _smartico.api.gamePickGetUserInfo({
|
|
3278
3278
|
* saw_template_id: 1083,
|
|
3279
3279
|
* }).then((result) => {
|
|
3280
3280
|
* console.log(result.data.public_username, result.data.ach_points_balance);
|
|
@@ -3283,7 +3283,7 @@ class WSAPI {
|
|
|
3283
3283
|
*
|
|
3284
3284
|
* **Visitor mode: not supported**
|
|
3285
3285
|
*/
|
|
3286
|
-
async
|
|
3286
|
+
async gamePickGetUserInfo(props) {
|
|
3287
3287
|
if (!props.saw_template_id) {
|
|
3288
3288
|
throw new Error('saw_template_id is required');
|
|
3289
3289
|
}
|
|
@@ -3312,7 +3312,7 @@ class WSAPI {
|
|
|
3312
3312
|
*
|
|
3313
3313
|
* **Example**:
|
|
3314
3314
|
* ```
|
|
3315
|
-
* _smartico.api.
|
|
3315
|
+
* _smartico.api.gamePickGetGameInfo({
|
|
3316
3316
|
* saw_template_id: 1189,
|
|
3317
3317
|
* }).then((result) => {
|
|
3318
3318
|
* console.log(result.data.sawTemplate.saw_template_ui_definition.name);
|
|
@@ -3323,49 +3323,16 @@ class WSAPI {
|
|
|
3323
3323
|
*
|
|
3324
3324
|
* **Visitor mode: not supported**
|
|
3325
3325
|
*/
|
|
3326
|
-
async
|
|
3326
|
+
async gamePickGetGameInfo(props) {
|
|
3327
3327
|
if (!props.saw_template_id) {
|
|
3328
3328
|
throw new Error('saw_template_id is required');
|
|
3329
3329
|
}
|
|
3330
3330
|
return this.api.gpGetGameInfo(props.saw_template_id);
|
|
3331
3331
|
}
|
|
3332
|
-
/**
|
|
3333
|
-
* Returns translations for the MatchX/Quiz game UI.
|
|
3334
|
-
* Translations are returned as a key-value map for the Gamification and RetentionGames areas,
|
|
3335
|
-
* resolved to the current user's language.
|
|
3336
|
-
*
|
|
3337
|
-
* @param props.saw_template_id - The ID of the MatchX or Quiz game template
|
|
3338
|
-
*
|
|
3339
|
-
* **Response** `GamesApiResponse<any>`:
|
|
3340
|
-
* - `errCode` - 0 on success
|
|
3341
|
-
* - `data`:
|
|
3342
|
-
* - `translations` - Key-value map of translation strings (e.g. `rgSubmitSelection`, `rgLeaderboardTitle`, `quizConfirmAnswer`, etc.)
|
|
3343
|
-
* - `hash_code` - Hash for cache invalidation
|
|
3344
|
-
* - `lang_code` - Resolved language code (e.g. 'EN')
|
|
3345
|
-
*
|
|
3346
|
-
* **Example**:
|
|
3347
|
-
* ```
|
|
3348
|
-
* _smartico.api.getGamePickTranslations({
|
|
3349
|
-
* saw_template_id: 1083,
|
|
3350
|
-
* }).then((result) => {
|
|
3351
|
-
* const tr = result.data.translations;
|
|
3352
|
-
* console.log(tr.rgSubmitSelection); // "Submit selection"
|
|
3353
|
-
* console.log(tr.rgLeaderboardTitle); // "Leaderboard"
|
|
3354
|
-
* });
|
|
3355
|
-
* ```
|
|
3356
|
-
*
|
|
3357
|
-
* **Visitor mode: not supported**
|
|
3358
|
-
*/
|
|
3359
|
-
async getGamePickTranslations(props) {
|
|
3360
|
-
if (!props.saw_template_id) {
|
|
3361
|
-
throw new Error('saw_template_id is required');
|
|
3362
|
-
}
|
|
3363
|
-
return this.api.gpGetTranslations(props.saw_template_id);
|
|
3364
|
-
}
|
|
3365
3332
|
/**
|
|
3366
3333
|
* Returns round data with events and picks for a specific user (identified by their internal user ID).
|
|
3367
3334
|
* Useful for viewing another user's predictions from the leaderboard.
|
|
3368
|
-
* The `int_user_id` can be obtained from the `
|
|
3335
|
+
* The `int_user_id` can be obtained from the `gamePickGetBoard` response (`users[].int_user_id`).
|
|
3369
3336
|
*
|
|
3370
3337
|
* @param props.saw_template_id - The ID of the MatchX or Quiz game template
|
|
3371
3338
|
* @param props.round_id - The round to get info for
|
|
@@ -3374,13 +3341,13 @@ class WSAPI {
|
|
|
3374
3341
|
* **Response** `GamesApiResponse<GamePickRound>`:
|
|
3375
3342
|
* - `errCode` - 0 on success
|
|
3376
3343
|
* - `data` - Round object with the target user's selections.
|
|
3377
|
-
* Same structure as `
|
|
3344
|
+
* Same structure as `gamePickGetActiveRound`, but `user_selection`/`team1_user_selection`/`team2_user_selection`
|
|
3378
3345
|
* fields on events reflect the specified user's picks instead of the current user's.
|
|
3379
3346
|
* Events also include `resolution_type_id` (0=None, 2=Lost, 3=PartialWin, 4=FullWin) showing how each prediction was scored
|
|
3380
3347
|
*
|
|
3381
3348
|
* **Example**:
|
|
3382
3349
|
* ```
|
|
3383
|
-
* _smartico.api.
|
|
3350
|
+
* _smartico.api.gamePickGetRoundInfoForUser({
|
|
3384
3351
|
* saw_template_id: 1083,
|
|
3385
3352
|
* round_id: 31652,
|
|
3386
3353
|
* int_user_id: 65653810,
|
|
@@ -3393,7 +3360,7 @@ class WSAPI {
|
|
|
3393
3360
|
*
|
|
3394
3361
|
* **Visitor mode: not supported**
|
|
3395
3362
|
*/
|
|
3396
|
-
async
|
|
3363
|
+
async gamePickGetRoundInfoForUser(props) {
|
|
3397
3364
|
if (!props.saw_template_id) {
|
|
3398
3365
|
throw new Error('saw_template_id is required');
|
|
3399
3366
|
}
|
|
@@ -5365,104 +5332,5 @@ var JackpotType;
|
|
|
5365
5332
|
JackpotType[JackpotType["Personal"] = 2] = "Personal";
|
|
5366
5333
|
})(JackpotType || (JackpotType = {}));
|
|
5367
5334
|
|
|
5368
|
-
|
|
5369
|
-
(function (GamePickMarketType) {
|
|
5370
|
-
GamePickMarketType[GamePickMarketType["Goals"] = 1] = "Goals";
|
|
5371
|
-
GamePickMarketType[GamePickMarketType["Winner"] = 2] = "Winner";
|
|
5372
|
-
})(GamePickMarketType || (GamePickMarketType = {}));
|
|
5373
|
-
var GamePickResolutionType;
|
|
5374
|
-
(function (GamePickResolutionType) {
|
|
5375
|
-
GamePickResolutionType[GamePickResolutionType["None"] = 0] = "None";
|
|
5376
|
-
GamePickResolutionType[GamePickResolutionType["Lost"] = 2] = "Lost";
|
|
5377
|
-
GamePickResolutionType[GamePickResolutionType["PartialWin"] = 3] = "PartialWin";
|
|
5378
|
-
GamePickResolutionType[GamePickResolutionType["FullWin"] = 4] = "FullWin";
|
|
5379
|
-
})(GamePickResolutionType || (GamePickResolutionType = {}));
|
|
5380
|
-
var GPRoundStatus;
|
|
5381
|
-
(function (GPRoundStatus) {
|
|
5382
|
-
GPRoundStatus[GPRoundStatus["Other"] = -1] = "Other";
|
|
5383
|
-
GPRoundStatus[GPRoundStatus["NoEventsDefined"] = 1] = "NoEventsDefined";
|
|
5384
|
-
GPRoundStatus[GPRoundStatus["NoMoreBetsAllowed"] = 2] = "NoMoreBetsAllowed";
|
|
5385
|
-
GPRoundStatus[GPRoundStatus["AllEventsResolved_ButNotRound"] = 3] = "AllEventsResolved_ButNotRound";
|
|
5386
|
-
GPRoundStatus[GPRoundStatus["RoundResolved"] = 4] = "RoundResolved";
|
|
5387
|
-
})(GPRoundStatus || (GPRoundStatus = {}));
|
|
5388
|
-
var GamePickScoreType;
|
|
5389
|
-
(function (GamePickScoreType) {
|
|
5390
|
-
GamePickScoreType[GamePickScoreType["ExactScore"] = 1] = "ExactScore";
|
|
5391
|
-
GamePickScoreType[GamePickScoreType["PointsDifference"] = 2] = "PointsDifference";
|
|
5392
|
-
})(GamePickScoreType || (GamePickScoreType = {}));
|
|
5393
|
-
var GamePickSportType;
|
|
5394
|
-
(function (GamePickSportType) {
|
|
5395
|
-
GamePickSportType[GamePickSportType["Golf"] = 9] = "Golf";
|
|
5396
|
-
GamePickSportType[GamePickSportType["Cycling"] = 17] = "Cycling";
|
|
5397
|
-
GamePickSportType[GamePickSportType["Specials"] = 18] = "Specials";
|
|
5398
|
-
GamePickSportType[GamePickSportType["TouringCarRacing"] = 188] = "TouringCarRacing";
|
|
5399
|
-
GamePickSportType[GamePickSportType["StockCarRacing"] = 191] = "StockCarRacing";
|
|
5400
|
-
GamePickSportType[GamePickSportType["IndyRacing"] = 129] = "IndyRacing";
|
|
5401
|
-
GamePickSportType[GamePickSportType["Biathlon"] = 44] = "Biathlon";
|
|
5402
|
-
GamePickSportType[GamePickSportType["Speedway"] = 131] = "Speedway";
|
|
5403
|
-
GamePickSportType[GamePickSportType["Motorsport"] = 11] = "Motorsport";
|
|
5404
|
-
GamePickSportType[GamePickSportType["AlpineSkiing"] = 43] = "AlpineSkiing";
|
|
5405
|
-
GamePickSportType[GamePickSportType["SkiJumping"] = 48] = "SkiJumping";
|
|
5406
|
-
GamePickSportType[GamePickSportType["Lacrosse"] = 39] = "Lacrosse";
|
|
5407
|
-
GamePickSportType[GamePickSportType["CrossCountry"] = 46] = "CrossCountry";
|
|
5408
|
-
GamePickSportType[GamePickSportType["NordicCombined"] = 47] = "NordicCombined";
|
|
5409
|
-
GamePickSportType[GamePickSportType["Chess"] = 33] = "Chess";
|
|
5410
|
-
GamePickSportType[GamePickSportType["Athletics"] = 36] = "Athletics";
|
|
5411
|
-
GamePickSportType[GamePickSportType["ESportOverwatch"] = 121] = "ESportOverwatch";
|
|
5412
|
-
GamePickSportType[GamePickSportType["MMA"] = 117] = "MMA";
|
|
5413
|
-
GamePickSportType[GamePickSportType["Futsal"] = 29] = "Futsal";
|
|
5414
|
-
GamePickSportType[GamePickSportType["IceHockey"] = 4] = "IceHockey";
|
|
5415
|
-
GamePickSportType[GamePickSportType["Kabaddi"] = 138] = "Kabaddi";
|
|
5416
|
-
GamePickSportType[GamePickSportType["BeachVolley"] = 34] = "BeachVolley";
|
|
5417
|
-
GamePickSportType[GamePickSportType["Formula1"] = 40] = "Formula1";
|
|
5418
|
-
GamePickSportType[GamePickSportType["ESporteBasketball"] = 153] = "ESporteBasketball";
|
|
5419
|
-
GamePickSportType[GamePickSportType["MotorcycleRacing"] = 190] = "MotorcycleRacing";
|
|
5420
|
-
GamePickSportType[GamePickSportType["Bowls"] = 32] = "Bowls";
|
|
5421
|
-
GamePickSportType[GamePickSportType["Boxing"] = 10] = "Boxing";
|
|
5422
|
-
GamePickSportType[GamePickSportType["Floorball"] = 7] = "Floorball";
|
|
5423
|
-
GamePickSportType[GamePickSportType["GaelicHurling"] = 136] = "GaelicHurling";
|
|
5424
|
-
GamePickSportType[GamePickSportType["Bandy"] = 15] = "Bandy";
|
|
5425
|
-
GamePickSportType[GamePickSportType["Handball"] = 6] = "Handball";
|
|
5426
|
-
GamePickSportType[GamePickSportType["Waterpolo"] = 26] = "Waterpolo";
|
|
5427
|
-
GamePickSportType[GamePickSportType["Rugby"] = 12] = "Rugby";
|
|
5428
|
-
GamePickSportType[GamePickSportType["ESporteSoccer"] = 137] = "ESporteSoccer";
|
|
5429
|
-
GamePickSportType[GamePickSportType["FieldHockey"] = 24] = "FieldHockey";
|
|
5430
|
-
GamePickSportType[GamePickSportType["Pesapallo"] = 61] = "Pesapallo";
|
|
5431
|
-
GamePickSportType[GamePickSportType["Snooker"] = 19] = "Snooker";
|
|
5432
|
-
GamePickSportType[GamePickSportType["Badminton"] = 31] = "Badminton";
|
|
5433
|
-
GamePickSportType[GamePickSportType["Cricket"] = 21] = "Cricket";
|
|
5434
|
-
GamePickSportType[GamePickSportType["BeachSoccer"] = 60] = "BeachSoccer";
|
|
5435
|
-
GamePickSportType[GamePickSportType["Baseball"] = 3] = "Baseball";
|
|
5436
|
-
GamePickSportType[GamePickSportType["StarCraft"] = 112] = "StarCraft";
|
|
5437
|
-
GamePickSportType[GamePickSportType["ESportCounterStrike"] = 109] = "ESportCounterStrike";
|
|
5438
|
-
GamePickSportType[GamePickSportType["ESportArenaofValor"] = 158] = "ESportArenaofValor";
|
|
5439
|
-
GamePickSportType[GamePickSportType["Curling"] = 28] = "Curling";
|
|
5440
|
-
GamePickSportType[GamePickSportType["Squash"] = 37] = "Squash";
|
|
5441
|
-
GamePickSportType[GamePickSportType["Darts"] = 22] = "Darts";
|
|
5442
|
-
GamePickSportType[GamePickSportType["TableTennis"] = 20] = "TableTennis";
|
|
5443
|
-
GamePickSportType[GamePickSportType["Basketball3x3"] = 155] = "Basketball3x3";
|
|
5444
|
-
GamePickSportType[GamePickSportType["AussieRules"] = 13] = "AussieRules";
|
|
5445
|
-
GamePickSportType[GamePickSportType["GaelicFootball"] = 135] = "GaelicFootball";
|
|
5446
|
-
GamePickSportType[GamePickSportType["CallOfDuty"] = 118] = "CallOfDuty";
|
|
5447
|
-
GamePickSportType[GamePickSportType["Soccer"] = 1] = "Soccer";
|
|
5448
|
-
GamePickSportType[GamePickSportType["Tennis"] = 5] = "Tennis";
|
|
5449
|
-
GamePickSportType[GamePickSportType["ESportDota"] = 111] = "ESportDota";
|
|
5450
|
-
GamePickSportType[GamePickSportType["Basketball"] = 2] = "Basketball";
|
|
5451
|
-
GamePickSportType[GamePickSportType["ESportLeagueofLegends"] = 110] = "ESportLeagueofLegends";
|
|
5452
|
-
GamePickSportType[GamePickSportType["AmericanFootball"] = 16] = "AmericanFootball";
|
|
5453
|
-
GamePickSportType[GamePickSportType["Volleyball"] = 23] = "Volleyball";
|
|
5454
|
-
GamePickSportType[GamePickSportType["Netball"] = 35] = "Netball";
|
|
5455
|
-
GamePickSportType[GamePickSportType["ESportRocketLeague"] = 128] = "ESportRocketLeague";
|
|
5456
|
-
GamePickSportType[GamePickSportType["Schwingen"] = 56] = "Schwingen";
|
|
5457
|
-
})(GamePickSportType || (GamePickSportType = {}));
|
|
5458
|
-
var GameRoundOrderType;
|
|
5459
|
-
(function (GameRoundOrderType) {
|
|
5460
|
-
GameRoundOrderType[GameRoundOrderType["HowAdded"] = 1] = "HowAdded";
|
|
5461
|
-
GameRoundOrderType[GameRoundOrderType["HowAddedReversed"] = 2] = "HowAddedReversed";
|
|
5462
|
-
GameRoundOrderType[GameRoundOrderType["EventDateAscending"] = 3] = "EventDateAscending";
|
|
5463
|
-
GameRoundOrderType[GameRoundOrderType["EventDateDescending"] = 4] = "EventDateDescending";
|
|
5464
|
-
})(GameRoundOrderType || (GameRoundOrderType = {}));
|
|
5465
|
-
const AllRoundsGameBoardID = -1;
|
|
5466
|
-
|
|
5467
|
-
export { AchCategoryTransform, AchCustomLayoutTheme, AchCustomSectionType, AchMissionsTabsOptions, AchOverviewMissionsFilter, AchievementAvailabilityStatus, AchievementStatus, AchievementTaskType, AchievementType, ActivityLogTransform, ActivityTypeLimited, AllRoundsGameBoardID, AnalyticsInboxSubScreenNameId, AnalyticsInterfaceType, AnalyticsScreenNameId, AnalyticsTournamentsLobbySubScreenNameId, AttemptPeriodType, BadgesTimeLimitStates, BonusItemsTransform, BonusStatus, BuyStoreItemErrorCode, ClassId, CookieStore, CoreUtils, ECacheContext, GPRoundStatus, GamePickMarketType, GamePickResolutionType, GamePickScoreType, GamePickSportType, GameRoundOrderType, GetJackpotEligibleGamesResponseTransform, GetJackpotWinnersResponseTransform, GetLevelMapResponseTransform, InboxCategories, InboxMessageBodyTransform, InboxMessageType, InboxMessagesTransform, InboxReadStatus, JackPotTemparature, JackpotContributionType, JackpotType, LeaderBoardPeriodType, LiquidEntityData, MiniGamePrizeTypeName, MiniGamePrizeTypeNamed, MissionCategory, MissionUtils, OCache, OpenLinksType, PointChangeSourceType, PrizeModifiers, PrizeModifiersKeysNames, PublicLabelSettings, QuizAnswersValueType, QuizMarketPerSport, QuizSportType, RaffleDrawInstanceState, RaffleDrawTypeExecution, RaffleTicketCapVisualization, SAWAcknowledgeType, SAWAcknowledgeTypeName, SAWAcknowledgeTypeNamed, SAWAskForUsername, SAWBuyInType, SAWBuyInTypeName, SAWBuyInTypeNamed, SAWExposeUserSpinId, SAWExposeUserSpinIdName, SAWExposeUserSpinIdNamed, SAWGPMarketType, SAWGameDifficultyType, SAWGameDifficultyTypeName, SAWGameLayout, SAWGameLayoutName, SAWGameLayoutNamed, SAWGameType, SAWGameTypeName, SAWGameTypeNamed, SAWHistoryTransform, SAWPrizeType, SAWSpinErrorCode, SAWTemplatesTransform, SAWUtils, SAWWheelLayout, SAWWinSoundFiles, SAWWinSoundType, SawGameDifficultyTypeNamed, ScheduledMissionType, SmarticoAPI, StoreCategoryTransform, StoreItemPurchaseType, StoreItemPurchasedTransform, StoreItemTransform, StoreItemType, StoreItemTypeName, StoreItemTypeNamed, TournamentInstanceStatus, TournamentInstanceStatusName, TournamentItemsTransform, TournamentRegistrationError, TournamentRegistrationStatus, TournamentRegistrationStatusName, TournamentRegistrationStatusNamed, TournamentRegistrationType, TournamentRegistrationTypeGetName, TournamentType, TournamentUtils, TranslationArea, UICustomSectionTransform, UserAchievementTransform, UserBalanceType, WSAPI, drawRunHistoryTransform, drawRunTransform, drawTransform, enrichUserAchievementsWithBadgeState, getLeaderBoardTransform, marketsInfo, prizeTransform, quizAnswerAwayTeamReplacementText, quizAnswerHomeTeamReplacementText, quizAnswersTrKeys, quizDrawReplacementText, quizEvenReplacementText, quizNoGoalsReplacementText, quizNoReplacementText, quizOddReplacementText, quizOrReplacementText, quizSupportedSports, quizYesReplacementText, raffleClaimPrizeResponseTransform, raffleTransform, ticketsTransform, tournamentInfoItemTransform, winnersTransform };
|
|
5335
|
+
export { AchCategoryTransform, AchCustomLayoutTheme, AchCustomSectionType, AchMissionsTabsOptions, AchOverviewMissionsFilter, AchievementAvailabilityStatus, AchievementStatus, AchievementTaskType, AchievementType, ActivityLogTransform, ActivityTypeLimited, AnalyticsInboxSubScreenNameId, AnalyticsInterfaceType, AnalyticsScreenNameId, AnalyticsTournamentsLobbySubScreenNameId, AttemptPeriodType, BadgesTimeLimitStates, BonusItemsTransform, BonusStatus, BuyStoreItemErrorCode, ClassId, CookieStore, CoreUtils, ECacheContext, GetJackpotEligibleGamesResponseTransform, GetJackpotWinnersResponseTransform, GetLevelMapResponseTransform, InboxCategories, InboxMessageBodyTransform, InboxMessageType, InboxMessagesTransform, InboxReadStatus, JackPotTemparature, JackpotContributionType, JackpotType, LeaderBoardPeriodType, LiquidEntityData, MiniGamePrizeTypeName, MiniGamePrizeTypeNamed, MissionCategory, MissionUtils, OCache, OpenLinksType, PointChangeSourceType, PrizeModifiers, PrizeModifiersKeysNames, PublicLabelSettings, QuizAnswersValueType, QuizMarketPerSport, QuizSportType, RaffleDrawInstanceState, RaffleDrawTypeExecution, RaffleTicketCapVisualization, SAWAcknowledgeType, SAWAcknowledgeTypeName, SAWAcknowledgeTypeNamed, SAWAskForUsername, SAWBuyInType, SAWBuyInTypeName, SAWBuyInTypeNamed, SAWExposeUserSpinId, SAWExposeUserSpinIdName, SAWExposeUserSpinIdNamed, SAWGPMarketType, SAWGameDifficultyType, SAWGameDifficultyTypeName, SAWGameLayout, SAWGameLayoutName, SAWGameLayoutNamed, SAWGameType, SAWGameTypeName, SAWGameTypeNamed, SAWHistoryTransform, SAWPrizeType, SAWSpinErrorCode, SAWTemplatesTransform, SAWUtils, SAWWheelLayout, SAWWinSoundFiles, SAWWinSoundType, SawGameDifficultyTypeNamed, ScheduledMissionType, SmarticoAPI, StoreCategoryTransform, StoreItemPurchaseType, StoreItemPurchasedTransform, StoreItemTransform, StoreItemType, StoreItemTypeName, StoreItemTypeNamed, TournamentInstanceStatus, TournamentInstanceStatusName, TournamentItemsTransform, TournamentRegistrationError, TournamentRegistrationStatus, TournamentRegistrationStatusName, TournamentRegistrationStatusNamed, TournamentRegistrationType, TournamentRegistrationTypeGetName, TournamentType, TournamentUtils, TranslationArea, UICustomSectionTransform, UserAchievementTransform, UserBalanceType, WSAPI, drawRunHistoryTransform, drawRunTransform, drawTransform, enrichUserAchievementsWithBadgeState, getLeaderBoardTransform, marketsInfo, prizeTransform, quizAnswerAwayTeamReplacementText, quizAnswerHomeTeamReplacementText, quizAnswersTrKeys, quizDrawReplacementText, quizEvenReplacementText, quizNoGoalsReplacementText, quizNoReplacementText, quizOddReplacementText, quizOrReplacementText, quizSupportedSports, quizYesReplacementText, raffleClaimPrizeResponseTransform, raffleTransform, ticketsTransform, tournamentInfoItemTransform, winnersTransform };
|
|
5468
5336
|
//# sourceMappingURL=index.modern.mjs.map
|