@@ -312,14 +312,15 @@ type ResolvePathType<PathValueType, Options extends SchemaTypeOptions<PathValueT
312312 IfEquals < PathValueType , BigInt > extends true ? bigint :
313313 PathValueType extends 'bigint' | 'BigInt' | typeof Schema . Types . BigInt | typeof BigInt ? bigint :
314314 PathValueType extends 'uuid' | 'UUID' | typeof Schema . Types . UUID ? Buffer :
315- IfEquals < PathValueType , Schema . Types . UUID > extends true ? Buffer :
316- PathValueType extends MapConstructor | 'Map' ? Map < string , ResolvePathType < Options [ 'of' ] > > :
317- IfEquals < PathValueType , typeof Schema . Types . Map > extends true ? Map < string , ResolvePathType < Options [ 'of' ] > > :
318- PathValueType extends ArrayConstructor ? any [ ] :
319- PathValueType extends typeof Schema . Types . Mixed ? any :
320- IfEquals < PathValueType , ObjectConstructor > extends true ? any :
321- IfEquals < PathValueType , { } > extends true ? any :
322- PathValueType extends typeof SchemaType ? PathValueType [ 'prototype' ] :
323- PathValueType extends Record < string , any > ? ObtainDocumentType < PathValueType , any , { typeKey : TypeKey } > :
324- unknown ,
315+ PathValueType extends 'double' | 'Double' | typeof Schema . Types . Double ? Types . Double :
316+ IfEquals < PathValueType , Schema . Types . UUID > extends true ? Buffer :
317+ PathValueType extends MapConstructor | 'Map' ? Map < string , ResolvePathType < Options [ 'of' ] > > :
318+ IfEquals < PathValueType , typeof Schema . Types . Map > extends true ? Map < string , ResolvePathType < Options [ 'of' ] > > :
319+ PathValueType extends ArrayConstructor ? any [ ] :
320+ PathValueType extends typeof Schema . Types . Mixed ? any :
321+ IfEquals < PathValueType , ObjectConstructor > extends true ? any :
322+ IfEquals < PathValueType , { } > extends true ? any :
323+ PathValueType extends typeof SchemaType ? PathValueType [ 'prototype' ] :
324+ PathValueType extends Record < string , any > ? ObtainDocumentType < PathValueType , any , { typeKey : TypeKey } > :
325+ unknown ,
325326 TypeHint > ;
0 commit comments