@dxos/echo-pipeline 0.6.13-main.09887cd → 0.6.13-main.ed424a1

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.
@@ -2658,13 +2658,14 @@ var createDocumentsIterator = (automergeHost) => (
2658
2658
  }
2659
2659
  if (doc.links) {
2660
2660
  for (const id of Object.values(doc.links)) {
2661
- if (visited.has(id)) {
2661
+ const urlString = id.toString();
2662
+ if (visited.has(urlString)) {
2662
2663
  continue;
2663
2664
  }
2664
2665
  const linkHandle = await automergeHost.loadDoc(Context4.default(void 0, {
2665
2666
  F: __dxlog_file11,
2666
- L: 188
2667
- }), id);
2667
+ L: 189
2668
+ }), urlString);
2668
2669
  for await (const result of getObjectsFromHandle(linkHandle)) {
2669
2670
  yield result;
2670
2671
  }
@@ -2784,7 +2785,7 @@ var DatabaseRoot = class {
2784
2785
  ""
2785
2786
  ]
2786
2787
  });
2787
- return Object.values(doc.links ?? {});
2788
+ return Object.values(doc.links ?? {}).map((s) => s.toString());
2788
2789
  }
2789
2790
  measureMetrics() {
2790
2791
  const doc = this.docSync();