http-request-manager 18.15.23 → 18.15.24
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.
|
@@ -988,9 +988,7 @@ class StreamingProcessor {
|
|
|
988
988
|
received,
|
|
989
989
|
total,
|
|
990
990
|
percent,
|
|
991
|
-
stage: 'streaming'
|
|
992
|
-
bytesLoaded: event.loaded,
|
|
993
|
-
bytesTotal: event.total
|
|
991
|
+
stage: 'streaming'
|
|
994
992
|
};
|
|
995
993
|
return {
|
|
996
994
|
data: newItems.length > 0 ? newItems : [],
|
|
@@ -1009,9 +1007,7 @@ class StreamingProcessor {
|
|
|
1009
1007
|
received,
|
|
1010
1008
|
total,
|
|
1011
1009
|
percent: 100,
|
|
1012
|
-
stage: 'complete'
|
|
1013
|
-
bytesLoaded: event.loaded,
|
|
1014
|
-
bytesTotal: event.total
|
|
1010
|
+
stage: 'complete'
|
|
1015
1011
|
};
|
|
1016
1012
|
return {
|
|
1017
1013
|
data: parsedData.length > 0 ? parsedData : [],
|