Skip to content

Commit 04b042a

Browse files
authored
feat: add /acs/access_groups/[create | update] (#111)
1 parent bb609b8 commit 04b042a

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

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

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -462,6 +462,39 @@ export interface Routes {
462462
}
463463
}
464464
}
465+
'/acs/access_groups/create': {
466+
route: '/acs/access_groups/create'
467+
method: 'POST'
468+
queryParams: {}
469+
jsonBody: {}
470+
commonParams: {
471+
acs_system_id: string
472+
name?: string | undefined
473+
}
474+
formData: {}
475+
jsonResponse: {
476+
acs_access_group: {
477+
acs_access_group_id: string
478+
acs_system_id: string
479+
workspace_id: string
480+
name: string
481+
acs_access_group_type: 'pti_unit'
482+
created_at: string | Date
483+
}
484+
}
485+
}
486+
'/acs/access_groups/update': {
487+
route: '/acs/access_groups/update'
488+
method: 'POST' | 'PATCH'
489+
queryParams: {}
490+
jsonBody: {}
491+
commonParams: {
492+
acs_access_group_id: string
493+
name?: (string | null) | undefined
494+
}
495+
formData: {}
496+
jsonResponse: {}
497+
}
465498
'/acs/systems/get': {
466499
route: '/acs/systems/get'
467500
method: 'GET' | 'POST'

0 commit comments

Comments
 (0)