Skip to content

Commit d75bd48

Browse files
authored
feat: Sync with Seam API via 3b4c3062abaed60c7c14f844f489790d765889bb (#2457)
1 parent 54d841a commit d75bd48

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

src/lib/seam/connect/openapi.ts

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56509,8 +56509,13 @@ export default {
5650956509
format: 'uuid',
5651056510
type: 'string',
5651156511
},
56512+
user_identity_key: {
56513+
description:
56514+
'Key of the user identity to which you want to add an access system user.',
56515+
type: 'string',
56516+
},
5651256517
},
56513-
required: ['user_identity_id', 'acs_user_id'],
56518+
required: ['acs_user_id'],
5651456519
type: 'object',
5651556520
},
5651656521
},
@@ -56565,8 +56570,13 @@ export default {
5656556570
format: 'uuid',
5656656571
type: 'string',
5656756572
},
56573+
user_identity_key: {
56574+
description:
56575+
'Key of the user identity to which you want to add an access system user.',
56576+
type: 'string',
56577+
},
5656856578
},
56569-
required: ['user_identity_id', 'acs_user_id'],
56579+
required: ['acs_user_id'],
5657056580
type: 'object',
5657156581
},
5657256582
},

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90854,7 +90854,9 @@ export type Routes = {
9085490854
jsonBody: {}
9085590855
commonParams: {
9085690856
/** ID of the user identity to which you want to add an access system user. */
90857-
user_identity_id: string
90857+
user_identity_id?: string | undefined
90858+
/** Key of the user identity to which you want to add an access system user. */
90859+
user_identity_key?: string | undefined
9085890860
/** ID of the access system user that you want to add to the user identity. */
9085990861
acs_user_id: string
9086090862
}

0 commit comments

Comments
 (0)