@apollo/client 3.10.2 → 3.10.3

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/cache/cache.cjs CHANGED
@@ -2155,7 +2155,7 @@ function warnAboutDataLoss(existingRef, incomingObj, storeFieldName, store) {
2155
2155
  "either ensure all objects of type " +
2156
2156
  childTypenames.join(" and ") +
2157
2157
  " have an ID or a custom merge function, or "
2158
- : "", typeDotName, existing, incoming);
2158
+ : "", typeDotName, tslib.__assign({}, existing), tslib.__assign({}, incoming));
2159
2159
  }
2160
2160
 
2161
2161
  var InMemoryCache = (function (_super) {