@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/dist/controllers/google-authentication.controller.d.ts +8 -0
- package/dist/controllers/google-authentication.controller.d.ts.map +1 -1
- package/dist/services/authentication.service.d.ts +8 -0
- package/dist/services/authentication.service.d.ts.map +1 -1
- package/dist/services/authentication.service.js +1 -1
- package/dist/services/authentication.service.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/services/authentication.service.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solidstarters/solid-core",
|
|
3
|
-
"version": "1.2.
|
|
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,
|