@azure/storage-blob 12.8.0-alpha.20210826.2 → 12.8.0
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/CHANGELOG.md +6 -0
- package/dist/index.js +5 -7
- package/dist/index.js.map +1 -1
- package/dist-esm/storage-blob/src/ContainerClient.js +2 -2
- package/dist-esm/storage-blob/src/ContainerClient.js.map +1 -1
- package/dist-esm/storage-blob/src/generated/src/storageClientContext.js +1 -1
- package/dist-esm/storage-blob/src/generated/src/storageClientContext.js.map +1 -1
- package/dist-esm/storage-blob/src/models.js.map +1 -1
- package/dist-esm/storage-blob/src/sas/AccountSASPermissions.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-blob/src/utils/utils.common.js +1 -3
- package/dist-esm/storage-blob/src/utils/utils.common.js.map +1 -1
- package/package.json +7 -7
- package/typings/3.1/storage-blob.d.ts +3 -3
- package/typings/latest/storage-blob.d.ts +3 -3
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
@@ -13150,7 +13150,7 @@ const logger = logger$1.createClientLogger("storage-blob");
|
|
13150
13150
|
|
13151
13151
|
// Copyright (c) Microsoft Corporation.
|
13152
13152
|
// Licensed under the MIT license.
|
13153
|
-
const SDK_VERSION = "12.8.0
|
13153
|
+
const SDK_VERSION = "12.8.0";
|
13154
13154
|
const SERVICE_VERSION = "2020-10-02";
|
13155
13155
|
const BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES = 256 * 1024 * 1024; // 256MB
|
13156
13156
|
const BLOCK_BLOB_MAX_STAGE_BLOCK_BYTES = 4000 * 1024 * 1024; // 4000MB
|
@@ -13937,9 +13937,7 @@ function attachCredential(thing, credential) {
|
|
13937
13937
|
return thing;
|
13938
13938
|
}
|
13939
13939
|
function httpAuthorizationToString(httpAuthorization) {
|
13940
|
-
return httpAuthorization
|
13941
|
-
? httpAuthorization.scheme + " " + httpAuthorization.parameter
|
13942
|
-
: undefined;
|
13940
|
+
return httpAuthorization ? httpAuthorization.scheme + " " + httpAuthorization.value : undefined;
|
13943
13941
|
}
|
13944
13942
|
|
13945
13943
|
// Copyright (c) Microsoft Corporation.
|
@@ -14643,7 +14641,7 @@ class StorageSharedKeyCredential extends Credential {
|
|
14643
14641
|
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
14644
14642
|
*/
|
14645
14643
|
const packageName = "azure-storage-blob";
|
14646
|
-
const packageVersion = "12.
|
14644
|
+
const packageVersion = "12.8.0";
|
14647
14645
|
class StorageClientContext extends coreHttp.ServiceClient {
|
14648
14646
|
/**
|
14649
14647
|
* Initializes a new instance of the StorageClientContext class.
|
@@ -22104,7 +22102,7 @@ class ContainerClient extends StorageClient {
|
|
22104
22102
|
if (options.includeTags) {
|
22105
22103
|
include.push("tags");
|
22106
22104
|
}
|
22107
|
-
if (options.
|
22105
|
+
if (options.includeDeletedWithVersions) {
|
22108
22106
|
include.push("deletedwithversions");
|
22109
22107
|
}
|
22110
22108
|
if (options.includeImmutabilityPolicy) {
|
@@ -22300,7 +22298,7 @@ class ContainerClient extends StorageClient {
|
|
22300
22298
|
if (options.includeTags) {
|
22301
22299
|
include.push("tags");
|
22302
22300
|
}
|
22303
|
-
if (options.
|
22301
|
+
if (options.includeDeletedWithVersions) {
|
22304
22302
|
include.push("deletedwithversions");
|
22305
22303
|
}
|
22306
22304
|
if (options.includeImmutabilityPolicy) {
|