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.mjs CHANGED
@@ -837,7 +837,6 @@ var Query = class {
837
837
  return [];
838
838
  }
839
839
  const snapshots = res.documents.map((d) => {
840
- delete d.token;
841
840
  d.id = d.id ?? d._id;
842
841
  delete d._id;
843
842
  return DocumentSnapshot.fromMap(d);
@@ -1086,7 +1085,6 @@ var CollectionRef = class {
1086
1085
  return [];
1087
1086
  }
1088
1087
  return res.documents.map((d) => {
1089
- delete d.token;
1090
1088
  d.id = d.id ?? d._id;
1091
1089
  delete d._id;
1092
1090
  return DocumentSnapshot.fromMap(d);