docs(ci): Update generated docs - 506a916 [skip ci]

This commit is contained in:
Github Actions 2021-12-31 23:27:15 +00:00
parent 506a9167c3
commit c0308d6ce1
2 changed files with 49 additions and 2 deletions

View File

@ -1983,7 +1983,7 @@
{
"description": "Gets the enable state of all audio tracks of an input.",
"requestType": "GetInputAudioTracks",
"complexity": 3,
"complexity": 2,
"rpcVersion": "1",
"deprecated": false,
"initialVersion": "5.0.0",
@ -2006,6 +2006,34 @@
}
]
},
{
"description": "Sets the enable state of audio tracks of an input.",
"requestType": "SetInputAudioTracks",
"complexity": 2,
"rpcVersion": "1",
"deprecated": false,
"initialVersion": "5.0.0",
"category": "inputs",
"requestFields": [
{
"valueName": "inputName",
"valueType": "String",
"valueDescription": "Name of the input",
"valueRestrictions": null,
"valueOptional": false,
"valueOptionalBehavior": null
},
{
"valueName": "inputAudioTracks",
"valueType": "Object",
"valueDescription": "Track settings to apply",
"valueRestrictions": null,
"valueOptional": false,
"valueOptionalBehavior": null
}
],
"responseFields": []
},
{
"description": "Gets the items of a list property from an input's properties.\n\nNote: Use this in cases where an input provides a dynamic, selectable list of items. For example, display capture, where it provides a list of available displays.",
"requestType": "GetInputPropertiesListPropertyItems",

View File

@ -2093,6 +2093,7 @@ Studio mode has been enabled or disabled.
- [GetInputAudioMonitorType](#getinputaudiomonitortype)
- [SetInputAudioMonitorType](#setinputaudiomonitortype)
- [GetInputAudioTracks](#getinputaudiotracks)
- [SetInputAudioTracks](#setinputaudiotracks)
- [GetInputPropertiesListPropertyItems](#getinputpropertieslistpropertyitems)
- [PressInputPropertiesButton](#pressinputpropertiesbutton)
- [Transitions](#transitions)
@ -3307,7 +3308,7 @@ Sets the audio monitor type of an input.
Gets the enable state of all audio tracks of an input.
- Complexity Rating: `3/5`
- Complexity Rating: `2/5`
- Latest Supported RPC Version: `1`
- Added in v5.0.0
@ -3327,6 +3328,24 @@ Gets the enable state of all audio tracks of an input.
---
### SetInputAudioTracks
Sets the enable state of audio tracks of an input.
- Complexity Rating: `2/5`
- Latest Supported RPC Version: `1`
- Added in v5.0.0
**Request Fields:**
| Name | Type | Description | Value Restrictions | ?Default Behavior |
| ---- | :---: | ----------- | :----------------: | ----------------- |
| inputName | String | Name of the input | None | N/A |
| inputAudioTracks | Object | Track settings to apply | None | N/A |
---
### GetInputPropertiesListPropertyItems
Gets the items of a list property from an input's properties.