ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.438.1

This commit is contained in:
speakeasybot
2024-11-12 00:10:16 +00:00
parent aeebf438e1
commit da5491e935
35 changed files with 633 additions and 1748 deletions

View File

@@ -23,6 +23,7 @@ const (
TypeTvShow Type = 2
TypeSeason Type = 3
TypeEpisode Type = 4
TypeAudio Type = 8
)
func (e Type) ToPointer() *Type {
@@ -41,6 +42,8 @@ func (e *Type) UnmarshalJSON(data []byte) error {
case 3:
fallthrough
case 4:
fallthrough
case 8:
*e = Type(v)
return nil
default: