@seamapi/types 1.980.0 → 1.981.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 +14 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2 -0
- package/dist/index.cjs +14 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.js +14 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +16 -0
- package/src/lib/seam/connect/route-types.ts +2 -0
|
@@ -31345,6 +31345,8 @@ export type Routes = {
|
|
|
31345
31345
|
acs_system_id?: string | undefined;
|
|
31346
31346
|
/** ID of the credential for which you want to retrieve all entrances. */
|
|
31347
31347
|
acs_credential_id?: string | undefined;
|
|
31348
|
+
/** ID of the access method for which you want to retrieve all entrances to which it grants access. */
|
|
31349
|
+
access_method_id?: string | undefined;
|
|
31348
31350
|
/**
|
|
31349
31351
|
* @deprecated Use `space_id`.*/
|
|
31350
31352
|
location_id?: (string | null) | undefined;
|
package/package.json
CHANGED
|
@@ -49147,6 +49147,16 @@ const openapi: OpenAPISpec = {
|
|
|
49147
49147
|
type: 'string',
|
|
49148
49148
|
},
|
|
49149
49149
|
},
|
|
49150
|
+
{
|
|
49151
|
+
in: 'query',
|
|
49152
|
+
name: 'access_method_id',
|
|
49153
|
+
schema: {
|
|
49154
|
+
description:
|
|
49155
|
+
'ID of the access method for which you want to retrieve all entrances to which it grants access.',
|
|
49156
|
+
format: 'uuid',
|
|
49157
|
+
type: 'string',
|
|
49158
|
+
},
|
|
49159
|
+
},
|
|
49150
49160
|
{
|
|
49151
49161
|
in: 'query',
|
|
49152
49162
|
name: 'location_id',
|
|
@@ -49269,6 +49279,12 @@ const openapi: OpenAPISpec = {
|
|
|
49269
49279
|
'application/json': {
|
|
49270
49280
|
schema: {
|
|
49271
49281
|
properties: {
|
|
49282
|
+
access_method_id: {
|
|
49283
|
+
description:
|
|
49284
|
+
'ID of the access method for which you want to retrieve all entrances to which it grants access.',
|
|
49285
|
+
format: 'uuid',
|
|
49286
|
+
type: 'string',
|
|
49287
|
+
},
|
|
49272
49288
|
acs_credential_id: {
|
|
49273
49289
|
description:
|
|
49274
49290
|
'ID of the credential for which you want to retrieve all entrances.',
|
|
@@ -37285,6 +37285,8 @@ export type Routes = {
|
|
|
37285
37285
|
acs_system_id?: string | undefined
|
|
37286
37286
|
/** ID of the credential for which you want to retrieve all entrances. */
|
|
37287
37287
|
acs_credential_id?: string | undefined
|
|
37288
|
+
/** ID of the access method for which you want to retrieve all entrances to which it grants access. */
|
|
37289
|
+
access_method_id?: string | undefined
|
|
37288
37290
|
/**
|
|
37289
37291
|
* @deprecated Use `space_id`.*/
|
|
37290
37292
|
location_id?: (string | null) | undefined
|