micro-generate 1.3.10 → 1.3.11

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.
@@ -586,7 +586,7 @@ setMySQLConnector(mysqlConnector);
586
586
 
587
587
  server.start().then(async () => {
588
588
  ${useMongo ? `if (server.getMongoDBConnector()) {
589
- setMongoDBConnector(server.getMongoDBConnector()!);
589
+ setMongoDBConnector(server.getMongoDBConnector()! as any);
590
590
  }` : ''}
591
591
 
592
592
  ${useRedis ? `await redisConnector.connect();` : ''}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "micro-generate",
3
- "version": "1.3.10",
3
+ "version": "1.3.11",
4
4
  "type": "module",
5
5
  "description": "Microservices project with Node.js, Express, Mongoose, Redis, and GraphQL",
6
6
  "main": "dist/index.js",