@lenne.tech/nest-server 8.6.0 → 8.6.1
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/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/server/modules/auth/auth.service.js.map +1 -1
- package/dist/server/modules/auth/inputs/auth-sign-in.input.js +1 -1
- package/dist/server/modules/auth/inputs/auth-sign-in.input.js.map +1 -1
- package/dist/server/modules/auth/inputs/auth-sign-up.input.js +1 -1
- package/dist/server/modules/auth/inputs/auth-sign-up.input.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/index.ts +2 -0
- package/src/server/modules/auth/auth.service.ts +0 -1
- package/src/server/modules/auth/inputs/auth-sign-in.input.ts +1 -1
- package/src/server/modules/auth/inputs/auth-sign-up.input.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lenne.tech/nest-server",
|
|
3
|
-
"version": "8.6.
|
|
3
|
+
"version": "8.6.1",
|
|
4
4
|
"description": "Modern, fast, powerful Node.js web framework in TypeScript based on Nest with a GraphQL API and a connection to MongoDB (or other databases).",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"node",
|
package/src/index.ts
CHANGED
|
@@ -67,6 +67,8 @@ export * from './core/common/types/string-or-object-id.type';
|
|
|
67
67
|
|
|
68
68
|
export * from './core/modules/auth/guards/auth.guard';
|
|
69
69
|
export * from './core/modules/auth/guards/roles.guard';
|
|
70
|
+
export * from './core/modules/auth/inputs/core-auth-sign-in.input';
|
|
71
|
+
export * from './core/modules/auth/inputs/core-auth-sign-up.input';
|
|
70
72
|
export * from './core/modules/auth/interfaces/core-auth-user.interface';
|
|
71
73
|
export * from './core/modules/auth/interfaces/jwt-payload.interface';
|
|
72
74
|
export * from './core/modules/auth/services/core-auth.service';
|
|
@@ -3,7 +3,6 @@ import { JwtService } from '@nestjs/jwt';
|
|
|
3
3
|
import * as bcrypt from 'bcrypt';
|
|
4
4
|
import envConfig from '../../../config.env';
|
|
5
5
|
import { prepareServiceOptions } from '../../../core/common/helpers/service.helper';
|
|
6
|
-
import { ResolveSelector } from '../../../core/common/interfaces/resolve-selector.interface';
|
|
7
6
|
import { ServiceOptions } from '../../../core/common/interfaces/service-options.interface';
|
|
8
7
|
import { EmailService } from '../../../core/common/services/email.service';
|
|
9
8
|
import { JwtPayload } from '../../../core/modules/auth/interfaces/jwt-payload.interface';
|
|
@@ -4,7 +4,7 @@ import { CoreAuthSignInInput } from '../../../../core/modules/auth/inputs/core-a
|
|
|
4
4
|
/**
|
|
5
5
|
* SignIn input
|
|
6
6
|
*/
|
|
7
|
-
@InputType({ description: '
|
|
7
|
+
@InputType({ description: 'Sign-in input' })
|
|
8
8
|
export class AuthSignInInput extends CoreAuthSignInInput {
|
|
9
9
|
// Extend UserInput here
|
|
10
10
|
}
|
|
@@ -4,7 +4,7 @@ import { CoreAuthSignUpInput } from '../../../../core/modules/auth/inputs/core-a
|
|
|
4
4
|
/**
|
|
5
5
|
* SignUp input
|
|
6
6
|
*/
|
|
7
|
-
@InputType({ description: '
|
|
7
|
+
@InputType({ description: 'Sign-up input' })
|
|
8
8
|
export class AuthSignUpInput extends CoreAuthSignUpInput {
|
|
9
9
|
// ===================================================================================================================
|
|
10
10
|
// Properties
|