docs(ci): Update generated docs - 00dd8d7 [skip ci]

This commit is contained in:
Github Actions 2021-12-30 09:19:59 +00:00
parent 00dd8d7821
commit e6761cf286
2 changed files with 39 additions and 2 deletions

View File

@ -2783,7 +2783,24 @@
{ {
"valueName": "scenes", "valueName": "scenes",
"valueType": "Array<Object>", "valueType": "Array<Object>",
"valueDescription": "Array of scenes in OBS" "valueDescription": "Array of scenes"
}
]
},
{
"description": "Gets an array of all groups in OBS.\n\nGroups in OBS are actually scenes, but renamed and modified. In obs-websocket, we treat them as scenes where we can.",
"requestType": "GetGroupList",
"complexity": 2,
"rpcVersion": "1",
"deprecated": false,
"initialVersion": "5.0.0",
"category": "scenes",
"requestFields": [],
"responseFields": [
{
"valueName": "groups",
"valueType": "Array<String>",
"valueDescription": "Array of group names"
} }
] ]
}, },

View File

@ -2064,6 +2064,7 @@ Studio mode has been enabled or disabled.
- [SaveSourceScreenshot](#savesourcescreenshot) - [SaveSourceScreenshot](#savesourcescreenshot)
- [Scenes](#scenes-1) - [Scenes](#scenes-1)
- [GetSceneList](#getscenelist) - [GetSceneList](#getscenelist)
- [GetGroupList](#getgrouplist)
- [GetCurrentProgramScene](#getcurrentprogramscene) - [GetCurrentProgramScene](#getcurrentprogramscene)
- [SetCurrentProgramScene](#setcurrentprogramscene) - [SetCurrentProgramScene](#setcurrentprogramscene)
- [GetCurrentPreviewScene](#getcurrentpreviewscene) - [GetCurrentPreviewScene](#getcurrentpreviewscene)
@ -2727,7 +2728,26 @@ Gets an array of all scenes in OBS.
| ---- | :---: | ----------- | | ---- | :---: | ----------- |
| currentProgramSceneName | String | Current program scene | | currentProgramSceneName | String | Current program scene |
| currentPreviewSceneName | String | Current preview scene. `null` if not in studio mode | | currentPreviewSceneName | String | Current preview scene. `null` if not in studio mode |
| scenes | Array&lt;Object&gt; | Array of scenes in OBS | | scenes | Array&lt;Object&gt; | Array of scenes |
---
### GetGroupList
Gets an array of all groups in OBS.
Groups in OBS are actually scenes, but renamed and modified. In obs-websocket, we treat them as scenes where we can.
- Complexity Rating: `2/5`
- Latest Supported RPC Version: `1`
- Added in v5.0.0
**Response Fields:**
| Name | Type | Description |
| ---- | :---: | ----------- |
| groups | Array&lt;String&gt; | Array of group names |
--- ---