@simitgroup/simpleapp-generator 1.6.6-b-alpha → 1.6.6-d-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ReleaseNote.md +9 -0
- package/package.json +1 -1
- package/templates/nest/src/simpleapp/apischemas/index.ts._eta +2 -3
- package/templates/nest/src/simpleapp/generate/processors/simpleapp.processor.ts.eta +1 -1
- package/templates/project/groups/admin.json.eta +1 -2
- package/templates/project/jsonschemas/customer.json._eta +1 -0
- package/templates/project/jsonschemas/user.json._eta +6 -0
package/ReleaseNote.md
CHANGED
package/package.json
CHANGED
|
@@ -79,8 +79,7 @@ export class TextSearchBody{
|
|
|
79
79
|
@Field(()=>[[String]])
|
|
80
80
|
@ApiProperty({ type: ()=>[[String]], })
|
|
81
81
|
sorts?:string[][]
|
|
82
|
-
@Field()
|
|
83
|
-
@ApiProperty({ type: Object })
|
|
84
|
-
|
|
82
|
+
@Field(type=>Object)
|
|
83
|
+
@ApiProperty({ type: Object })
|
|
85
84
|
lookup?: Record<string,string>
|
|
86
85
|
}
|
|
@@ -1084,7 +1084,7 @@ export class SimpleAppService<T extends { _id?: string; __v?: number }> {
|
|
|
1084
1084
|
});
|
|
1085
1085
|
pipelines.push({ $sort: sortobj });
|
|
1086
1086
|
}
|
|
1087
|
-
this.logger.warn( pipelines,'pipelinespipelinespipelines',);
|
|
1087
|
+
//this.logger.warn( pipelines,'pipelinespipelinespipelines',);
|
|
1088
1088
|
|
|
1089
1089
|
return pipelines;
|
|
1090
1090
|
}
|