next-openapi-gen 0.8.3 → 0.8.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/lib/utils.js CHANGED
@@ -181,6 +181,8 @@ export function cleanSpec(spec) {
181
181
  "responseSets",
182
182
  "errorConfig",
183
183
  "debug",
184
+ "schemaFiles",
185
+ "outputDir",
184
186
  ];
185
187
  const newSpec = { ...spec };
186
188
  propsToRemove.forEach((key) => delete newSpec[key]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next-openapi-gen",
3
- "version": "0.8.3",
3
+ "version": "0.8.4",
4
4
  "description": "Automatically generate OpenAPI 3.0 documentation from Next.js projects, with support for Zod schemas and TypeScript types.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",