Skip to content

Commit 264d1b8

Browse files
authored
feat: Sync with Seam API via 1f6ad8907cd56bdb44be4bafdfd63b8dc64902c4 (#2387)
1 parent 1c52a47 commit 264d1b8

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

src/lib/seam/connect/openapi.ts

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33188,6 +33188,14 @@ export default {
3318833188
'Returns a list of all [access system entrances](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).',
3318933189
operationId: 'acsEntrancesListGet',
3319033190
parameters: [
33191+
{
33192+
in: 'query',
33193+
name: 'customer_key',
33194+
schema: {
33195+
description: 'Customer key for which you want to list entrances.',
33196+
type: 'string',
33197+
},
33198+
},
3319133199
{
3319233200
in: 'query',
3319333201
name: 'acs_system_id',
@@ -33384,6 +33392,11 @@ export default {
3338433392
format: 'uuid',
3338533393
type: 'string',
3338633394
},
33395+
customer_key: {
33396+
description:
33397+
'Customer key for which you want to list entrances.',
33398+
type: 'string',
33399+
},
3338733400
limit: {
3338833401
default: 900,
3338933402
description:
@@ -33705,6 +33718,15 @@ export default {
3370533718
'Returns a list of all [access systems](https://docs.seam.co/latest/capability-guides/access-systems).\n\nTo filter the list of returned access systems by a specific connected account ID, include the `connected_account_id` in the request body. If you omit the `connected_account_id` parameter, the response includes all access systems connected to your workspace.',
3370633719
operationId: 'acsSystemsListGet',
3370733720
parameters: [
33721+
{
33722+
in: 'query',
33723+
name: 'customer_key',
33724+
schema: {
33725+
description:
33726+
'Customer key for which you want to list access systems.',
33727+
type: 'string',
33728+
},
33729+
},
3370833730
{
3370933731
in: 'query',
3371033732
name: 'connected_account_id',
@@ -33767,6 +33789,11 @@ export default {
3376733789
format: 'uuid',
3376833790
type: 'string',
3376933791
},
33792+
customer_key: {
33793+
description:
33794+
'Customer key for which you want to list access systems.',
33795+
type: 'string',
33796+
},
3377033797
},
3377133798
type: 'object',
3377233799
},

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29220,6 +29220,8 @@ export type Routes = {
2922029220
queryParams: {}
2922129221
jsonBody: {}
2922229222
commonParams: {
29223+
/** Customer key for which you want to list entrances. */
29224+
customer_key?: string | undefined
2922329225
/** ID of the access system for which you want to retrieve all entrances. */
2922429226
acs_system_id?: string | undefined
2922529227
/** ID of the credential for which you want to retrieve all entrances. */
@@ -29751,6 +29753,8 @@ export type Routes = {
2975129753
queryParams: {}
2975229754
jsonBody: {}
2975329755
commonParams: {
29756+
/** Customer key for which you want to list access systems. */
29757+
customer_key?: string | undefined
2975429758
/** ID of the connected account by which you want to filter the list of access systems. */
2975529759
connected_account_id?: string | undefined
2975629760
}

0 commit comments

Comments
 (0)