@azure/storage-blob 12.23.0-alpha.20231106.1 → 12.23.0-alpha.20231116.2
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/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist-esm/storage-blob/src/Pipeline.js +1 -1
- package/dist-esm/storage-blob/src/Pipeline.js.map +1 -1
- package/dist-esm/storage-blob/src/generated/src/storageClient.js +1 -1
- package/dist-esm/storage-blob/src/generated/src/storageClient.js.map +1 -1
- package/dist-esm/storage-blob/src/utils/constants.js +1 -1
- package/dist-esm/storage-blob/src/utils/constants.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -92,7 +92,7 @@ class BaseRequestPolicy {
|
|
92
92
|
|
93
93
|
// Copyright (c) Microsoft Corporation.
|
94
94
|
// Licensed under the MIT license.
|
95
|
-
const SDK_VERSION = "12.23.0-beta.
|
95
|
+
const SDK_VERSION = "12.23.0-beta.2";
|
96
96
|
const SERVICE_VERSION = "2023-08-03";
|
97
97
|
const BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES = 256 * 1024 * 1024; // 256MB
|
98
98
|
const BLOCK_BLOB_MAX_STAGE_BLOCK_BYTES = 4000 * 1024 * 1024; // 4000MB
|
@@ -2042,7 +2042,7 @@ function getCoreClientOptions(pipeline) {
|
|
2042
2042
|
}
|
2043
2043
|
pipeline._corePipeline = corePipeline;
|
2044
2044
|
}
|
2045
|
-
return Object.assign(Object.assign({}, restOptions), { httpClient, pipeline: corePipeline });
|
2045
|
+
return Object.assign(Object.assign({}, restOptions), { allowInsecureConnection: true, httpClient, pipeline: corePipeline });
|
2046
2046
|
}
|
2047
2047
|
function getCredentialFromPipeline(pipeline) {
|
2048
2048
|
// see if we squirreled one away on the type itself
|
@@ -15194,7 +15194,7 @@ let StorageClient$1 = class StorageClient extends coreHttpCompat__namespace.Exte
|
|
15194
15194
|
const defaults = {
|
15195
15195
|
requestContentType: "application/json; charset=utf-8"
|
15196
15196
|
};
|
15197
|
-
const packageDetails = `azsdk-js-azure-storage-blob/12.23.0-beta.
|
15197
|
+
const packageDetails = `azsdk-js-azure-storage-blob/12.23.0-beta.2`;
|
15198
15198
|
const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix
|
15199
15199
|
? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
|
15200
15200
|
: `${packageDetails}`;
|