From 6774af69418aca3fe8bc1ce20f086b2ae5605832 Mon Sep 17 00:00:00 2001 From: kevin olson Date: Thu, 10 Jul 2025 21:23:35 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix=20for=20zod=20v4=20ZodIssue?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/runtime/types/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/runtime/types/index.d.ts b/src/runtime/types/index.d.ts index c7d17e3..2683f2e 100644 --- a/src/runtime/types/index.d.ts +++ b/src/runtime/types/index.d.ts @@ -1,10 +1,10 @@ -import type { ZodIssue } from 'zod' +import type { $ZodIssue } from 'zod/v4/core' import type { Database, TableConfig } from 'drizzle-orm' export interface BinderConfig { drizzleFactory: () => Database } -export type MetapiDetail = string | ZodIssue[] +export type MetapiDetail = string | $ZodIssue[] export interface MetapiResponse { meta: {