@seamapi/types 1.508.0 → 1.509.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +24 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +38 -2
- package/dist/index.cjs +24 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +34 -2
- package/lib/seam/connect/openapi.js +24 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +4 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +27 -0
- package/src/lib/seam/connect/route-types.ts +4 -0
|
@@ -25207,6 +25207,8 @@ export type Routes = {
|
|
|
25207
25207
|
queryParams: {};
|
|
25208
25208
|
jsonBody: {};
|
|
25209
25209
|
commonParams: {
|
|
25210
|
+
/** Customer key for which you want to list entrances. */
|
|
25211
|
+
customer_key?: string | undefined;
|
|
25210
25212
|
/** ID of the access system for which you want to retrieve all entrances. */
|
|
25211
25213
|
acs_system_id?: string | undefined;
|
|
25212
25214
|
/** ID of the credential for which you want to retrieve all entrances. */
|
|
@@ -25640,6 +25642,8 @@ export type Routes = {
|
|
|
25640
25642
|
queryParams: {};
|
|
25641
25643
|
jsonBody: {};
|
|
25642
25644
|
commonParams: {
|
|
25645
|
+
/** Customer key for which you want to list access systems. */
|
|
25646
|
+
customer_key?: string | undefined;
|
|
25643
25647
|
/** ID of the connected account by which you want to filter the list of access systems. */
|
|
25644
25648
|
connected_account_id?: string | undefined;
|
|
25645
25649
|
};
|
package/package.json
CHANGED
|
@@ -33188,6 +33188,14 @@ export default {
|
|
|
33188
33188
|
'Returns a list of all [access system entrances](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).',
|
|
33189
33189
|
operationId: 'acsEntrancesListGet',
|
|
33190
33190
|
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
|
+
},
|
|
33191
33199
|
{
|
|
33192
33200
|
in: 'query',
|
|
33193
33201
|
name: 'acs_system_id',
|
|
@@ -33384,6 +33392,11 @@ export default {
|
|
|
33384
33392
|
format: 'uuid',
|
|
33385
33393
|
type: 'string',
|
|
33386
33394
|
},
|
|
33395
|
+
customer_key: {
|
|
33396
|
+
description:
|
|
33397
|
+
'Customer key for which you want to list entrances.',
|
|
33398
|
+
type: 'string',
|
|
33399
|
+
},
|
|
33387
33400
|
limit: {
|
|
33388
33401
|
default: 900,
|
|
33389
33402
|
description:
|
|
@@ -33705,6 +33718,15 @@ export default {
|
|
|
33705
33718
|
'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.',
|
|
33706
33719
|
operationId: 'acsSystemsListGet',
|
|
33707
33720
|
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
|
+
},
|
|
33708
33730
|
{
|
|
33709
33731
|
in: 'query',
|
|
33710
33732
|
name: 'connected_account_id',
|
|
@@ -33767,6 +33789,11 @@ export default {
|
|
|
33767
33789
|
format: 'uuid',
|
|
33768
33790
|
type: 'string',
|
|
33769
33791
|
},
|
|
33792
|
+
customer_key: {
|
|
33793
|
+
description:
|
|
33794
|
+
'Customer key for which you want to list access systems.',
|
|
33795
|
+
type: 'string',
|
|
33796
|
+
},
|
|
33770
33797
|
},
|
|
33771
33798
|
type: 'object',
|
|
33772
33799
|
},
|
|
@@ -29220,6 +29220,8 @@ export type Routes = {
|
|
|
29220
29220
|
queryParams: {}
|
|
29221
29221
|
jsonBody: {}
|
|
29222
29222
|
commonParams: {
|
|
29223
|
+
/** Customer key for which you want to list entrances. */
|
|
29224
|
+
customer_key?: string | undefined
|
|
29223
29225
|
/** ID of the access system for which you want to retrieve all entrances. */
|
|
29224
29226
|
acs_system_id?: string | undefined
|
|
29225
29227
|
/** ID of the credential for which you want to retrieve all entrances. */
|
|
@@ -29751,6 +29753,8 @@ export type Routes = {
|
|
|
29751
29753
|
queryParams: {}
|
|
29752
29754
|
jsonBody: {}
|
|
29753
29755
|
commonParams: {
|
|
29756
|
+
/** Customer key for which you want to list access systems. */
|
|
29757
|
+
customer_key?: string | undefined
|
|
29754
29758
|
/** ID of the connected account by which you want to filter the list of access systems. */
|
|
29755
29759
|
connected_account_id?: string | undefined
|
|
29756
29760
|
}
|