@overmap-ai/core 1.0.78-session-auth.1 → 1.0.78-session-auth.2
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.
|
@@ -6,7 +6,7 @@ import { BaseAuthService } from './BaseAuthService';
|
|
|
6
6
|
/**
|
|
7
7
|
* Handles login, logout and renewing tokens
|
|
8
8
|
*/
|
|
9
|
-
export declare abstract class
|
|
9
|
+
export declare abstract class JWTAuthService<TState extends BaseState, TSDK extends BaseSDK<TState>> extends BaseAuthService<TState, TSDK> {
|
|
10
10
|
protected abstract initTokensUrl: string;
|
|
11
11
|
protected abstract refreshTokensUrl: string;
|
|
12
12
|
protected abstract setTokens: (tokens: TokenPair) => void;
|
|
@@ -54,5 +54,6 @@ export * from './ProjectAccessService';
|
|
|
54
54
|
export * from './ProjectAttachmentService';
|
|
55
55
|
export * from './ProjectFileService';
|
|
56
56
|
export * from './ProjectService';
|
|
57
|
+
export * from './SessionAuthService';
|
|
57
58
|
export * from './TeamService';
|
|
58
59
|
export * from './UserService';
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Core functionality for Overmap",
|
|
4
4
|
"author": "Wôrdn Inc.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
|
-
"version": "1.0.78-session-auth.
|
|
6
|
+
"version": "1.0.78-session-auth.2",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "dist/overmap-core.umd.cjs",
|
|
9
9
|
"module": "dist/overmap-core.js",
|