You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 16, 2025. It is now read-only.
currently an endpoint specific mapping applies to all http methods. This limits the usefulness of the endpoint mapping because you don't always need/want the mapping for all http methods.
this applies the mappings to all methods (current behaviour):
openapi-processor-mapping: v2
map:
paths:
/foo:
types:
- type: from => to
this applies the mappings only to the given http method (new/additional behaviour):
openapi-processor-mapping: v2
map:
paths:
/foo:
get:
types:
- type: A => B
patch:
types:
- type: A => C