@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
|
@@ -28,9 +28,9 @@ Name of the mission or badge, translated to the user language
|
|
|
28
28
|
|
|
29
29
|
___
|
|
30
30
|
|
|
31
|
-
###
|
|
31
|
+
### description
|
|
32
32
|
|
|
33
|
-
• **
|
|
33
|
+
• **description**: `string`
|
|
34
34
|
|
|
35
35
|
Description of the mission or badge, translated to the user language
|
|
36
36
|
|
package/package.json
CHANGED
|
@@ -33,7 +33,7 @@ export const UserAchievementTransform = (items: UserAchievement[]): TMissionOrBa
|
|
|
33
33
|
{
|
|
34
34
|
id: r.ach_id,
|
|
35
35
|
name: r.ach_public_meta.name,
|
|
36
|
-
|
|
36
|
+
description: r.ach_public_meta.description,
|
|
37
37
|
unlock_mission_description: r.ach_public_meta.unlock_mission_description,
|
|
38
38
|
image: r.ach_public_meta.image_url,
|
|
39
39
|
is_completed: r.isCompleted,
|
package/src/WSAPI/WSAPITypes.ts
CHANGED
|
@@ -332,7 +332,7 @@ export interface TMissionOrBadge {
|
|
|
332
332
|
/** Name of the mission or badge, translated to the user language */
|
|
333
333
|
name: string;
|
|
334
334
|
/** Description of the mission or badge, translated to the user language */
|
|
335
|
-
|
|
335
|
+
description: string;
|
|
336
336
|
/** Description of the mission reward if defined */
|
|
337
337
|
reward: string;
|
|
338
338
|
/** URL of the image of the mission or badge */
|