@@ -18,12 +18,12 @@ import type { ZodSchema, input, output } from 'zod';
1818import type { SchemaTypes , Infer as VineInfer } from '@vinejs/vine/types' ;
1919import type { FromSchema , JSONSchema } from 'json-schema-to-ts' ;
2020import type { Struct , Infer as Infer$2 } from 'superstruct' ;
21- import type { Schema as Schema$1 } from '@ effect/schema/Schema ' ;
21+ import type { Schema as Schema$1 } from 'effect' ;
2222
2323/*
2424import type { SchemaObject } from 'ajv';
2525import type { Type as Type$1 } from '@deepkit/type';
26- import type { Schema as Schema$1 } from '@ effect/schema/Schema ';
26+ import type { Schema as Schema$1 } from 'effect';
2727import type { Any, OutputOf, TypeOf } from 'io-ts';
2828import type { Predicate, Infer as Infer$1 } from 'ow';
2929import type { Runtype, Static } from 'runtypes';
@@ -159,11 +159,15 @@ interface SuperstructResolver extends Resolver {
159159
160160interface EffectResolver extends Resolver {
161161 // eslint-disable-next-line @typescript-eslint/no-explicit-any
162- base : Schema$1 < any > ;
162+ base : Schema$1 . Schema < any > ;
163163 // eslint-disable-next-line @typescript-eslint/no-explicit-any
164- input : this[ 'schema' ] extends Schema$1 < any > ? Schema$1 . Encoded < this[ 'schema' ] > : never ;
164+ input : this[ 'schema' ] extends Schema$1 . Schema < any >
165+ ? Schema$1 . Schema . Encoded < this[ 'schema' ] >
166+ : never ;
165167 // eslint-disable-next-line @typescript-eslint/no-explicit-any
166- output : this[ 'schema' ] extends Schema$1 < any > ? Schema$1 . Type < this[ 'schema' ] > : never ;
168+ output : this[ 'schema' ] extends Schema$1 . Schema < any >
169+ ? Schema$1 . Schema . Type < this[ 'schema' ] >
170+ : never ;
167171}
168172
169173/*
0 commit comments