ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.228.1

This commit is contained in:
speakeasybot
2024-03-29 16:37:03 +00:00
parent b76c9ac22d
commit 0ba404a3aa
12 changed files with 126 additions and 27 deletions

View File

@@ -11,7 +11,7 @@ extension Operations {
/// This is used to track the client application and its usage
/// (UUID, serial number, or other number unique per device)
///
public let xPlexClientIdentifier: String
public let xPlexClientIdentifier: String?
/// Creates an object with the specified parameters
///
@@ -21,7 +21,7 @@ extension Operations {
/// (UUID, serial number, or other number unique per device)
///
///
public init(pinID: String, xPlexClientIdentifier: String) {
public init(pinID: String, xPlexClientIdentifier: String? = nil) {
self.pinID = pinID
self.xPlexClientIdentifier = xPlexClientIdentifier
}