@smartico/public-api 0.0.192 → 0.0.194
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/AchRelatedGame.d.ts +1 -0
- package/dist/Missions/AchievementStatus.d.ts +2 -1
- package/dist/Missions/UserAchievement.d.ts +1 -0
- package/dist/WSAPI/WSAPITypes.d.ts +2 -0
- package/dist/index.js +7 -3
- package/dist/index.js.map +1 -1
- package/dist/index.modern.mjs +7 -3
- package/dist/index.modern.mjs.map +1 -1
- package/package.json +1 -1
- package/src/Base/AchRelatedGame.ts +1 -0
- package/src/Missions/AchievementStatus.ts +1 -0
- package/src/Missions/UserAchievement.ts +2 -0
- package/src/Store/StoreItemPurchased.ts +1 -0
- package/src/Tournaments/GetTournamentInfoResponse.ts +1 -0
- package/src/WSAPI/WSAPITypes.ts +2 -0
package/dist/index.modern.mjs
CHANGED
|
@@ -821,7 +821,8 @@ const StoreItemPurchasedTransform = items => {
|
|
|
821
821
|
purchase_points_amount: r.purchase_points_amount,
|
|
822
822
|
purchased_today: purchasedToday,
|
|
823
823
|
purchased_this_week: purchasedThisWeek,
|
|
824
|
-
purchased_this_month: purchasedThisMonth
|
|
824
|
+
purchased_this_month: purchasedThisMonth,
|
|
825
|
+
custom_data: r.itemPublicMeta.custom_data
|
|
825
826
|
};
|
|
826
827
|
return x;
|
|
827
828
|
});
|
|
@@ -836,6 +837,7 @@ var AchievementStatus;
|
|
|
836
837
|
AchievementStatus[AchievementStatus["FeaturedManually"] = 5] = "FeaturedManually";
|
|
837
838
|
AchievementStatus[AchievementStatus["FeaturedAI"] = 6] = "FeaturedAI";
|
|
838
839
|
AchievementStatus[AchievementStatus["Recurring"] = 7] = "Recurring";
|
|
840
|
+
AchievementStatus[AchievementStatus["RecurringUponCompletion"] = 8] = "RecurringUponCompletion";
|
|
839
841
|
})(AchievementStatus || (AchievementStatus = {}));
|
|
840
842
|
|
|
841
843
|
var AchievementTaskType;
|
|
@@ -902,7 +904,8 @@ const UserAchievementTransform = items => {
|
|
|
902
904
|
image: g.game_public_meta.image,
|
|
903
905
|
enabled: g.game_public_meta.enabled,
|
|
904
906
|
game_categories: g.game_public_meta.game_categories,
|
|
905
|
-
game_provider: g.game_public_meta.game_provider
|
|
907
|
+
game_provider: g.game_public_meta.game_provider,
|
|
908
|
+
mobile_spec_link: g.game_public_meta.mobile_spec_link
|
|
906
909
|
}
|
|
907
910
|
})),
|
|
908
911
|
category_ids: (_r$ach_categories = r.ach_categories) != null ? _r$ach_categories : [],
|
|
@@ -1147,7 +1150,8 @@ const tournamentInfoItemTransform = t => {
|
|
|
1147
1150
|
image: g.game_public_meta.image,
|
|
1148
1151
|
enabled: g.game_public_meta.enabled,
|
|
1149
1152
|
game_categories: g.game_public_meta.game_categories,
|
|
1150
|
-
game_provider: g.game_public_meta.game_provider
|
|
1153
|
+
game_provider: g.game_public_meta.game_provider,
|
|
1154
|
+
mobile_spec_link: g.game_public_meta.mobile_spec_link
|
|
1151
1155
|
}
|
|
1152
1156
|
})),
|
|
1153
1157
|
players: t.tournamentInfo.players.map(p => TournamentUtils.getPlayerTransformed(p))
|