Feat/support to invite multiple users (#1011)

This commit is contained in:
Matri
2023-08-31 01:18:31 +08:00
committed by GitHub
parent 7df56ed617
commit d3f8ea2df0
12 changed files with 222 additions and 70 deletions

View File

@@ -182,3 +182,17 @@ export type DocumentsLimitResponse = {
documents_count: number
documents_limit: number
}
export type InvitationResult = {
status: 'success'
email: string
url: string
} | {
status: 'failed'
email: string
message: string
}
export type InvitationResponse = CommonResponse & {
invitation_results: InvitationResult[]
}