Skip to content
14 changes: 7 additions & 7 deletions package-lock.json

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

37 changes: 37 additions & 0 deletions src/openrpc/discovery.json
Original file line number Diff line number Diff line change
Expand Up @@ -1253,6 +1253,43 @@
}
]
},
{
"name": "getNavigationIntent",
"tags": [
{
"name": "property:immutable"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is property:immutable necessary? Could it just be left off and treated as a basic getter?

The response can change so immutable might not be appropriate--I'd expect that to be used on truly immutable properties like a serial number.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I added the immutable because there won't be any setter or event for this method.. Yes, I can change that

},
{
"name": "capabilities",
"x-uses": [
"xrn:firebolt:capability:discovery:navigate-to"
]
}
],
"summary": "get the latest navigation intent",
"params": [],
"result": {
"name": "intent",
"schema": {
"$ref": "https://meta.rdkcentral.com/firebolt/schemas/intents#/definitions/NavigationIntent"
}
},
"examples": [
{
"name": "Get the latest navigation intent",
"params": [],
"result": {
"name": "intent",
"value": {
"action": "home",
"context": {
"source": "voice"
}
}
}
}
]
},
{
"name": "navigateTo",
"tags": [
Expand Down
Loading
Loading