Skip to content

Commit 7b38ff4

Browse files
committed
feat: Sync with Seam API via b13f390ee380fa010b24968bee10bce7510f11b9
1 parent b51d746 commit 7b38ff4

File tree

2 files changed

+54
-0
lines changed

2 files changed

+54
-0
lines changed

src/lib/seam/connect/openapi.ts

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46986,6 +46986,36 @@ export default {
4698646986
type: 'array',
4698746987
},
4698846988
},
46989+
{
46990+
in: 'query',
46991+
name: 'acs_entrance_id',
46992+
schema: {
46993+
description:
46994+
'ID of the ACS entrance for which you want to list events.',
46995+
format: 'uuid',
46996+
type: 'string',
46997+
},
46998+
},
46999+
{
47000+
in: 'query',
47001+
name: 'acs_user_id',
47002+
schema: {
47003+
description:
47004+
'ID of the ACS user for which you want to list events.',
47005+
format: 'uuid',
47006+
type: 'string',
47007+
},
47008+
},
47009+
{
47010+
in: 'query',
47011+
name: 'user_identity_id',
47012+
schema: {
47013+
description:
47014+
'ID of the user identity for which you want to list events.',
47015+
format: 'uuid',
47016+
type: 'string',
47017+
},
47018+
},
4698947019
],
4699047020
responses: {
4699147021
200: {
@@ -47045,6 +47075,12 @@ export default {
4704547075
items: { format: 'uuid', type: 'string' },
4704647076
type: 'array',
4704747077
},
47078+
acs_entrance_id: {
47079+
description:
47080+
'ID of the ACS entrance for which you want to list events.',
47081+
format: 'uuid',
47082+
type: 'string',
47083+
},
4704847084
acs_system_id: {
4704947085
description:
4705047086
'ID of the access system for which you want to list events.',
@@ -47057,6 +47093,12 @@ export default {
4705747093
items: { format: 'uuid', type: 'string' },
4705847094
type: 'array',
4705947095
},
47096+
acs_user_id: {
47097+
description:
47098+
'ID of the ACS user for which you want to list events.',
47099+
format: 'uuid',
47100+
type: 'string',
47101+
},
4706047102
between: {
4706147103
description:
4706247104
'Lower and upper timestamps to define an exclusive interval containing the events that you want to list. You must include `since` or `between`.',
@@ -47322,6 +47364,12 @@ export default {
4732247364
format: 'float',
4732347365
type: 'number',
4732447366
},
47367+
user_identity_id: {
47368+
description:
47369+
'ID of the user identity for which you want to list events.',
47370+
format: 'uuid',
47371+
type: 'string',
47372+
},
4732547373
},
4732647374
type: 'object',
4732747375
},

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38941,6 +38941,12 @@ export type Routes = {
3894138941
limit?: number
3894238942
/** IDs of the events that you want to list. */
3894338943
event_ids?: string[] | undefined
38944+
/** ID of the ACS entrance for which you want to list events. */
38945+
acs_entrance_id?: string | undefined
38946+
/** ID of the ACS user for which you want to list events. */
38947+
acs_user_id?: string | undefined
38948+
/** ID of the user identity for which you want to list events. */
38949+
user_identity_id?: string | undefined
3894438950
}
3894538951
formData: {}
3894638952
jsonResponse: {

0 commit comments

Comments
 (0)