From 9b58dd162754cd093bcec997295331d3d81d357e Mon Sep 17 00:00:00 2001 From: Github Actions <> Date: Tue, 16 Jan 2024 08:41:23 +0000 Subject: [PATCH] docs(ci): Update generated docs - 81b307e [skip ci] --- docs/generated/protocol.json | 22 ++++++++++++++++++++++ docs/generated/protocol.md | 20 ++++++++++++++++++++ 2 files changed, 42 insertions(+) diff --git a/docs/generated/protocol.json b/docs/generated/protocol.json index 123846e4..0f5a90d4 100644 --- a/docs/generated/protocol.json +++ b/docs/generated/protocol.json @@ -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", diff --git a/docs/generated/protocol.md b/docs/generated/protocol.md index 8ca5edc0..572bfa16 100644 --- a/docs/generated/protocol.md +++ b/docs/generated/protocol.md @@ -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.