fix: Resend invite operation on users list (#11351)

Co-authored-by: Danny Martini <danny@n8n.io>
This commit is contained in:
Ricardo Espinoza
2024-10-23 10:23:28 +02:00
committed by GitHub
parent f4958756b4
commit e4218debd1
6 changed files with 44 additions and 4 deletions

View File

@@ -244,7 +244,13 @@ export declare namespace UserRequest {
>;
export type InviteResponse = {
user: { id: string; email: string; inviteAcceptUrl?: string; emailSent: boolean };
user: {
id: string;
email: string;
inviteAcceptUrl?: string;
emailSent: boolean;
role: AssignableRole;
};
error?: string;
};