30 lines
1.3 KiB
TypeScript
30 lines
1.3 KiB
TypeScript
import { BaseClient } from "./BaseClient";
|
|
import { ClientConfiguration } from "../config/ClientConfiguration";
|
|
import { CommonSilentFlowRequest } from "../request/CommonSilentFlowRequest";
|
|
import { AuthenticationResult } from "../response/AuthenticationResult";
|
|
export declare class SilentFlowClient extends BaseClient {
|
|
constructor(configuration: ClientConfiguration);
|
|
/**
|
|
* Retrieves a token from cache if it is still valid, or uses the cached refresh token to renew
|
|
* the given token and returns the renewed token
|
|
* @param request
|
|
*/
|
|
acquireToken(request: CommonSilentFlowRequest): Promise<AuthenticationResult>;
|
|
/**
|
|
* Retrieves token from cache or throws an error if it must be refreshed.
|
|
* @param request
|
|
*/
|
|
acquireCachedToken(request: CommonSilentFlowRequest): Promise<AuthenticationResult>;
|
|
/**
|
|
* Helper function to build response object from the CacheRecord
|
|
* @param cacheRecord
|
|
*/
|
|
private generateResultFromCacheRecord;
|
|
/**
|
|
* Given a request object and an accessTokenEntity determine if the accessToken needs to be refreshed
|
|
* @param request
|
|
* @param cachedAccessToken
|
|
*/
|
|
private isRefreshRequired;
|
|
}
|
|
//# sourceMappingURL=SilentFlowClient.d.ts.map
|