File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ export interface UserResponse {
24
24
readonly created_at : string
25
25
readonly status : "active" | "suspended"
26
26
readonly organization_ids : string [ ]
27
+ readonly roles : { name : string ; display_name : string } [ ]
27
28
}
28
29
29
30
/**
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ export const MockUser: UserResponse = {
28
28
created_at : "" ,
29
29
status : "active" ,
30
30
organization_ids : [ "fc0774ce-cc9e-48d4-80ae-88f7a4d4a8b0" ] ,
31
+ roles : [ ] ,
31
32
}
32
33
33
34
export const MockUser2 : UserResponse = {
@@ -37,6 +38,7 @@ export const MockUser2: UserResponse = {
37
38
created_at : "" ,
38
39
status : "active" ,
39
40
organization_ids : [ "fc0774ce-cc9e-48d4-80ae-88f7a4d4a8b0" ] ,
41
+ roles : [ ] ,
40
42
}
41
43
42
44
export const MockOrganization : Organization = {
You can’t perform that action at this time.
0 commit comments