docs(travis): Update protocol.md - a5058cf [skip ci]

This commit is contained in:
Travis CI
2019-04-21 12:27:27 +00:00
parent a5058cf951
commit 107c03653d
2 changed files with 24 additions and 1 deletions

View File

@ -1861,7 +1861,12 @@
{ {
"subheads": [], "subheads": [],
"description": "Scene items have been reordered.", "description": "Scene items have been reordered.",
"return": "{String} `scene-name` Name of the scene where items have been reordered.", "return": [
"{String} `scene-name` Name of the scene where items have been reordered.",
"{Array<Object>} `scene-items` Ordered list of scene items",
"{String} `scene-items.*.source-name` Item source name",
"{int} `scene-items.*.item-id` Scene item unique ID"
],
"api": "events", "api": "events",
"name": "SourceOrderChanged", "name": "SourceOrderChanged",
"category": "sources", "category": "sources",
@ -1871,6 +1876,21 @@
"type": "String", "type": "String",
"name": "scene-name", "name": "scene-name",
"description": "Name of the scene where items have been reordered." "description": "Name of the scene where items have been reordered."
},
{
"type": "Array<Object>",
"name": "scene-items",
"description": "Ordered list of scene items"
},
{
"type": "String",
"name": "scene-items.*.source-name",
"description": "Item source name"
},
{
"type": "int",
"name": "scene-items.*.item-id",
"description": "Scene item unique ID"
} }
], ],
"names": [ "names": [

View File

@ -838,6 +838,9 @@ Scene items have been reordered.
| Name | Type | Description | | Name | Type | Description |
| ---- | :---: | ------------| | ---- | :---: | ------------|
| `scene-name` | _String_ | Name of the scene where items have been reordered. | | `scene-name` | _String_ | Name of the scene where items have been reordered. |
| `scene-items` | _Array&lt;Object&gt;_ | Ordered list of scene items |
| `scene-items.*.source-name` | _String_ | Item source name |
| `scene-items.*.item-id` | _int_ | Scene item unique ID |
--- ---