@ms-cloudpack/remote-cache 0.8.12 → 0.8.14
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/dist/{AzureRemoteCacheClient-SXMK4YHG.js → AzureRemoteCacheClient-RYQX2JZE.js} +2 -2
- package/dist/{ReporterDecorator-FPB3SR62.js → ReporterDecorator-V2YEIC5V.js} +2 -2
- package/dist/{chunk-4MIMLTI6.js → chunk-S3ZJNZYB.js} +33 -184
- package/dist/{chunk-OSKYHKJO.js → chunk-WR3ABZS6.js} +149 -49
- package/dist/{getCredential-FLIB2Y4Q.js → getCredential-TGHZRNZU.js} +1304 -491
- package/dist/{getListOfBlobs-LFPGQVDD.js → getListOfBlobs-6GZGACOS.js} +2 -2
- package/dist/index.js +4 -4
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -96,10 +96,10 @@ async function createRemoteCacheClient(params) {
|
|
|
96
96
|
const azureLogEventHandler = registerAzureLogger();
|
|
97
97
|
const { context, options } = params;
|
|
98
98
|
const { container, loginMethod, storageAccount, cachePath, tenantId } = options;
|
|
99
|
-
const { getCredential } = await import("./getCredential-
|
|
100
|
-
const { AzureRemoteCacheClient } = await import("./AzureRemoteCacheClient-
|
|
101
|
-
const { ReporterDecorator } = await import("./ReporterDecorator-
|
|
102
|
-
const { getListOfBlobs } = await import("./getListOfBlobs-
|
|
99
|
+
const { getCredential } = await import("./getCredential-TGHZRNZU.js");
|
|
100
|
+
const { AzureRemoteCacheClient } = await import("./AzureRemoteCacheClient-RYQX2JZE.js");
|
|
101
|
+
const { ReporterDecorator } = await import("./ReporterDecorator-V2YEIC5V.js");
|
|
102
|
+
const { getListOfBlobs } = await import("./getListOfBlobs-6GZGACOS.js");
|
|
103
103
|
const credential = await getCredential(
|
|
104
104
|
{ loginMethod, cachePath, tenantId },
|
|
105
105
|
{ ...context, azureLogger: azureLogEventHandler }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ms-cloudpack/remote-cache",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.14",
|
|
4
4
|
"description": "Manages syncing the local Cloudpack cached assets to/from a remote storage service.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"lib/**/*.d.ts"
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@ms-cloudpack/common-types": "^0.21.
|
|
30
|
+
"@ms-cloudpack/common-types": "^0.21.1",
|
|
31
31
|
"@ms-cloudpack/retry": "^0.1.2",
|
|
32
32
|
"@ms-cloudpack/task-reporter": "^0.14.5",
|
|
33
33
|
"@ms-cloudpack/telemetry": "^0.6.3",
|
|
@@ -35,10 +35,10 @@
|
|
|
35
35
|
"node-dpapi-prebuilt": "^1.0.3"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@azure/identity": "
|
|
38
|
+
"@azure/identity": "4.3.0",
|
|
39
39
|
"@azure/logger": "^1.0.0",
|
|
40
|
-
"@azure/msal-common": "
|
|
41
|
-
"@azure/msal-node": "
|
|
40
|
+
"@azure/msal-common": "14.13.0",
|
|
41
|
+
"@azure/msal-node": "2.11.0",
|
|
42
42
|
"@azure/storage-blob": "^12.17.0",
|
|
43
43
|
"@ms-cloudpack/eslint-plugin-internal": "*",
|
|
44
44
|
"@ms-cloudpack/scripts": "*",
|