feat(syncing-server): add creating item dumps for revision service

This commit is contained in:
Karol Sójko
2022-11-21 09:34:19 +01:00
parent 1a16d2e4f4
commit 8d152ddfcb
11 changed files with 117 additions and 63 deletions
@@ -4,6 +4,7 @@ import {
EmailArchiveExtensionSyncedEvent,
EmailBackupAttachmentCreatedEvent,
GoogleDriveBackupFailedEvent,
ItemDumpedEvent,
ItemRevisionCreationRequestedEvent,
ItemsSyncedEvent,
OneDriveBackupFailedEvent,
@@ -33,4 +34,5 @@ export interface DomainEventFactoryInterface {
}): EmailBackupAttachmentCreatedEvent
createDuplicateItemSyncedEvent(itemUuid: string, userUuid: string): DuplicateItemSyncedEvent
createItemRevisionCreationRequested(itemUuid: string, userUuid: string): ItemRevisionCreationRequestedEvent
createItemDumpedEvent(fileDumpPath: string, userUuid: string): ItemDumpedEvent
}