Skip to content

Commit ec3335e

Browse files
authored
fix: HTTP methods on /acs/users/remove_from_access_group (#133)
1 parent 5e2991a commit ec3335e

File tree

2 files changed

+1
-31
lines changed

2 files changed

+1
-31
lines changed

src/lib/seam/connect/openapi.ts

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -3380,36 +3380,6 @@ export default {
33803380
},
33813381
},
33823382
'/acs/users/remove_from_access_group': {
3383-
patch: {
3384-
operationId: 'acsUsersRemoveFromAccessGroupPatch',
3385-
requestBody: {
3386-
content: {
3387-
'application/json': {
3388-
schema: {
3389-
properties: {
3390-
acs_access_group_id: { format: 'uuid', type: 'string' },
3391-
acs_user_id: { format: 'uuid', type: 'string' },
3392-
},
3393-
required: ['acs_user_id', 'acs_access_group_id'],
3394-
type: 'object',
3395-
},
3396-
},
3397-
},
3398-
},
3399-
responses: {
3400-
200: { description: 'OK' },
3401-
400: { description: 'Bad Request' },
3402-
401: { description: 'Unauthorized' },
3403-
},
3404-
security: [
3405-
{ access_token: [], seam_workspace: [] },
3406-
{ seam_client_session_token: [] },
3407-
{ client_session_token: [] },
3408-
],
3409-
summary: '/acs/users/remove_from_access_group',
3410-
tags: [],
3411-
'x-fern-ignore': true,
3412-
},
34133383
post: {
34143384
operationId: 'acsUsersRemoveFromAccessGroupPost',
34153385
requestBody: {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -727,7 +727,7 @@ export interface Routes {
727727
}
728728
'/acs/users/remove_from_access_group': {
729729
route: '/acs/users/remove_from_access_group'
730-
method: 'POST' | 'PATCH'
730+
method: 'DELETE' | 'POST'
731731
queryParams: {}
732732
jsonBody: {}
733733
commonParams: {

0 commit comments

Comments
 (0)