@@ -18,12 +18,12 @@ import type { ZodSchema, input, output } from 'zod';
18
18
import type { SchemaTypes , Infer as VineInfer } from '@vinejs/vine/types' ;
19
19
import type { FromSchema , JSONSchema } from 'json-schema-to-ts' ;
20
20
import 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' ;
22
22
23
23
/*
24
24
import type { SchemaObject } from 'ajv';
25
25
import 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';
27
27
import type { Any, OutputOf, TypeOf } from 'io-ts';
28
28
import type { Predicate, Infer as Infer$1 } from 'ow';
29
29
import type { Runtype, Static } from 'runtypes';
@@ -159,11 +159,15 @@ interface SuperstructResolver extends Resolver {
159
159
160
160
interface EffectResolver extends Resolver {
161
161
// eslint-disable-next-line @typescript-eslint/no-explicit-any
162
- base : Schema$1 < any > ;
162
+ base : Schema$1 . Schema < any > ;
163
163
// 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 ;
165
167
// 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 ;
167
171
}
168
172
169
173
/*
0 commit comments