Release 0.0.4

This commit is contained in:
2026-04-20 20:48:37 +00:00
parent 8044a630e2
commit 5e1096ebae
6 changed files with 52 additions and 11 deletions

View File

@@ -37,6 +37,8 @@ function worldCollectionEntries() {
subtype: doc.documentName?.toLowerCase() ?? collection.documentName?.toLowerCase() ?? "document"
},
sourceLabel: `${doc.documentName ?? "Document"} ${doc.id}`,
sourceName: doc.name ?? null,
sourceUuid: doc.uuid ?? null,
value: doc.toObject ? doc.toObject() : doc
});
}
@@ -89,6 +91,8 @@ async function* packagePackEntries(onProgress = null) {
subtype: `pack:${pack.collection}`
},
sourceLabel: `${pack.collection} ${document.id}`,
sourceName: document.name ?? null,
sourceUuid: document.uuid ?? null,
value: document.toObject ? document.toObject() : document
};
}