ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.615.2

This commit is contained in:
speakeasybot
2025-09-16 00:11:29 +00:00
parent 06ae97fe29
commit 484b48c271
35 changed files with 217 additions and 154 deletions

View File

@@ -40,8 +40,8 @@ func UnmarshalJsonFromResponseBody(body io.Reader, out interface{}, tag string)
if err != nil {
return fmt.Errorf("error reading response body: %w", err)
}
if err := UnmarshalJSON(data, out, reflect.StructTag(tag), true, false); err != nil {
return fmt.Errorf("error unmarshalling json response body: %w", err)
if err := UnmarshalJSON(data, out, reflect.StructTag(tag), true, nil); err != nil {
return fmt.Errorf("error unmarshaling json response body: %w", err)
}
return nil