internal: incomplete vault systems behind feature flag (#2340)
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
export type AcceptInviteRequestParams = {
|
||||
sharedVaultUuid: string
|
||||
inviteUuid: string
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
import { SharedVaultPermission } from '@standardnotes/responses'
|
||||
|
||||
export type CreateSharedVaultInviteParams = {
|
||||
sharedVaultUuid: string
|
||||
recipientUuid: string
|
||||
encryptedMessage: string
|
||||
permissions: SharedVaultPermission
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
export type DeclineInviteRequestParams = {
|
||||
sharedVaultUuid: string
|
||||
inviteUuid: string
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
export type DeleteAllSharedVaultInvitesRequestParams = {
|
||||
sharedVaultUuid: string
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
export type DeleteInviteRequestParams = {
|
||||
sharedVaultUuid: string
|
||||
inviteUuid: string
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
// eslint-disable-next-line @typescript-eslint/ban-types
|
||||
export type GetOutboundUserInvitesRequestParams = {}
|
||||
@@ -0,0 +1,3 @@
|
||||
export type GetSharedVaultInvitesRequestParams = {
|
||||
sharedVaultUuid: string
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
// eslint-disable-next-line @typescript-eslint/ban-types
|
||||
export type GetUserInvitesRequestParams = {}
|
||||
@@ -0,0 +1,8 @@
|
||||
import { SharedVaultPermission } from '@standardnotes/responses'
|
||||
|
||||
export type UpdateSharedVaultInviteParams = {
|
||||
sharedVaultUuid: string
|
||||
inviteUuid: string
|
||||
encryptedMessage: string
|
||||
permissions?: SharedVaultPermission
|
||||
}
|
||||
Reference in New Issue
Block a user