ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.487.0

This commit is contained in:
speakeasybot
2025-02-07 00:10:35 +00:00
parent 6db5d8fb30
commit d2a1c188d5
38 changed files with 1619 additions and 27 deletions

View File

@@ -65,6 +65,12 @@ func populateQueryParams(queryParams interface{}, globals interface{}, values ur
continue
}
constValue := parseConstTag(fieldType)
if constValue != nil {
values.Add(qpTag.ParamName, *constValue)
continue
}
if globals != nil {
var globalFound bool
fieldType, valType, globalFound = populateFromGlobals(fieldType, valType, queryParamTagKey, globals)