A report of the world Document instances that were created or updated during the import process.

interface AdventureImportResult {
    created: Record<string, Document<object, DocumentConstructionContext>[]>;
    updated: Record<string, Document<object, DocumentConstructionContext>[]>;
}

Properties

Properties

created: Record<string, Document<object, DocumentConstructionContext>[]>

Documents created as a result of the import, grouped by document name

updated: Record<string, Document<object, DocumentConstructionContext>[]>

Documents updated as a result of the import, grouped by document name