@overmap-ai/core 1.0.60-sdk-refactor.6 → 1.0.60-sdk-refactor.7

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.
@@ -10,6 +10,7 @@ export declare abstract class BaseAuthService<TStore extends BaseState, TSDK ext
10
10
  protected enqueueRequest<TResult>(requestDetails: SDKRequest): Promise<TResult>;
11
11
  protected dispatch(action: AnyAction): void;
12
12
  abstract initAuth(username: string, password: string): Promise<void>;
13
+ abstract clearAuth(): void;
13
14
  abstract prepareAuth(): Promise<void>;
14
15
  abstract getAuthHeader(): string;
15
16
  abstract handleUnauthorized(request: SuperAgentRequest, response: Response): Promise<void>;
@@ -23,7 +23,7 @@ export declare abstract class JWTService<TState extends BaseState, TSDK extends
23
23
  /**
24
24
  * Logs the user out
25
25
  */
26
- clearAuth(): Promise<void>;
26
+ clearAuth(): void;
27
27
  /**
28
28
  * Attempts to renew tokens
29
29
  */
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.60-sdk-refactor.6",
6
+ "version": "1.0.60-sdk-refactor.7",
7
7
  "type": "module",
8
8
  "main": "dist/overmap-core.umd.cjs",
9
9
  "module": "dist/overmap-core.js",