File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -130,6 +130,7 @@ export const registerSchemaPath = ({
130
130
properties,
131
131
required,
132
132
additionalProperties,
133
+ patternProperties,
133
134
...rest
134
135
} = responseSchema as typeof responseSchema & {
135
136
type : string
@@ -147,6 +148,7 @@ export const registerSchemaPath = ({
147
148
? ( {
148
149
type,
149
150
properties,
151
+ patternProperties,
150
152
items : responseSchema . items ,
151
153
required
152
154
} as any )
@@ -165,7 +167,8 @@ export const registerSchemaPath = ({
165
167
type,
166
168
properties,
167
169
required,
168
- additionalProperties : _ ,
170
+ additionalProperties : _1 ,
171
+ patternProperties : _2 ,
169
172
...rest
170
173
} = models [ value ] as TSchema & {
171
174
type : string
@@ -184,6 +187,7 @@ export const registerSchemaPath = ({
184
187
properties,
185
188
required,
186
189
additionalProperties,
190
+ patternProperties,
187
191
...rest
188
192
} = value as typeof value & {
189
193
type : string
@@ -200,6 +204,7 @@ export const registerSchemaPath = ({
200
204
? ( {
201
205
type : rest . type ,
202
206
properties,
207
+ patternProperties,
203
208
items : value . items ,
204
209
required
205
210
} as any )
@@ -218,7 +223,8 @@ export const registerSchemaPath = ({
218
223
type,
219
224
properties,
220
225
required,
221
- additionalProperties : _ ,
226
+ additionalProperties : _1 ,
227
+ patternProperties : _2 ,
222
228
...rest
223
229
} = models [ responseSchema ] as TSchema & {
224
230
type : string
You can’t perform that action at this time.
0 commit comments