@seamapi/types 1.864.0 → 1.866.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 +36 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +12 -0
- package/dist/index.cjs +36 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.js +36 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +12 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +42 -0
- package/src/lib/seam/connect/route-types.ts +16 -0
|
@@ -32844,6 +32844,15 @@ const openapi = {
|
|
|
32844
32844
|
type: 'string',
|
|
32845
32845
|
},
|
|
32846
32846
|
},
|
|
32847
|
+
{
|
|
32848
|
+
in: 'query',
|
|
32849
|
+
name: 'device_id',
|
|
32850
|
+
schema: {
|
|
32851
|
+
description: 'ID of the device by which you want to filter the list of Access Grants.',
|
|
32852
|
+
format: 'uuid',
|
|
32853
|
+
type: 'string',
|
|
32854
|
+
},
|
|
32855
|
+
},
|
|
32847
32856
|
{
|
|
32848
32857
|
in: 'query',
|
|
32849
32858
|
name: 'location_id',
|
|
@@ -32964,6 +32973,11 @@ const openapi = {
|
|
|
32964
32973
|
description: 'Customer key for which you want to list access grants.',
|
|
32965
32974
|
type: 'string',
|
|
32966
32975
|
},
|
|
32976
|
+
device_id: {
|
|
32977
|
+
description: 'ID of the device by which you want to filter the list of Access Grants.',
|
|
32978
|
+
format: 'uuid',
|
|
32979
|
+
type: 'string',
|
|
32980
|
+
},
|
|
32967
32981
|
limit: {
|
|
32968
32982
|
default: 500,
|
|
32969
32983
|
description: 'Numerical limit on the number of access grants to return.',
|
|
@@ -41265,6 +41279,17 @@ const openapi = {
|
|
|
41265
41279
|
format: 'uuid',
|
|
41266
41280
|
type: 'string',
|
|
41267
41281
|
},
|
|
41282
|
+
salto_ks_metadata: {
|
|
41283
|
+
description: 'Salto KS-specific metadata for the scan action.',
|
|
41284
|
+
properties: {
|
|
41285
|
+
detect_new_tags: {
|
|
41286
|
+
default: false,
|
|
41287
|
+
description: 'When true, activates tag registration mode on the encoder to detect new, unregistered tags. When false, only detects existing tags already registered in the system. Defaults to false.',
|
|
41288
|
+
type: 'boolean',
|
|
41289
|
+
},
|
|
41290
|
+
},
|
|
41291
|
+
type: 'object',
|
|
41292
|
+
},
|
|
41268
41293
|
},
|
|
41269
41294
|
required: ['acs_encoder_id'],
|
|
41270
41295
|
type: 'object',
|
|
@@ -41327,6 +41352,17 @@ const openapi = {
|
|
|
41327
41352
|
format: 'uuid',
|
|
41328
41353
|
type: 'string',
|
|
41329
41354
|
},
|
|
41355
|
+
salto_ks_metadata: {
|
|
41356
|
+
description: 'Salto KS-specific metadata for the scan action.',
|
|
41357
|
+
properties: {
|
|
41358
|
+
detect_new_tags: {
|
|
41359
|
+
default: false,
|
|
41360
|
+
description: 'When true, activates tag registration mode on the encoder to detect new, unregistered tags. When false, only detects existing tags already registered in the system. Defaults to false.',
|
|
41361
|
+
type: 'boolean',
|
|
41362
|
+
},
|
|
41363
|
+
},
|
|
41364
|
+
type: 'object',
|
|
41365
|
+
},
|
|
41330
41366
|
user_identity_id: {
|
|
41331
41367
|
description: 'ID of the `user_identity` to assign the scanned credential to. If the ACS system contains an ACS user linked to this user identity, it is used. Otherwise, one is created.',
|
|
41332
41368
|
format: 'uuid',
|