Skip to content

Commit 9e42b49

Browse files
author
tomitavela
committed
updated injectheaders method call
1 parent 94f693f commit 9e42b49

27 files changed

+379
-282
lines changed

package-lock.json

Lines changed: 103 additions & 103 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
"private": true,
55
"homepage": ".",
66
"dependencies": {
7-
"@azure/msal-browser": "^2.37.0",
8-
"@azure/msal-react": "^1.5.7",
9-
"@fluentui/date-time-utilities": "^8.5.10",
10-
"@fluentui/react": "^8.109.2",
7+
"@azure/msal-browser": "^2.38.0",
8+
"@azure/msal-react": "^1.5.9",
9+
"@fluentui/date-time-utilities": "^8.5.13",
10+
"@fluentui/react": "^8.110.10",
1111
"@ionic/react": "^5.8.4",
1212
"@ionic/react-router": "^5.8.4",
1313
"@microsoft/mgt": "^3.0.1",

public/@azure/msal-browser/config/Configuration.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,10 @@ export declare type CacheOptions = {
8282
* If set, MSAL will attempt to migrate cache entries from older versions on initialization. By default this flag is set to true if cacheLocation is localStorage, otherwise false.
8383
*/
8484
cacheMigrationEnabled?: boolean;
85+
/**
86+
* Flag that determines whether access tokens are stored based on requested claims
87+
*/
88+
claimsBasedCachingEnabled?: boolean;
8589
};
8690
export declare type BrowserSystemOptions = SystemOptions & {
8791
/**

public/@azure/msal-browser/event/EventType.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ export declare enum EventType {
2222
LOGOUT_START = "msal:logoutStart",
2323
LOGOUT_SUCCESS = "msal:logoutSuccess",
2424
LOGOUT_FAILURE = "msal:logoutFailure",
25-
LOGOUT_END = "msal:logoutEnd"
25+
LOGOUT_END = "msal:logoutEnd",
26+
RESTORE_FROM_BFCACHE = "msal:restoreFromBFCache"
2627
}
2728
//# sourceMappingURL=EventType.d.ts.map

public/@azure/msal-browser/interaction_client/BaseInteractionClient.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export declare abstract class BaseInteractionClient {
2727
* Initializer function for all request APIs
2828
* @param request
2929
*/
30-
protected initializeBaseRequest(request: Partial<BaseAuthRequest>): Promise<BaseAuthRequest>;
30+
protected initializeBaseRequest(request: Partial<BaseAuthRequest>, account?: AccountInfo): Promise<BaseAuthRequest>;
3131
/**
3232
*
3333
* Use to get the redirect uri configured in MSAL or null.
@@ -36,6 +36,7 @@ export declare abstract class BaseInteractionClient {
3636
*
3737
*/
3838
getRedirectUri(requestRedirectUri?: string): string;
39+
validateRequestAuthority(authority: string, account: AccountInfo): Promise<void>;
3940
/**
4041
*
4142
* @param apiId

public/@azure/msal-browser/interaction_client/NativeInteractionClient.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ export declare class NativeInteractionClient extends BaseInteractionClient {
121121
* @param tenantId
122122
* @param reqTimestamp
123123
*/
124-
cacheNativeTokens(response: NativeResponse, request: NativeTokenRequest, homeAccountIdentifier: string, idTokenObj: AuthToken, responseAccessToken: string, tenantId: string, reqTimestamp: number): void;
124+
cacheNativeTokens(response: NativeResponse, request: NativeTokenRequest, homeAccountIdentifier: string, accountEntity: AccountEntity, idTokenObj: AuthToken, responseAccessToken: string, tenantId: string, reqTimestamp: number): void;
125125
protected addTelemetryFromNativeResponse(response: NativeResponse): MATS | null;
126126
/**
127127
* Validates native platform response before processing
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
export declare const name = "@azure/msal-browser";
2-
export declare const version = "2.37.0";
2+
export declare const version = "2.38.0";
33
//# sourceMappingURL=packageMetadata.d.ts.map

0 commit comments

Comments
 (0)