diff --git a/README.md b/README.md index 4138480..2fb661c 100644 --- a/README.md +++ b/README.md @@ -386,6 +386,40 @@ Below is a list of currently supported actions. Requests with invalid actions or } ``` + *Sample response*: + ``` + true + ``` +* **guiDeckOverview** + + Opens the Deck Overview screen for the deck with the given name; returns `true` if succeeded or `False` otherwise. + + *Sample request*: + ``` + { + "action": "guiDeckOverview", + "params": { + "name": "Default" + } + } + ``` + + *Sample response*: + ``` + true + ``` + +* **guiDeckBrowser** + + Opens the Deck Browser screen; returns `true` if succeeded or `null` otherwise. + + *Sample request*: + ``` + { + "action": "guiDeckBrowser" + } + ``` + *Sample response*: ``` true