Skip to content

Commit

Permalink
chore: Publish pr-feature-user-interest
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Feb 21, 2024
1 parent b12908c commit 18f570c
Show file tree
Hide file tree
Showing 41 changed files with 221 additions and 89 deletions.
2 changes: 1 addition & 1 deletion apis/pr-feature-user-interest/core/Accessibility/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sdk: core

---

Version Accessibility 1.1.0-feature-user-interest.0
Version Accessibility 1.1.1-feature-user-interest.0

## Table of Contents

Expand Down
2 changes: 1 addition & 1 deletion apis/pr-feature-user-interest/core/Account/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sdk: core

---

Version Account 1.1.0-feature-user-interest.0
Version Account 1.1.1-feature-user-interest.0

## Table of Contents

Expand Down
2 changes: 1 addition & 1 deletion apis/pr-feature-user-interest/core/Advertising/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sdk: core

---

Version Advertising 1.1.0-feature-user-interest.0
Version Advertising 1.1.1-feature-user-interest.0

## Table of Contents

Expand Down
2 changes: 1 addition & 1 deletion apis/pr-feature-user-interest/core/Authentication/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sdk: core

---

Version Authentication 1.1.0-feature-user-interest.0
Version Authentication 1.1.1-feature-user-interest.0

## Table of Contents

Expand Down
2 changes: 1 addition & 1 deletion apis/pr-feature-user-interest/core/Capabilities/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sdk: core

---

Version Capabilities 1.1.0-feature-user-interest.0
Version Capabilities 1.1.1-feature-user-interest.0

## Table of Contents

Expand Down
2 changes: 1 addition & 1 deletion apis/pr-feature-user-interest/core/Device/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sdk: core

---

Version Device 1.1.0-feature-user-interest.0
Version Device 1.1.1-feature-user-interest.0

## Table of Contents

Expand Down
2 changes: 1 addition & 1 deletion apis/pr-feature-user-interest/core/Discovery/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sdk: core

---

Version Discovery 1.1.0-feature-user-interest.0
Version Discovery 1.1.1-feature-user-interest.0

## Table of Contents

Expand Down
49 changes: 35 additions & 14 deletions apis/pr-feature-user-interest/core/Intents/schemas/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,13 @@ Version Intents 0.0.0-unknown.0
- [SearchIntent](#searchintent)
- [SectionIntent](#sectionintent)
- [ChannelEntity](#channelentity)
- [AdditionalEntity](#additionalentity)
- [MusicEntity](#musicentity)
- [PlayQueryIntent](#playqueryintent)
- [TVSeriesEntity](#tvseriesentity)
- [MovieEntity](#movieentity)
- [AdditionalEntity](#additionalentity)
- [TVSeasonEntity](#tvseasonentity)
- [UntypedEntity](#untypedentity)
- [MovieEntity](#movieentity)
- [TVEpisodeEntity](#tvepisodeentity)
- [EntityIntent](#entityintent)
- [PlaylistEntity](#playlistentity)
Expand Down Expand Up @@ -203,21 +204,19 @@ type ChannelEntity = {
---
### AdditionalEntity
### MusicEntity
```typescript
type AdditionalEntity = {
entityType: 'program'
programType: ProgramType // In the case of a program `entityType`, specifies the program type.
type MusicEntity = {
entityType: 'music'
musicType: MusicType // In the case of a music `entityType`, specifies the type of music entity.
entityId: string
assetId?: string
appContentData?: string
}
```
See also:
[ProgramEntity](#programentity)
'song' | 'album'
---
Expand Down Expand Up @@ -266,12 +265,12 @@ See also:
---
### MovieEntity
### AdditionalEntity
```typescript
type MovieEntity = {
type AdditionalEntity = {
entityType: 'program'
programType: 'movie'
programType: ProgramType // In the case of a program `entityType`, specifies the program type.
entityId: string
assetId?: string
appContentData?: string
Expand Down Expand Up @@ -317,6 +316,24 @@ type UntypedEntity = {
---
### MovieEntity
```typescript
type MovieEntity = {
entityType: 'program'
programType: 'movie'
entityId: string
assetId?: string
appContentData?: string
}
```
See also:
[ProgramEntity](#programentity)
---
### TVEpisodeEntity
```typescript
Expand Down Expand Up @@ -349,6 +366,7 @@ type EntityIntent = {
| TVEpisodeEntity
| TVSeriesEntity
| TVSeasonEntity
| MusicEntity
| AdditionalEntity
| UntypedEntity
context: {
Expand All @@ -363,6 +381,7 @@ See also:
[TVEpisodeEntity](#tvepisodeentity)
[TVSeriesEntity](#tvseriesentity)
[TVSeasonEntity](#tvseasonentity)
[MusicEntity](#musicentity)
[AdditionalEntity](#additionalentity)
[UntypedEntity](#untypedentity)
Expand Down Expand Up @@ -417,6 +436,7 @@ type PlayableEntity =
| MovieEntity
| TVEpisodeEntity
| PlaylistEntity
| MusicEntity
| AdditionalEntity
```
Expand All @@ -425,6 +445,7 @@ See also:
[MovieEntity](#movieentity)
[TVEpisodeEntity](#tvepisodeentity)
[PlaylistEntity](#playlistentity)
[MusicEntity](#musicentity)
[AdditionalEntity](#additionalentity)
---
Expand All @@ -445,7 +466,7 @@ type PlaybackIntent = {
See also:
MovieEntity | TVEpisodeEntity | PlaylistEntity | AdditionalEntity
MovieEntity | TVEpisodeEntity | PlaylistEntity | MusicEntity | AdditionalEntity
---
Expand All @@ -471,7 +492,7 @@ type PlayEntityIntent = {
See also:
MovieEntity | TVEpisodeEntity | PlaylistEntity | AdditionalEntity
MovieEntity | TVEpisodeEntity | PlaylistEntity | MusicEntity | AdditionalEntity
---
Expand Down
2 changes: 1 addition & 1 deletion apis/pr-feature-user-interest/core/Internal/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sdk: core

---

Version Internal 1.1.0-feature-user-interest.0
Version Internal 1.1.1-feature-user-interest.0

## Table of Contents

Expand Down
2 changes: 1 addition & 1 deletion apis/pr-feature-user-interest/core/Keyboard/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sdk: core

---

Version Keyboard 1.1.0-feature-user-interest.0
Version Keyboard 1.1.1-feature-user-interest.0

## Table of Contents

Expand Down
2 changes: 1 addition & 1 deletion apis/pr-feature-user-interest/core/Lifecycle/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sdk: core

---

Version Lifecycle 1.1.0-feature-user-interest.0
Version Lifecycle 1.1.1-feature-user-interest.0

## Table of Contents

Expand Down
2 changes: 1 addition & 1 deletion apis/pr-feature-user-interest/core/Localization/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sdk: core

---

Version Localization 1.1.0-feature-user-interest.0
Version Localization 1.1.1-feature-user-interest.0

## Table of Contents

Expand Down
2 changes: 1 addition & 1 deletion apis/pr-feature-user-interest/core/Metrics/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sdk: core

---

Version Metrics 1.1.0-feature-user-interest.0
Version Metrics 1.1.1-feature-user-interest.0

## Table of Contents

Expand Down
2 changes: 1 addition & 1 deletion apis/pr-feature-user-interest/core/Parameters/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sdk: core

---

Version Parameters 1.1.0-feature-user-interest.0
Version Parameters 1.1.1-feature-user-interest.0

## Table of Contents

Expand Down
2 changes: 1 addition & 1 deletion apis/pr-feature-user-interest/core/Profile/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sdk: core

---

Version Profile 1.1.0-feature-user-interest.0
Version Profile 1.1.1-feature-user-interest.0

## Table of Contents

Expand Down
2 changes: 1 addition & 1 deletion apis/pr-feature-user-interest/core/SecondScreen/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sdk: core

---

Version SecondScreen 1.1.0-feature-user-interest.0
Version SecondScreen 1.1.1-feature-user-interest.0

## Table of Contents

Expand Down
2 changes: 1 addition & 1 deletion apis/pr-feature-user-interest/core/SecureStorage/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sdk: core

---

Version SecureStorage 1.1.0-feature-user-interest.0
Version SecureStorage 1.1.1-feature-user-interest.0

## Table of Contents

Expand Down
9 changes: 8 additions & 1 deletion apis/pr-feature-user-interest/core/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,14 @@ version: pr-feature-user-interest
layout: default
sdk: core
---
# 1.0.0 (https://github.com/rdkcentral/firebolt-apis/compare/v0.17.1...v1.0.0) (2023-11-03)
# [1.1.0](https://github.com/rdkcentral/firebolt-apis/compare/v1.0.0...v1.1.0) (2024-02-09)

### Bug Fixes

* Add Music to Playable entities (#225 (https://github.com/rdkcentral/firebolt-apis/issues/225)) (22c9b71 (https://github.com/rdkcentral/firebolt-apis/commit/22c9b71d3c0ee98d32585d1b365afabf8e64d6ed))
* Modified account:uid to SHOULD (#224 (https://github.com/rdkcentral/firebolt-apis/issues/224)) (70c8b24 (https://github.com/rdkcentral/firebolt-apis/commit/70c8b24decfcbff2c32fb1b0d21290afc00a8432))

# [1.0.0](https://github.com/rdkcentral/firebolt-apis/compare/v0.17.1...v1.0.0) (2023-11-03)

Upgraded to 1.0 at part of RDK6 release. This API is still compatibile with 0.x versions.

Expand Down
2 changes: 1 addition & 1 deletion apis/pr-feature-user-interest/discovery/Content/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sdk: discovery

---

Version Content 1.1.0-feature-user-interest.0
Version Content 1.1.1-feature-user-interest.0

## Table of Contents

Expand Down
Loading

0 comments on commit 18f570c

Please sign in to comment.