Vinicius Lourenço
Vinicius Lourenço
The problem is with the TypeOrmCrudService and how they are typed. I create a fix in [rewiko version of nestjsx/crud](https://github.com/rewiko/crud/pull/9).
@in-live-md We are still waiting for zMotivat0r to give deployment access to rewiko because it has set out to be a new maintainer. Until this is done, rewiko has forked...
@jodaltro It's not necessary, just change the extended class to the one I put in the description, your solution is only needed when you have some library that uses nestjsx/crud.
~Should I remove the commit of include option and leave the other commits?~ Edit: I removed the commit, leaving just changes in gitignore and target, what about rimraf and lockfileVersion?
@Jingasan Because the azure way to pass the arguments to the handler ([see here](https://github.com/vendia/serverless-express/blob/mainline/examples/azure-http-function-v4/HttpExample/index.js#L5-L7)), `context` inside `getCurrentInvoke()` represents the `event` and `event` represents the `context`. So to make this work,...
@jayair Any update on this? I'm working on a PR to improve the NestJS serverless documentation and I really want to use this library, but I need to have this...
First, make sure you are actually waiting for sql requests, as this line is missing the `await` keyword: ``` js router.post('/getUser', async function (req, res, next) { // correct version:...
Hey @odavid, @Aliheym's solution still keeps the original library design but creates a breaking change, rather than trying to keep two libraries, why not @Aliheym create a merge in this...
I handle these cases with this pattern: ```typescript @Transactional() async myAwesomeMethod(): Promise { await this.runAndCommit(); // now you can throw an error without worry of transaction is not being commited....
> Note: we found out Cloudfare doesn't support `new Function` and thus does not support Deepkit. From what I search the codebase using: https://github.com/search?q=%22new+Function%28%22+repo%3Adeepkit%2Fdeepkit-framework&type=Code&ref=advsearch&l=&l= Only `bson` seems to be an...