diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/schema.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/schema.js b/scripts/schema.js index 2a39962f..ef43d80c 100644 --- a/scripts/schema.js +++ b/scripts/schema.js @@ -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 = {}; |