Skip to content

Commit e023a9d

Browse files
authored
1 parent 11409c7 commit e023a9d

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

src/lib/seam/connect/route-types.ts

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -462,6 +462,18 @@ export interface Routes {
462462
}
463463
}
464464
}
465+
'/acs/access_groups/add_user': {
466+
route: '/acs/access_groups/add_user'
467+
method: 'PATCH' | 'POST'
468+
queryParams: {}
469+
jsonBody: {}
470+
commonParams: {
471+
acs_access_group_id: string
472+
acs_user_id: string
473+
}
474+
formData: {}
475+
jsonResponse: {}
476+
}
465477
'/acs/access_groups/create': {
466478
route: '/acs/access_groups/create'
467479
method: 'POST'
@@ -538,6 +550,40 @@ export interface Routes {
538550
}>
539551
}
540552
}
553+
'/acs/access_groups/list_users': {
554+
route: '/acs/access_groups/list_users'
555+
method: 'GET' | 'POST'
556+
queryParams: {}
557+
jsonBody: {}
558+
commonParams: {
559+
acs_access_group_id: string
560+
}
561+
formData: {}
562+
jsonResponse: {
563+
acs_users: Array<{
564+
acs_user_id: string
565+
acs_system_id: string
566+
workspace_id: string
567+
created_at: string
568+
display_name: string
569+
full_name?: string | undefined
570+
email?: string | undefined
571+
phone_number?: string | undefined
572+
}>
573+
}
574+
}
575+
'/acs/access_groups/remove_user': {
576+
route: '/acs/access_groups/remove_user'
577+
method: 'DELETE' | 'POST'
578+
queryParams: {}
579+
jsonBody: {}
580+
commonParams: {
581+
acs_access_group_id: string
582+
acs_user_id: string
583+
}
584+
formData: {}
585+
jsonResponse: {}
586+
}
541587
'/acs/access_groups/update': {
542588
route: '/acs/access_groups/update'
543589
method: 'POST' | 'PATCH'

0 commit comments

Comments
 (0)