Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .changeset/olive-foxes-draw.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
"@itwin/access-control-client": minor
---

Added 4 new fields to the member invite interface
- inviterGivenName
- inviterSurname
- inviterOrganization
- projectDisplayName
8 changes: 8 additions & 0 deletions src/types/Invitations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,14 @@ export interface MemberInvitation {
expirationDate: string;
/** Optional array of roles that will be assigned upon acceptance (excludes permissions) */
roles?: Role[];
/** Given name of the user that sent the invitation.*/
inviterGivenName: string;
/** Surname of the user that sent the invitation.*/
inviterSurname: string;
/** Organization of the user that sent the invitation.*/
inviterOrganization: string;
/** Display name of the project associated with the invitation.*/
projectDisplayName: string;
}

/**
Expand Down
Loading