@solidstarters/solid-core 1.2.15 → 1.2.16

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solidstarters/solid-core",
3
- "version": "1.2.15",
3
+ "version": "1.2.16",
4
4
  "description": "This module is a NestJS module containing all the required core providers required by a Solid application",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -925,7 +925,7 @@ export class AuthenticationService {
925
925
  await this.validateUserUsingGoogle(user);
926
926
 
927
927
  // finally we simply generate the tokens.
928
- const tokens = this.generateTokens(user);
928
+ const tokens = await this.generateTokens(user);
929
929
  return {
930
930
  user: {
931
931
  email: user.email,