File tree Expand file tree Collapse file tree 3 files changed +14
-5
lines changed
Expand file tree Collapse file tree 3 files changed +14
-5
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " @redocly/openapi-core " : patch
3+ ---
4+
5+ Added support for the ` query ` HTTP method in Arazzo operation definitions to enhance API interaction capabilities.
Original file line number Diff line number Diff line change @@ -171,19 +171,21 @@ const ExtendedOperation: NodeType = {
171171 'put' ,
172172 'delete' ,
173173 'patch' ,
174+ 'head' ,
175+ 'options' ,
176+ 'trace' ,
177+ 'connect' ,
178+ 'query' ,
174179 'GET' ,
175180 'POST' ,
176181 'PUT' ,
177182 'DELETE' ,
178183 'PATCH' ,
179- 'options' ,
180184 'OPTIONS' ,
181- 'head' ,
182185 'HEAD' ,
183- 'trace' ,
184186 'TRACE' ,
185- 'connect' ,
186187 'CONNECT' ,
188+ 'QUERY' ,
187189 ] ,
188190 } ,
189191 } ,
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ export interface ExtendedOperation {
3939 | 'options'
4040 | 'trace'
4141 | 'connect'
42+ | 'query'
4243 | 'GET'
4344 | 'POST'
4445 | 'PUT'
@@ -47,7 +48,8 @@ export interface ExtendedOperation {
4748 | 'HEAD'
4849 | 'OPTIONS'
4950 | 'TRACE'
50- | 'CONNECT' ;
51+ | 'CONNECT'
52+ | 'QUERY' ;
5153}
5254
5355export interface Replacement {
You can’t perform that action at this time.
0 commit comments