Skip to content

Commit 07363de

Browse files
committedJun 3, 2022
chore(release): 6.1.3 semantic
1 parent 1f13901 commit 07363de

File tree

4 files changed

+10
-1
lines changed

4 files changed

+10
-1
lines changed
 

‎CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [6.1.3](https://github.com/sourcefuse/loopback4-authentication/compare/v6.1.2...v6.1.3) (2022-06-03)
2+
3+
4+
### Bug Fixes
5+
6+
* **component:** add mfa property to ClientAuthCode interface ([#81](https://github.com/sourcefuse/loopback4-authentication/issues/81)) ([1f13901](https://github.com/sourcefuse/loopback4-authentication/commit/1f139012dd5db3a1ac066b445856708e90808786)), closes [#69](https://github.com/sourcefuse/loopback4-authentication/issues/69)
7+
18
## [6.1.2](https://github.com/sourcefuse/loopback4-authentication/compare/v6.1.1...v6.1.2) (2022-05-25)
29

310

‎dist/error-keys.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ export declare const enum AuthErrorKeys {
77
ClientSecretMissing = "Client Secret Missing",
88
ClientUserMissing = "Client User Missing",
99
InvalidCredentials = "Invalid Credentials",
10+
UserVerificationFailed = "User Verification Failed",
1011
UnknownError = "Unknown Error",
1112
WrongPassword = "Incorrect Password",
1213
KeyInvalid = "Key Invalid",

‎dist/types.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ export interface AuthenticateFn<T> {
2828
}
2929
export interface ClientAuthCode<T extends IAuthUser, ID = number> {
3030
clientId: string;
31+
mfa?: boolean;
3132
userId?: ID;
3233
user?: T;
3334
}

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "loopback4-authentication",
3-
"version": "6.1.2",
3+
"version": "6.1.3",
44
"description": "A loopback-next extension for authentication feature. Oauth strategies supported.",
55
"keywords": [
66
"loopback-extension",

0 commit comments

Comments
 (0)