@smartico/public-api 0.0.51 → 0.0.52
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.
|
@@ -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
|
-
|
|
25
|
+
startTimeTs?: number;
|
|
26
26
|
/** The time when tournament is going to finish, epoch */
|
|
27
|
-
|
|
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.
|
|
575
|
-
end_time: r.
|
|
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,
|