Skip to content

Commit e64316f

Browse files
authored
feat: add /acs/access_groups/[delete | get | list] (#115)
1 parent c6ddb72 commit e64316f

File tree

1 file changed

+55
-1
lines changed

1 file changed

+55
-1
lines changed

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

Lines changed: 55 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,11 +478,63 @@ export interface Routes {
478478
acs_system_id: string
479479
workspace_id: string
480480
name: string
481-
acs_access_group_type: 'pti_unit'
481+
access_group_type: 'pti_unit'
482482
created_at: string | Date
483483
}
484484
}
485485
}
486+
'/acs/access_groups/delete': {
487+
route: '/acs/access_groups/delete'
488+
method: 'DELETE' | 'POST'
489+
queryParams: {}
490+
jsonBody: {}
491+
commonParams: {
492+
acs_access_group_id: string
493+
}
494+
formData: {}
495+
jsonResponse: {}
496+
}
497+
'/acs/access_groups/get': {
498+
route: '/acs/access_groups/get'
499+
method: 'GET' | 'POST'
500+
queryParams: {}
501+
jsonBody: {}
502+
commonParams: {
503+
acs_access_group_id: string
504+
}
505+
formData: {}
506+
jsonResponse: {
507+
acs_access_group: {
508+
acs_access_group_id: string
509+
acs_system_id: string
510+
workspace_id: string
511+
name: string
512+
access_group_type: 'pti_unit'
513+
created_at: string | Date
514+
}
515+
}
516+
}
517+
'/acs/access_groups/list': {
518+
route: '/acs/access_groups/list'
519+
method: 'GET' | 'POST'
520+
queryParams: {}
521+
jsonBody: {}
522+
commonParams: {
523+
acs_access_system_id?: string | undefined
524+
acs_user_id?: string | undefined
525+
}
526+
formData: {}
527+
jsonResponse: {
528+
acs_access_groups: Array<{
529+
acs_access_group_id: string
530+
acs_system_id: string
531+
workspace_id: string
532+
name: string
533+
access_group_type: 'pti_unit'
534+
created_at: string | Date
535+
}>
536+
}
537+
}
486538
'/acs/access_groups/update': {
487539
route: '/acs/access_groups/update'
488540
method: 'POST' | 'PATCH'
@@ -948,6 +1000,7 @@ export interface Routes {
9481000
}
9491001
| undefined
9501002
account_type?: string | undefined
1003+
account_type_display_name: string
9511004
errors?: any
9521005
warnings?: any
9531006
custom_metadata?:
@@ -977,6 +1030,7 @@ export interface Routes {
9771030
}
9781031
| undefined
9791032
account_type?: string | undefined
1033+
account_type_display_name: string
9801034
errors?: any
9811035
warnings?: any
9821036
custom_metadata?:

0 commit comments

Comments
 (0)