diff --git a/.speakeasy/gen.lock b/.speakeasy/gen.lock
index fa2f9ff0..2147f757 100755
--- a/.speakeasy/gen.lock
+++ b/.speakeasy/gen.lock
@@ -1,23 +1,23 @@
lockVersion: 2.0.0
id: 1732900d-e173-47c1-a90d-d45182eb35d9
management:
- docChecksum: 23094f3a9fe02710a8628ad5456f5d42
+ docChecksum: af45c1ae70f7fc6589adb3f8075cb275
docVersion: 0.0.3
- speakeasyVersion: 1.406.0
- generationVersion: 2.429.0
- releaseVersion: 0.9.0
- configChecksum: 870175070f35ff1b0f848e5e0d3ef934
+ speakeasyVersion: 1.438.1
+ generationVersion: 2.457.2
+ releaseVersion: 0.10.0
+ configChecksum: 3cf2ae4534ed6b3a44a02445b91f2164
repoURL: https://github.com/LukeHagar/plexjava.git
published: true
features:
java:
additionalDependencies: 0.1.0
constsAndDefaults: 0.1.1
- core: 3.30.4
+ core: 3.31.0
deprecations: 2.81.1
downloadStreams: 0.1.1
enums: 2.81.2
- errors: 0.1.4
+ errors: 0.3.0
flattening: 2.81.1
globalSecurity: 2.82.7
globalSecurityCallbacks: 0.1.0
@@ -28,6 +28,7 @@ features:
nameOverrides: 2.81.3
nullables: 0.1.0
sdkHooks: 0.1.0
+ tests: 0.1.0
generatedFiles:
- .gitattributes
- CONTRIBUTING.md
diff --git a/.speakeasy/gen.yaml b/.speakeasy/gen.yaml
index 2c558fbc..0067b5fd 100644
--- a/.speakeasy/gen.yaml
+++ b/.speakeasy/gen.yaml
@@ -11,8 +11,9 @@ generation:
requestResponseComponentNamesFeb2024: true
auth:
oAuth2ClientCredentialsEnabled: true
+ oAuth2PasswordEnabled: false
java:
- version: 0.9.0
+ version: 0.10.0
additionalDependencies: []
additionalPlugins: []
artifactID: plexapi
@@ -20,6 +21,7 @@ java:
companyEmail: lukeslakemail@gmail.com
companyName: plexapi
companyURL: plexapi.dev
+ defaultErrorName: SDKError
flattenGlobalSecurity: true
githubURL: github.com/LukeHagar/plexjava
groupID: dev.plexapi
diff --git a/.speakeasy/workflow.lock b/.speakeasy/workflow.lock
index e9c167b6..00ddcf07 100644
--- a/.speakeasy/workflow.lock
+++ b/.speakeasy/workflow.lock
@@ -1,4 +1,4 @@
-speakeasyVersion: 1.406.0
+speakeasyVersion: 1.438.1
sources:
my-source:
sourceNamespace: my-source
@@ -8,8 +8,8 @@ sources:
- latest
plexapi:
sourceNamespace: plexapi
- sourceRevisionDigest: sha256:790c7c67b0edef8c35ed69943d43e9c5bda385414c06f9c90410f93f546e5e4f
- sourceBlobDigest: sha256:3e48471b7e058840fc598ccd75b2cbf8187961c7e625fe7b606555ce9a9bf109
+ sourceRevisionDigest: sha256:15e040d800921ded49cf84650ef2bc8fb1acf32c885ee193c42e838d754bf345
+ sourceBlobDigest: sha256:c178be2b4bfefb37d76c0fdaef37c51f9b6ab1410422d3698a41bb6a8d79a79f
tags:
- latest
- main
@@ -17,10 +17,10 @@ targets:
plexjava:
source: plexapi
sourceNamespace: plexapi
- sourceRevisionDigest: sha256:790c7c67b0edef8c35ed69943d43e9c5bda385414c06f9c90410f93f546e5e4f
- sourceBlobDigest: sha256:3e48471b7e058840fc598ccd75b2cbf8187961c7e625fe7b606555ce9a9bf109
+ sourceRevisionDigest: sha256:15e040d800921ded49cf84650ef2bc8fb1acf32c885ee193c42e838d754bf345
+ sourceBlobDigest: sha256:c178be2b4bfefb37d76c0fdaef37c51f9b6ab1410422d3698a41bb6a8d79a79f
codeSamplesNamespace: code-samples-java-plexjava
- codeSamplesRevisionDigest: sha256:1be6f3e64a42e2f5a878957fcaa19df7ee718649f6503954dad2c4a934e4eed3
+ codeSamplesRevisionDigest: sha256:59231703e7c16d75675e4ee5c84e901b3033cfa89204ba9a3326ff1dcb0d5183
workflow:
workflowVersion: 1.0.0
speakeasyVersion: latest
diff --git a/README.md b/README.md
index fb0e3cb1..137e5aa9 100644
--- a/README.md
+++ b/README.md
@@ -61,7 +61,7 @@ The samples below show how a published SDK artifact is used:
Gradle:
```groovy
-implementation 'dev.plexapi:plexapi:0.9.0'
+implementation 'dev.plexapi:plexapi:0.10.0'
```
Maven:
@@ -69,7 +69,7 @@ Maven:
dev.plexapi
plexapi
- 0.9.0
+ 0.10.0
```
@@ -267,11 +267,11 @@ Handling errors in this SDK should largely match your expectations. All operatio
By default, an API error will throw a `models/errors/SDKError` exception. When custom error responses are specified for an operation, the SDK may also throw their associated exception. You can refer to respective *Errors* tables in SDK docs for more details on possible exception types for each operation. For example, the `getServerCapabilities` method throws the following exceptions:
-| Error Type | Status Code | Content Type |
-| ----------------------------------------------- | ----------------------------------------------- | ----------------------------------------------- |
-| models/errors/GetServerCapabilitiesBadRequest | 400 | application/json |
-| models/errors/GetServerCapabilitiesUnauthorized | 401 | application/json |
-| models/errors/SDKError | 4XX, 5XX | \*/\* |
+| Error Type | Status Code | Content Type |
+| ----------------------------------------------- | ----------- | ---------------- |
+| models/errors/GetServerCapabilitiesBadRequest | 400 | application/json |
+| models/errors/GetServerCapabilitiesUnauthorized | 401 | application/json |
+| models/errors/SDKError | 4XX, 5XX | \*/\* |
### Example
@@ -311,59 +311,16 @@ public class Application {
## Server Selection
-### Select Server by Index
+### Server Variables
-You can override the default server globally by passing a server index to the `serverIndex` builder method when initializing the SDK client instance. The selected server will then be used as the default on the operations that use it. This table lists the indexes associated with the available servers:
-
-| # | Server | Variables |
-| - | ------ | --------- |
-| 0 | `{protocol}://{ip}:{port}` | `protocol` (default is `https`), `ip` (default is `10.10.10.47`), `port` (default is `32400`) |
-
-#### Example
-
-```java
-package hello.world;
-
-import dev.plexapi.sdk.PlexAPI;
-import dev.plexapi.sdk.models.errors.GetServerCapabilitiesBadRequest;
-import dev.plexapi.sdk.models.errors.GetServerCapabilitiesUnauthorized;
-import dev.plexapi.sdk.models.operations.GetServerCapabilitiesResponse;
-import java.lang.Exception;
-
-public class Application {
-
- public static void main(String[] args) throws GetServerCapabilitiesBadRequest, GetServerCapabilitiesUnauthorized, Exception {
-
- PlexAPI sdk = PlexAPI.builder()
- .serverIndex(0)
- .accessToken("")
- .clientID("3381b62b-9ab7-4e37-827b-203e9809eb58")
- .clientName("Plex for Roku")
- .clientVersion("2.4.1")
- .platform("Roku")
- .deviceNickname("Roku 3")
- .build();
-
- GetServerCapabilitiesResponse res = sdk.server().getServerCapabilities()
- .call();
-
- if (res.object().isPresent()) {
- // handle response
- }
- }
-}
-```
-
-#### Variables
-
-Some of the server options above contain variables. If you want to set the values of those variables, the following optional parameters are available when initializing the SDK client instance:
- * `ServerProtocol protocol`
- * `String ip`
- * `String port`
+The default server `{protocol}://{ip}:{port}` contains variables and is set to `https://10.10.10.47:32400` by default. To override default values, the following builder methods are available when initializing the SDK client instance:
+ * `protocol(ServerProtocol protocol)`
+ * `ip(String ip)`
+ * `port(String port)`
### Override Server URL Per-Client
-The default server can also be overridden globally by passing a URL to the `serverURL` builder method when initializing the SDK client instance. For example:
+The default server can also be overridden globally using the `.serverURL(String serverUrl)` builder method when initializing the SDK client instance. For example:
```java
package hello.world;
@@ -378,7 +335,7 @@ public class Application {
public static void main(String[] args) throws GetServerCapabilitiesBadRequest, GetServerCapabilitiesUnauthorized, Exception {
PlexAPI sdk = PlexAPI.builder()
- .serverURL("{protocol}://{ip}:{port}")
+ .serverURL("https://10.10.10.47:32400")
.accessToken("")
.clientID("3381b62b-9ab7-4e37-827b-203e9809eb58")
.clientName("Plex for Roku")
@@ -441,9 +398,9 @@ public class Application {
This SDK supports the following security scheme globally:
-| Name | Type | Scheme |
-| ------------- | ------------- | ------------- |
-| `accessToken` | apiKey | API key |
+| Name | Type | Scheme |
+| ------------- | ------ | ------- |
+| `accessToken` | apiKey | API key |
To authenticate with the API the `accessToken` parameter must be set when initializing the SDK client instance. For example:
```java
diff --git a/RELEASES.md b/RELEASES.md
index 56a3bc7a..2c55decd 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -158,4 +158,14 @@ Based on:
### Generated
- [java v0.9.0] .
### Releases
-- [Maven Central v0.9.0] https://central.sonatype.com/artifact/dev.plexapi/plexapi/0.9.0 - .
\ No newline at end of file
+- [Maven Central v0.9.0] https://central.sonatype.com/artifact/dev.plexapi/plexapi/0.9.0 - .
+
+## 2024-11-12 00:25:12
+### Changes
+Based on:
+- OpenAPI Doc
+- Speakeasy CLI 1.438.1 (2.457.2) https://github.com/speakeasy-api/speakeasy
+### Generated
+- [java v0.10.0] .
+### Releases
+- [Maven Central v0.10.0] https://central.sonatype.com/artifact/dev.plexapi/plexapi/0.10.0 - .
\ No newline at end of file
diff --git a/build.gradle b/build.gradle
index 9039d4c9..ea4e588f 100644
--- a/build.gradle
+++ b/build.gradle
@@ -63,7 +63,7 @@ tasks.withType(Javadoc) {
}
group = "dev.plexapi"
-version = "0.9.0"
+version = "0.10.0"
sourcesJar {
archiveBaseName = "plexapi"
@@ -101,7 +101,7 @@ publishing {
maven(MavenPublication) {
groupId = 'dev.plexapi'
artifactId = 'plexapi'
- version = '0.9.0'
+ version = '0.10.0'
from components.java
diff --git a/docs/models/errors/AddPlaylistContentsBadRequest.md b/docs/models/errors/AddPlaylistContentsBadRequest.md
index fa2de509..a8d90a39 100644
--- a/docs/models/errors/AddPlaylistContentsBadRequest.md
+++ b/docs/models/errors/AddPlaylistContentsBadRequest.md
@@ -5,7 +5,7 @@ Bad Request - A parameter was not specified, or was specified incorrectly.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `errors` | List<[AddPlaylistContentsErrors](../../models/errors/AddPlaylistContentsErrors.md)> | :heavy_minus_sign: | N/A |
-| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
+| `errors` | List\<[AddPlaylistContentsErrors](../../models/errors/AddPlaylistContentsErrors.md)> | :heavy_minus_sign: | N/A |
+| `rawResponse` | [HttpResponse\](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
diff --git a/docs/models/errors/AddPlaylistContentsErrors.md b/docs/models/errors/AddPlaylistContentsErrors.md
index 3b033b2a..916531a4 100644
--- a/docs/models/errors/AddPlaylistContentsErrors.md
+++ b/docs/models/errors/AddPlaylistContentsErrors.md
@@ -5,6 +5,6 @@
| Field | Type | Required | Description | Example |
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
-| `code` | *Optional* | :heavy_minus_sign: | N/A | 1000 |
-| `message` | *Optional* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
-| `status` | *Optional* | :heavy_minus_sign: | N/A | 400 |
\ No newline at end of file
+| `code` | *Optional\* | :heavy_minus_sign: | N/A | 1000 |
+| `message` | *Optional\* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
+| `status` | *Optional\* | :heavy_minus_sign: | N/A | 400 |
\ No newline at end of file
diff --git a/docs/models/errors/AddPlaylistContentsPlaylistsErrors.md b/docs/models/errors/AddPlaylistContentsPlaylistsErrors.md
index 7c7ec4cf..252b3bf2 100644
--- a/docs/models/errors/AddPlaylistContentsPlaylistsErrors.md
+++ b/docs/models/errors/AddPlaylistContentsPlaylistsErrors.md
@@ -5,6 +5,6 @@
| Field | Type | Required | Description | Example |
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
-| `code` | *Optional* | :heavy_minus_sign: | N/A | 1001 |
-| `message` | *Optional* | :heavy_minus_sign: | N/A | User could not be authenticated |
-| `status` | *Optional* | :heavy_minus_sign: | N/A | 401 |
\ No newline at end of file
+| `code` | *Optional\* | :heavy_minus_sign: | N/A | 1001 |
+| `message` | *Optional\* | :heavy_minus_sign: | N/A | User could not be authenticated |
+| `status` | *Optional\* | :heavy_minus_sign: | N/A | 401 |
\ No newline at end of file
diff --git a/docs/models/errors/AddPlaylistContentsUnauthorized.md b/docs/models/errors/AddPlaylistContentsUnauthorized.md
index 4da494a9..e9abb4ec 100644
--- a/docs/models/errors/AddPlaylistContentsUnauthorized.md
+++ b/docs/models/errors/AddPlaylistContentsUnauthorized.md
@@ -5,7 +5,7 @@ Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `errors` | List<[AddPlaylistContentsPlaylistsErrors](../../models/errors/AddPlaylistContentsPlaylistsErrors.md)> | :heavy_minus_sign: | N/A |
-| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
+| `errors` | List\<[AddPlaylistContentsPlaylistsErrors](../../models/errors/AddPlaylistContentsPlaylistsErrors.md)> | :heavy_minus_sign: | N/A |
+| `rawResponse` | [HttpResponse\](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
diff --git a/docs/models/errors/ApplyUpdatesBadRequest.md b/docs/models/errors/ApplyUpdatesBadRequest.md
index e1b1aa94..ea26b8aa 100644
--- a/docs/models/errors/ApplyUpdatesBadRequest.md
+++ b/docs/models/errors/ApplyUpdatesBadRequest.md
@@ -5,7 +5,7 @@ Bad Request - A parameter was not specified, or was specified incorrectly.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `errors` | List<[ApplyUpdatesErrors](../../models/errors/ApplyUpdatesErrors.md)> | :heavy_minus_sign: | N/A |
-| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
+| `errors` | List\<[ApplyUpdatesErrors](../../models/errors/ApplyUpdatesErrors.md)> | :heavy_minus_sign: | N/A |
+| `rawResponse` | [HttpResponse\](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
diff --git a/docs/models/errors/ApplyUpdatesErrors.md b/docs/models/errors/ApplyUpdatesErrors.md
index 5d596bc2..3cfe18de 100644
--- a/docs/models/errors/ApplyUpdatesErrors.md
+++ b/docs/models/errors/ApplyUpdatesErrors.md
@@ -5,6 +5,6 @@
| Field | Type | Required | Description | Example |
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
-| `code` | *Optional* | :heavy_minus_sign: | N/A | 1000 |
-| `message` | *Optional* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
-| `status` | *Optional* | :heavy_minus_sign: | N/A | 400 |
\ No newline at end of file
+| `code` | *Optional\* | :heavy_minus_sign: | N/A | 1000 |
+| `message` | *Optional\* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
+| `status` | *Optional\* | :heavy_minus_sign: | N/A | 400 |
\ No newline at end of file
diff --git a/docs/models/errors/ApplyUpdatesUnauthorized.md b/docs/models/errors/ApplyUpdatesUnauthorized.md
index a01b957a..e07767f0 100644
--- a/docs/models/errors/ApplyUpdatesUnauthorized.md
+++ b/docs/models/errors/ApplyUpdatesUnauthorized.md
@@ -5,7 +5,7 @@ Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `errors` | List<[ApplyUpdatesUpdaterErrors](../../models/errors/ApplyUpdatesUpdaterErrors.md)> | :heavy_minus_sign: | N/A |
-| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
+| `errors` | List\<[ApplyUpdatesUpdaterErrors](../../models/errors/ApplyUpdatesUpdaterErrors.md)> | :heavy_minus_sign: | N/A |
+| `rawResponse` | [HttpResponse\](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
diff --git a/docs/models/errors/ApplyUpdatesUpdaterErrors.md b/docs/models/errors/ApplyUpdatesUpdaterErrors.md
index bfaa59d5..5ba16432 100644
--- a/docs/models/errors/ApplyUpdatesUpdaterErrors.md
+++ b/docs/models/errors/ApplyUpdatesUpdaterErrors.md
@@ -5,6 +5,6 @@
| Field | Type | Required | Description | Example |
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
-| `code` | *Optional* | :heavy_minus_sign: | N/A | 1001 |
-| `message` | *Optional* | :heavy_minus_sign: | N/A | User could not be authenticated |
-| `status` | *Optional* | :heavy_minus_sign: | N/A | 401 |
\ No newline at end of file
+| `code` | *Optional\* | :heavy_minus_sign: | N/A | 1001 |
+| `message` | *Optional\* | :heavy_minus_sign: | N/A | User could not be authenticated |
+| `status` | *Optional\* | :heavy_minus_sign: | N/A | 401 |
\ No newline at end of file
diff --git a/docs/models/errors/CancelServerActivitiesActivitiesErrors.md b/docs/models/errors/CancelServerActivitiesActivitiesErrors.md
index 8a808841..5daba45c 100644
--- a/docs/models/errors/CancelServerActivitiesActivitiesErrors.md
+++ b/docs/models/errors/CancelServerActivitiesActivitiesErrors.md
@@ -5,6 +5,6 @@
| Field | Type | Required | Description | Example |
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
-| `code` | *Optional* | :heavy_minus_sign: | N/A | 1001 |
-| `message` | *Optional* | :heavy_minus_sign: | N/A | User could not be authenticated |
-| `status` | *Optional* | :heavy_minus_sign: | N/A | 401 |
\ No newline at end of file
+| `code` | *Optional\* | :heavy_minus_sign: | N/A | 1001 |
+| `message` | *Optional\* | :heavy_minus_sign: | N/A | User could not be authenticated |
+| `status` | *Optional\* | :heavy_minus_sign: | N/A | 401 |
\ No newline at end of file
diff --git a/docs/models/errors/CancelServerActivitiesBadRequest.md b/docs/models/errors/CancelServerActivitiesBadRequest.md
index 5c19e972..3bf1a89b 100644
--- a/docs/models/errors/CancelServerActivitiesBadRequest.md
+++ b/docs/models/errors/CancelServerActivitiesBadRequest.md
@@ -5,7 +5,7 @@ Bad Request - A parameter was not specified, or was specified incorrectly.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `errors` | List<[CancelServerActivitiesErrors](../../models/errors/CancelServerActivitiesErrors.md)> | :heavy_minus_sign: | N/A |
-| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
+| `errors` | List\<[CancelServerActivitiesErrors](../../models/errors/CancelServerActivitiesErrors.md)> | :heavy_minus_sign: | N/A |
+| `rawResponse` | [HttpResponse\](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
diff --git a/docs/models/errors/CancelServerActivitiesErrors.md b/docs/models/errors/CancelServerActivitiesErrors.md
index 8575bf0a..56aa9775 100644
--- a/docs/models/errors/CancelServerActivitiesErrors.md
+++ b/docs/models/errors/CancelServerActivitiesErrors.md
@@ -5,6 +5,6 @@
| Field | Type | Required | Description | Example |
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
-| `code` | *Optional* | :heavy_minus_sign: | N/A | 1000 |
-| `message` | *Optional* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
-| `status` | *Optional* | :heavy_minus_sign: | N/A | 400 |
\ No newline at end of file
+| `code` | *Optional\* | :heavy_minus_sign: | N/A | 1000 |
+| `message` | *Optional\* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
+| `status` | *Optional\* | :heavy_minus_sign: | N/A | 400 |
\ No newline at end of file
diff --git a/docs/models/errors/CancelServerActivitiesUnauthorized.md b/docs/models/errors/CancelServerActivitiesUnauthorized.md
index 1abd2984..31e48237 100644
--- a/docs/models/errors/CancelServerActivitiesUnauthorized.md
+++ b/docs/models/errors/CancelServerActivitiesUnauthorized.md
@@ -5,7 +5,7 @@ Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `errors` | List<[CancelServerActivitiesActivitiesErrors](../../models/errors/CancelServerActivitiesActivitiesErrors.md)> | :heavy_minus_sign: | N/A |
-| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
+| `errors` | List\<[CancelServerActivitiesActivitiesErrors](../../models/errors/CancelServerActivitiesActivitiesErrors.md)> | :heavy_minus_sign: | N/A |
+| `rawResponse` | [HttpResponse\](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
diff --git a/docs/models/errors/CheckForUpdatesBadRequest.md b/docs/models/errors/CheckForUpdatesBadRequest.md
index 2e400dcf..5a82e251 100644
--- a/docs/models/errors/CheckForUpdatesBadRequest.md
+++ b/docs/models/errors/CheckForUpdatesBadRequest.md
@@ -5,7 +5,7 @@ Bad Request - A parameter was not specified, or was specified incorrectly.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `errors` | List<[CheckForUpdatesErrors](../../models/errors/CheckForUpdatesErrors.md)> | :heavy_minus_sign: | N/A |
-| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
+| `errors` | List\<[CheckForUpdatesErrors](../../models/errors/CheckForUpdatesErrors.md)> | :heavy_minus_sign: | N/A |
+| `rawResponse` | [HttpResponse\](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
diff --git a/docs/models/errors/CheckForUpdatesErrors.md b/docs/models/errors/CheckForUpdatesErrors.md
index 97f027d9..392b7820 100644
--- a/docs/models/errors/CheckForUpdatesErrors.md
+++ b/docs/models/errors/CheckForUpdatesErrors.md
@@ -5,6 +5,6 @@
| Field | Type | Required | Description | Example |
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
-| `code` | *Optional* | :heavy_minus_sign: | N/A | 1000 |
-| `message` | *Optional* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
-| `status` | *Optional* | :heavy_minus_sign: | N/A | 400 |
\ No newline at end of file
+| `code` | *Optional\* | :heavy_minus_sign: | N/A | 1000 |
+| `message` | *Optional\* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
+| `status` | *Optional\* | :heavy_minus_sign: | N/A | 400 |
\ No newline at end of file
diff --git a/docs/models/errors/CheckForUpdatesUnauthorized.md b/docs/models/errors/CheckForUpdatesUnauthorized.md
index 9e082b8c..74501eee 100644
--- a/docs/models/errors/CheckForUpdatesUnauthorized.md
+++ b/docs/models/errors/CheckForUpdatesUnauthorized.md
@@ -5,7 +5,7 @@ Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `errors` | List<[CheckForUpdatesUpdaterErrors](../../models/errors/CheckForUpdatesUpdaterErrors.md)> | :heavy_minus_sign: | N/A |
-| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
+| `errors` | List\<[CheckForUpdatesUpdaterErrors](../../models/errors/CheckForUpdatesUpdaterErrors.md)> | :heavy_minus_sign: | N/A |
+| `rawResponse` | [HttpResponse\](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
diff --git a/docs/models/errors/CheckForUpdatesUpdaterErrors.md b/docs/models/errors/CheckForUpdatesUpdaterErrors.md
index 6deba18a..e33dbe5e 100644
--- a/docs/models/errors/CheckForUpdatesUpdaterErrors.md
+++ b/docs/models/errors/CheckForUpdatesUpdaterErrors.md
@@ -5,6 +5,6 @@
| Field | Type | Required | Description | Example |
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
-| `code` | *Optional* | :heavy_minus_sign: | N/A | 1001 |
-| `message` | *Optional* | :heavy_minus_sign: | N/A | User could not be authenticated |
-| `status` | *Optional* | :heavy_minus_sign: | N/A | 401 |
\ No newline at end of file
+| `code` | *Optional\* | :heavy_minus_sign: | N/A | 1001 |
+| `message` | *Optional\* | :heavy_minus_sign: | N/A | User could not be authenticated |
+| `status` | *Optional\* | :heavy_minus_sign: | N/A | 401 |
\ No newline at end of file
diff --git a/docs/models/errors/ClearPlaylistContentsBadRequest.md b/docs/models/errors/ClearPlaylistContentsBadRequest.md
index 281033a9..bce1e2d8 100644
--- a/docs/models/errors/ClearPlaylistContentsBadRequest.md
+++ b/docs/models/errors/ClearPlaylistContentsBadRequest.md
@@ -5,7 +5,7 @@ Bad Request - A parameter was not specified, or was specified incorrectly.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `errors` | List<[ClearPlaylistContentsErrors](../../models/errors/ClearPlaylistContentsErrors.md)> | :heavy_minus_sign: | N/A |
-| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
+| `errors` | List\<[ClearPlaylistContentsErrors](../../models/errors/ClearPlaylistContentsErrors.md)> | :heavy_minus_sign: | N/A |
+| `rawResponse` | [HttpResponse\](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
diff --git a/docs/models/errors/ClearPlaylistContentsErrors.md b/docs/models/errors/ClearPlaylistContentsErrors.md
index 59073f96..e938956e 100644
--- a/docs/models/errors/ClearPlaylistContentsErrors.md
+++ b/docs/models/errors/ClearPlaylistContentsErrors.md
@@ -5,6 +5,6 @@
| Field | Type | Required | Description | Example |
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
-| `code` | *Optional* | :heavy_minus_sign: | N/A | 1000 |
-| `message` | *Optional* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
-| `status` | *Optional* | :heavy_minus_sign: | N/A | 400 |
\ No newline at end of file
+| `code` | *Optional\* | :heavy_minus_sign: | N/A | 1000 |
+| `message` | *Optional\* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
+| `status` | *Optional\* | :heavy_minus_sign: | N/A | 400 |
\ No newline at end of file
diff --git a/docs/models/errors/ClearPlaylistContentsPlaylistsErrors.md b/docs/models/errors/ClearPlaylistContentsPlaylistsErrors.md
index 07dfb8f5..679bf168 100644
--- a/docs/models/errors/ClearPlaylistContentsPlaylistsErrors.md
+++ b/docs/models/errors/ClearPlaylistContentsPlaylistsErrors.md
@@ -5,6 +5,6 @@
| Field | Type | Required | Description | Example |
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
-| `code` | *Optional* | :heavy_minus_sign: | N/A | 1001 |
-| `message` | *Optional* | :heavy_minus_sign: | N/A | User could not be authenticated |
-| `status` | *Optional* | :heavy_minus_sign: | N/A | 401 |
\ No newline at end of file
+| `code` | *Optional\* | :heavy_minus_sign: | N/A | 1001 |
+| `message` | *Optional\* | :heavy_minus_sign: | N/A | User could not be authenticated |
+| `status` | *Optional\* | :heavy_minus_sign: | N/A | 401 |
\ No newline at end of file
diff --git a/docs/models/errors/ClearPlaylistContentsUnauthorized.md b/docs/models/errors/ClearPlaylistContentsUnauthorized.md
index 603cdab3..b09e228a 100644
--- a/docs/models/errors/ClearPlaylistContentsUnauthorized.md
+++ b/docs/models/errors/ClearPlaylistContentsUnauthorized.md
@@ -5,7 +5,7 @@ Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `errors` | List<[ClearPlaylistContentsPlaylistsErrors](../../models/errors/ClearPlaylistContentsPlaylistsErrors.md)> | :heavy_minus_sign: | N/A |
-| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
+| `errors` | List\<[ClearPlaylistContentsPlaylistsErrors](../../models/errors/ClearPlaylistContentsPlaylistsErrors.md)> | :heavy_minus_sign: | N/A |
+| `rawResponse` | [HttpResponse\](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
diff --git a/docs/models/errors/CreatePlaylistBadRequest.md b/docs/models/errors/CreatePlaylistBadRequest.md
index 209d4f09..f4aeaa0d 100644
--- a/docs/models/errors/CreatePlaylistBadRequest.md
+++ b/docs/models/errors/CreatePlaylistBadRequest.md
@@ -5,7 +5,7 @@ Bad Request - A parameter was not specified, or was specified incorrectly.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `errors` | List<[CreatePlaylistErrors](../../models/errors/CreatePlaylistErrors.md)> | :heavy_minus_sign: | N/A |
-| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
+| `errors` | List\<[CreatePlaylistErrors](../../models/errors/CreatePlaylistErrors.md)> | :heavy_minus_sign: | N/A |
+| `rawResponse` | [HttpResponse\](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
diff --git a/docs/models/errors/CreatePlaylistErrors.md b/docs/models/errors/CreatePlaylistErrors.md
index 2e834dfd..87645d0f 100644
--- a/docs/models/errors/CreatePlaylistErrors.md
+++ b/docs/models/errors/CreatePlaylistErrors.md
@@ -5,6 +5,6 @@
| Field | Type | Required | Description | Example |
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
-| `code` | *Optional* | :heavy_minus_sign: | N/A | 1000 |
-| `message` | *Optional* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
-| `status` | *Optional* | :heavy_minus_sign: | N/A | 400 |
\ No newline at end of file
+| `code` | *Optional\* | :heavy_minus_sign: | N/A | 1000 |
+| `message` | *Optional\* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
+| `status` | *Optional\* | :heavy_minus_sign: | N/A | 400 |
\ No newline at end of file
diff --git a/docs/models/errors/CreatePlaylistPlaylistsErrors.md b/docs/models/errors/CreatePlaylistPlaylistsErrors.md
index 4a0f5c42..f05b71b7 100644
--- a/docs/models/errors/CreatePlaylistPlaylistsErrors.md
+++ b/docs/models/errors/CreatePlaylistPlaylistsErrors.md
@@ -5,6 +5,6 @@
| Field | Type | Required | Description | Example |
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
-| `code` | *Optional* | :heavy_minus_sign: | N/A | 1001 |
-| `message` | *Optional* | :heavy_minus_sign: | N/A | User could not be authenticated |
-| `status` | *Optional* | :heavy_minus_sign: | N/A | 401 |
\ No newline at end of file
+| `code` | *Optional\* | :heavy_minus_sign: | N/A | 1001 |
+| `message` | *Optional\* | :heavy_minus_sign: | N/A | User could not be authenticated |
+| `status` | *Optional\* | :heavy_minus_sign: | N/A | 401 |
\ No newline at end of file
diff --git a/docs/models/errors/CreatePlaylistUnauthorized.md b/docs/models/errors/CreatePlaylistUnauthorized.md
index 785cf935..c5e1329d 100644
--- a/docs/models/errors/CreatePlaylistUnauthorized.md
+++ b/docs/models/errors/CreatePlaylistUnauthorized.md
@@ -5,7 +5,7 @@ Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `errors` | List<[CreatePlaylistPlaylistsErrors](../../models/errors/CreatePlaylistPlaylistsErrors.md)> | :heavy_minus_sign: | N/A |
-| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
+| `errors` | List\<[CreatePlaylistPlaylistsErrors](../../models/errors/CreatePlaylistPlaylistsErrors.md)> | :heavy_minus_sign: | N/A |
+| `rawResponse` | [HttpResponse\](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
diff --git a/docs/models/errors/DeleteLibraryBadRequest.md b/docs/models/errors/DeleteLibraryBadRequest.md
index a9922e73..82e1782f 100644
--- a/docs/models/errors/DeleteLibraryBadRequest.md
+++ b/docs/models/errors/DeleteLibraryBadRequest.md
@@ -5,7 +5,7 @@ Bad Request - A parameter was not specified, or was specified incorrectly.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `errors` | List<[DeleteLibraryErrors](../../models/errors/DeleteLibraryErrors.md)> | :heavy_minus_sign: | N/A |
-| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
+| `errors` | List\<[DeleteLibraryErrors](../../models/errors/DeleteLibraryErrors.md)> | :heavy_minus_sign: | N/A |
+| `rawResponse` | [HttpResponse\](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
diff --git a/docs/models/errors/DeleteLibraryErrors.md b/docs/models/errors/DeleteLibraryErrors.md
index 7aee308b..7c98d989 100644
--- a/docs/models/errors/DeleteLibraryErrors.md
+++ b/docs/models/errors/DeleteLibraryErrors.md
@@ -5,6 +5,6 @@
| Field | Type | Required | Description | Example |
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
-| `code` | *Optional* | :heavy_minus_sign: | N/A | 1000 |
-| `message` | *Optional* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
-| `status` | *Optional* | :heavy_minus_sign: | N/A | 400 |
\ No newline at end of file
+| `code` | *Optional\* | :heavy_minus_sign: | N/A | 1000 |
+| `message` | *Optional\* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
+| `status` | *Optional\* | :heavy_minus_sign: | N/A | 400 |
\ No newline at end of file
diff --git a/docs/models/errors/DeleteLibraryLibraryErrors.md b/docs/models/errors/DeleteLibraryLibraryErrors.md
index a209deb1..5acad497 100644
--- a/docs/models/errors/DeleteLibraryLibraryErrors.md
+++ b/docs/models/errors/DeleteLibraryLibraryErrors.md
@@ -5,6 +5,6 @@
| Field | Type | Required | Description | Example |
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
-| `code` | *Optional* | :heavy_minus_sign: | N/A | 1001 |
-| `message` | *Optional* | :heavy_minus_sign: | N/A | User could not be authenticated |
-| `status` | *Optional* | :heavy_minus_sign: | N/A | 401 |
\ No newline at end of file
+| `code` | *Optional\* | :heavy_minus_sign: | N/A | 1001 |
+| `message` | *Optional\* | :heavy_minus_sign: | N/A | User could not be authenticated |
+| `status` | *Optional\* | :heavy_minus_sign: | N/A | 401 |
\ No newline at end of file
diff --git a/docs/models/errors/DeleteLibraryUnauthorized.md b/docs/models/errors/DeleteLibraryUnauthorized.md
index 59fce530..331a4d2e 100644
--- a/docs/models/errors/DeleteLibraryUnauthorized.md
+++ b/docs/models/errors/DeleteLibraryUnauthorized.md
@@ -5,7 +5,7 @@ Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `errors` | List<[DeleteLibraryLibraryErrors](../../models/errors/DeleteLibraryLibraryErrors.md)> | :heavy_minus_sign: | N/A |
-| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
+| `errors` | List\<[DeleteLibraryLibraryErrors](../../models/errors/DeleteLibraryLibraryErrors.md)> | :heavy_minus_sign: | N/A |
+| `rawResponse` | [HttpResponse\](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
diff --git a/docs/models/errors/DeletePlaylistBadRequest.md b/docs/models/errors/DeletePlaylistBadRequest.md
index 575935f6..f7b43179 100644
--- a/docs/models/errors/DeletePlaylistBadRequest.md
+++ b/docs/models/errors/DeletePlaylistBadRequest.md
@@ -5,7 +5,7 @@ Bad Request - A parameter was not specified, or was specified incorrectly.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `errors` | List<[DeletePlaylistErrors](../../models/errors/DeletePlaylistErrors.md)> | :heavy_minus_sign: | N/A |
-| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
+| `errors` | List\<[DeletePlaylistErrors](../../models/errors/DeletePlaylistErrors.md)> | :heavy_minus_sign: | N/A |
+| `rawResponse` | [HttpResponse\](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
diff --git a/docs/models/errors/DeletePlaylistErrors.md b/docs/models/errors/DeletePlaylistErrors.md
index d8bcc25d..cf4f24da 100644
--- a/docs/models/errors/DeletePlaylistErrors.md
+++ b/docs/models/errors/DeletePlaylistErrors.md
@@ -5,6 +5,6 @@
| Field | Type | Required | Description | Example |
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
-| `code` | *Optional* | :heavy_minus_sign: | N/A | 1000 |
-| `message` | *Optional* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
-| `status` | *Optional* | :heavy_minus_sign: | N/A | 400 |
\ No newline at end of file
+| `code` | *Optional\* | :heavy_minus_sign: | N/A | 1000 |
+| `message` | *Optional\* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
+| `status` | *Optional\* | :heavy_minus_sign: | N/A | 400 |
\ No newline at end of file
diff --git a/docs/models/errors/DeletePlaylistPlaylistsErrors.md b/docs/models/errors/DeletePlaylistPlaylistsErrors.md
index 2e47d5a7..16837338 100644
--- a/docs/models/errors/DeletePlaylistPlaylistsErrors.md
+++ b/docs/models/errors/DeletePlaylistPlaylistsErrors.md
@@ -5,6 +5,6 @@
| Field | Type | Required | Description | Example |
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
-| `code` | *Optional* | :heavy_minus_sign: | N/A | 1001 |
-| `message` | *Optional* | :heavy_minus_sign: | N/A | User could not be authenticated |
-| `status` | *Optional* | :heavy_minus_sign: | N/A | 401 |
\ No newline at end of file
+| `code` | *Optional\* | :heavy_minus_sign: | N/A | 1001 |
+| `message` | *Optional\* | :heavy_minus_sign: | N/A | User could not be authenticated |
+| `status` | *Optional\* | :heavy_minus_sign: | N/A | 401 |
\ No newline at end of file
diff --git a/docs/models/errors/DeletePlaylistUnauthorized.md b/docs/models/errors/DeletePlaylistUnauthorized.md
index d0809855..dae687a2 100644
--- a/docs/models/errors/DeletePlaylistUnauthorized.md
+++ b/docs/models/errors/DeletePlaylistUnauthorized.md
@@ -5,7 +5,7 @@ Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `errors` | List<[DeletePlaylistPlaylistsErrors](../../models/errors/DeletePlaylistPlaylistsErrors.md)> | :heavy_minus_sign: | N/A |
-| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
+| `errors` | List\<[DeletePlaylistPlaylistsErrors](../../models/errors/DeletePlaylistPlaylistsErrors.md)> | :heavy_minus_sign: | N/A |
+| `rawResponse` | [HttpResponse\](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
diff --git a/docs/models/errors/EnablePaperTrailBadRequest.md b/docs/models/errors/EnablePaperTrailBadRequest.md
index 36b45ca3..f1a362a3 100644
--- a/docs/models/errors/EnablePaperTrailBadRequest.md
+++ b/docs/models/errors/EnablePaperTrailBadRequest.md
@@ -5,7 +5,7 @@ Bad Request - A parameter was not specified, or was specified incorrectly.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `errors` | List<[EnablePaperTrailErrors](../../models/errors/EnablePaperTrailErrors.md)> | :heavy_minus_sign: | N/A |
-| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
+| `errors` | List\<[EnablePaperTrailErrors](../../models/errors/EnablePaperTrailErrors.md)> | :heavy_minus_sign: | N/A |
+| `rawResponse` | [HttpResponse\](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
diff --git a/docs/models/errors/EnablePaperTrailErrors.md b/docs/models/errors/EnablePaperTrailErrors.md
index 0c4f1da9..04156206 100644
--- a/docs/models/errors/EnablePaperTrailErrors.md
+++ b/docs/models/errors/EnablePaperTrailErrors.md
@@ -5,6 +5,6 @@
| Field | Type | Required | Description | Example |
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
-| `code` | *Optional* | :heavy_minus_sign: | N/A | 1000 |
-| `message` | *Optional* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
-| `status` | *Optional* | :heavy_minus_sign: | N/A | 400 |
\ No newline at end of file
+| `code` | *Optional\* | :heavy_minus_sign: | N/A | 1000 |
+| `message` | *Optional\* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
+| `status` | *Optional\* | :heavy_minus_sign: | N/A | 400 |
\ No newline at end of file
diff --git a/docs/models/errors/EnablePaperTrailLogErrors.md b/docs/models/errors/EnablePaperTrailLogErrors.md
index 1c862cf3..6d3b21e9 100644
--- a/docs/models/errors/EnablePaperTrailLogErrors.md
+++ b/docs/models/errors/EnablePaperTrailLogErrors.md
@@ -5,6 +5,6 @@
| Field | Type | Required | Description | Example |
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
-| `code` | *Optional* | :heavy_minus_sign: | N/A | 1001 |
-| `message` | *Optional* | :heavy_minus_sign: | N/A | User could not be authenticated |
-| `status` | *Optional* | :heavy_minus_sign: | N/A | 401 |
\ No newline at end of file
+| `code` | *Optional\* | :heavy_minus_sign: | N/A | 1001 |
+| `message` | *Optional\* | :heavy_minus_sign: | N/A | User could not be authenticated |
+| `status` | *Optional\* | :heavy_minus_sign: | N/A | 401 |
\ No newline at end of file
diff --git a/docs/models/errors/EnablePaperTrailUnauthorized.md b/docs/models/errors/EnablePaperTrailUnauthorized.md
index f134d2b0..0968ede5 100644
--- a/docs/models/errors/EnablePaperTrailUnauthorized.md
+++ b/docs/models/errors/EnablePaperTrailUnauthorized.md
@@ -5,7 +5,7 @@ Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `errors` | List<[EnablePaperTrailLogErrors](../../models/errors/EnablePaperTrailLogErrors.md)> | :heavy_minus_sign: | N/A |
-| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
+| `errors` | List\<[EnablePaperTrailLogErrors](../../models/errors/EnablePaperTrailLogErrors.md)> | :heavy_minus_sign: | N/A |
+| `rawResponse` | [HttpResponse\](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
diff --git a/docs/models/errors/Errors.md b/docs/models/errors/Errors.md
index 9dae6c7d..5b010b69 100644
--- a/docs/models/errors/Errors.md
+++ b/docs/models/errors/Errors.md
@@ -5,6 +5,6 @@
| Field | Type | Required | Description | Example |
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
-| `code` | *Optional* | :heavy_minus_sign: | N/A | 1000 |
-| `message` | *Optional* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
-| `status` | *Optional* | :heavy_minus_sign: | N/A | 400 |
\ No newline at end of file
+| `code` | *Optional\* | :heavy_minus_sign: | N/A | 1000 |
+| `message` | *Optional\* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
+| `status` | *Optional\* | :heavy_minus_sign: | N/A | 400 |
\ No newline at end of file
diff --git a/docs/models/errors/GetAllLibrariesBadRequest.md b/docs/models/errors/GetAllLibrariesBadRequest.md
index fa378e00..2a9284db 100644
--- a/docs/models/errors/GetAllLibrariesBadRequest.md
+++ b/docs/models/errors/GetAllLibrariesBadRequest.md
@@ -5,7 +5,7 @@ Bad Request - A parameter was not specified, or was specified incorrectly.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `errors` | List<[GetAllLibrariesErrors](../../models/errors/GetAllLibrariesErrors.md)> | :heavy_minus_sign: | N/A |
-| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
+| `errors` | List\<[GetAllLibrariesErrors](../../models/errors/GetAllLibrariesErrors.md)> | :heavy_minus_sign: | N/A |
+| `rawResponse` | [HttpResponse\](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
diff --git a/docs/models/errors/GetAllLibrariesErrors.md b/docs/models/errors/GetAllLibrariesErrors.md
index 7dda39ba..4a3f65ce 100644
--- a/docs/models/errors/GetAllLibrariesErrors.md
+++ b/docs/models/errors/GetAllLibrariesErrors.md
@@ -5,6 +5,6 @@
| Field | Type | Required | Description | Example |
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
-| `code` | *Optional* | :heavy_minus_sign: | N/A | 1000 |
-| `message` | *Optional* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
-| `status` | *Optional* | :heavy_minus_sign: | N/A | 400 |
\ No newline at end of file
+| `code` | *Optional\* | :heavy_minus_sign: | N/A | 1000 |
+| `message` | *Optional\* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
+| `status` | *Optional\* | :heavy_minus_sign: | N/A | 400 |
\ No newline at end of file
diff --git a/docs/models/errors/GetAllLibrariesLibraryErrors.md b/docs/models/errors/GetAllLibrariesLibraryErrors.md
index 0a4adfa0..3c2e5d30 100644
--- a/docs/models/errors/GetAllLibrariesLibraryErrors.md
+++ b/docs/models/errors/GetAllLibrariesLibraryErrors.md
@@ -5,6 +5,6 @@
| Field | Type | Required | Description | Example |
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
-| `code` | *Optional* | :heavy_minus_sign: | N/A | 1001 |
-| `message` | *Optional* | :heavy_minus_sign: | N/A | User could not be authenticated |
-| `status` | *Optional* | :heavy_minus_sign: | N/A | 401 |
\ No newline at end of file
+| `code` | *Optional\* | :heavy_minus_sign: | N/A | 1001 |
+| `message` | *Optional\* | :heavy_minus_sign: | N/A | User could not be authenticated |
+| `status` | *Optional\* | :heavy_minus_sign: | N/A | 401 |
\ No newline at end of file
diff --git a/docs/models/errors/GetAllLibrariesUnauthorized.md b/docs/models/errors/GetAllLibrariesUnauthorized.md
index 15c64d6d..258f5d01 100644
--- a/docs/models/errors/GetAllLibrariesUnauthorized.md
+++ b/docs/models/errors/GetAllLibrariesUnauthorized.md
@@ -5,7 +5,7 @@ Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `errors` | List<[GetAllLibrariesLibraryErrors](../../models/errors/GetAllLibrariesLibraryErrors.md)> | :heavy_minus_sign: | N/A |
-| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
+| `errors` | List\<[GetAllLibrariesLibraryErrors](../../models/errors/GetAllLibrariesLibraryErrors.md)> | :heavy_minus_sign: | N/A |
+| `rawResponse` | [HttpResponse\](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
diff --git a/docs/models/errors/GetAvailableClientsBadRequest.md b/docs/models/errors/GetAvailableClientsBadRequest.md
index 1129ade5..60bc53d5 100644
--- a/docs/models/errors/GetAvailableClientsBadRequest.md
+++ b/docs/models/errors/GetAvailableClientsBadRequest.md
@@ -5,7 +5,7 @@ Bad Request - A parameter was not specified, or was specified incorrectly.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `errors` | List<[GetAvailableClientsErrors](../../models/errors/GetAvailableClientsErrors.md)> | :heavy_minus_sign: | N/A |
-| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
+| `errors` | List\<[GetAvailableClientsErrors](../../models/errors/GetAvailableClientsErrors.md)> | :heavy_minus_sign: | N/A |
+| `rawResponse` | [HttpResponse\](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
diff --git a/docs/models/errors/GetAvailableClientsErrors.md b/docs/models/errors/GetAvailableClientsErrors.md
index ea19e45c..f57a90fb 100644
--- a/docs/models/errors/GetAvailableClientsErrors.md
+++ b/docs/models/errors/GetAvailableClientsErrors.md
@@ -5,6 +5,6 @@
| Field | Type | Required | Description | Example |
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
-| `code` | *Optional* | :heavy_minus_sign: | N/A | 1000 |
-| `message` | *Optional* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
-| `status` | *Optional* | :heavy_minus_sign: | N/A | 400 |
\ No newline at end of file
+| `code` | *Optional\* | :heavy_minus_sign: | N/A | 1000 |
+| `message` | *Optional\* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
+| `status` | *Optional\* | :heavy_minus_sign: | N/A | 400 |
\ No newline at end of file
diff --git a/docs/models/errors/GetAvailableClientsServerErrors.md b/docs/models/errors/GetAvailableClientsServerErrors.md
index b1507522..5583879f 100644
--- a/docs/models/errors/GetAvailableClientsServerErrors.md
+++ b/docs/models/errors/GetAvailableClientsServerErrors.md
@@ -5,6 +5,6 @@
| Field | Type | Required | Description | Example |
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
-| `code` | *Optional* | :heavy_minus_sign: | N/A | 1001 |
-| `message` | *Optional* | :heavy_minus_sign: | N/A | User could not be authenticated |
-| `status` | *Optional* | :heavy_minus_sign: | N/A | 401 |
\ No newline at end of file
+| `code` | *Optional\* | :heavy_minus_sign: | N/A | 1001 |
+| `message` | *Optional\* | :heavy_minus_sign: | N/A | User could not be authenticated |
+| `status` | *Optional\* | :heavy_minus_sign: | N/A | 401 |
\ No newline at end of file
diff --git a/docs/models/errors/GetAvailableClientsUnauthorized.md b/docs/models/errors/GetAvailableClientsUnauthorized.md
index e2506fdf..80bac453 100644
--- a/docs/models/errors/GetAvailableClientsUnauthorized.md
+++ b/docs/models/errors/GetAvailableClientsUnauthorized.md
@@ -5,7 +5,7 @@ Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `errors` | List<[GetAvailableClientsServerErrors](../../models/errors/GetAvailableClientsServerErrors.md)> | :heavy_minus_sign: | N/A |
-| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
+| `errors` | List\<[GetAvailableClientsServerErrors](../../models/errors/GetAvailableClientsServerErrors.md)> | :heavy_minus_sign: | N/A |
+| `rawResponse` | [HttpResponse\](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
diff --git a/docs/models/errors/GetBandwidthStatisticsBadRequest.md b/docs/models/errors/GetBandwidthStatisticsBadRequest.md
index 3299977f..b560b73f 100644
--- a/docs/models/errors/GetBandwidthStatisticsBadRequest.md
+++ b/docs/models/errors/GetBandwidthStatisticsBadRequest.md
@@ -5,7 +5,7 @@ Bad Request - A parameter was not specified, or was specified incorrectly.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `errors` | List<[GetBandwidthStatisticsErrors](../../models/errors/GetBandwidthStatisticsErrors.md)> | :heavy_minus_sign: | N/A |
-| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
+| `errors` | List\<[GetBandwidthStatisticsErrors](../../models/errors/GetBandwidthStatisticsErrors.md)> | :heavy_minus_sign: | N/A |
+| `rawResponse` | [HttpResponse\](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
diff --git a/docs/models/errors/GetBandwidthStatisticsErrors.md b/docs/models/errors/GetBandwidthStatisticsErrors.md
index 78a5f4b9..bbc69145 100644
--- a/docs/models/errors/GetBandwidthStatisticsErrors.md
+++ b/docs/models/errors/GetBandwidthStatisticsErrors.md
@@ -5,6 +5,6 @@
| Field | Type | Required | Description | Example |
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
-| `code` | *Optional* | :heavy_minus_sign: | N/A | 1000 |
-| `message` | *Optional* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
-| `status` | *Optional* | :heavy_minus_sign: | N/A | 400 |
\ No newline at end of file
+| `code` | *Optional\* | :heavy_minus_sign: | N/A | 1000 |
+| `message` | *Optional\* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
+| `status` | *Optional\* | :heavy_minus_sign: | N/A | 400 |
\ No newline at end of file
diff --git a/docs/models/errors/GetBandwidthStatisticsStatisticsErrors.md b/docs/models/errors/GetBandwidthStatisticsStatisticsErrors.md
index 30195f3c..0fa693dc 100644
--- a/docs/models/errors/GetBandwidthStatisticsStatisticsErrors.md
+++ b/docs/models/errors/GetBandwidthStatisticsStatisticsErrors.md
@@ -5,6 +5,6 @@
| Field | Type | Required | Description | Example |
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
-| `code` | *Optional* | :heavy_minus_sign: | N/A | 1001 |
-| `message` | *Optional* | :heavy_minus_sign: | N/A | User could not be authenticated |
-| `status` | *Optional* | :heavy_minus_sign: | N/A | 401 |
\ No newline at end of file
+| `code` | *Optional\* | :heavy_minus_sign: | N/A | 1001 |
+| `message` | *Optional\* | :heavy_minus_sign: | N/A | User could not be authenticated |
+| `status` | *Optional\* | :heavy_minus_sign: | N/A | 401 |
\ No newline at end of file
diff --git a/docs/models/errors/GetBandwidthStatisticsUnauthorized.md b/docs/models/errors/GetBandwidthStatisticsUnauthorized.md
index 5b4b672d..67770830 100644
--- a/docs/models/errors/GetBandwidthStatisticsUnauthorized.md
+++ b/docs/models/errors/GetBandwidthStatisticsUnauthorized.md
@@ -5,7 +5,7 @@ Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `errors` | List<[GetBandwidthStatisticsStatisticsErrors](../../models/errors/GetBandwidthStatisticsStatisticsErrors.md)> | :heavy_minus_sign: | N/A |
-| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
+| `errors` | List\<[GetBandwidthStatisticsStatisticsErrors](../../models/errors/GetBandwidthStatisticsStatisticsErrors.md)> | :heavy_minus_sign: | N/A |
+| `rawResponse` | [HttpResponse\](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
diff --git a/docs/models/errors/GetBannerImageBadRequest.md b/docs/models/errors/GetBannerImageBadRequest.md
index 7379fdc4..1791b335 100644
--- a/docs/models/errors/GetBannerImageBadRequest.md
+++ b/docs/models/errors/GetBannerImageBadRequest.md
@@ -5,7 +5,7 @@ Bad Request - A parameter was not specified, or was specified incorrectly.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `errors` | List<[GetBannerImageErrors](../../models/errors/GetBannerImageErrors.md)> | :heavy_minus_sign: | N/A |
-| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
+| `errors` | List\<[GetBannerImageErrors](../../models/errors/GetBannerImageErrors.md)> | :heavy_minus_sign: | N/A |
+| `rawResponse` | [HttpResponse\](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
diff --git a/docs/models/errors/GetBannerImageErrors.md b/docs/models/errors/GetBannerImageErrors.md
index 44b3f734..c28dfe14 100644
--- a/docs/models/errors/GetBannerImageErrors.md
+++ b/docs/models/errors/GetBannerImageErrors.md
@@ -5,6 +5,6 @@
| Field | Type | Required | Description | Example |
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
-| `code` | *Optional* | :heavy_minus_sign: | N/A | 1000 |
-| `message` | *Optional* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
-| `status` | *Optional* | :heavy_minus_sign: | N/A | 400 |
\ No newline at end of file
+| `code` | *Optional\* | :heavy_minus_sign: | N/A | 1000 |
+| `message` | *Optional\* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
+| `status` | *Optional\* | :heavy_minus_sign: | N/A | 400 |
\ No newline at end of file
diff --git a/docs/models/errors/GetBannerImageMediaErrors.md b/docs/models/errors/GetBannerImageMediaErrors.md
index 334d095d..4e0d2386 100644
--- a/docs/models/errors/GetBannerImageMediaErrors.md
+++ b/docs/models/errors/GetBannerImageMediaErrors.md
@@ -5,6 +5,6 @@
| Field | Type | Required | Description | Example |
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
-| `code` | *Optional* | :heavy_minus_sign: | N/A | 1001 |
-| `message` | *Optional* | :heavy_minus_sign: | N/A | User could not be authenticated |
-| `status` | *Optional* | :heavy_minus_sign: | N/A | 401 |
\ No newline at end of file
+| `code` | *Optional\* | :heavy_minus_sign: | N/A | 1001 |
+| `message` | *Optional\* | :heavy_minus_sign: | N/A | User could not be authenticated |
+| `status` | *Optional\* | :heavy_minus_sign: | N/A | 401 |
\ No newline at end of file
diff --git a/docs/models/errors/GetBannerImageUnauthorized.md b/docs/models/errors/GetBannerImageUnauthorized.md
index a13f42a2..36256b11 100644
--- a/docs/models/errors/GetBannerImageUnauthorized.md
+++ b/docs/models/errors/GetBannerImageUnauthorized.md
@@ -5,7 +5,7 @@ Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `errors` | List<[GetBannerImageMediaErrors](../../models/errors/GetBannerImageMediaErrors.md)> | :heavy_minus_sign: | N/A |
-| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
+| `errors` | List\<[GetBannerImageMediaErrors](../../models/errors/GetBannerImageMediaErrors.md)> | :heavy_minus_sign: | N/A |
+| `rawResponse` | [HttpResponse\](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
diff --git a/docs/models/errors/GetButlerTasksBadRequest.md b/docs/models/errors/GetButlerTasksBadRequest.md
index 42682256..8e4be1a2 100644
--- a/docs/models/errors/GetButlerTasksBadRequest.md
+++ b/docs/models/errors/GetButlerTasksBadRequest.md
@@ -5,7 +5,7 @@ Bad Request - A parameter was not specified, or was specified incorrectly.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `errors` | List<[GetButlerTasksErrors](../../models/errors/GetButlerTasksErrors.md)> | :heavy_minus_sign: | N/A |
-| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
+| `errors` | List\<[GetButlerTasksErrors](../../models/errors/GetButlerTasksErrors.md)> | :heavy_minus_sign: | N/A |
+| `rawResponse` | [HttpResponse\](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
diff --git a/docs/models/errors/GetButlerTasksButlerErrors.md b/docs/models/errors/GetButlerTasksButlerErrors.md
index 90a328d7..c0cda7a2 100644
--- a/docs/models/errors/GetButlerTasksButlerErrors.md
+++ b/docs/models/errors/GetButlerTasksButlerErrors.md
@@ -5,6 +5,6 @@
| Field | Type | Required | Description | Example |
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
-| `code` | *Optional* | :heavy_minus_sign: | N/A | 1001 |
-| `message` | *Optional* | :heavy_minus_sign: | N/A | User could not be authenticated |
-| `status` | *Optional* | :heavy_minus_sign: | N/A | 401 |
\ No newline at end of file
+| `code` | *Optional\* | :heavy_minus_sign: | N/A | 1001 |
+| `message` | *Optional\* | :heavy_minus_sign: | N/A | User could not be authenticated |
+| `status` | *Optional\* | :heavy_minus_sign: | N/A | 401 |
\ No newline at end of file
diff --git a/docs/models/errors/GetButlerTasksErrors.md b/docs/models/errors/GetButlerTasksErrors.md
index 45bd6e91..df5e016c 100644
--- a/docs/models/errors/GetButlerTasksErrors.md
+++ b/docs/models/errors/GetButlerTasksErrors.md
@@ -5,6 +5,6 @@
| Field | Type | Required | Description | Example |
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
-| `code` | *Optional* | :heavy_minus_sign: | N/A | 1000 |
-| `message` | *Optional* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
-| `status` | *Optional* | :heavy_minus_sign: | N/A | 400 |
\ No newline at end of file
+| `code` | *Optional\* | :heavy_minus_sign: | N/A | 1000 |
+| `message` | *Optional\* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
+| `status` | *Optional\* | :heavy_minus_sign: | N/A | 400 |
\ No newline at end of file
diff --git a/docs/models/errors/GetButlerTasksUnauthorized.md b/docs/models/errors/GetButlerTasksUnauthorized.md
index 6f0471c0..b937071c 100644
--- a/docs/models/errors/GetButlerTasksUnauthorized.md
+++ b/docs/models/errors/GetButlerTasksUnauthorized.md
@@ -5,7 +5,7 @@ Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `errors` | List<[GetButlerTasksButlerErrors](../../models/errors/GetButlerTasksButlerErrors.md)> | :heavy_minus_sign: | N/A |
-| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
+| `errors` | List\<[GetButlerTasksButlerErrors](../../models/errors/GetButlerTasksButlerErrors.md)> | :heavy_minus_sign: | N/A |
+| `rawResponse` | [HttpResponse\](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
diff --git a/docs/models/errors/GetCompanionsDataBadRequest.md b/docs/models/errors/GetCompanionsDataBadRequest.md
index 24fb0692..f84a93f7 100644
--- a/docs/models/errors/GetCompanionsDataBadRequest.md
+++ b/docs/models/errors/GetCompanionsDataBadRequest.md
@@ -5,7 +5,7 @@ Bad Request - A parameter was not specified, or was specified incorrectly.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `errors` | List<[GetCompanionsDataErrors](../../models/errors/GetCompanionsDataErrors.md)> | :heavy_minus_sign: | N/A |
-| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
+| `errors` | List\<[GetCompanionsDataErrors](../../models/errors/GetCompanionsDataErrors.md)> | :heavy_minus_sign: | N/A |
+| `rawResponse` | [HttpResponse\](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
diff --git a/docs/models/errors/GetCompanionsDataErrors.md b/docs/models/errors/GetCompanionsDataErrors.md
index f1a55f1e..118f401e 100644
--- a/docs/models/errors/GetCompanionsDataErrors.md
+++ b/docs/models/errors/GetCompanionsDataErrors.md
@@ -5,6 +5,6 @@
| Field | Type | Required | Description | Example |
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
-| `code` | *Optional* | :heavy_minus_sign: | N/A | 1000 |
-| `message` | *Optional* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
-| `status` | *Optional* | :heavy_minus_sign: | N/A | 400 |
\ No newline at end of file
+| `code` | *Optional\* | :heavy_minus_sign: | N/A | 1000 |
+| `message` | *Optional\* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
+| `status` | *Optional\* | :heavy_minus_sign: | N/A | 400 |
\ No newline at end of file
diff --git a/docs/models/errors/GetCompanionsDataPlexErrors.md b/docs/models/errors/GetCompanionsDataPlexErrors.md
index d5c1d97f..882225f4 100644
--- a/docs/models/errors/GetCompanionsDataPlexErrors.md
+++ b/docs/models/errors/GetCompanionsDataPlexErrors.md
@@ -5,6 +5,6 @@
| Field | Type | Required | Description | Example |
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
-| `code` | *Optional* | :heavy_minus_sign: | N/A | 1001 |
-| `message` | *Optional* | :heavy_minus_sign: | N/A | User could not be authenticated |
-| `status` | *Optional* | :heavy_minus_sign: | N/A | 401 |
\ No newline at end of file
+| `code` | *Optional\* | :heavy_minus_sign: | N/A | 1001 |
+| `message` | *Optional\* | :heavy_minus_sign: | N/A | User could not be authenticated |
+| `status` | *Optional\* | :heavy_minus_sign: | N/A | 401 |
\ No newline at end of file
diff --git a/docs/models/errors/GetCompanionsDataUnauthorized.md b/docs/models/errors/GetCompanionsDataUnauthorized.md
index 20ed9996..cca2ee2b 100644
--- a/docs/models/errors/GetCompanionsDataUnauthorized.md
+++ b/docs/models/errors/GetCompanionsDataUnauthorized.md
@@ -5,7 +5,7 @@ Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `errors` | List<[GetCompanionsDataPlexErrors](../../models/errors/GetCompanionsDataPlexErrors.md)> | :heavy_minus_sign: | N/A |
-| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
+| `errors` | List\<[GetCompanionsDataPlexErrors](../../models/errors/GetCompanionsDataPlexErrors.md)> | :heavy_minus_sign: | N/A |
+| `rawResponse` | [HttpResponse\](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
diff --git a/docs/models/errors/GetDevicesBadRequest.md b/docs/models/errors/GetDevicesBadRequest.md
index 2a67d9b5..fb17853e 100644
--- a/docs/models/errors/GetDevicesBadRequest.md
+++ b/docs/models/errors/GetDevicesBadRequest.md
@@ -5,7 +5,7 @@ Bad Request - A parameter was not specified, or was specified incorrectly.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `errors` | List<[GetDevicesErrors](../../models/errors/GetDevicesErrors.md)> | :heavy_minus_sign: | N/A |
-| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
+| `errors` | List\<[GetDevicesErrors](../../models/errors/GetDevicesErrors.md)> | :heavy_minus_sign: | N/A |
+| `rawResponse` | [HttpResponse\](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
\ No newline at end of file
diff --git a/docs/models/errors/GetDevicesErrors.md b/docs/models/errors/GetDevicesErrors.md
index 8899b0d0..d42ada9a 100644
--- a/docs/models/errors/GetDevicesErrors.md
+++ b/docs/models/errors/GetDevicesErrors.md
@@ -5,6 +5,6 @@
| Field | Type | Required | Description | Example |
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
-| `code` | *Optional* | :heavy_minus_sign: | N/A | 1000 |
-| `message` | *Optional* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
-| `status` | *Optional* | :heavy_minus_sign: | N/A | 400 |
\ No newline at end of file
+| `code` | *Optional\* | :heavy_minus_sign: | N/A | 1000 |
+| `message` | *Optional\