@hono/zod-openapi
Advanced tools
Comparing version 0.9.1 to 0.9.2
@@ -23,3 +23,3 @@ import * as openapi3_ts_oas31 from 'openapi3-ts/oas31'; | ||
in: { | ||
[K in Type]: z.infer<RequestPart<R, Part>>; | ||
[K in Type]: z.input<RequestPart<R, Part>>; | ||
}; | ||
@@ -32,3 +32,3 @@ out: { | ||
in: { | ||
json: z.infer<R['request']['body']['content'][keyof R['request']['body']['content']]['schema']>; | ||
json: z.input<R['request']['body']['content'][keyof R['request']['body']['content']]['schema']>; | ||
}; | ||
@@ -41,3 +41,3 @@ out: { | ||
in: { | ||
form: z.infer<R['request']['body']['content'][keyof R['request']['body']['content']]['schema']>; | ||
form: z.input<R['request']['body']['content'][keyof R['request']['body']['content']]['schema']>; | ||
}; | ||
@@ -44,0 +44,0 @@ out: { |
{ | ||
"name": "@hono/zod-openapi", | ||
"version": "0.9.1", | ||
"version": "0.9.2", | ||
"description": "A wrapper class of Hono which supports OpenAPI.", | ||
@@ -12,3 +12,3 @@ "main": "dist/index.js", | ||
"scripts": { | ||
"test": "vitest run", | ||
"test": "vitest run && vitest typecheck --run --passWithNoTests", | ||
"build": "tsup ./src/index.ts --format esm,cjs --dts", | ||
@@ -15,0 +15,0 @@ "publint": "publint", |
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
34603