mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-09 12:12:35 +01:00
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
|
||||
.getUserSymbols()
|
||||
.filter((x) => x.endsWith("Schema") && !Excluded.includes(x));
|
||||
.filter(
|
||||
(x) =>
|
||||
(x.endsWith("Schema") || x.endsWith("Response")) &&
|
||||
!Excluded.includes(x),
|
||||
);
|
||||
console.log(schemas);
|
||||
|
||||
var definitions = {};
|
||||
|
Loading…
Reference in New Issue
Block a user