@azure/storage-blob 12.12.1-alpha.20230110.1 → 12.13.0-alpha.20230117.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 -2
- package/dist/index.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/utils/constants.js +1 -1
- package/dist-esm/storage-blob/src/utils/constants.js.map +1 -1
- package/dist-esm/storage-internal-avro/src/AvroParser.js +1 -0
- package/dist-esm/storage-internal-avro/src/AvroParser.js.map +1 -1
- package/dist-esm/storage-internal-avro/src/AvroReadableFromBlob.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -13330,7 +13330,7 @@ const logger = logger$1.createClientLogger("storage-blob");
|
|
13330
13330
|
|
13331
13331
|
// Copyright (c) Microsoft Corporation.
|
13332
13332
|
// Licensed under the MIT license.
|
13333
|
-
const SDK_VERSION = "12.
|
13333
|
+
const SDK_VERSION = "12.13.0";
|
13334
13334
|
const SERVICE_VERSION = "2021-10-04";
|
13335
13335
|
const BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES = 256 * 1024 * 1024; // 256MB
|
13336
13336
|
const BLOCK_BLOB_MAX_STAGE_BLOCK_BYTES = 4000 * 1024 * 1024; // 4000MB
|
@@ -15188,7 +15188,7 @@ class StorageSharedKeyCredential extends Credential {
|
|
15188
15188
|
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
15189
15189
|
*/
|
15190
15190
|
const packageName = "azure-storage-blob";
|
15191
|
-
const packageVersion = "12.
|
15191
|
+
const packageVersion = "12.13.0";
|
15192
15192
|
class StorageClientContext extends coreHttp__namespace.ServiceClient {
|
15193
15193
|
/**
|
15194
15194
|
* Initializes a new instance of the StorageClientContext class.
|
@@ -17573,6 +17573,7 @@ class AvroUnionType extends AvroType {
|
|
17573
17573
|
this._types = types;
|
17574
17574
|
}
|
17575
17575
|
async read(stream, options = {}) {
|
17576
|
+
// eslint-disable-line @typescript-eslint/ban-types
|
17576
17577
|
const typeIndex = await AvroParser.readInt(stream, options);
|
17577
17578
|
return this._types[typeIndex].read(stream, options);
|
17578
17579
|
}
|