@hono/zod-openapi
Advanced tools
Comparing version 0.18.0 to 0.18.1
@@ -96,3 +96,3 @@ import * as openapi3_ts_oas31 from 'openapi3-ts/oas31'; | ||
type DeepSimplify<T> = { | ||
[KeyType in keyof T]: T[KeyType] extends object ? DeepSimplify<T[KeyType]> : T[KeyType]; | ||
[KeyType in keyof T]: T[KeyType] extends Record<string, unknown> ? DeepSimplify<T[KeyType]> : T[KeyType]; | ||
} & {}; | ||
@@ -99,0 +99,0 @@ /** |
{ | ||
"name": "@hono/zod-openapi", | ||
"version": "0.18.0", | ||
"version": "0.18.1", | ||
"description": "A wrapper class of Hono which supports OpenAPI.", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
Sorry, the diff of this file is not supported yet
50322