@azure/synapse-monitoring 1.0.0-alpha.20230418.1 → 1.0.0-alpha.20230509.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 CHANGED
@@ -1926,6 +1926,9 @@ function getErrorMessage(e) {
1926
1926
 
1927
1927
  // Copyright (c) Microsoft Corporation.
1928
1928
  // Licensed under the MIT license.
1929
+ /*
1930
+ * NOTE: When moving this file, please update "react-native" section in package.json.
1931
+ */
1929
1932
  /**
1930
1933
  * Generated Universally Unique Identifier
1931
1934
  *
@@ -17356,11 +17359,6 @@ function isArrayBuffer(body) {
17356
17359
  return body && typeof body.byteLength === "number";
17357
17360
  }
17358
17361
  class ReportTransform extends require$$0$1.Transform {
17359
- constructor(progressCallback) {
17360
- super();
17361
- this.loadedBytes = 0;
17362
- this.progressCallback = progressCallback;
17363
- }
17364
17362
  // eslint-disable-next-line @typescript-eslint/ban-types
17365
17363
  _transform(chunk, _encoding, callback) {
17366
17364
  this.push(chunk);
@@ -17373,6 +17371,11 @@ class ReportTransform extends require$$0$1.Transform {
17373
17371
  callback(e);
17374
17372
  }
17375
17373
  }
17374
+ constructor(progressCallback) {
17375
+ super();
17376
+ this.loadedBytes = 0;
17377
+ this.progressCallback = progressCallback;
17378
+ }
17376
17379
  }
17377
17380
  /**
17378
17381
  * A HttpClient implementation that uses Node's "https" module to send HTTPS requests.