edmaxlabs-core 2.6.7 → 2.6.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/dist/index.cjs CHANGED
@@ -869,7 +869,6 @@ var Query = class {
869
869
  return [];
870
870
  }
871
871
  const snapshots = res.documents.map((d) => {
872
- delete d.token;
873
872
  d.id = d.id ?? d._id;
874
873
  delete d._id;
875
874
  return DocumentSnapshot.fromMap(d);
@@ -1118,7 +1117,6 @@ var CollectionRef = class {
1118
1117
  return [];
1119
1118
  }
1120
1119
  return res.documents.map((d) => {
1121
- delete d.token;
1122
1120
  d.id = d.id ?? d._id;
1123
1121
  delete d._id;
1124
1122
  return DocumentSnapshot.fromMap(d);