@smartico/public-api 0.0.51 → 0.0.53

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.
@@ -24,7 +24,7 @@ export interface SAWTemplateUI {
24
24
  promo_text?: string;
25
25
  matchx_banner?: string;
26
26
  matchx_seasonal_ranking?: boolean;
27
- matchx_general_board_users_count: number;
27
+ matchx_general_board_users_count?: number;
28
28
  ask_for_username?: SAWAskForUsername;
29
29
  show_prize_board?: boolean;
30
30
  max_spins_period_ms?: number;
@@ -22,9 +22,9 @@ export interface Tournament {
22
22
  /** The time when tournament is going to finish */
23
23
  endTime?: string;
24
24
  /** The time when tournament is going to start, epoch */
25
- startTime_ts?: number;
25
+ startTimeTs?: number;
26
26
  /** The time when tournament is going to finish, epoch */
27
- endTime_ts?: number;
27
+ endTimeTs?: number;
28
28
  /** Number of users registered in the tournament */
29
29
  registrationCount?: number;
30
30
  /** Not in use */
package/dist/index.js CHANGED
@@ -571,8 +571,8 @@ var TournamentItemsTransform = function TournamentItemsTransform(items) {
571
571
  custom_data: IntUtils.JsonOrText(r.publicMeta.custom_data),
572
572
  is_featured: r.publicMeta.featured,
573
573
  ribbon: r.publicMeta.label_tag,
574
- start_time: r.startTime_ts,
575
- end_time: r.endTime_ts,
574
+ start_time: r.startTimeTs,
575
+ end_time: r.endTimeTs,
576
576
  registration_count: r.registrationCount,
577
577
  is_user_registered: r.isUserRegistered,
578
578
  players_min_count: r.playersMinCount,