Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions src/lib/seam/connect/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46986,6 +46986,36 @@ export default {
type: 'array',
},
},
{
in: 'query',
name: 'acs_entrance_id',
schema: {
description:
'ID of the ACS entrance for which you want to list events.',
format: 'uuid',
type: 'string',
},
},
{
in: 'query',
name: 'acs_user_id',
schema: {
description:
'ID of the ACS user for which you want to list events.',
format: 'uuid',
type: 'string',
},
},
{
in: 'query',
name: 'user_identity_id',
schema: {
description:
'ID of the user identity for which you want to list events.',
format: 'uuid',
type: 'string',
},
},
],
responses: {
200: {
Expand Down Expand Up @@ -47045,6 +47075,12 @@ export default {
items: { format: 'uuid', type: 'string' },
type: 'array',
},
acs_entrance_id: {
description:
'ID of the ACS entrance for which you want to list events.',
format: 'uuid',
type: 'string',
},
acs_system_id: {
description:
'ID of the access system for which you want to list events.',
Expand All @@ -47057,6 +47093,12 @@ export default {
items: { format: 'uuid', type: 'string' },
type: 'array',
},
acs_user_id: {
description:
'ID of the ACS user for which you want to list events.',
format: 'uuid',
type: 'string',
},
between: {
description:
'Lower and upper timestamps to define an exclusive interval containing the events that you want to list. You must include `since` or `between`.',
Expand Down Expand Up @@ -47322,6 +47364,12 @@ export default {
format: 'float',
type: 'number',
},
user_identity_id: {
description:
'ID of the user identity for which you want to list events.',
format: 'uuid',
type: 'string',
},
},
type: 'object',
},
Expand Down
6 changes: 6 additions & 0 deletions src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38941,6 +38941,12 @@ export type Routes = {
limit?: number
/** IDs of the events that you want to list. */
event_ids?: string[] | undefined
/** ID of the ACS entrance for which you want to list events. */
acs_entrance_id?: string | undefined
/** ID of the ACS user for which you want to list events. */
acs_user_id?: string | undefined
/** ID of the user identity for which you want to list events. */
user_identity_id?: string | undefined
}
formData: {}
jsonResponse: {
Expand Down