New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@azure/msal-node

Package Overview
Dependencies
Maintainers
3
Versions
120
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@azure/msal-node - npm Package Compare versions

Comparing version 3.2.2 to 3.2.3

1

dist/client/ClientApplication.d.ts

@@ -90,2 +90,3 @@ import { ClientConfiguration, AuthenticationResult, BaseAuthRequest, Logger, ServerTelemetryManager, AzureRegionConfiguration, AzureCloudOptions, AuthorizationCodePayload, ClientAssertionCallback } from "@azure/msal-common/node";

* @param request - UsenamePasswordRequest
* @deprecated - Use a more secure flow instead
*/

@@ -92,0 +93,0 @@ acquireTokenByUsernamePassword(request: UsernamePasswordRequest): Promise<AuthenticationResult | null>;

5

dist/client/IConfidentialClientApplication.d.ts

@@ -27,3 +27,6 @@ import { AuthenticationResult, IAppTokenProvider, Logger } from "@azure/msal-common/node";

acquireTokenOnBehalfOf(request: OnBehalfOfRequest): Promise<AuthenticationResult | null>;
/** Acquires tokens with password grant by exchanging client applications username and password for credentials */
/**
* Acquires tokens with password grant by exchanging client applications username and password for credentials
* @deprecated - Use a more secure flow instead
*/
acquireTokenByUsernamePassword(request: UsernamePasswordRequest): Promise<AuthenticationResult | null>;

@@ -30,0 +33,0 @@ /** Gets the token cache for the application */

@@ -28,3 +28,6 @@ import { AccountInfo, AuthenticationResult, Logger } from "@azure/msal-common/node";

acquireTokenByDeviceCode(request: DeviceCodeRequest): Promise<AuthenticationResult | null>;
/** Acquires tokens with password grant by exchanging client applications username and password for credentials */
/**
* Acquires tokens with password grant by exchanging client applications username and password for credentials
* @deprecated - Use a more secure flow instead
*/
acquireTokenByUsernamePassword(request: UsernamePasswordRequest): Promise<AuthenticationResult | null>;

@@ -31,0 +34,0 @@ /** Gets the token cache for the application */

@@ -6,2 +6,3 @@ import { AuthenticationResult, BaseClient, ClientConfiguration, CommonUsernamePasswordRequest } from "@azure/msal-common/node";

* @public
* @deprecated - Use a more secure flow instead
*/

@@ -8,0 +9,0 @@ export declare class UsernamePasswordClient extends BaseClient {

export declare const name = "@azure/msal-node";
export declare const version = "3.2.2";
export declare const version = "3.2.3";
//# sourceMappingURL=packageMetadata.d.ts.map

@@ -90,2 +90,3 @@ import { ClientConfiguration, AuthenticationResult, BaseAuthRequest, Logger, ServerTelemetryManager, AzureRegionConfiguration, AzureCloudOptions, AuthorizationCodePayload, ClientAssertionCallback } from "@azure/msal-common/node";

* @param request - UsenamePasswordRequest
* @deprecated - Use a more secure flow instead
*/

@@ -92,0 +93,0 @@ acquireTokenByUsernamePassword(request: UsernamePasswordRequest): Promise<AuthenticationResult | null>;

@@ -27,3 +27,6 @@ import { AuthenticationResult, IAppTokenProvider, Logger } from "@azure/msal-common/node";

acquireTokenOnBehalfOf(request: OnBehalfOfRequest): Promise<AuthenticationResult | null>;
/** Acquires tokens with password grant by exchanging client applications username and password for credentials */
/**
* Acquires tokens with password grant by exchanging client applications username and password for credentials
* @deprecated - Use a more secure flow instead
*/
acquireTokenByUsernamePassword(request: UsernamePasswordRequest): Promise<AuthenticationResult | null>;

@@ -30,0 +33,0 @@ /** Gets the token cache for the application */

@@ -28,3 +28,6 @@ import { AccountInfo, AuthenticationResult, Logger } from "@azure/msal-common/node";

acquireTokenByDeviceCode(request: DeviceCodeRequest): Promise<AuthenticationResult | null>;
/** Acquires tokens with password grant by exchanging client applications username and password for credentials */
/**
* Acquires tokens with password grant by exchanging client applications username and password for credentials
* @deprecated - Use a more secure flow instead
*/
acquireTokenByUsernamePassword(request: UsernamePasswordRequest): Promise<AuthenticationResult | null>;

@@ -31,0 +34,0 @@ /** Gets the token cache for the application */

@@ -6,2 +6,3 @@ import { AuthenticationResult, BaseClient, ClientConfiguration, CommonUsernamePasswordRequest } from "@azure/msal-common/node";

* @public
* @deprecated - Use a more secure flow instead
*/

@@ -8,0 +9,0 @@ export declare class UsernamePasswordClient extends BaseClient {

export declare const name = "@azure/msal-node";
export declare const version = "3.2.2";
export declare const version = "3.2.3";
//# sourceMappingURL=packageMetadata.d.ts.map
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@azure/msal-node",
"version": "3.2.2",
"version": "3.2.3",
"author": {

@@ -85,3 +85,3 @@ "name": "Microsoft",

"dependencies": {
"@azure/msal-common": "15.1.1",
"@azure/msal-common": "15.2.0",
"jsonwebtoken": "^9.0.0",

@@ -88,0 +88,0 @@ "uuid": "^8.3.0"

@@ -48,4 +48,6 @@ # Microsoft Authentication Library for Node (msal-node)

More details on different grant types supported by Microsoft authentication libraries in general can be found [here](https://docs.microsoft.com/azure/active-directory/develop/msal-authentication-flows).
Note that the username and password flow is deprecated and support will be removed in a future release.
More details on different grant types supported by Microsoft authentication libraries in general can be found [here](https://docs.microsoft.com/azure/active-directory/develop/msal-authentication-flows).
### Scenarios supported:

@@ -52,0 +54,0 @@

@@ -376,2 +376,3 @@ /*

* @param request - UsenamePasswordRequest
* @deprecated - Use a more secure flow instead
*/

@@ -378,0 +379,0 @@ async acquireTokenByUsernamePassword(

@@ -53,3 +53,6 @@ /*

/** Acquires tokens with password grant by exchanging client applications username and password for credentials */
/**
* Acquires tokens with password grant by exchanging client applications username and password for credentials
* @deprecated - Use a more secure flow instead
*/
acquireTokenByUsernamePassword(

@@ -56,0 +59,0 @@ request: UsernamePasswordRequest

@@ -54,3 +54,6 @@ /*

/** Acquires tokens with password grant by exchanging client applications username and password for credentials */
/**
* Acquires tokens with password grant by exchanging client applications username and password for credentials
* @deprecated - Use a more secure flow instead
*/
acquireTokenByUsernamePassword(

@@ -57,0 +60,0 @@ request: UsernamePasswordRequest

@@ -30,2 +30,3 @@ /*

* @public
* @deprecated - Use a more secure flow instead
*/

@@ -32,0 +33,0 @@ export class UsernamePasswordClient extends BaseClient {

/* eslint-disable header/header */
export const name = "@azure/msal-node";
export const version = "3.2.2";
export const version = "3.2.3";

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc