@theoplayer/extended 6.6.0 → 6.7.0

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.
@@ -2135,7 +2135,7 @@ interface MetadataDescription {
2135
2135
  */
2136
2136
  interface ChromecastMetadataDescription extends MetadataDescription {
2137
2137
  /**
2138
- * List of content images for the current source.
2138
+ * List of content images, e.g. a thumbnail for a video, a poster for movie or the cover art for a music album.
2139
2139
  *
2140
2140
  * @remarks
2141
2141
  * <br/> - The string must be a valid URL.
@@ -2144,25 +2144,146 @@ interface ChromecastMetadataDescription extends MetadataDescription {
2144
2144
  */
2145
2145
  readonly images?: string[] | ChromecastMetadataImage[];
2146
2146
  /**
2147
- * The release date of the current source.
2147
+ * The release date of the content.
2148
2148
  *
2149
2149
  * @remarks
2150
2150
  * <br/> - The format is "YYYY-MM-DD".
2151
2151
  */
2152
2152
  readonly releaseDate?: string;
2153
2153
  /**
2154
- * The release year of the current source.
2154
+ * The release year of the content.
2155
2155
  *
2156
2156
  * @deprecated Superseded by {@link ChromecastMetadataDescription.releaseDate}.
2157
2157
  */
2158
2158
  readonly releaseYear?: number;
2159
2159
  /**
2160
- * The subtitle of the current source.
2160
+ * The subtitle of the content.
2161
2161
  *
2162
2162
  * @remarks
2163
2163
  * <br/> - This should be a short explanation about the content.
2164
2164
  */
2165
2165
  readonly subtitle?: string;
2166
+ /**
2167
+ * The studio that produced the movie.
2168
+ *
2169
+ * @remarks
2170
+ * <br/> - Only valid when {@link ChromecastMetadataDescription."type"} is `'movie'`.
2171
+ */
2172
+ readonly studio?: string;
2173
+ /**
2174
+ * The series title of the TV show.
2175
+ *
2176
+ * @remarks
2177
+ * <br/> - Only valid when {@link ChromecastMetadataDescription."type"} is `'tv-show'`.
2178
+ */
2179
+ readonly seriesTitle?: string;
2180
+ /**
2181
+ * The season number of the TV show.
2182
+ *
2183
+ * @remarks
2184
+ * <br/> - Only valid when {@link ChromecastMetadataDescription."type"} is `'tv-show'`.
2185
+ */
2186
+ readonly season?: number;
2187
+ /**
2188
+ * The episode number of the TV show.
2189
+ *
2190
+ * @remarks
2191
+ * <br/> - Only valid when {@link ChromecastMetadataDescription."type"} is `'tv-show'`.
2192
+ */
2193
+ readonly episode?: number;
2194
+ /**
2195
+ * The original air date of the TV show.
2196
+ *
2197
+ * @remarks
2198
+ * <br/> - Only valid when {@link ChromecastMetadataDescription."type"} is `'tv-show'`.
2199
+ * <br/> - The format is "YYYY-MM-DD".
2200
+ */
2201
+ readonly originalAirdate?: string;
2202
+ /**
2203
+ * The episode title of the TV show.
2204
+ *
2205
+ * @remarks
2206
+ * <br/> - Only valid when {@link ChromecastMetadataDescription."type"} is `'tv-show'`.
2207
+ *
2208
+ * @deprecated Superseded by {@link MetadataDescription.title}.
2209
+ */
2210
+ readonly episodeTitle?: string;
2211
+ /**
2212
+ * The season number of the TV show.
2213
+ *
2214
+ * @remarks
2215
+ * <br/> - Only valid when {@link ChromecastMetadataDescription."type"} is `'tv-show'`.
2216
+ *
2217
+ * @deprecated Superseded by {@link ChromecastMetadataDescription.season}.
2218
+ */
2219
+ readonly seasonNumber?: number;
2220
+ /**
2221
+ * The episode number of the TV show.
2222
+ *
2223
+ * @remarks
2224
+ * <br/> - Only valid when {@link ChromecastMetadataDescription."type"} is `'tv-show'`.
2225
+ *
2226
+ * @deprecated Superseded by {@link ChromecastMetadataDescription.episode}.
2227
+ */
2228
+ readonly episodeNumber?: number;
2229
+ /**
2230
+ * The album name of the music track.
2231
+ *
2232
+ * @remarks
2233
+ * <br/> - Only valid when {@link ChromecastMetadataDescription."type"} is `'audio'`.
2234
+ */
2235
+ readonly albumName?: string;
2236
+ /**
2237
+ * The album artist of the music track.
2238
+ *
2239
+ * @remarks
2240
+ * <br/> - Only valid when {@link ChromecastMetadataDescription."type"} is `'audio'`.
2241
+ */
2242
+ readonly albumArtist?: string;
2243
+ /**
2244
+ * The artist of the music track.
2245
+ *
2246
+ * @remarks
2247
+ * <br/> - Only valid when {@link ChromecastMetadataDescription."type"} is `'audio'`.
2248
+ */
2249
+ readonly artist?: string;
2250
+ /**
2251
+ * The composer of the music track.
2252
+ *
2253
+ * @remarks
2254
+ * <br/> - Only valid when {@link ChromecastMetadataDescription."type"} is `'audio'`.
2255
+ */
2256
+ readonly composer?: string;
2257
+ /**
2258
+ * The song name of the music track.
2259
+ *
2260
+ * @remarks
2261
+ * <br/> - Only valid when {@link ChromecastMetadataDescription."type"} is `'audio'`.
2262
+ */
2263
+ readonly songName?: string;
2264
+ /**
2265
+ * The track number of the music track.
2266
+ *
2267
+ * @remarks
2268
+ * <br/> - Only valid when {@link ChromecastMetadataDescription."type"} is `'audio'`.
2269
+ */
2270
+ readonly trackNumber?: number;
2271
+ /**
2272
+ * The disc number of the music track.
2273
+ *
2274
+ * @remarks
2275
+ * <br/> - Only valid when {@link ChromecastMetadataDescription."type"} is `'audio'`.
2276
+ */
2277
+ readonly discNumber?: number;
2278
+ /**
2279
+ * The artist name of the music track.
2280
+ *
2281
+ * @remarks
2282
+ * <br/> - Only valid when {@link ChromecastMetadataDescription."type"} is `'audio'`.
2283
+ *
2284
+ * @deprecated Superseded by {@link ChromecastMetadataDescription.artist}.
2285
+ */
2286
+ readonly artistName?: string;
2166
2287
  /**
2167
2288
  * The metadata type of the current source.
2168
2289
  *