ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.513.4

This commit is contained in:
speakeasybot
2025-03-08 00:09:26 +00:00
parent 1cfc2d604f
commit 33fe0755b5
50 changed files with 2966 additions and 792 deletions

View File

@@ -106,6 +106,16 @@ func parseConstTag(field reflect.StructField) *string {
return &value
}
func parseDefaultTag(field reflect.StructField) *string {
value := field.Tag.Get("default")
if value == "" {
return nil
}
return &value
}
func parseStructTag(tagKey string, field reflect.StructField) map[string]string {
tag := field.Tag.Get(tagKey)
if tag == "" {