feat: shared vaults functionality in api-gateway,auth,files,common,security,domain-events. (#629)

Co-authored-by: Mo <[email protected]>
This commit is contained in:
Karol Sójko
2023-06-30 11:31:25 +02:00
committed by GitHub
co-authored by Mo
parent ba422a29d0
commit fa7fbe26e7
82 changed files with 943 additions and 220 deletions
@@ -1,5 +1,11 @@
export type RemoveFileDTO = {
userUuid: string
resourceRemoteIdentifier: string
regularSubscriptionUuid: string
export interface RemoveFileDTO {
userInput?: {
userUuid: string
resourceRemoteIdentifier: string
regularSubscriptionUuid: string
}
vaultInput?: {
sharedVaultUuid: string
resourceRemoteIdentifier: string
}
}