@smartico/public-api 0.0.324 → 0.0.326
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/Base/ClassId.d.ts +2 -0
- package/dist/MiniGames/AttemptPeriodType.d.ts +6 -0
- package/dist/MiniGames/SAWPrize.d.ts +2 -0
- package/dist/MiniGames/index.d.ts +1 -0
- package/dist/PointsHistory/GetPointsHistoryRequest.d.ts +6 -0
- package/dist/PointsHistory/GetPointsHistoryResponse.d.ts +7 -0
- package/dist/PointsHistory/PointChangeSourceType.d.ts +19 -0
- package/dist/PointsHistory/PointsHistoryLog.d.ts +21 -0
- package/dist/PointsHistory/UserBalanceType.d.ts +5 -0
- package/dist/PointsHistory/index.d.ts +5 -0
- package/dist/SmarticoAPI.d.ts +13 -2
- package/dist/WSAPI/WSAPI.d.ts +83 -1
- package/dist/WSAPI/WSAPITypes.d.ts +28 -2
- package/dist/index.d.ts +1 -0
- package/dist/index.js +295 -74
- package/dist/index.js.map +1 -1
- package/dist/index.modern.mjs +199 -3
- package/dist/index.modern.mjs.map +1 -1
- package/docs/README.md +4 -0
- package/docs/classes/WSAPI.md +107 -0
- package/docs/enums/AttemptPeriodType.md +25 -0
- package/docs/enums/PointChangeSourceType.md +103 -0
- package/docs/enums/UserBalanceType.md +19 -0
- package/docs/interfaces/SAWPrize.md +6 -0
- package/docs/interfaces/TMiniGamePrize.md +8 -0
- package/docs/interfaces/TPointsHistoryLog.md +68 -0
- package/package.json +1 -1
- package/src/Base/ClassId.ts +3 -0
- package/src/MiniGames/AttemptPeriodType.ts +6 -0
- package/src/MiniGames/SAWGetTemplatesResponse.ts +1 -0
- package/src/MiniGames/SAWPrize.ts +2 -0
- package/src/MiniGames/index.ts +2 -1
- package/src/PointsHistory/GetPointsHistoryRequest.ts +8 -0
- package/src/PointsHistory/GetPointsHistoryResponse.ts +39 -0
- package/src/PointsHistory/PointChangeSourceType.ts +20 -0
- package/src/PointsHistory/PointsHistoryLog.ts +24 -0
- package/src/PointsHistory/UserBalanceType.ts +6 -0
- package/src/PointsHistory/index.ts +6 -0
- package/src/SmarticoAPI.ts +64 -0
- package/src/WSAPI/WSAPI.ts +126 -3
- package/src/WSAPI/WSAPITypes.ts +28 -2
- package/src/index.ts +2 -1
package/dist/index.modern.mjs
CHANGED
|
@@ -84,6 +84,8 @@ var ClassId;
|
|
|
84
84
|
ClassId[ClassId["ACH_SHOP_ITEM_HISTORY_RESPONSE"] = 542] = "ACH_SHOP_ITEM_HISTORY_RESPONSE";
|
|
85
85
|
ClassId[ClassId["GET_RELATED_ACH_N_TOURNAMENTS_REQUEST"] = 543] = "GET_RELATED_ACH_N_TOURNAMENTS_REQUEST";
|
|
86
86
|
ClassId[ClassId["GET_RELATED_ACH_N_TOURNAMENTS_RESPONSE"] = 544] = "GET_RELATED_ACH_N_TOURNAMENTS_RESPONSE";
|
|
87
|
+
ClassId[ClassId["GET_POINT_HISTORY_REQUEST"] = 545] = "GET_POINT_HISTORY_REQUEST";
|
|
88
|
+
ClassId[ClassId["GET_POINT_HISTORY_RESPONSE"] = 546] = "GET_POINT_HISTORY_RESPONSE";
|
|
87
89
|
/*
|
|
88
90
|
!Important, if adding new messages that are 'acting' on behalf of the client,
|
|
89
91
|
you need to include them in the CLASS_ID_IGNORE_FOR_SIMULATION
|
|
@@ -483,7 +485,8 @@ const SAWTemplatesTransform = items => {
|
|
|
483
485
|
prize_modifiers: p.saw_prize_ui_definition.prize_modifiers,
|
|
484
486
|
allow_split_decimal: p.saw_prize_ui_definition.allow_split_decimal,
|
|
485
487
|
hide_prize_from_history: p.saw_prize_ui_definition.hide_prize_from_history,
|
|
486
|
-
requirements_to_get_prize: p.saw_prize_ui_definition.requirements_to_get_prize
|
|
488
|
+
requirements_to_get_prize: p.saw_prize_ui_definition.requirements_to_get_prize,
|
|
489
|
+
max_give_period_type_id: p.max_give_period_type_id
|
|
487
490
|
};
|
|
488
491
|
return y;
|
|
489
492
|
})
|
|
@@ -613,6 +616,14 @@ var SAWExposeUserSpinId;
|
|
|
613
616
|
SAWExposeUserSpinId[SAWExposeUserSpinId["SpinId"] = 2] = "SpinId";
|
|
614
617
|
})(SAWExposeUserSpinId || (SAWExposeUserSpinId = {}));
|
|
615
618
|
|
|
619
|
+
var AttemptPeriodType;
|
|
620
|
+
(function (AttemptPeriodType) {
|
|
621
|
+
AttemptPeriodType[AttemptPeriodType["FromLastAttempt"] = 1] = "FromLastAttempt";
|
|
622
|
+
AttemptPeriodType[AttemptPeriodType["CalendarDaysUTC"] = 2] = "CalendarDaysUTC";
|
|
623
|
+
AttemptPeriodType[AttemptPeriodType["CalendarDaysUserTimeZone"] = 3] = "CalendarDaysUserTimeZone";
|
|
624
|
+
AttemptPeriodType[AttemptPeriodType["Lifetime"] = 4] = "Lifetime";
|
|
625
|
+
})(AttemptPeriodType || (AttemptPeriodType = {}));
|
|
626
|
+
|
|
616
627
|
class NodeCache {
|
|
617
628
|
constructor() {
|
|
618
629
|
this.ttlChecker = void 0;
|
|
@@ -2092,6 +2103,7 @@ var onUpdateContextKey;
|
|
|
2092
2103
|
onUpdateContextKey["JackpotEligibleGames"] = "jackpotEligibleGames";
|
|
2093
2104
|
onUpdateContextKey["CurrentLevel"] = "currentLevel";
|
|
2094
2105
|
onUpdateContextKey["InboxUnreadCount"] = "inboxUnreadCount";
|
|
2106
|
+
onUpdateContextKey["PointsHistory"] = "pointsHistory";
|
|
2095
2107
|
})(onUpdateContextKey || (onUpdateContextKey = {}));
|
|
2096
2108
|
/** @group General API */
|
|
2097
2109
|
class WSAPI {
|
|
@@ -2143,10 +2155,13 @@ class WSAPI {
|
|
|
2143
2155
|
}
|
|
2144
2156
|
});
|
|
2145
2157
|
on(ClassId.CLIENT_PUBLIC_PROPERTIES_CHANGED_EVENT, data => {
|
|
2146
|
-
var _data$props, _data$props2;
|
|
2158
|
+
var _data$props, _data$props2, _data$props3, _data$props4, _data$props5;
|
|
2147
2159
|
if ((data == null || (_data$props = data.props) == null ? void 0 : _data$props.core_inbox_unread_count) !== undefined && (data == null || (_data$props2 = data.props) == null ? void 0 : _data$props2.core_inbox_unread_count) !== null) {
|
|
2148
2160
|
this.updateInboxUnreadCount(data.props.core_inbox_unread_count);
|
|
2149
2161
|
}
|
|
2162
|
+
if ((data == null || (_data$props3 = data.props) == null ? void 0 : _data$props3.ach_points_balance) !== undefined || (data == null || (_data$props4 = data.props) == null ? void 0 : _data$props4.ach_gems_balance) !== undefined || (data == null || (_data$props5 = data.props) == null ? void 0 : _data$props5.ach_diamonds_balance) !== undefined) {
|
|
2163
|
+
this.notifyPointsHistoryUpdate();
|
|
2164
|
+
}
|
|
2150
2165
|
});
|
|
2151
2166
|
}
|
|
2152
2167
|
}
|
|
@@ -2816,6 +2831,95 @@ class WSAPI {
|
|
|
2816
2831
|
translations: r.translations
|
|
2817
2832
|
};
|
|
2818
2833
|
}
|
|
2834
|
+
/**
|
|
2835
|
+
* Reports an impression event for an engagement (when engagement content is displayed to the user).
|
|
2836
|
+
* Use this method to track when users view engagement content such as inbox messages, popups.
|
|
2837
|
+
* When using for Inbox cases, you need to use message guid as engagement_uid, and pass 31 as activityType.
|
|
2838
|
+
*
|
|
2839
|
+
* **Example**:
|
|
2840
|
+
* ```
|
|
2841
|
+
* _smartico.api.reportImpressionEvent({
|
|
2842
|
+
* engagement_uid: 'abc123-def456',
|
|
2843
|
+
* activityType: 31 // Inbox
|
|
2844
|
+
* });
|
|
2845
|
+
* ```
|
|
2846
|
+
*
|
|
2847
|
+
* **Visitor mode: not supported**
|
|
2848
|
+
*
|
|
2849
|
+
* @param params.engagement_uid - Unique identifier for the engagement
|
|
2850
|
+
* @param params.activityType - Type of engagement activity (Popup=30, Inbox=31)
|
|
2851
|
+
*/
|
|
2852
|
+
reportImpressionEvent({
|
|
2853
|
+
engagement_uid,
|
|
2854
|
+
activityType
|
|
2855
|
+
}) {
|
|
2856
|
+
this.api.reportEngagementImpression(null, engagement_uid, activityType);
|
|
2857
|
+
}
|
|
2858
|
+
/**
|
|
2859
|
+
* Reports a click/action event for an engagement (when user interacts with engagement content).
|
|
2860
|
+
* Use this method to track when users click on or interact with engagement content such as inbox messages, popups.
|
|
2861
|
+
* When using for Inbox cases, you need to use message guid as engagement_uid, and pass 31 as activityType, and pass the action/deeplink that was triggered by the user interaction as action.
|
|
2862
|
+
*
|
|
2863
|
+
*
|
|
2864
|
+
* **Example**:
|
|
2865
|
+
* ```
|
|
2866
|
+
* _smartico.api.reportClickEvent({
|
|
2867
|
+
* engagement_uid: 'abc123-def456',
|
|
2868
|
+
* activityType: 31 // Inbox,
|
|
2869
|
+
* action: 'dp:gf_missions'
|
|
2870
|
+
* });
|
|
2871
|
+
* ```
|
|
2872
|
+
*
|
|
2873
|
+
* **Visitor mode: not supported**
|
|
2874
|
+
*
|
|
2875
|
+
* @param params.engagement_uid - Unique identifier for the engagement
|
|
2876
|
+
* @param params.activityType - Type of engagement activity (Popup=30, Inbox=31)
|
|
2877
|
+
* @param params.action - Optional action/deeplink that was triggered by the user interaction
|
|
2878
|
+
*/
|
|
2879
|
+
reportClickEvent({
|
|
2880
|
+
engagement_uid,
|
|
2881
|
+
activityType,
|
|
2882
|
+
action
|
|
2883
|
+
}) {
|
|
2884
|
+
this.api.reportEngagementAction(null, engagement_uid, activityType, action);
|
|
2885
|
+
}
|
|
2886
|
+
/**
|
|
2887
|
+
* Returns the points history for a user within a specified time range.
|
|
2888
|
+
* The response includes both points changes and gems/diamonds changes.
|
|
2889
|
+
* Each log entry contains information about the change amount, balance, and source.
|
|
2890
|
+
* The returned list is cached for 30 seconds.
|
|
2891
|
+
* You can pass the onUpdate callback as a parameter, it will be called every time the points history is updated and will provide the updated list of points history logs for the last 10 minutes.
|
|
2892
|
+
*
|
|
2893
|
+
* **Example**:
|
|
2894
|
+
* ```
|
|
2895
|
+
* const startTime = Math.floor(Date.now() / 1000) - 86400 * 30; // 30 days ago
|
|
2896
|
+
* const endTime = Math.floor(Date.now() / 1000); // now
|
|
2897
|
+
*
|
|
2898
|
+
* _smartico.api.getPointsHistory({
|
|
2899
|
+
* startTimeSeconds: startTime,
|
|
2900
|
+
* endTimeSeconds: endTime,
|
|
2901
|
+
* onUpdate: (data) => console.log('Updated:', data)
|
|
2902
|
+
* }).then((result) => {
|
|
2903
|
+
* console.log(result);
|
|
2904
|
+
* });
|
|
2905
|
+
* ```
|
|
2906
|
+
*
|
|
2907
|
+
* **Visitor mode: not supported**
|
|
2908
|
+
*
|
|
2909
|
+
* @param params.startTimeSeconds - Start time in seconds (epoch timestamp)
|
|
2910
|
+
* @param params.endTimeSeconds - End time in seconds (epoch timestamp)
|
|
2911
|
+
* @param params.onUpdate - Optional callback function that will be called when the points history is updated
|
|
2912
|
+
*/
|
|
2913
|
+
async getPointsHistory({
|
|
2914
|
+
startTimeSeconds,
|
|
2915
|
+
endTimeSeconds,
|
|
2916
|
+
onUpdate
|
|
2917
|
+
}) {
|
|
2918
|
+
if (onUpdate) {
|
|
2919
|
+
this.onUpdateCallback.set(onUpdateContextKey.PointsHistory, onUpdate);
|
|
2920
|
+
}
|
|
2921
|
+
return await OCache.use(onUpdateContextKey.PointsHistory, ECacheContext.WSAPI, () => this.api.getPointsHistoryT(null, startTimeSeconds, endTimeSeconds), CACHE_DATA_SEC);
|
|
2922
|
+
}
|
|
2819
2923
|
async updateOnSpin(data) {
|
|
2820
2924
|
const templates = await OCache.use(onUpdateContextKey.Saw, ECacheContext.WSAPI, () => this.api.sawGetTemplatesT(null), CACHE_DATA_SEC);
|
|
2821
2925
|
const index = templates.findIndex(t => t.id === data.saw_template_id);
|
|
@@ -2857,6 +2961,12 @@ class WSAPI {
|
|
|
2857
2961
|
const payload = await this.api.getRafflesT(null);
|
|
2858
2962
|
this.updateEntity(onUpdateContextKey.Raffles, payload);
|
|
2859
2963
|
}
|
|
2964
|
+
async notifyPointsHistoryUpdate() {
|
|
2965
|
+
const startSeconds = Date.now() / 1000 - 600;
|
|
2966
|
+
const endSeconds = Date.now() / 1000;
|
|
2967
|
+
const payload = await this.api.getPointsHistoryT(null, startSeconds, endSeconds);
|
|
2968
|
+
this.updateEntity(onUpdateContextKey.PointsHistory, payload);
|
|
2969
|
+
}
|
|
2860
2970
|
async updateEntity(contextKey, payload) {
|
|
2861
2971
|
OCache.set(contextKey, payload, ECacheContext.WSAPI);
|
|
2862
2972
|
const onUpdate = this.onUpdateCallback.get(contextKey);
|
|
@@ -3256,6 +3366,60 @@ var BonusStatus;
|
|
|
3256
3366
|
BonusStatus[BonusStatus["EXPIRED"] = 6] = "EXPIRED";
|
|
3257
3367
|
})(BonusStatus || (BonusStatus = {}));
|
|
3258
3368
|
|
|
3369
|
+
var UserBalanceType;
|
|
3370
|
+
(function (UserBalanceType) {
|
|
3371
|
+
UserBalanceType[UserBalanceType["Points"] = 0] = "Points";
|
|
3372
|
+
UserBalanceType[UserBalanceType["Gems"] = 1] = "Gems";
|
|
3373
|
+
UserBalanceType[UserBalanceType["Diamonds"] = 2] = "Diamonds";
|
|
3374
|
+
})(UserBalanceType || (UserBalanceType = {}));
|
|
3375
|
+
|
|
3376
|
+
const PointsHistoryTransform = items => {
|
|
3377
|
+
if (!items) {
|
|
3378
|
+
return [];
|
|
3379
|
+
}
|
|
3380
|
+
return items.map(item => {
|
|
3381
|
+
const itemTransformed = {
|
|
3382
|
+
create_date: item.create_date,
|
|
3383
|
+
user_ext_id: item.user_ext_id,
|
|
3384
|
+
crm_brand_id: item.crm_brand_id,
|
|
3385
|
+
source_type_id: item.source_type_id
|
|
3386
|
+
};
|
|
3387
|
+
if (item.type === UserBalanceType.Diamonds || item.type === UserBalanceType.Gems) {
|
|
3388
|
+
itemTransformed.type = item.type;
|
|
3389
|
+
itemTransformed.amount = item.amount;
|
|
3390
|
+
itemTransformed.balance = item.balance;
|
|
3391
|
+
}
|
|
3392
|
+
if (item.type === UserBalanceType.Points) {
|
|
3393
|
+
itemTransformed.type = UserBalanceType.Points;
|
|
3394
|
+
itemTransformed.amount = item.points_collected;
|
|
3395
|
+
itemTransformed.balance = item.user_points_balance;
|
|
3396
|
+
itemTransformed.total_ever = item.user_points_ever;
|
|
3397
|
+
}
|
|
3398
|
+
return itemTransformed;
|
|
3399
|
+
});
|
|
3400
|
+
};
|
|
3401
|
+
|
|
3402
|
+
var PointChangeSourceType;
|
|
3403
|
+
(function (PointChangeSourceType) {
|
|
3404
|
+
PointChangeSourceType[PointChangeSourceType["Journey"] = 1] = "Journey";
|
|
3405
|
+
PointChangeSourceType[PointChangeSourceType["AchievementTaskCompletion"] = 2] = "AchievementTaskCompletion";
|
|
3406
|
+
PointChangeSourceType[PointChangeSourceType["AchievementCompletion"] = 3] = "AchievementCompletion";
|
|
3407
|
+
PointChangeSourceType[PointChangeSourceType["LevelsStructureChange"] = 4] = "LevelsStructureChange";
|
|
3408
|
+
PointChangeSourceType[PointChangeSourceType["StorePurchase"] = 5] = "StorePurchase";
|
|
3409
|
+
PointChangeSourceType[PointChangeSourceType["ManualAdjustment"] = 6] = "ManualAdjustment";
|
|
3410
|
+
PointChangeSourceType[PointChangeSourceType["Leaderboard"] = 7] = "Leaderboard";
|
|
3411
|
+
PointChangeSourceType[PointChangeSourceType["Tournament"] = 11] = "Tournament";
|
|
3412
|
+
PointChangeSourceType[PointChangeSourceType["AutomationRule"] = 12] = "AutomationRule";
|
|
3413
|
+
PointChangeSourceType[PointChangeSourceType["TournamentRegistration"] = 13] = "TournamentRegistration";
|
|
3414
|
+
PointChangeSourceType[PointChangeSourceType["TournamentRegistrationCancellation"] = 14] = "TournamentRegistrationCancellation";
|
|
3415
|
+
PointChangeSourceType[PointChangeSourceType["RefundPoints"] = 15] = "RefundPoints";
|
|
3416
|
+
PointChangeSourceType[PointChangeSourceType["PlayMiniGame"] = 16] = "PlayMiniGame";
|
|
3417
|
+
PointChangeSourceType[PointChangeSourceType["WinMiniGame"] = 17] = "WinMiniGame";
|
|
3418
|
+
PointChangeSourceType[PointChangeSourceType["API"] = 18] = "API";
|
|
3419
|
+
PointChangeSourceType[PointChangeSourceType["DynamicFormula"] = 19] = "DynamicFormula";
|
|
3420
|
+
PointChangeSourceType[PointChangeSourceType["Raffle"] = 21] = "Raffle";
|
|
3421
|
+
})(PointChangeSourceType || (PointChangeSourceType = {}));
|
|
3422
|
+
|
|
3259
3423
|
/**
|
|
3260
3424
|
* @ignore
|
|
3261
3425
|
*/
|
|
@@ -3530,6 +3694,28 @@ class SmarticoAPI {
|
|
|
3530
3694
|
const results = await this.send(message, ClassId.CHECK_SEGMENT_MATCH_RESPONSE);
|
|
3531
3695
|
return results.segments || [];
|
|
3532
3696
|
}
|
|
3697
|
+
/**
|
|
3698
|
+
* Reports an engagement impression event (when engagement content is displayed to the user).
|
|
3699
|
+
*/
|
|
3700
|
+
reportEngagementImpression(user_ext_id, engagement_uid, activityType) {
|
|
3701
|
+
const message = this.buildMessage(user_ext_id, ClassId.CLIENT_ENGAGEMENT_IMPRESSION_REQUEST, {
|
|
3702
|
+
engagement_uid,
|
|
3703
|
+
activityType
|
|
3704
|
+
});
|
|
3705
|
+
this.send(message).catch(() => {});
|
|
3706
|
+
}
|
|
3707
|
+
/**
|
|
3708
|
+
* Reports an engagement action event (when user clicks/interacts with engagement content).
|
|
3709
|
+
*/
|
|
3710
|
+
reportEngagementAction(user_ext_id, engagement_uid, activityType, action) {
|
|
3711
|
+
const message = this.buildMessage(user_ext_id, ClassId.CLIENT_ENGAGEMENT_ACTION_REQUEST, _extends({
|
|
3712
|
+
engagement_uid,
|
|
3713
|
+
activityType
|
|
3714
|
+
}, action && {
|
|
3715
|
+
action
|
|
3716
|
+
}));
|
|
3717
|
+
this.send(message).catch(() => {});
|
|
3718
|
+
}
|
|
3533
3719
|
async jackpotGet(user_ext_id, filter, force_language) {
|
|
3534
3720
|
const message = this.buildMessage(user_ext_id, ClassId.JP_GET_JACKPOTS_REQUEST, filter);
|
|
3535
3721
|
return await this.send(message, ClassId.JP_GET_JACKPOTS_RESPONSE, force_language);
|
|
@@ -4017,6 +4203,16 @@ class SmarticoAPI {
|
|
|
4017
4203
|
const message = this.buildMessage(user_ext_id, ClassId.RAF_CLAIM_PRIZE_REQUEST, props);
|
|
4018
4204
|
return await this.send(message, ClassId.RAF_CLAIM_PRIZE_RESPONSE);
|
|
4019
4205
|
}
|
|
4206
|
+
async getPointsHistory(user_ext_id, startTimeSeconds, endTimeSeconds) {
|
|
4207
|
+
const message = this.buildMessage(user_ext_id, ClassId.GET_POINT_HISTORY_REQUEST, {
|
|
4208
|
+
startTimeSeconds,
|
|
4209
|
+
endTimeSeconds
|
|
4210
|
+
});
|
|
4211
|
+
return await this.send(message, ClassId.GET_POINT_HISTORY_RESPONSE);
|
|
4212
|
+
}
|
|
4213
|
+
async getPointsHistoryT(user_ext_id, startTimeSeconds, endTimeSeconds) {
|
|
4214
|
+
return PointsHistoryTransform((await this.getPointsHistory(user_ext_id, startTimeSeconds, endTimeSeconds)).logHistory);
|
|
4215
|
+
}
|
|
4020
4216
|
}
|
|
4021
4217
|
|
|
4022
4218
|
class CookieStore {
|
|
@@ -4482,5 +4678,5 @@ var JackpotType;
|
|
|
4482
4678
|
JackpotType[JackpotType["Personal"] = 2] = "Personal";
|
|
4483
4679
|
})(JackpotType || (JackpotType = {}));
|
|
4484
4680
|
|
|
4485
|
-
export { AchCategoryTransform, AchCustomLayoutTheme, AchCustomSectionType, AchMissionsTabsOptions, AchOverviewMissionsFilter, AchievementAvailabilityStatus, AchievementStatus, AchievementTaskType, AchievementType, ActivityTypeLimited, AnalyticsInboxSubScreenNameId, AnalyticsInterfaceType, AnalyticsScreenNameId, AnalyticsTournamentsLobbySubScreenNameId, 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, PrizeModifiers, PrizeModifiersKeysNames, PublicLabelSettings, QuizAnswersValueType, QuizMarketPerSport, QuizSportType, SAWAcknowledgeType, SAWAcknowledgeTypeName, SAWAcknowledgeTypeNamed, SAWAskForUsername, SAWBuyInType, SAWBuyInTypeName, SAWBuyInTypeNamed, SAWExposeUserSpinId, SAWGPMarketType, SAWGameDifficultyType, SAWGameDifficultyTypeName, SAWGameLayout, 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, enrichUserAchievementsWithBadgeState, getLeaderBoardTransform, marketsInfo, quizAnswerAwayTeamReplacementText, quizAnswerHomeTeamReplacementText, quizAnswersTrKeys, quizDrawReplacementText, quizEvenReplacementText, quizNoGoalsReplacementText, quizNoReplacementText, quizOddReplacementText, quizOrReplacementText, quizSupportedSports, quizYesReplacementText, tournamentInfoItemTransform };
|
|
4681
|
+
export { AchCategoryTransform, AchCustomLayoutTheme, AchCustomSectionType, AchMissionsTabsOptions, AchOverviewMissionsFilter, AchievementAvailabilityStatus, AchievementStatus, AchievementTaskType, AchievementType, 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, PointsHistoryTransform, PrizeModifiers, PrizeModifiersKeysNames, PublicLabelSettings, QuizAnswersValueType, QuizMarketPerSport, QuizSportType, SAWAcknowledgeType, SAWAcknowledgeTypeName, SAWAcknowledgeTypeNamed, SAWAskForUsername, SAWBuyInType, SAWBuyInTypeName, SAWBuyInTypeNamed, SAWExposeUserSpinId, SAWGPMarketType, SAWGameDifficultyType, SAWGameDifficultyTypeName, SAWGameLayout, 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, enrichUserAchievementsWithBadgeState, getLeaderBoardTransform, marketsInfo, quizAnswerAwayTeamReplacementText, quizAnswerHomeTeamReplacementText, quizAnswersTrKeys, quizDrawReplacementText, quizEvenReplacementText, quizNoGoalsReplacementText, quizNoReplacementText, quizOddReplacementText, quizOrReplacementText, quizSupportedSports, quizYesReplacementText, tournamentInfoItemTransform };
|
|
4486
4682
|
//# sourceMappingURL=index.modern.mjs.map
|