Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions lib/msal-common/src/cache/CacheManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ export abstract class CacheManager implements ICacheManager {
* set account entity in the platform cache
* @param account
* @param correlationId
* @param kmsi - Keep Me Signed In
* @param apiId - API identifier for telemetry tracking
*/
abstract setAccount(
account: AccountEntity,
Expand Down Expand Up @@ -544,6 +546,7 @@ export abstract class CacheManager implements ICacheManager {
* @param cacheRecord {CacheRecord}
* @param correlationId {?string} correlation id
* @param kmsi - Keep Me Signed In
* @param apiId - API identifier for telemetry tracking
* @param storeInCache {?StoreInCache}
*/
async saveCacheRecord(
Expand Down
1 change: 1 addition & 0 deletions lib/msal-common/src/cache/interface/ICacheManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ export interface ICacheManager {
* @param account
* @param correlationId
* @param kmsi
* @param apiId - API identifier for telemetry tracking
*/
setAccount(
account: AccountEntity,
Expand Down
1 change: 1 addition & 0 deletions lib/msal-common/src/client/AuthorizationCodeClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ export class AuthorizationCodeClient extends BaseClient {
* API to acquire a token in exchange of 'authorization_code` acquired by the user in the first leg of the
* authorization_code_grant
* @param request
* @param apiId - API identifier for telemetry tracking
*/
async acquireToken(
request: CommonAuthorizationCodeRequest,
Expand Down
Loading