Skip to content

Commit ed79f76

Browse files
authored
feat: add /acs/users/[add_to | remove_from]_access_group (#110)
1 parent c3edc5f commit ed79f76

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -496,6 +496,18 @@ export interface Routes {
496496
}>
497497
}
498498
}
499+
'/acs/users/add_to_access_group': {
500+
route: '/acs/users/add_to_access_group'
501+
method: 'POST' | 'PATCH'
502+
queryParams: {}
503+
jsonBody: {}
504+
commonParams: {
505+
acs_user_id: string
506+
acs_access_group_id: string
507+
}
508+
formData: {}
509+
jsonResponse: {}
510+
}
499511
'/acs/users/create': {
500512
route: '/acs/users/create'
501513
method: 'POST'
@@ -518,6 +530,18 @@ export interface Routes {
518530
}
519531
}
520532
}
533+
'/acs/users/remove_from_access_group': {
534+
route: '/acs/users/remove_from_access_group'
535+
method: 'POST' | 'PATCH'
536+
queryParams: {}
537+
jsonBody: {}
538+
commonParams: {
539+
acs_user_id: string
540+
acs_access_group_id: string
541+
}
542+
formData: {}
543+
jsonResponse: {}
544+
}
521545
'/acs/users/update': {
522546
route: '/acs/users/update'
523547
method: 'POST' | 'PATCH'

0 commit comments

Comments
 (0)