Skip to content

Commit

Permalink
Add MediaType to Section (#69)
Browse files Browse the repository at this point in the history
## Changes Made

- Add `MediaType` to `Section`
- Add constant `ContinueStreaming`
- Bump version to 0.13.0
  • Loading branch information
Loic-Dumas authored Jan 17, 2025
1 parent bf92161 commit 98e9b30
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Config.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ object Config {
const val minSdk = 21

const val major = 0
const val minor = 12
const val minor = 13
const val patch = 0
const val versionName = "$major.$minor.$patch"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ object RepresentationType {
const val TopicSelector = "TopicSelector"
const val Livestreams = "Livestreams"
const val ContinueWatching = "ContinueWatching"
const val ContinueStreaming = "ContinueStreaming"
const val FavoriteShows = "FavoriteShows"
const val WatchLater = "WatchLater"
const val ExpiringSoon = "ExpiringSoon"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@ data class Section(
@SerialName("end")
val endDate: Date? = null,
val hasPersonalizedContent: Boolean? = null,
val mediaType: MediaType? = null,
) : ILObject

0 comments on commit 98e9b30

Please sign in to comment.