ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.308.1

This commit is contained in:
speakeasybot
2024-06-15 00:13:58 +00:00
parent 2e61d70eb2
commit 3c7871adc5
46 changed files with 2104 additions and 858 deletions

View File

@@ -6,7 +6,7 @@ extension Operations {
/// A model object
public struct GetLibraryItemsRequest: APIValue {
/// the Id of the library to query
public let sectionId: Int
public let sectionId: AnyValue
/// A key representing a specific tag within the section.
public let tag: Operations.Tag
@@ -15,7 +15,7 @@ extension Operations {
/// - Parameter sectionId: the Id of the library to query
/// - Parameter tag: A key representing a specific tag within the section.
///
public init(sectionId: Int, tag: Operations.Tag) {
public init(sectionId: AnyValue, tag: Operations.Tag) {
self.sectionId = sectionId
self.tag = tag
}