diff --git a/docs/api/channels_endpoint.md b/docs/api/channels_endpoint.md index 52ec936..421642d 100644 --- a/docs/api/channels_endpoint.md +++ b/docs/api/channels_endpoint.md @@ -124,6 +124,7 @@ This is the same as requesting `/api/v1/channels/:id/videos` without URL paramet > URL parameters: * `continuation`: A continuation token to get the next chunk of items. The token is provided each time this API is requested. +* `sort_by`: Sort order filter. Accepted values: `newest`, `popular` or `oldest` > Response: @@ -135,6 +136,7 @@ See: GET `/api/v1/channels/:id/videos` > URL parameters: * `continuation`: A continuation token to get the next chunk of items. The token is provided each time this API is requested. +* `sort_by`: Sort order filter. Accepted values: `newest`, `popular` or `oldest` > Response: diff --git a/docs/api/common_types.md b/docs/api/common_types.md index 994b917..e19a6aa 100644 --- a/docs/api/common_types.md +++ b/docs/api/common_types.md @@ -57,7 +57,15 @@ "liveNow": Boolean, "premium": Boolean, - "isUpcoming": Boolean + "isUpcoming": Boolean, + + "isNew" Boolean, + "is4k": Boolean, + "is8k": Boolean, + "isVr180": Boolean, + "isVr360": Boolean, + "is3d": Boolean, + "hasCaptions": Boolean } ```