1 files changed, 34 insertions(+), 0 deletions(-)
M README.md
M README.md => README.md +34 -0
@@ 390,6 390,40 @@ Below is a list of currently supported actions. Requests with invalid actions or
```
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
+ ```
* **upgrade**