@apollo/client 3.7.7 → 3.7.8

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/apollo-client.cjs CHANGED
@@ -953,9 +953,9 @@ var Concast = (function (_super) {
953
953
  }
954
954
  },
955
955
  complete: function () {
956
- var sub = _this.sub;
956
+ var _a = _this, sub = _a.sub, _b = _a.sources, sources = _b === void 0 ? [] : _b;
957
957
  if (sub !== null) {
958
- var value = _this.sources.shift();
958
+ var value = sources.shift();
959
959
  if (!value) {
960
960
  if (sub)
961
961
  setTimeout(function () { return sub.unsubscribe(); });
@@ -1345,7 +1345,7 @@ var concat = ApolloLink.concat;
1345
1345
 
1346
1346
  var execute = ApolloLink.execute;
1347
1347
 
1348
- var version = '3.7.7';
1348
+ var version = '3.7.8';
1349
1349
 
1350
1350
  function isNodeResponse(value) {
1351
1351
  return !!value.body;