@azure/synapse-monitoring 1.0.0-alpha.20230418.1 → 1.0.0-alpha.20230419.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 +5 -5
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist-esm/models/index.d.ts +2 -2
- package/dist-esm/models/index.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -17356,11 +17356,6 @@ function isArrayBuffer(body) {
|
|
|
17356
17356
|
return body && typeof body.byteLength === "number";
|
|
17357
17357
|
}
|
|
17358
17358
|
class ReportTransform extends require$$0$1.Transform {
|
|
17359
|
-
constructor(progressCallback) {
|
|
17360
|
-
super();
|
|
17361
|
-
this.loadedBytes = 0;
|
|
17362
|
-
this.progressCallback = progressCallback;
|
|
17363
|
-
}
|
|
17364
17359
|
// eslint-disable-next-line @typescript-eslint/ban-types
|
|
17365
17360
|
_transform(chunk, _encoding, callback) {
|
|
17366
17361
|
this.push(chunk);
|
|
@@ -17373,6 +17368,11 @@ class ReportTransform extends require$$0$1.Transform {
|
|
|
17373
17368
|
callback(e);
|
|
17374
17369
|
}
|
|
17375
17370
|
}
|
|
17371
|
+
constructor(progressCallback) {
|
|
17372
|
+
super();
|
|
17373
|
+
this.loadedBytes = 0;
|
|
17374
|
+
this.progressCallback = progressCallback;
|
|
17375
|
+
}
|
|
17376
17376
|
}
|
|
17377
17377
|
/**
|
|
17378
17378
|
* A HttpClient implementation that uses Node's "https" module to send HTTPS requests.
|