Skip to content

Commit 709873e

Browse files
fix(): resolve conflicts, fixes to create for class type args
2 parents d93ace5 + ad673ce commit 709873e

File tree

4 files changed

+254
-156
lines changed

4 files changed

+254
-156
lines changed

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2017-2021 Kamil Mysliwiec <https://kamilmysliwiec.com>
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

lib/factories/schema.factory.ts

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,17 @@ import { TypeMetadataStorage } from '../storages/type-metadata.storage';
44
import { DefinitionsFactory } from './definitions.factory';
55

66
export class SchemaFactory {
7-
static createForClass<T extends Type<unknown> = any>(
8-
target: T,
9-
): mongoose.Schema<mongoose.Document<InstanceType<T>>> {
7+
static createForClass<
8+
TClass extends any = any,
9+
TDocument extends mongoose.Document = TClass extends mongoose.Document
10+
? TClass
11+
: mongoose.Document<TClass>
12+
>(target: Type<TClass>): mongoose.Schema<TDocument> {
1013
const schemaDefinition = DefinitionsFactory.createForClass(target);
1114
const schemaMetadata = TypeMetadataStorage.getSchemaMetadataByTarget(
1215
target,
1316
);
14-
return new mongoose.Schema<mongoose.Document<InstanceType<T>>>(
17+
return new mongoose.Schema<TDocument>(
1518
schemaDefinition,
1619
schemaMetadata && schemaMetadata.options,
1720
);

0 commit comments

Comments
 (0)