@trudb/tru-common-lib 0.0.696 → 0.0.698
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/esm2020/lib/components/login/classes/tru-auth-jwt-strategy.mjs +12 -8
- package/esm2020/lib/components/login/classes/tru-auth-token.mjs +5 -3
- package/esm2020/lib/components/password-dialog/tru-password-dialog.mjs +3 -3
- package/fesm2015/trudb-tru-common-lib.mjs +13 -12
- package/fesm2015/trudb-tru-common-lib.mjs.map +1 -1
- package/fesm2020/trudb-tru-common-lib.mjs +13 -9
- package/fesm2020/trudb-tru-common-lib.mjs.map +1 -1
- package/lib/components/login/classes/tru-auth-jwt-strategy.d.ts +3 -1
- package/lib/components/login/classes/tru-auth-token.d.ts +4 -2
- package/package.json +1 -1
|
@@ -3,7 +3,9 @@ import { TruAuthToken } from "./tru-auth-token";
|
|
|
3
3
|
import { TruUser } from "../../../services/tru-user";
|
|
4
4
|
import { TruAuthStrategy } from "./tru-auth-config";
|
|
5
5
|
export declare class TruAuthJwtStrategy implements TruAuthStrategy<TruAuthToken> {
|
|
6
|
-
private readonly
|
|
6
|
+
private readonly JWT_ACCESS_TOKEN;
|
|
7
|
+
private readonly JWT_REFRESH_TOKEN;
|
|
8
|
+
private readonly USER_CLAIMS;
|
|
7
9
|
doLoginUser(token: TruAuthToken): void;
|
|
8
10
|
doLogoutUser(): void;
|
|
9
11
|
getCurrentUser(): Observable<TruUser | undefined>;
|