@smartico/public-api 0.0.133 → 0.0.134

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.
@@ -423,6 +423,10 @@ export interface TMissionOrBadge {
423
423
  requires_prize_claim?: boolean;
424
424
  /** The date/timestamp indicating when the prize was claimed by the user */
425
425
  prize_claimed_date_ts?: number;
426
+ /** Time in hours that took this player to complete mission */
427
+ complete_date?: string;
428
+ /** Time of mission/badge being completed, this property shows the epoch time in UTC */
429
+ complete_date_ts?: number;
426
430
  /** Flag for mission/badge indicating that mission/badge completed today */
427
431
  completed_today?: boolean;
428
432
  /** Flag for mission/badge indicating that mission/badge completed this week */
package/dist/index.js CHANGED
@@ -808,6 +808,8 @@ var UserAchievementTransform = function UserAchievementTransform(items) {
808
808
  ach_completed_id: r.ach_completed_id,
809
809
  requires_prize_claim: r.requires_prize_claim,
810
810
  prize_claimed_date_ts: r.prize_claimed_date_ts,
811
+ complete_date: r.complete_date,
812
+ complete_date_ts: r.complete_date_ts,
811
813
  completed_today: completedToday,
812
814
  completed_this_week: completedThisWeek,
813
815
  completed_this_month: completedThisMonth