From a9d86ce35c17e7ae0e3e2c205c94726f15dc5c22 Mon Sep 17 00:00:00 2001 From: Github Actions <> Date: Sat, 4 Sep 2021 17:58:05 +0000 Subject: [PATCH] docs(ci): Update generated docs - b9b8e38 [skip ci] --- docs/generated/protocol.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/generated/protocol.md b/docs/generated/protocol.md index c5e42e0f..11b53dd3 100644 --- a/docs/generated/protocol.md +++ b/docs/generated/protocol.md @@ -319,13 +319,11 @@ Authentication is not required "rpcVersion": number, "authentication": string(optional), "ignoreInvalidMessages": bool(optional) = false, - "ignoreNonFatalRequestChecks": bool(optional) = false, "eventSubscriptions": number(optional) = (EventSubscription::All) } ``` - `rpcVersion` is the version number that the client would like the obs-websocket server to use. - When `ignoreInvalidMessages` is true, the socket will not be closed for [`WebSocketCloseCode`](#websocketclosecode-enum): `MessageDecodeError`, `UnknownOpCode`, or `MissingDataKey`. Instead, the message will be logged and ignored. -- When `ignoreNonFatalRequestChecks` is true, requests will ignore checks which are not critical to the function of the request. Eg calling `DeleteScene` when the target scene does not exist would still return [`RequestStatus::Success`](#requeststatus-enum) if this flag is enabled. - `eventSubscriptions` is a bitmask of [`EventSubscriptions`](#eventsubscriptions-enum) items to subscribe to events and event categories at will. By default, all event categories are subscribed, except for events marked as high volume. High volume events must be explicitly subscribed to. **Example Message:** @@ -376,7 +374,6 @@ Authentication is not required ``` { "ignoreInvalidMessages": bool(optional) = false, - "ignoreNonFatalRequestChecks": bool(optional) = false, "eventSubscriptions": number(optional) = (EventSubscription::All) } ```