Skip to content

Commit 35bbb6b

Browse files
committed
Update apiExtractor reports
1 parent 06eb3bd commit 35bbb6b

File tree

3 files changed

+8
-12
lines changed

3 files changed

+8
-12
lines changed

lib/msal-browser/apiReview/msal-browser.api.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -247,10 +247,8 @@ export type BrowserAuthOptions = {
247247
postLogoutRedirectUri?: string | null;
248248
navigateToLoginRequestUrl?: boolean;
249249
clientCapabilities?: Array<string>;
250-
protocolMode?: ProtocolMode;
251250
OIDCOptions?: OIDCOptions;
252251
azureCloudOptions?: AzureCloudOptions;
253-
skipAuthorityMetadataCache?: boolean;
254252
onRedirectNavigate?: (url: string) => boolean | void;
255253
instanceAware?: boolean;
256254
};
@@ -352,6 +350,7 @@ export type BrowserSystemOptions = SystemOptions & {
352350
allowPlatformBroker?: boolean;
353351
nativeBrokerHandshakeTimeout?: number;
354352
pollIntervalMilliseconds?: number;
353+
protocolMode?: ProtocolMode;
355354
};
356355

357356
// Warning: (ae-missing-release-tag) "BrowserTelemetryOptions" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
@@ -1489,7 +1488,7 @@ export type WrapperSKU = (typeof WrapperSKU)[keyof typeof WrapperSKU];
14891488
// src/cache/LocalStorage.ts:296:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
14901489
// src/cache/LocalStorage.ts:354:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
14911490
// src/cache/LocalStorage.ts:385:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
1492-
// src/config/Configuration.ts:231:5 - (ae-forgotten-export) The symbol "InternalAuthOptions" needs to be exported by the entry point index.d.ts
1491+
// src/config/Configuration.ts:227:5 - (ae-forgotten-export) The symbol "InternalAuthOptions" needs to be exported by the entry point index.d.ts
14931492
// src/event/EventHandler.ts:113:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
14941493
// src/event/EventHandler.ts:139:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
14951494
// src/index.ts:8:12 - (tsdoc-characters-after-block-tag) The token "@azure" looks like a TSDoc tag but contains an invalid character "/"; if it is not a tag, use a backslash to escape the "@"

lib/msal-common/apiReview/msal-common.api.md

+5-7
Original file line numberDiff line numberDiff line change
@@ -620,7 +620,6 @@ export type AuthOptions = {
620620
redirectUri: string;
621621
clientCapabilities?: Array<string>;
622622
azureCloudOptions?: AzureCloudOptions;
623-
skipAuthorityMetadataCache?: boolean;
624623
instanceAware?: boolean;
625624
};
626625

@@ -726,7 +725,6 @@ export type AuthorityOptions = {
726725
knownAuthorities: Array<string>;
727726
cloudDiscoveryMetadata: string;
728727
authorityMetadata: string;
729-
skipAuthorityMetadataCache?: boolean;
730728
azureRegionConfiguration?: AzureRegionConfiguration;
731729
authority?: string;
732730
};
@@ -4310,11 +4308,11 @@ const X_MS_LIB_CAPABILITY = "x-ms-lib-capability";
43104308
// src/authority/Authority.ts:471:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
43114309
// src/authority/Authority.ts:500:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
43124310
// src/authority/Authority.ts:584:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
4313-
// src/authority/Authority.ts:662:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
4314-
// src/authority/Authority.ts:700:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
4315-
// src/authority/Authority.ts:818:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
4316-
// src/authority/Authority.ts:1009:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
4317-
// src/authority/AuthorityOptions.ts:26:5 - (ae-forgotten-export) The symbol "CloudInstanceDiscoveryResponse" needs to be exported by the entry point index.d.ts
4311+
// src/authority/Authority.ts:654:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
4312+
// src/authority/Authority.ts:692:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
4313+
// src/authority/Authority.ts:810:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
4314+
// src/authority/Authority.ts:994:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
4315+
// src/authority/AuthorityOptions.ts:25:5 - (ae-forgotten-export) The symbol "CloudInstanceDiscoveryResponse" needs to be exported by the entry point index.d.ts
43184316
// src/cache/CacheManager.ts:289:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
43194317
// src/cache/CacheManager.ts:290:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
43204318
// src/cache/CacheManager.ts:572:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen

lib/msal-node/apiReview/msal-node.api.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -444,9 +444,7 @@ export type NodeAuthOptions = {
444444
cloudDiscoveryMetadata?: string;
445445
authorityMetadata?: string;
446446
clientCapabilities?: Array<string>;
447-
protocolMode?: ProtocolMode;
448447
azureCloudOptions?: AzureCloudOptions;
449-
skipAuthorityMetadataCache?: boolean;
450448
};
451449

452450
// @public
@@ -456,6 +454,7 @@ export type NodeSystemOptions = {
456454
proxyUrl?: string;
457455
customAgentOptions?: http.AgentOptions | https.AgentOptions;
458456
disableInternalRetries?: boolean;
457+
protocolMode?: ProtocolMode;
459458
};
460459

461460
// @public (undocumented)

0 commit comments

Comments
 (0)