Skip to content

Commit

Permalink
fix: Add Music to Playable entities
Browse files Browse the repository at this point in the history
  • Loading branch information
jlacivita committed Feb 7, 2024
1 parent abecdf1 commit 4e31dcb
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 23 additions & 0 deletions src/schemas/intents.json
Original file line number Diff line number Diff line change
Expand Up @@ -458,6 +458,26 @@
"entityId"
]
},
"MusicEntity": {
"title": "MusicEntity",
"type": "object",
"properties": {
"entityType": {
"const": "music"
},
"musicType": {
"$ref": "https://meta.comcast.com/firebolt/entertainment#/definitions/MusicType"
},
"entityId": {
"type": "string"
}
},
"required": [
"entityType",
"musicType",
"entityId"
]
},
"MovieEntity": {
"title": "MovieEntity",
"allOf": [
Expand Down Expand Up @@ -690,6 +710,9 @@
{
"$ref": "#/definitions/PlaylistEntity"
},
{
"$ref": "#/definitions/MusicEntity"
},
{
"$ref": "#/definitions/AdditionalEntity"
}
Expand Down

0 comments on commit 4e31dcb

Please sign in to comment.