mirror of
https://github.com/langgenius/dify.git
synced 2026-05-03 08:58:09 +08:00
Feat/support to invite multiple users (#1011)
This commit is contained in:
@ -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[]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user