Skip to content

Commit 05d99c9

Browse files
[Identity] based on customer feedback making brokerOptions field optional (Azure#27661)
### Packages impacted by this PR @azure/identity
1 parent 204f7fd commit 05d99c9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sdk/identity/identity/review/identity.api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ export interface AzurePowerShellCredentialOptions extends MultiTenantTokenCreden
118118

119119
// @public
120120
export interface BrokerAuthOptions {
121-
brokerOptions: BrokerOptions;
121+
brokerOptions?: BrokerOptions;
122122
}
123123

124124
// @public

sdk/identity/identity/src/credentials/brokerAuthOptions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ export interface BrokerAuthOptions {
1212
* Options to allow broker authentication when using InteractiveBrowserCredential
1313
*
1414
*/
15-
brokerOptions: BrokerOptions;
15+
brokerOptions?: BrokerOptions;
1616
}

0 commit comments

Comments
 (0)