diff --git a/packages/zod-openapi/src/index.ts b/packages/zod-openapi/src/index.ts index 687d5ea2..559ba107 100644 --- a/packages/zod-openapi/src/index.ts +++ b/packages/zod-openapi/src/index.ts @@ -39,8 +39,8 @@ import type { JSONParsed, JSONValue, RemoveBlankRecord, SimplifyDeepArray } from import { mergePath } from 'hono/utils/url' import type { OpenAPIObject } from 'openapi3-ts/oas30' import type { OpenAPIObject as OpenAPIV31bject } from 'openapi3-ts/oas31' -import { ZodType, z } from 'zod/v4' -import type { ZodError } from 'zod/v4' +import { ZodType, z } from 'zod' +import type { ZodError } from 'zod' type MaybePromise = Promise | T