openapi-typescript
Advanced tools
@@ -283,3 +283,6 @@ import { parseRef } from "@redocly/openapi-core/lib/ref-utils.js"; | ||
(schemaObject.required === undefined && options.ctx.propertiesRequiredByDefault) || | ||
("default" in v && options.ctx.defaultNonNullable && !options.path?.includes("parameters")) | ||
("default" in v && | ||
options.ctx.defaultNonNullable && | ||
!options.path?.includes("parameters") && | ||
!options.path?.includes("requestBody")) | ||
? undefined | ||
@@ -286,0 +289,0 @@ : QUESTION_TOKEN; |
{ | ||
"name": "openapi-typescript", | ||
"description": "Convert OpenAPI 3.0 & 3.1 schemas to TypeScript", | ||
"version": "7.0.0-rc.0", | ||
"version": "7.0.0-rc.1", | ||
"author": { | ||
@@ -42,2 +42,19 @@ "name": "Drew Powers", | ||
}, | ||
"scripts": { | ||
"build": "pnpm run build:clean && pnpm run build:esm && pnpm run build:cjs", | ||
"build:clean": "del-cli dist", | ||
"build:esm": "tsc -p tsconfig.build.json", | ||
"build:cjs": "esbuild --bundle --platform=node --target=es2019 --outfile=dist/index.cjs --external:@redocly/ajv --external:@redocly/openapi-core --external:typescript src/index.ts", | ||
"dev": "tsc -p tsconfig.build.json --watch", | ||
"download:schemas": "vite-node ./scripts/download-schemas.ts", | ||
"format": "biome format . --write", | ||
"lint": "biome check .", | ||
"test": "pnpm run \"/^test:/\"", | ||
"test:examples": "tsc -p tsconfig.examples.json --noEmit", | ||
"test:js": "vitest run", | ||
"test:ts": "tsc --noEmit", | ||
"update:examples": "pnpm run build && pnpm run download:schemas && vite-node ./scripts/update-examples.ts", | ||
"prepublish": "pnpm run build", | ||
"version": "pnpm run build" | ||
}, | ||
"peerDependencies": { | ||
@@ -65,20 +82,3 @@ "typescript": "^5.x" | ||
"vitest": "^1.6.0" | ||
}, | ||
"scripts": { | ||
"build": "pnpm run build:clean && pnpm run build:esm && pnpm run build:cjs", | ||
"build:clean": "del-cli dist", | ||
"build:esm": "tsc -p tsconfig.build.json", | ||
"build:cjs": "esbuild --bundle --platform=node --target=es2019 --outfile=dist/index.cjs --external:@redocly/ajv --external:@redocly/openapi-core --external:typescript src/index.ts", | ||
"dev": "tsc -p tsconfig.build.json --watch", | ||
"download:schemas": "vite-node ./scripts/download-schemas.ts", | ||
"format": "biome format . --write", | ||
"lint": "biome check .", | ||
"test": "pnpm run \"/^test:/\"", | ||
"test:examples": "tsc -p tsconfig.examples.json --noEmit", | ||
"test:js": "vitest run", | ||
"test:ts": "tsc --noEmit", | ||
"update:examples": "pnpm run build && pnpm run download:schemas && vite-node ./scripts/update-examples.ts", | ||
"prepublish": "pnpm run build", | ||
"version": "pnpm run build" | ||
} | ||
} | ||
} |
@@ -457,3 +457,6 @@ import { parseRef } from "@redocly/openapi-core/lib/ref-utils.js"; | ||
(schemaObject.required === undefined && options.ctx.propertiesRequiredByDefault) || | ||
("default" in v && options.ctx.defaultNonNullable && !options.path?.includes("parameters")) // parameters can’t be required, even with defaults | ||
("default" in v && | ||
options.ctx.defaultNonNullable && | ||
!options.path?.includes("parameters") && | ||
!options.path?.includes("requestBody")) // parameters can’t be required, even with defaults | ||
? undefined | ||
@@ -460,0 +463,0 @@ : QUESTION_TOKEN; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
529909
0.01%85
-2.3%10034
-0.07%