ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.406.0

This commit is contained in:
speakeasybot
2024-10-03 00:09:11 +00:00
parent 1506db4d6b
commit 66f5103cac
94 changed files with 2378 additions and 737 deletions

View File

@@ -8,7 +8,7 @@ extension Operations {
/// If the account's Plex Pass subscription is active
public let active: Bool?
/// List of features allowed on your Plex Pass subscription
public let features: [Operations.PostUsersSignInDataFeatures]?
public let features: [String]?
/// Payment service used for your Plex Pass subscription
public let paymentService: String?
/// Name of Plex Pass subscription plan
@@ -27,7 +27,7 @@ extension Operations {
/// - Parameter status: String representation of subscriptionActive
/// - Parameter subscribedAt: Date the account subscribed to Plex Pass
///
public init(active: Bool? = nil, features: [Operations.PostUsersSignInDataFeatures]? = nil, paymentService: String? = nil, plan: String? = nil, status: Operations.PostUsersSignInDataAuthenticationStatus? = nil, subscribedAt: String? = nil) {
public init(active: Bool? = nil, features: [String]? = nil, paymentService: String? = nil, plan: String? = nil, status: Operations.PostUsersSignInDataAuthenticationStatus? = nil, subscribedAt: String? = nil) {
self.active = active
self.features = features
self.paymentService = paymentService