@asgardeo/browser 0.6.0 → 0.6.1

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.
@@ -671,6 +671,7 @@ export declare class AsgardeoSPAClient {
671
671
  * @preserve
672
672
  */
673
673
  isSignedIn(): Promise<boolean | undefined>;
674
+ startAutoRefreshToken(): Promise<void>;
674
675
  /**
675
676
  * This method specifies if there is an active session in the browser or not.
676
677
  *
@@ -44,6 +44,7 @@ export interface MainThreadClientInterface {
44
44
  getAccessToken(sessionId?: string): Promise<string>;
45
45
  getStorageManager(): Promise<StorageManager<MainThreadClientConfig>>;
46
46
  isSignedIn(): Promise<boolean>;
47
+ startAutoRefreshToken(): Promise<void>;
47
48
  reInitialize(config: Partial<AuthClientConfig<MainThreadClientConfig>>): Promise<void>;
48
49
  signInSilently(additionalParams?: Record<string, string | boolean>, tokenRequestConfig?: {
49
50
  params: Record<string, unknown>;