Skip to content

Commit edb6c68

Browse files
chore(release): 6.1.0 semantic
1 parent 5f8cd5e commit edb6c68

File tree

269 files changed

+4677
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

269 files changed

+4677
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# [6.1.0](https://github.com/sourcefuse/loopback4-authentication/compare/v6.0.3...v6.1.0) (2022-04-25)
2+
3+
4+
### Features
5+
6+
* **component:** add a new strategy for otp ([#67](https://github.com/sourcefuse/loopback4-authentication/issues/67)) ([5f8cd5e](https://github.com/sourcefuse/loopback4-authentication/commit/5f8cd5e5c607a08efaf17d9248fab8ca146e393c)), closes [#69](https://github.com/sourcefuse/loopback4-authentication/issues/69) [#69](https://github.com/sourcefuse/loopback4-authentication/issues/69) [#69](https://github.com/sourcefuse/loopback4-authentication/issues/69)
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import { IAuthUser } from '../../../types';
2+
export declare const userWithoutReqObj: IAuthUser;
3+
export declare const userWhenReqObj: IAuthUser;
4+
export declare const validToken = "validtoken";

dist/__tests__/fixtures/data/bearer-data.js

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/__tests__/fixtures/data/bearer-data.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { Provider } from '@loopback/core';
2+
import { VerifyFunction } from '../../../strategies';
3+
export declare class BearerTokenVerifyProvider implements Provider<VerifyFunction.AzureADAuthFn> {
4+
constructor();
5+
value(): VerifyFunction.AzureADAuthFn;
6+
}

dist/__tests__/fixtures/providers/azuread-auth.provider.js

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/__tests__/fixtures/providers/azuread-auth.provider.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { Provider } from '@loopback/core';
2+
import { VerifyFunction } from '../../../strategies';
3+
export declare class BearerTokenVerifyProvider implements Provider<VerifyFunction.BearerFn> {
4+
constructor();
5+
value(): VerifyFunction.BearerFn;
6+
}

dist/__tests__/fixtures/providers/bearer-passport.provider.js

Lines changed: 20 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/__tests__/fixtures/providers/bearer-passport.provider.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)