Minor Changes
-
#4245
c110032
Thanks @gcanti! - UpdateHttpApi
to remove wildcard support for better OpenAPI compatibility.The
HttpApi*
modules previously reused the following type fromHttpRouter
:type PathInput = `/${string}` | "*"
However, the
"*"
wildcard value was not handled correctly, as OpenAPI does not support wildcards.This has been updated to use a more specific type:
type PathSegment = `/${string}`
This change ensures better alignment with OpenAPI specifications and eliminates potential issues related to unsupported wildcard paths.
-
#4237
23ac740
Thanks @gcanti! - MakeOpenApiSpec
mutable to make handling it more convenient.