@smartico/public-api 0.0.83 → 0.0.84
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/WSAPI/WSAPITypes.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.mjs +1 -1
- package/dist/index.modern.mjs.map +1 -1
- package/docs/interfaces/TMissionOrBadge.md +2 -2
- package/package.json +1 -1
- package/src/Missions/UserAchievement.ts +1 -1
- package/src/WSAPI/WSAPITypes.ts +1 -1
|
@@ -290,7 +290,7 @@ export interface TMissionOrBadge {
|
|
|
290
290
|
/** Name of the mission or badge, translated to the user language */
|
|
291
291
|
name: string;
|
|
292
292
|
/** Description of the mission or badge, translated to the user language */
|
|
293
|
-
|
|
293
|
+
description: string;
|
|
294
294
|
/** Description of the mission reward if defined */
|
|
295
295
|
reward: string;
|
|
296
296
|
/** URL of the image of the mission or badge */
|
package/dist/index.js
CHANGED
|
@@ -598,7 +598,7 @@ var UserAchievementTransform = function UserAchievementTransform(items) {
|
|
|
598
598
|
return {
|
|
599
599
|
id: r.ach_id,
|
|
600
600
|
name: r.ach_public_meta.name,
|
|
601
|
-
|
|
601
|
+
description: r.ach_public_meta.description,
|
|
602
602
|
unlock_mission_description: r.ach_public_meta.unlock_mission_description,
|
|
603
603
|
image: r.ach_public_meta.image_url,
|
|
604
604
|
is_completed: r.isCompleted,
|