Feat/support to invite multiple users (#1011)
This commit is contained in:
parent
7df56ed617
commit
d3f8ea2df0
12 changed files with 222 additions and 70 deletions
|
|
@ -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[]
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue