Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions core-api/rest/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ This section contains unreleased changes which will be part of an upcoming relea

---

## 0.45.2
### Changed
- Minimal string length requirements for BrowseMediaItem string fields.

## 0.45.1
### Added
- Media browsing and searching ([feature-and-bug-tracker#70](https://github.com/unfoldedcircle/feature-and-bug-tracker/issues/70)).
Expand Down
11 changes: 9 additions & 2 deletions core-api/rest/UCR-core-openapi.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
openapi: 3.0.3
info:
title: Remote Two/3 REST Core-API
version: 0.45.1
version: 0.45.2
contact:
name: API Support
url: 'https://github.com/unfoldedcircle/core-api/issues'
Expand Down Expand Up @@ -14818,24 +14818,30 @@ components:
type: object
properties:
media_id:
description: Unique identifier of the media item. Integration dependent.
description: |
Unique identifier of the media item. Integration dependent.
Use an empty value only for special non-playable media items, for example, a root directory in a media library or search result.
type: string
maxLength: 255
title:
description: Display name.
type: string
minLength: 1
maxLength: 255
subtitle:
description: Optional subtitle.
type: string
minLength: 1
maxLength: 255
artist:
description: Optional artist name.
type: string
minLength: 1
maxLength: 255
album:
description: Optional album name.
type: string
minLength: 1
maxLength: 255
media_class:
$ref: '#/components/schemas/MediaClass'
Expand All @@ -14862,6 +14868,7 @@ components:
Use the following URI prefix to use a provided icon: `icon://uc:`, for example, `icon://uc:music`.
Please use a URL whenever possible. Encoded images should be as small as possible.
type: string
minLength: 1
maxLength: 32768
duration:
description: Duration in seconds.
Expand Down
4 changes: 4 additions & 0 deletions core-api/websocket/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ This section contains unreleased changes which will be part of an upcoming relea

---

## 0.35.2-beta
### Changed
- Minimal string length requirements for BrowseMediaItem string fields.

## 0.35.1-beta
### Added
- Media browsing and searching ([feature-and-bug-tracker#70](https://github.com/unfoldedcircle/feature-and-bug-tracker/issues/70)).
Expand Down
11 changes: 9 additions & 2 deletions core-api/websocket/UCR-core-asyncapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ asyncapi: 2.2.0
id: 'urn:com:unfoldedcircle:core'
info:
title: Remote Two/3 WebSocket Core-API
version: '0.35.1-beta'
version: '0.35.2-beta'
contact:
name: API Support
url: https://github.com/unfoldedcircle/core-api/issues
Expand Down Expand Up @@ -11028,24 +11028,30 @@ components:
type: object
properties:
media_id:
description: Unique identifier of the media item. Integration dependent.
description: |
Unique identifier of the media item. Integration dependent.
Use an empty value only for special non-playable media items, for example, a root directory in a media library or search result.
type: string
maxLength: 255
title:
description: Display name.
type: string
minLength: 1
maxLength: 255
subtitle:
description: Optional subtitle.
type: string
minLength: 1
maxLength: 255
artist:
description: Optional artist name.
type: string
minLength: 1
maxLength: 255
album:
description: Optional album name.
type: string
minLength: 1
maxLength: 255
media_class:
$ref: '#/components/schemas/MediaClass'
Expand All @@ -11072,6 +11078,7 @@ components:
Use the following URI prefix to use a provided icon: `icon://uc:`, for example, `icon://uc:music`.
Please use a URL whenever possible. Encoded images should be as small as possible.
type: string
minLength: 1
maxLength: 32768
duration:
description: Duration in seconds.
Expand Down
11 changes: 9 additions & 2 deletions integration-api/UCR-integration-asyncapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ asyncapi: 2.2.0
id: 'urn:com:unfoldedcircle:integration'
info:
title: Remote Two/3 WebSocket Integration API
version: '0.15.1-beta'
version: '0.15.2-beta'
contact:
name: API Support
url: https://github.com/unfoldedcircle/core-api/issues
Expand Down Expand Up @@ -2383,24 +2383,30 @@ components:
type: object
properties:
media_id:
description: Unique identifier of the media item. Integration dependent.
description: |
Unique identifier of the media item. Integration dependent.
Use an empty value only for special non-playable media items, for example, a root directory in a media library or search result.
type: string
maxLength: 255
title:
description: Display name.
type: string
minLength: 1
maxLength: 255
subtitle:
description: Optional subtitle.
type: string
minLength: 1
maxLength: 255
artist:
description: Optional artist name.
type: string
minLength: 1
maxLength: 255
album:
description: Optional album name.
type: string
minLength: 1
maxLength: 255
media_class:
$ref: '#/components/schemas/MediaClass'
Expand All @@ -2427,6 +2433,7 @@ components:
Use the following URI prefix to use a provided icon: `icon://uc:`, for example, `icon://uc:music`.
Please avoid using encoded images whenever possible. Payloads should be as small as possible.
type: string
minLength: 1
maxLength: 32768
duration:
description: Duration in seconds.
Expand Down
Loading