ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.656.1

This commit is contained in:
speakeasybot
2025-11-13 00:12:27 +00:00
parent 8642a796e0
commit 3ca57c37e9
22 changed files with 825 additions and 571 deletions

View File

@@ -241,6 +241,21 @@ func isNil(typ reflect.Type, val reflect.Value) bool {
return false
}
func isEmptyContainer(typ reflect.Type, val reflect.Value) bool {
if isNil(typ, val) {
return true
}
switch typ.Kind() {
case reflect.Slice, reflect.Array:
return val.Len() == 0
case reflect.Map:
return val.Len() == 0
default:
return false
}
}
func contains(arr []string, str string) bool {
for _, a := range arr {
if a == str {