@azure/storage-file-share 12.23.0-alpha.20231106.1 → 12.23.0-alpha.20231120.1
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 +4 -4
- 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/dist-esm/storage-file-share/src/generated/src/storageClient.js +1 -1
- package/dist-esm/storage-file-share/src/generated/src/storageClient.js.map +1 -1
- package/dist-esm/storage-file-share/src/utils/constants.js +1 -1
- package/dist-esm/storage-file-share/src/utils/constants.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
@@ -338,7 +338,7 @@ function ipRangeToString(ipRange) {
|
|
338
338
|
|
339
339
|
// Copyright (c) Microsoft Corporation.
|
340
340
|
// Licensed under the MIT license.
|
341
|
-
const SDK_VERSION$1 = "12.23.0-beta.
|
341
|
+
const SDK_VERSION$1 = "12.23.0-beta.2";
|
342
342
|
const SERVICE_VERSION = "2023-01-03";
|
343
343
|
const FILE_MAX_SIZE_BYTES = 4 * 1024 * 1024 * 1024 * 1024; // 4TB
|
344
344
|
const FILE_RANGE_MAX_SIZE_BYTES = 4 * 1024 * 1024; // 4MB
|
@@ -1325,7 +1325,7 @@ class BaseRequestPolicy {
|
|
1325
1325
|
|
1326
1326
|
// Copyright (c) Microsoft Corporation.
|
1327
1327
|
// Licensed under the MIT license.
|
1328
|
-
const SDK_VERSION = "12.23.0-beta.
|
1328
|
+
const SDK_VERSION = "12.23.0-beta.2";
|
1329
1329
|
/**
|
1330
1330
|
* The OAuth scope to use with Azure Storage.
|
1331
1331
|
*/
|
@@ -2627,7 +2627,7 @@ function getCoreClientOptions(pipeline) {
|
|
2627
2627
|
}
|
2628
2628
|
pipeline._corePipeline = corePipeline;
|
2629
2629
|
}
|
2630
|
-
return Object.assign(Object.assign({}, restOptions), { httpClient, pipeline: corePipeline });
|
2630
|
+
return Object.assign(Object.assign({}, restOptions), { allowInsecureConnection: true, httpClient, pipeline: corePipeline });
|
2631
2631
|
}
|
2632
2632
|
function getCredentialFromPipeline(pipeline) {
|
2633
2633
|
// see if we squirreled one away on the type itself
|
@@ -11098,7 +11098,7 @@ let StorageClient$1 = class StorageClient extends coreHttpCompat__namespace.Exte
|
|
11098
11098
|
const defaults = {
|
11099
11099
|
requestContentType: "application/json; charset=utf-8"
|
11100
11100
|
};
|
11101
|
-
const packageDetails = `azsdk-js-azure-storage-file-share/12.23.0-beta.
|
11101
|
+
const packageDetails = `azsdk-js-azure-storage-file-share/12.23.0-beta.2`;
|
11102
11102
|
const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix
|
11103
11103
|
? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
|
11104
11104
|
: `${packageDetails}`;
|