ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.397.2

This commit is contained in:
speakeasybot
2024-09-16 18:44:33 +00:00
parent c0dafdc561
commit 6b54deac02
919 changed files with 16195 additions and 6963 deletions

View File

@@ -1,4 +1,4 @@
// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
import Foundation
@@ -11,7 +11,7 @@ extension Operations {
/// Filters content by field and direction/equality
/// (Unknown if viewedAt is the only supported column)
///
public let filter: Operations.Filter?
public let filter: Operations.QueryParamFilter?
/// Filters the results based on the id of a valid library section
///
public let librarySectionID: Int?
@@ -31,11 +31,10 @@ extension Operations {
/// - Parameter sort: Sorts the results by the specified field followed by the direction (asc, desc)
///
///
public init(accountId: Int? = nil, filter: Operations.Filter? = nil, librarySectionID: Int? = nil, sort: String? = nil) {
public init(accountId: Int? = nil, filter: Operations.QueryParamFilter? = nil, librarySectionID: Int? = nil, sort: String? = nil) {
self.accountId = accountId
self.filter = filter
self.librarySectionID = librarySectionID
self.sort = sort
}
}
}
}}