@azure/identity 4.0.0-alpha.20231106.4 → 4.0.0-alpha.20231107.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of @azure/identity might be problematic. Click here for more details.

@@ -1 +1 @@
1
- {"version":3,"file":"browserCustomizationOptions.js","sourceRoot":"","sources":["../../../src/credentials/browserCustomizationOptions.ts"],"names":[],"mappings":"AAAA,uCAAuC;AACvC,kCAAkC","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT license.\n\n/**\n * Shared configuration options for browser customization\n */\nexport interface BrowserCustomizationOptions {\n /**\n * Shared configuration options for browser customization\n */\n browserCustomizationOptions?: {\n /**\n * Format for error messages for display in browser\n */\n errorMessage: string;\n /**\n * Format for success messages for display in browser\n */\n successMessage: string;\n };\n}\n"]}
1
+ {"version":3,"file":"browserCustomizationOptions.js","sourceRoot":"","sources":["../../../src/credentials/browserCustomizationOptions.ts"],"names":[],"mappings":"AAAA,uCAAuC;AACvC,kCAAkC","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT license.\n\n/**\n * Shared configuration options for browser customization\n */\nexport interface BrowserCustomizationOptions {\n /**\n * Shared configuration options for browser customization\n */\n browserCustomizationOptions?: {\n /**\n * Format for error messages for display in browser\n */\n errorMessage?: string;\n /**\n * Format for success messages for display in browser\n */\n successMessage?: string;\n };\n}\n"]}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@azure/identity",
3
3
  "sdk-type": "client",
4
- "version": "4.0.0-alpha.20231106.4",
4
+ "version": "4.0.0-alpha.20231107.11",
5
5
  "description": "Provides credential implementations for Azure SDK libraries that can authenticate with Microsoft Entra ID",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist-esm/src/index.js",
@@ -113,8 +113,8 @@
113
113
  "@azure/core-tracing": "^1.0.0",
114
114
  "@azure/core-util": "^1.0.0",
115
115
  "@azure/logger": "^1.0.0",
116
- "@azure/msal-browser": "^3.1.0",
117
- "@azure/msal-node": "^2.3.0",
116
+ "@azure/msal-browser": "^3.5.0",
117
+ "@azure/msal-node": "^2.5.1",
118
118
  "events": "^3.0.0",
119
119
  "jws": "^4.0.0",
120
120
  "open": "^8.0.0",
@@ -445,11 +445,11 @@ export declare interface BrowserCustomizationOptions {
445
445
  /**
446
446
  * Format for error messages for display in browser
447
447
  */
448
- errorMessage: string;
448
+ errorMessage?: string;
449
449
  /**
450
450
  * Format for success messages for display in browser
451
451
  */
452
- successMessage: string;
452
+ successMessage?: string;
453
453
  };
454
454
  }
455
455