Hi everyone. I am using SuperToken with nestjs, I am trying out the api override feature to customise the signup flow.
I have the auth module from the docs, I created auth.service inside the module.
Inside the auth.service, I created a method called signUp and a private method isEmailSupported, then I inject the auth.service into supertokens.service and set the signUp function to the value of the signUpPOST key.
When I trigger the signup, I got an error from nestjs, saying that "this.isEmailSupported is not a function".
Is it a supertoken specific problem or nestjs problem?