This commit is contained in:
JasonLandbridge
2025-11-30 10:49:21 +01:00
parent 46f4be6486
commit 5e7c891d77

View File

@@ -14371,6 +14371,33 @@ components:
- TRACK - TRACK
- PHOTO_ALBUM - PHOTO_ALBUM
- PHOTO - PHOTO
MediaTypeString:
description: |
The type of media content in the Plex library. This can represent videos, music, or photos.
type: string
enum:
- movie
- show
- season
- episode
- artist
- album
- track
- photoalbum
- photo
- collection
example: "movie"
x-speakeasy-enums:
- MOVIE
- TV_SHOW
- SEASON
- EPISODE
- ARTIST
- ALBUM
- TRACK
- PHOTO_ALBUM
- PHOTO
- COLLECTION
Channel: Channel:
type: object type: object
properties: properties:
@@ -14599,7 +14626,7 @@ components:
description: "The title of the library" description: "The title of the library"
example: "Movies" example: "Movies"
type: type:
$ref: '#/components/schemas/MediaType' $ref: '#/components/schemas/MediaTypeString'
agent: agent:
type: string type: string
allowSync: allowSync:
@@ -16131,15 +16158,17 @@ components:
streamType: streamType:
type: integer type: integer
format: int32 format: int32
enum: oneOf:
- 1 - title: VIDEO
- 2 const: 1
- 3 description: Video stream
- title: AUDIO
const: 2
description: Audio stream
- title: SUBTITLE
const: 3
description: Subtitle stream
example: 1 example: 1
x-speakeasy-enums:
- VIDEO
- AUDIO
- SUBTITLE
description: | description: |
Stream type: Stream type:
- VIDEO = 1 - VIDEO = 1