You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Update leaderboards in bulk by ID. Updating `status` behaves the same as activating, deactivating, or finishing a leaderboard in the dashboard.
53
+
* Update leaderboards in bulk by ID. Updating `status` behaves the same as activating, scheduling, deactivating, or finishing a leaderboard in the dashboard.
* Update leaderboards in bulk by ID. Updating `status` behaves the same as activating, deactivating, or finishing a leaderboard in the dashboard.
217
+
* Update leaderboards in bulk by ID. Updating `status` behaves the same as activating, scheduling, deactivating, or finishing a leaderboard in the dashboard.
/** The current status of the leaderboard. A leaderboard in the `active` status is either scheduled (if the start date is in the future), finished (if the end date is in the past), or live. */
17
+
/** The current user-facing status of the leaderboard. */
Copy file name to clipboardExpand all lines: api/types/AdminLeaderboardStatus.d.ts
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -2,10 +2,12 @@
2
2
* This file was auto-generated by Fern from our API Definition.
3
3
*/
4
4
/**
5
-
* The current status of the leaderboard. A leaderboard in the `active` status is either scheduled (if the start date is in the future), finished (if the end date is in the past), or live.
5
+
* The current user-facing status of the leaderboard.
/** The initial status. Defaults to `inactive`. `active` behaves the same as activating or scheduling the leaderboard in the dashboard. */
15
+
/** The initial user-facing status. Defaults to `inactive`. Use `scheduled` for leaderboards that should be active in the future and `finished` only when creating a leaderboard with an end date in the past. */
Copy file name to clipboardExpand all lines: api/types/CreateLeaderboardRequestItemStatus.d.ts
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -2,10 +2,12 @@
2
2
* This file was auto-generated by Fern from our API Definition.
3
3
*/
4
4
/**
5
-
* The initial status. Defaults to `inactive`. `active` behaves the same as activating or scheduling the leaderboard in the dashboard.
5
+
* The initial user-facing status. Defaults to `inactive`. Use `scheduled` for leaderboards that should be active in the future and `finished` only when creating a leaderboard with an end date in the past.
/** The target status. `active` and `inactive` behave the same as the dashboard activate, schedule, deactivate, and finish actions. */
17
+
/** The target user-facing status. `scheduled` activates a leaderboard whose start date is in the future. `finished` behaves like the dashboard finish action. */
Copy file name to clipboardExpand all lines: api/types/UpdateLeaderboardRequestItemStatus.d.ts
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -2,10 +2,12 @@
2
2
* This file was auto-generated by Fern from our API Definition.
3
3
*/
4
4
/**
5
-
* The target status. `active` and `inactive` behave the same as the dashboard activate, schedule, deactivate, and finish actions.
5
+
* The target user-facing status. `scheduled` activates a leaderboard whose start date is in the future. `finished` behaves like the dashboard finish action.
0 commit comments