@azure/msal-node-extensions 1.0.18 → 1.0.20
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.
- package/bin/arm64/dpapi.node +0 -0
- package/bin/ia32/dpapi.node +0 -0
- package/bin/x64/dpapi.node +0 -0
- package/dist/Dpapi.cjs +1 -1
- package/dist/Dpapi.mjs +1 -1
- package/dist/broker/NativeBrokerPlugin.cjs +1 -1
- package/dist/broker/NativeBrokerPlugin.mjs +1 -1
- package/dist/error/NativeAuthError.cjs +1 -1
- package/dist/error/NativeAuthError.mjs +1 -1
- package/dist/error/PersistenceError.cjs +1 -1
- package/dist/error/PersistenceError.mjs +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/dist/lock/CrossPlatformLock.cjs +1 -1
- package/dist/lock/CrossPlatformLock.mjs +1 -1
- package/dist/packageMetadata.cjs +2 -2
- package/dist/packageMetadata.d.ts +1 -1
- package/dist/packageMetadata.mjs +2 -2
- package/dist/persistence/BasePersistence.cjs +1 -1
- package/dist/persistence/BasePersistence.mjs +1 -1
- package/dist/persistence/DataProtectionScope.cjs +1 -1
- package/dist/persistence/DataProtectionScope.mjs +1 -1
- package/dist/persistence/FilePersistence.cjs +1 -1
- package/dist/persistence/FilePersistence.mjs +1 -1
- package/dist/persistence/FilePersistenceWithDataProtection.cjs +1 -1
- package/dist/persistence/FilePersistenceWithDataProtection.mjs +1 -1
- package/dist/persistence/KeychainPersistence.cjs +1 -1
- package/dist/persistence/KeychainPersistence.mjs +1 -1
- package/dist/persistence/LibSecretPersistence.cjs +1 -1
- package/dist/persistence/LibSecretPersistence.mjs +1 -1
- package/dist/persistence/PersistenceCachePlugin.cjs +1 -1
- package/dist/persistence/PersistenceCachePlugin.mjs +1 -1
- package/dist/persistence/PersistenceCreator.cjs +1 -1
- package/dist/persistence/PersistenceCreator.mjs +1 -1
- package/dist/utils/Constants.cjs +1 -1
- package/dist/utils/Constants.mjs +1 -1
- package/dist/utils/Environment.cjs +1 -1
- package/dist/utils/Environment.mjs +1 -1
- package/dist/utils/TypeGuards.cjs +1 -1
- package/dist/utils/TypeGuards.mjs +1 -1
- package/package.json +2 -2
package/bin/arm64/dpapi.node
CHANGED
|
Binary file
|
package/bin/ia32/dpapi.node
CHANGED
|
Binary file
|
package/bin/x64/dpapi.node
CHANGED
|
Binary file
|
package/dist/Dpapi.cjs
CHANGED
package/dist/Dpapi.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @azure/msal-node-extensions v1.0.
|
|
1
|
+
/*! @azure/msal-node-extensions v1.0.20 2024-07-01 */
|
|
2
2
|
'use strict';
|
|
3
3
|
import { Logger, Constants, PromptValue, createClientAuthError, ClientAuthErrorCodes, AuthenticationScheme, createClientConfigurationError, ClientConfigurationErrorCodes, ServerError, InteractionRequiredAuthError } from '@azure/msal-common';
|
|
4
4
|
import { msalNodeRuntime, ErrorStatus, LogLevel } from '@azure/msal-node-runtime';
|
package/dist/index.cjs
CHANGED
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @azure/msal-node-extensions v1.0.
|
|
1
|
+
/*! @azure/msal-node-extensions v1.0.20 2024-07-01 */
|
|
2
2
|
'use strict';
|
|
3
3
|
export { PersistenceCachePlugin } from './persistence/PersistenceCachePlugin.mjs';
|
|
4
4
|
export { FilePersistence } from './persistence/FilePersistence.mjs';
|
package/dist/packageMetadata.cjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
/*! @azure/msal-node-extensions v1.0.
|
|
1
|
+
/*! @azure/msal-node-extensions v1.0.20 2024-07-01 */
|
|
2
2
|
'use strict';
|
|
3
3
|
'use strict';
|
|
4
4
|
|
|
5
5
|
/* eslint-disable header/header */
|
|
6
6
|
const name = "@azure/msal-node-extensions";
|
|
7
|
-
const version = "1.0.
|
|
7
|
+
const version = "1.0.20";
|
|
8
8
|
|
|
9
9
|
exports.name = name;
|
|
10
10
|
exports.version = version;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export declare const name = "@azure/msal-node-extensions";
|
|
2
|
-
export declare const version = "1.0.
|
|
2
|
+
export declare const version = "1.0.20";
|
package/dist/packageMetadata.mjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
/*! @azure/msal-node-extensions v1.0.
|
|
1
|
+
/*! @azure/msal-node-extensions v1.0.20 2024-07-01 */
|
|
2
2
|
'use strict';
|
|
3
3
|
/* eslint-disable header/header */
|
|
4
4
|
const name = "@azure/msal-node-extensions";
|
|
5
|
-
const version = "1.0.
|
|
5
|
+
const version = "1.0.20";
|
|
6
6
|
|
|
7
7
|
export { name, version };
|
|
8
8
|
//# sourceMappingURL=packageMetadata.mjs.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @azure/msal-node-extensions v1.0.
|
|
1
|
+
/*! @azure/msal-node-extensions v1.0.20 2024-07-01 */
|
|
2
2
|
'use strict';
|
|
3
3
|
import { FilePersistenceWithDataProtection } from './FilePersistenceWithDataProtection.mjs';
|
|
4
4
|
import { LibSecretPersistence } from './LibSecretPersistence.mjs';
|
package/dist/utils/Constants.cjs
CHANGED
package/dist/utils/Constants.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/msal-node-extensions",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.20",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/AzureAD/microsoft-authentication-library-for-js.git"
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
]
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"@azure/msal-common": "14.
|
|
61
|
+
"@azure/msal-common": "14.13.0",
|
|
62
62
|
"@azure/msal-node-runtime": "^0.13.6-alpha.0",
|
|
63
63
|
"keytar": "^7.8.0"
|
|
64
64
|
},
|