File tree Expand file tree Collapse file tree 5 files changed +114
-62
lines changed Expand file tree Collapse file tree 5 files changed +114
-62
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " crosswalk" ,
3
- "version" : " 2.2.3 " ,
3
+ "version" : " 2.2.4 " ,
4
4
"description" : " Type-safe express routing with TypeScript" ,
5
5
"main" : " dist/index.js" ,
6
6
"types" : " dist/index.d.ts" ,
Original file line number Diff line number Diff line change @@ -129,6 +129,15 @@ exports[`Open API V3 should have the expected endpoints: open-api-v3 1`] = `
129
129
],
130
130
" type" : " object" ,
131
131
},
132
+ " QueryParams" : {
133
+ " additionalProperties" : false ,
134
+ " properties" : {
135
+ " createdAt" : {
136
+ " type" : " string" ,
137
+ },
138
+ },
139
+ " type" : " object" ,
140
+ },
132
141
" User" : {
133
142
" additionalProperties" : false ,
134
143
" properties" : {
@@ -246,6 +255,15 @@ exports[`Open API V3 should have the expected endpoints: open-api-v3 1`] = `
246
255
" summary" : undefined ,
247
256
},
248
257
" post" : {
258
+ " parameters" : [
259
+ {
260
+ " in" : " query" ,
261
+ " name" : " createdAt" ,
262
+ " schema" : {
263
+ " type" : " string" ,
264
+ },
265
+ },
266
+ ],
249
267
" requestBody" : {
250
268
" content" : {
251
269
" application/json" : {
@@ -788,6 +806,15 @@ exports[`Open API integration should have the expected endpoints: open-api 1`] =
788
806
],
789
807
" type" : " object" ,
790
808
},
809
+ " QueryParams" : {
810
+ " additionalProperties" : false ,
811
+ " properties" : {
812
+ " createdAt" : {
813
+ " type" : " string" ,
814
+ },
815
+ },
816
+ " type" : " object" ,
817
+ },
791
818
" User" : {
792
819
" additionalProperties" : false ,
793
820
" properties" : {
You can’t perform that action at this time.
0 commit comments