fix response types not being generated
This commit is contained in:
parent
78d98f0244
commit
393b713c6a
336181
assets/schemas.json
336181
assets/schemas.json
File diff suppressed because it is too large
Load Diff
@ -79,7 +79,11 @@ function main() {
|
|||||||
|
|
||||||
let schemas = generator
|
let schemas = generator
|
||||||
.getUserSymbols()
|
.getUserSymbols()
|
||||||
.filter((x) => x.endsWith("Schema") && !Excluded.includes(x));
|
.filter(
|
||||||
|
(x) =>
|
||||||
|
(x.endsWith("Schema") || x.endsWith("Response")) &&
|
||||||
|
!Excluded.includes(x),
|
||||||
|
);
|
||||||
console.log(schemas);
|
console.log(schemas);
|
||||||
|
|
||||||
var definitions = {};
|
var definitions = {};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user