@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
package/dist/connect.cjs
CHANGED
|
@@ -39908,6 +39908,15 @@ var openapi = {
|
|
|
39908
39908
|
type: "string"
|
|
39909
39909
|
}
|
|
39910
39910
|
},
|
|
39911
|
+
{
|
|
39912
|
+
in: "query",
|
|
39913
|
+
name: "device_id",
|
|
39914
|
+
schema: {
|
|
39915
|
+
description: "ID of the device by which you want to filter the list of Access Grants.",
|
|
39916
|
+
format: "uuid",
|
|
39917
|
+
type: "string"
|
|
39918
|
+
}
|
|
39919
|
+
},
|
|
39911
39920
|
{
|
|
39912
39921
|
in: "query",
|
|
39913
39922
|
name: "location_id",
|
|
@@ -40028,6 +40037,11 @@ var openapi = {
|
|
|
40028
40037
|
description: "Customer key for which you want to list access grants.",
|
|
40029
40038
|
type: "string"
|
|
40030
40039
|
},
|
|
40040
|
+
device_id: {
|
|
40041
|
+
description: "ID of the device by which you want to filter the list of Access Grants.",
|
|
40042
|
+
format: "uuid",
|
|
40043
|
+
type: "string"
|
|
40044
|
+
},
|
|
40031
40045
|
limit: {
|
|
40032
40046
|
default: 500,
|
|
40033
40047
|
description: "Numerical limit on the number of access grants to return.",
|
|
@@ -48328,6 +48342,17 @@ var openapi = {
|
|
|
48328
48342
|
description: "ID of the encoder to use for the scan.",
|
|
48329
48343
|
format: "uuid",
|
|
48330
48344
|
type: "string"
|
|
48345
|
+
},
|
|
48346
|
+
salto_ks_metadata: {
|
|
48347
|
+
description: "Salto KS-specific metadata for the scan action.",
|
|
48348
|
+
properties: {
|
|
48349
|
+
detect_new_tags: {
|
|
48350
|
+
default: false,
|
|
48351
|
+
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.",
|
|
48352
|
+
type: "boolean"
|
|
48353
|
+
}
|
|
48354
|
+
},
|
|
48355
|
+
type: "object"
|
|
48331
48356
|
}
|
|
48332
48357
|
},
|
|
48333
48358
|
required: ["acs_encoder_id"],
|
|
@@ -48391,6 +48416,17 @@ var openapi = {
|
|
|
48391
48416
|
format: "uuid",
|
|
48392
48417
|
type: "string"
|
|
48393
48418
|
},
|
|
48419
|
+
salto_ks_metadata: {
|
|
48420
|
+
description: "Salto KS-specific metadata for the scan action.",
|
|
48421
|
+
properties: {
|
|
48422
|
+
detect_new_tags: {
|
|
48423
|
+
default: false,
|
|
48424
|
+
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.",
|
|
48425
|
+
type: "boolean"
|
|
48426
|
+
}
|
|
48427
|
+
},
|
|
48428
|
+
type: "object"
|
|
48429
|
+
},
|
|
48394
48430
|
user_identity_id: {
|
|
48395
48431
|
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.",
|
|
48396
48432
|
format: "uuid",
|