docs(ci): Update generated docs - 81b307e [skip ci]

This commit is contained in:
Github Actions 2024-01-16 08:41:23 +00:00
parent 81b307e5ad
commit 9b58dd1627
2 changed files with 42 additions and 0 deletions

View File

@ -5013,6 +5013,28 @@
}
]
},
{
"description": "An input's settings have changed (been updated).\n\nNote: On some inputs, changing values in the properties dialog will cause an immediate update. Pressing the \"Cancel\" button will revert the settings, resulting in another event being fired.",
"eventType": "InputSettingsChanged",
"eventSubscription": "Inputs",
"complexity": 3,
"rpcVersion": "1",
"deprecated": false,
"initialVersion": "5.4.0",
"category": "inputs",
"dataFields": [
{
"valueName": "inputName",
"valueType": "String",
"valueDescription": "Name of the input"
},
{
"valueName": "inputSettings",
"valueType": "Object",
"valueDescription": "New settings object of the input"
}
]
},
{
"description": "An input's active state has changed.\n\nWhen an input is active, it means it's being shown by the program feed.",
"eventType": "InputActiveStateChanged",

View File

@ -1530,6 +1530,7 @@ The output has been resumed (unpaused).
- [InputCreated](#inputcreated)
- [InputRemoved](#inputremoved)
- [InputNameChanged](#inputnamechanged)
- [InputSettingsChanged](#inputsettingschanged)
- [InputActiveStateChanged](#inputactivestatechanged)
- [InputShowStateChanged](#inputshowstatechanged)
- [InputMuteStateChanged](#inputmutestatechanged)
@ -1877,6 +1878,25 @@ The name of an input has changed.
---
### InputSettingsChanged
An input's settings have changed (been updated).
Note: On some inputs, changing values in the properties dialog will cause an immediate update. Pressing the "Cancel" button will revert the settings, resulting in another event being fired.
- Complexity Rating: `3/5`
- Latest Supported RPC Version: `1`
- Added in v5.4.0
**Data Fields:**
| Name | Type | Description |
| ---- | :---: | ----------- |
| inputName | String | Name of the input |
| inputSettings | Object | New settings object of the input |
---
### InputActiveStateChanged
An input's active state has changed.