@smartico/public-api 0.0.338 → 0.0.340

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.
Files changed (33) hide show
  1. package/dist/{PointsHistory/PointsHistoryLog.d.ts → ActivityLog/ActivityLogEntry.d.ts} +1 -1
  2. package/dist/{PointsHistory/GetPointsHistoryRequest.d.ts → ActivityLog/GetActivityLogRequest.d.ts} +3 -1
  3. package/dist/ActivityLog/GetActivityLogResponse.d.ts +7 -0
  4. package/dist/ActivityLog/index.d.ts +5 -0
  5. package/dist/Analytics/AnalyticStoreData.d.ts +1 -1
  6. package/dist/SmarticoAPI.d.ts +4 -4
  7. package/dist/WSAPI/WSAPI.d.ts +15 -9
  8. package/dist/WSAPI/WSAPITypes.d.ts +4 -4
  9. package/dist/index.d.ts +1 -1
  10. package/dist/index.js +37 -21
  11. package/dist/index.js.map +1 -1
  12. package/dist/index.modern.mjs +29 -19
  13. package/dist/index.modern.mjs.map +1 -1
  14. package/docs/README.md +3 -3
  15. package/docs/classes/WSAPI.md +11 -7
  16. package/docs/interfaces/{TPointsHistoryLog.md → TActivityLog.md} +2 -2
  17. package/package.json +1 -1
  18. package/src/{PointsHistory/PointsHistoryLog.ts → ActivityLog/ActivityLogEntry.ts} +2 -1
  19. package/src/{PointsHistory/GetPointsHistoryRequest.ts → ActivityLog/GetActivityLogRequest.ts} +4 -1
  20. package/src/{PointsHistory/GetPointsHistoryResponse.ts → ActivityLog/GetActivityLogResponse.ts} +9 -8
  21. package/src/{PointsHistory → ActivityLog}/PointChangeSourceType.ts +1 -0
  22. package/src/{PointsHistory → ActivityLog}/UserBalanceType.ts +1 -0
  23. package/src/ActivityLog/index.ts +7 -0
  24. package/src/Analytics/AnalyticStoreData.ts +1 -1
  25. package/src/SmarticoAPI.ts +19 -10
  26. package/src/WSAPI/WSAPI.ts +24 -16
  27. package/src/WSAPI/WSAPITypes.ts +5 -4
  28. package/src/index.ts +1 -1
  29. package/dist/PointsHistory/GetPointsHistoryResponse.d.ts +0 -7
  30. package/dist/PointsHistory/index.d.ts +0 -5
  31. package/src/PointsHistory/index.ts +0 -6
  32. /package/dist/{PointsHistory → ActivityLog}/PointChangeSourceType.d.ts +0 -0
  33. /package/dist/{PointsHistory → ActivityLog}/UserBalanceType.d.ts +0 -0
@@ -18,4 +18,4 @@ export interface GemsDiamondsLog {
18
18
  balance: number;
19
19
  source_type_id: PointChangeSourceType;
20
20
  }
21
- export type PointsHistoryLog = PointsLog | GemsDiamondsLog;
21
+ export type ActivityLogEntry = PointsLog | GemsDiamondsLog;
@@ -1,6 +1,8 @@
1
1
  import { ProtocolMessage } from '../Base/ProtocolMessage';
2
- export interface GetPointsHistoryRequest extends ProtocolMessage {
2
+ export interface GetActivityLogRequest extends ProtocolMessage {
3
3
  userId: number;
4
4
  startTimeSeconds: number;
5
5
  endTimeSeconds: number;
6
+ limit: number;
7
+ offset: number;
6
8
  }
@@ -0,0 +1,7 @@
1
+ import { ProtocolResponse } from '../Base/ProtocolResponse';
2
+ import { ActivityLogEntry } from './ActivityLogEntry';
3
+ import { TActivityLog } from '../WSAPI/WSAPITypes';
4
+ export interface GetActivityLogResponse extends ProtocolResponse {
5
+ logHistory: ActivityLogEntry[];
6
+ }
7
+ export declare const ActivityLogTransform: (items: ActivityLogEntry[]) => TActivityLog[];
@@ -0,0 +1,5 @@
1
+ export * from './GetActivityLogRequest';
2
+ export * from './GetActivityLogResponse';
3
+ export * from './ActivityLogEntry';
4
+ export * from './PointChangeSourceType';
5
+ export * from './UserBalanceType';
@@ -26,7 +26,7 @@ export declare enum AnalyticsScreenNameId {
26
26
  LootboxCalendarDays = 21,
27
27
  TreasureHunt = 22,
28
28
  LiquidSection = 23,
29
- PointsHistory = 24,
29
+ ActivityLog = 24,
30
30
  ModalMission = 31,
31
31
  ModalLevel = 32,
32
32
  ModalBadge = 33,
@@ -11,7 +11,7 @@ import { GetTournamentInfoResponse, GetTournamentsResponse, TournamentRegisterRe
11
11
  import { LeaderBoardDetails, LeaderBoardPeriodType } from './Leaderboard';
12
12
  import { GetLevelMapResponse } from './Level';
13
13
  import { WSAPI } from './WSAPI/WSAPI';
14
- import { TInboxMessage, TInboxMessageBody, TLevel, TMiniGameTemplate, TMissionOrBadge, TStoreCategory, TAchCategory, TStoreItem, TTournament, TTournamentDetailed, LeaderBoardDetailsT, UserLevelExtraCountersT, TSegmentCheckResult, TUICustomSection, TBonus, TRaffle, TLevelCurrent, TPointsHistoryLog } from './WSAPI/WSAPITypes';
14
+ import { TInboxMessage, TInboxMessageBody, TLevel, TMiniGameTemplate, TMissionOrBadge, TStoreCategory, TAchCategory, TStoreItem, TTournament, TTournamentDetailed, LeaderBoardDetailsT, UserLevelExtraCountersT, TSegmentCheckResult, TUICustomSection, TBonus, TRaffle, TLevelCurrent, TActivityLog } from './WSAPI/WSAPITypes';
15
15
  import { GetAchievementsUserInfoResponse } from './Core/GetAchievementsUserInfoResponse';
16
16
  import { GetJackpotsPotsResponse, GetJackpotsResponse, JackpotsOptinResponse, JackpotsOptoutResponse } from './Jackpots';
17
17
  import { GetCustomSectionsResponse } from './CustomSections';
@@ -20,7 +20,7 @@ import { SAWDoSpinBatchResponse } from './MiniGames/SAWDoSpinBatchResponse';
20
20
  import { SAWDoAcknowledgeBatchResponse } from './MiniGames/SAWDoAcknowledgeBatchResponse';
21
21
  import { GetRelatedAchTourResponse } from './Missions/GetRelatedAchTourResponse';
22
22
  import { GetRafflesResponse } from './Raffle/GetRafflesResponse';
23
- import { GetPointsHistoryResponse } from './PointsHistory';
23
+ import { GetActivityLogResponse } from './ActivityLog';
24
24
  import { InboxCategories } from './Inbox/InboxCategories';
25
25
  import { GetDrawRunResponse, GetRaffleDrawRunsHistoryResponse, RaffleClaimPrizeResponse, RaffleOptinResponse } from './Raffle';
26
26
  import { GetJackpotWinnersResponse, JackpotWinnerHistory } from './Jackpots/GetJackpotWinnersResponse';
@@ -173,7 +173,7 @@ declare class SmarticoAPI {
173
173
  draw_id: number;
174
174
  raffle_run_id: number;
175
175
  }): Promise<RaffleOptinResponse>;
176
- getPointsHistory(user_ext_id: string, startTimeSeconds: number, endTimeSeconds: number): Promise<GetPointsHistoryResponse>;
177
- getPointsHistoryT(user_ext_id: string, startTimeSeconds: number, endTimeSeconds: number): Promise<TPointsHistoryLog[]>;
176
+ getActivityLog(user_ext_id: string, startTimeSeconds: number, endTimeSeconds: number, limit: number, offset: number): Promise<GetActivityLogResponse>;
177
+ getActivityLogT(user_ext_id: string, startTimeSeconds: number, endTimeSeconds: number, from?: number, to?: number): Promise<TActivityLog[]>;
178
178
  }
179
179
  export { SmarticoAPI, MessageSender };
@@ -1,6 +1,6 @@
1
1
  import { ActivityTypeLimited } from '../Core';
2
2
  import { SmarticoAPI } from '../SmarticoAPI';
3
- import { InboxMarkMessageAction, LeaderBoardDetailsT, TAchCategory, TBuyStoreItemResult, TGetTranslations, TInboxMessage, TInboxMessageBody, TLevel, TMiniGamePlayResult, TMiniGameTemplate, TMissionClaimRewardResult, TMissionOptInResult, TMissionOrBadge, TSegmentCheckResult, TStoreCategory, TStoreItem, TTournament, TTournamentDetailed, TTournamentRegistrationResult, TUICustomSection, TUserProfile, UserLevelExtraCountersT, TBonus, TClaimBonusResult, TMiniGamePlayBatchResult, TSawHistory, TRaffle, TRaffleDraw, TRaffleDrawRun, TransformedRaffleClaimPrizeResponse, TLevelCurrent, TPointsHistoryLog, TRaffleOptinResponse } from './WSAPITypes';
3
+ import { InboxMarkMessageAction, LeaderBoardDetailsT, TAchCategory, TBuyStoreItemResult, TGetTranslations, TInboxMessage, TInboxMessageBody, TLevel, TMiniGamePlayResult, TMiniGameTemplate, TMissionClaimRewardResult, TMissionOptInResult, TMissionOrBadge, TSegmentCheckResult, TStoreCategory, TStoreItem, TTournament, TTournamentDetailed, TTournamentRegistrationResult, TUICustomSection, TUserProfile, UserLevelExtraCountersT, TBonus, TClaimBonusResult, TMiniGamePlayBatchResult, TSawHistory, TRaffle, TRaffleDraw, TRaffleDrawRun, TransformedRaffleClaimPrizeResponse, TLevelCurrent, TActivityLog, TRaffleOptinResponse } from './WSAPITypes';
4
4
  import { LeaderBoardPeriodType } from '../Leaderboard';
5
5
  import { JackpotDetails, JackpotWinnerHistory, JackpotsOptinResponse, JackpotsOptoutResponse } from '../Jackpots';
6
6
  import { GetRelatedAchTourResponse } from '../Missions/GetRelatedAchTourResponse';
@@ -546,20 +546,22 @@ export declare class WSAPI {
546
546
  action?: string;
547
547
  }): void;
548
548
  /**
549
- * Returns the points history for a user within a specified time range.
549
+ * Returns the activity log for a user within a specified time range.
550
550
  * The response includes both points changes and gems/diamonds changes.
551
551
  * Each log entry contains information about the change amount, balance, and source.
552
552
  * The returned list is cached for 30 seconds.
553
- * 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.
553
+ * You can pass the onUpdate callback as a parameter, it will be called every time the activity log is updated and will provide the updated list of activity logs for the last 10 minutes.
554
554
  *
555
555
  * **Example**:
556
556
  * ```
557
557
  * const startTime = Math.floor(Date.now() / 1000) - 86400 * 30; // 30 days ago
558
558
  * const endTime = Math.floor(Date.now() / 1000); // now
559
559
  *
560
- * _smartico.api.getPointsHistory({
560
+ * _smartico.api.getActivityLog({
561
561
  * startTimeSeconds: startTime,
562
562
  * endTimeSeconds: endTime,
563
+ * from: 0,
564
+ * to: 50,
563
565
  * onUpdate: (data) => console.log('Updated:', data)
564
566
  * }).then((result) => {
565
567
  * console.log(result);
@@ -570,13 +572,17 @@ export declare class WSAPI {
570
572
  *
571
573
  * @param params.startTimeSeconds - Start time in seconds (epoch timestamp)
572
574
  * @param params.endTimeSeconds - End time in seconds (epoch timestamp)
573
- * @param params.onUpdate - Optional callback function that will be called when the points history is updated
575
+ * @param params.from - Start index of records to return
576
+ * @param params.to - End index of records to return
577
+ * @param params.onUpdate - Optional callback function that will be called when the activity log is updated
574
578
  */
575
- getPointsHistory({ startTimeSeconds, endTimeSeconds, onUpdate, }: {
579
+ getActivityLog({ startTimeSeconds, endTimeSeconds, from, to, onUpdate, }: {
576
580
  startTimeSeconds: number;
577
581
  endTimeSeconds: number;
578
- onUpdate?: (data: TPointsHistoryLog[]) => void;
579
- }): Promise<TPointsHistoryLog[]>;
582
+ from: number;
583
+ to: number;
584
+ onUpdate?: (data: TActivityLog[]) => void;
585
+ }): Promise<TActivityLog[]>;
580
586
  private updateOnSpin;
581
587
  private reloadMiniGameTemplate;
582
588
  private updateMissions;
@@ -587,7 +593,7 @@ export declare class WSAPI {
587
593
  private updateInboxUnreadCount;
588
594
  private updateInboxMessages;
589
595
  private updateRaffles;
590
- private notifyPointsHistoryUpdate;
596
+ private notifyActivityLogUpdate;
591
597
  private updateEntity;
592
598
  private jackpotClearCache;
593
599
  /** Returns list of Jackpots that are active in the systen and matching to the filter definition.
@@ -7,8 +7,8 @@ import { AchCustomLayoutTheme, AchCustomSectionType, AchMissionsTabsOptions, Ach
7
7
  import { PrizeModifiers } from '../MiniGames/PrizeModifiers';
8
8
  import { InboxCategories } from '../Inbox/InboxCategories';
9
9
  import { RaffleDrawInstanceState, RaffleDrawTypeExecution } from '../Raffle';
10
- import { PointChangeSourceType } from '../PointsHistory/PointChangeSourceType';
11
- import { UserBalanceType } from '../PointsHistory/UserBalanceType';
10
+ import { PointChangeSourceType } from '../ActivityLog/PointChangeSourceType';
11
+ import { UserBalanceType } from '../ActivityLog/UserBalanceType';
12
12
  type TRibbon = 'sale' | 'hot' | 'new' | 'vip' | string;
13
13
  /**
14
14
  * TMiniGamePrize describes the information of prize in the array of prizes in the TMiniGameTemplate
@@ -1224,10 +1224,10 @@ export interface TransformedRaffleClaimPrizeResponse {
1224
1224
  errorMessage?: string;
1225
1225
  }
1226
1226
  /**
1227
- * TPointsHistoryLog describes a unified history log entry for points, gems, or diamonds changes.
1227
+ * TActivityLog describes a unified history log entry for points, gems, or diamonds changes.
1228
1228
  * The structure is the same regardless of balance type, making it easy to iterate and display.
1229
1229
  */
1230
- export interface TPointsHistoryLog {
1230
+ export interface TActivityLog {
1231
1231
  /** Date when the change was created (epoch timestamp in seconds) */
1232
1232
  create_date: number;
1233
1233
  /** External user ID */
package/dist/index.d.ts CHANGED
@@ -18,4 +18,4 @@ export * from './Raffle';
18
18
  export * from './OCache';
19
19
  export * from './Bonuses';
20
20
  export * from './CustomSections';
21
- export * from './PointsHistory';
21
+ export * from './ActivityLog';
package/dist/index.js CHANGED
@@ -2130,7 +2130,7 @@ var onUpdateContextKey;
2130
2130
  onUpdateContextKey["JackpotEligibleGames"] = "jackpotEligibleGames";
2131
2131
  onUpdateContextKey["CurrentLevel"] = "currentLevel";
2132
2132
  onUpdateContextKey["InboxUnreadCount"] = "inboxUnreadCount";
2133
- onUpdateContextKey["PointsHistory"] = "pointsHistory";
2133
+ onUpdateContextKey["ActivityLog"] = "activityLog";
2134
2134
  })(onUpdateContextKey || (onUpdateContextKey = {}));
2135
2135
  /** @group General API */
2136
2136
  var WSAPI = /*#__PURE__*/function () {
@@ -2213,7 +2213,7 @@ var WSAPI = /*#__PURE__*/function () {
2213
2213
  _this.updateInboxUnreadCount(data.props.core_inbox_unread_count);
2214
2214
  }
2215
2215
  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) {
2216
- _this.notifyPointsHistoryUpdate();
2216
+ _this.notifyActivityLogUpdate();
2217
2217
  }
2218
2218
  });
2219
2219
  on(exports.ClassId.RAF_OPTIN_RESPONSE, function () {
@@ -3200,20 +3200,22 @@ var WSAPI = /*#__PURE__*/function () {
3200
3200
  this.api.reportEngagementAction(null, engagement_uid, activityType, action);
3201
3201
  }
3202
3202
  /**
3203
- * Returns the points history for a user within a specified time range.
3203
+ * Returns the activity log for a user within a specified time range.
3204
3204
  * The response includes both points changes and gems/diamonds changes.
3205
3205
  * Each log entry contains information about the change amount, balance, and source.
3206
3206
  * The returned list is cached for 30 seconds.
3207
- * 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.
3207
+ * You can pass the onUpdate callback as a parameter, it will be called every time the activity log is updated and will provide the updated list of activity logs for the last 10 minutes.
3208
3208
  *
3209
3209
  * **Example**:
3210
3210
  * ```
3211
3211
  * const startTime = Math.floor(Date.now() / 1000) - 86400 * 30; // 30 days ago
3212
3212
  * const endTime = Math.floor(Date.now() / 1000); // now
3213
3213
  *
3214
- * _smartico.api.getPointsHistory({
3214
+ * _smartico.api.getActivityLog({
3215
3215
  * startTimeSeconds: startTime,
3216
3216
  * endTimeSeconds: endTime,
3217
+ * from: 0,
3218
+ * to: 50,
3217
3219
  * onUpdate: (data) => console.log('Updated:', data)
3218
3220
  * }).then((result) => {
3219
3221
  * console.log(result);
@@ -3224,19 +3226,23 @@ var WSAPI = /*#__PURE__*/function () {
3224
3226
  *
3225
3227
  * @param params.startTimeSeconds - Start time in seconds (epoch timestamp)
3226
3228
  * @param params.endTimeSeconds - End time in seconds (epoch timestamp)
3227
- * @param params.onUpdate - Optional callback function that will be called when the points history is updated
3229
+ * @param params.from - Start index of records to return
3230
+ * @param params.to - End index of records to return
3231
+ * @param params.onUpdate - Optional callback function that will be called when the activity log is updated
3228
3232
  */;
3229
- _proto.getPointsHistory = function getPointsHistory(_ref14) {
3233
+ _proto.getActivityLog = function getActivityLog(_ref14) {
3230
3234
  var startTimeSeconds = _ref14.startTimeSeconds,
3231
3235
  endTimeSeconds = _ref14.endTimeSeconds,
3236
+ from = _ref14.from,
3237
+ to = _ref14.to,
3232
3238
  onUpdate = _ref14.onUpdate;
3233
3239
  try {
3234
3240
  var _this37 = this;
3235
3241
  if (onUpdate) {
3236
- _this37.onUpdateCallback.set(onUpdateContextKey.PointsHistory, onUpdate);
3242
+ _this37.onUpdateCallback.set(onUpdateContextKey.ActivityLog, onUpdate);
3237
3243
  }
3238
- return Promise.resolve(OCache.use(onUpdateContextKey.PointsHistory, exports.ECacheContext.WSAPI, function () {
3239
- return _this37.api.getPointsHistoryT(null, startTimeSeconds, endTimeSeconds);
3244
+ return Promise.resolve(OCache.use(onUpdateContextKey.ActivityLog, exports.ECacheContext.WSAPI, function () {
3245
+ return _this37.api.getActivityLogT(null, startTimeSeconds, endTimeSeconds, from, to);
3240
3246
  }, CACHE_DATA_SEC));
3241
3247
  } catch (e) {
3242
3248
  return Promise.reject(e);
@@ -3347,13 +3353,13 @@ var WSAPI = /*#__PURE__*/function () {
3347
3353
  return Promise.reject(e);
3348
3354
  }
3349
3355
  };
3350
- _proto.notifyPointsHistoryUpdate = function notifyPointsHistoryUpdate() {
3356
+ _proto.notifyActivityLogUpdate = function notifyActivityLogUpdate() {
3351
3357
  try {
3352
3358
  var _this48 = this;
3353
3359
  var startSeconds = Date.now() / 1000 - 600;
3354
3360
  var endSeconds = Date.now() / 1000;
3355
- return Promise.resolve(_this48.api.getPointsHistoryT(null, startSeconds, endSeconds)).then(function (payload) {
3356
- _this48.updateEntity(onUpdateContextKey.PointsHistory, payload);
3361
+ return Promise.resolve(_this48.api.getActivityLogT(null, startSeconds, endSeconds, 0, 50)).then(function (payload) {
3362
+ _this48.updateEntity(onUpdateContextKey.ActivityLog, payload);
3357
3363
  });
3358
3364
  } catch (e) {
3359
3365
  return Promise.reject(e);
@@ -3899,7 +3905,7 @@ exports.UserBalanceType = void 0;
3899
3905
  UserBalanceType[UserBalanceType["Diamonds"] = 2] = "Diamonds";
3900
3906
  })(exports.UserBalanceType || (exports.UserBalanceType = {}));
3901
3907
 
3902
- var PointsHistoryTransform = function PointsHistoryTransform(items) {
3908
+ var ActivityLogTransform = function ActivityLogTransform(items) {
3903
3909
  if (!items) {
3904
3910
  return [];
3905
3911
  }
@@ -5251,23 +5257,33 @@ var SmarticoAPI = /*#__PURE__*/function () {
5251
5257
  return Promise.reject(e);
5252
5258
  }
5253
5259
  };
5254
- _proto.getPointsHistory = function getPointsHistory(user_ext_id, startTimeSeconds, endTimeSeconds) {
5260
+ _proto.getActivityLog = function getActivityLog(user_ext_id, startTimeSeconds, endTimeSeconds, limit, offset) {
5255
5261
  try {
5256
5262
  var _this75 = this;
5257
5263
  var message = _this75.buildMessage(user_ext_id, exports.ClassId.GET_POINT_HISTORY_REQUEST, {
5258
5264
  startTimeSeconds: Math.floor(startTimeSeconds),
5259
- endTimeSeconds: Math.floor(endTimeSeconds)
5265
+ endTimeSeconds: Math.floor(endTimeSeconds),
5266
+ limit: limit,
5267
+ offset: offset
5260
5268
  });
5261
5269
  return Promise.resolve(_this75.send(message, exports.ClassId.GET_POINT_HISTORY_RESPONSE));
5262
5270
  } catch (e) {
5263
5271
  return Promise.reject(e);
5264
5272
  }
5265
5273
  };
5266
- _proto.getPointsHistoryT = function getPointsHistoryT(user_ext_id, startTimeSeconds, endTimeSeconds) {
5274
+ _proto.getActivityLogT = function getActivityLogT(user_ext_id, startTimeSeconds, endTimeSeconds, from, to) {
5275
+ if (from === void 0) {
5276
+ from = 0;
5277
+ }
5278
+ if (to === void 0) {
5279
+ to = 50;
5280
+ }
5267
5281
  try {
5268
5282
  var _this76 = this;
5269
- return Promise.resolve(_this76.getPointsHistory(user_ext_id, startTimeSeconds, endTimeSeconds)).then(function (_this76$getPointsHist) {
5270
- return PointsHistoryTransform(_this76$getPointsHist.logHistory);
5283
+ var limit = to - from > 50 ? 50 : to - from;
5284
+ var offset = from;
5285
+ return Promise.resolve(_this76.getActivityLog(user_ext_id, startTimeSeconds, endTimeSeconds, limit, offset)).then(function (_this76$getActivityLo) {
5286
+ return ActivityLogTransform(_this76$getActivityLo.logHistory);
5271
5287
  });
5272
5288
  } catch (e) {
5273
5289
  return Promise.reject(e);
@@ -5321,7 +5337,7 @@ exports.AnalyticsScreenNameId = void 0;
5321
5337
  AnalyticsScreenNameId[AnalyticsScreenNameId["LootboxCalendarDays"] = 21] = "LootboxCalendarDays";
5322
5338
  AnalyticsScreenNameId[AnalyticsScreenNameId["TreasureHunt"] = 22] = "TreasureHunt";
5323
5339
  AnalyticsScreenNameId[AnalyticsScreenNameId["LiquidSection"] = 23] = "LiquidSection";
5324
- AnalyticsScreenNameId[AnalyticsScreenNameId["PointsHistory"] = 24] = "PointsHistory";
5340
+ AnalyticsScreenNameId[AnalyticsScreenNameId["ActivityLog"] = 24] = "ActivityLog";
5325
5341
  AnalyticsScreenNameId[AnalyticsScreenNameId["ModalMission"] = 31] = "ModalMission";
5326
5342
  AnalyticsScreenNameId[AnalyticsScreenNameId["ModalLevel"] = 32] = "ModalLevel";
5327
5343
  AnalyticsScreenNameId[AnalyticsScreenNameId["ModalBadge"] = 33] = "ModalBadge";
@@ -5735,6 +5751,7 @@ exports.JackpotType = void 0;
5735
5751
  })(exports.JackpotType || (exports.JackpotType = {}));
5736
5752
 
5737
5753
  exports.AchCategoryTransform = AchCategoryTransform;
5754
+ exports.ActivityLogTransform = ActivityLogTransform;
5738
5755
  exports.BonusItemsTransform = BonusItemsTransform;
5739
5756
  exports.CookieStore = CookieStore;
5740
5757
  exports.CoreUtils = CoreUtils;
@@ -5746,7 +5763,6 @@ exports.InboxMessagesTransform = InboxMessagesTransform;
5746
5763
  exports.MiniGamePrizeTypeNamed = MiniGamePrizeTypeNamed;
5747
5764
  exports.MissionUtils = MissionUtils;
5748
5765
  exports.OCache = OCache;
5749
- exports.PointsHistoryTransform = PointsHistoryTransform;
5750
5766
  exports.PrizeModifiersKeysNames = PrizeModifiersKeysNames;
5751
5767
  exports.QuizMarketPerSport = QuizMarketPerSport;
5752
5768
  exports.SAWAcknowledgeTypeNamed = SAWAcknowledgeTypeNamed;