feat(syncing-server): persisting shared vault and key system associations (#660)

This commit is contained in:
Karol Sójko
2023-07-18 11:39:02 +02:00
committed by GitHub
parent fae4553fc8
commit 479d20e76f
44 changed files with 662 additions and 119 deletions
@@ -0,0 +1,7 @@
import { Timestamps, Uuid } from '@standardnotes/domain-core'
export interface KeySystemAssociationProps {
itemUuid: Uuid
keySystemUuid: Uuid
timestamps: Timestamps
}