File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ library
85
85
, lens >= 4.17 && < 5.3
86
86
, servant >= 0.17 && < 0.20
87
87
, singleton-bool >= 0.1.4 && < 0.2
88
- , openapi3 >= 3.0.0 && < 3.3
88
+ , openapi3 >= 3.2.3 && < 3.3
89
89
, text >= 1.2.3.0 && < 3
90
90
, unordered-containers >= 0.2.9.0 && < 0.3
91
91
Original file line number Diff line number Diff line change @@ -229,7 +229,8 @@ instance
229
229
230
230
combineSwagger :: OpenApi -> OpenApi -> OpenApi
231
231
combineSwagger s t = OpenApi
232
- { _openApiInfo = _openApiInfo s <> _openApiInfo t
232
+ { _openApiOpenapi = _openApiOpenapi s <> _openApiOpenapi t
233
+ , _openApiInfo = _openApiInfo s <> _openApiInfo t
233
234
, _openApiServers = _openApiServers s <> _openApiServers t
234
235
, _openApiPaths = InsOrdHashMap. unionWith combinePathItem (_openApiPaths s) (_openApiPaths t)
235
236
, _openApiComponents = _openApiComponents s <> _openApiComponents t
You can’t perform that action at this time.
0 commit comments