diff --git a/src/lib/seam/connect/openapi.ts b/src/lib/seam/connect/openapi.ts index e13c9781..bf0f3abe 100644 --- a/src/lib/seam/connect/openapi.ts +++ b/src/lib/seam/connect/openapi.ts @@ -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: { @@ -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.', @@ -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`.', @@ -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', }, diff --git a/src/lib/seam/connect/route-types.ts b/src/lib/seam/connect/route-types.ts index d737a943..8d794f87 100644 --- a/src/lib/seam/connect/route-types.ts +++ b/src/lib/seam/connect/route-types.ts @@ -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: {