openapi3-ts
Advanced tools
Comparing version 4.3.0 to 4.3.1
# Changelog: openapi3-ts | ||
## Version 4.3.1 | ||
2024.04.01 | ||
- Bug fix. `const` must be of type any. [#133](https://github.com/metadevpro/openapi3-ts/pull/133) by @RobinTail | ||
## Version 4.3.0 | ||
@@ -4,0 +10,0 @@ |
@@ -235,3 +235,3 @@ import { ServerObject } from './oas-common'; | ||
maximum?: number; | ||
const?: string; | ||
const?: any; | ||
exclusiveMaximum?: number; | ||
@@ -238,0 +238,0 @@ minimum?: number; |
{ | ||
"name": "openapi3-ts", | ||
"version": "4.3.0", | ||
"version": "4.3.1", | ||
"description": "TS Model & utils for OpenAPI 3.x specification.", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -304,3 +304,3 @@ /* eslint-disable @typescript-eslint/no-explicit-any */ | ||
maximum?: number; | ||
const?: string; | ||
const?: any; | ||
/** @desc In OpenAPI 3.1: number */ | ||
@@ -307,0 +307,0 @@ exclusiveMaximum?: number; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
252718