@seamapi/types 1.755.0 → 1.756.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 -5
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +20 -5
- package/dist/index.cjs +14 -5
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +17 -4
- package/lib/seam/connect/openapi.js +14 -5
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +3 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +15 -5
- package/src/lib/seam/connect/route-types.ts +3 -1
package/dist/connect.cjs
CHANGED
|
@@ -40956,17 +40956,24 @@ var openapi_default = {
|
|
|
40956
40956
|
{
|
|
40957
40957
|
in: "query",
|
|
40958
40958
|
name: "access_grant_id",
|
|
40959
|
-
required: true,
|
|
40960
40959
|
schema: {
|
|
40961
40960
|
description: "ID of Access Grant to list access methods for.",
|
|
40962
40961
|
format: "uuid",
|
|
40963
40962
|
type: "string"
|
|
40964
40963
|
}
|
|
40965
40964
|
},
|
|
40965
|
+
{
|
|
40966
|
+
in: "query",
|
|
40967
|
+
name: "access_grant_key",
|
|
40968
|
+
schema: {
|
|
40969
|
+
description: "Key of Access Grant to list access methods for.",
|
|
40970
|
+
minLength: 1,
|
|
40971
|
+
type: "string"
|
|
40972
|
+
}
|
|
40973
|
+
},
|
|
40966
40974
|
{
|
|
40967
40975
|
in: "query",
|
|
40968
40976
|
name: "device_id",
|
|
40969
|
-
required: false,
|
|
40970
40977
|
schema: {
|
|
40971
40978
|
description: "ID of the device for which you want to retrieve all access methods.",
|
|
40972
40979
|
format: "uuid",
|
|
@@ -40976,7 +40983,6 @@ var openapi_default = {
|
|
|
40976
40983
|
{
|
|
40977
40984
|
in: "query",
|
|
40978
40985
|
name: "acs_entrance_id",
|
|
40979
|
-
required: false,
|
|
40980
40986
|
schema: {
|
|
40981
40987
|
description: "ID of the entrance for which you want to retrieve all access methods.",
|
|
40982
40988
|
format: "uuid",
|
|
@@ -40986,7 +40992,6 @@ var openapi_default = {
|
|
|
40986
40992
|
{
|
|
40987
40993
|
in: "query",
|
|
40988
40994
|
name: "space_id",
|
|
40989
|
-
required: false,
|
|
40990
40995
|
schema: {
|
|
40991
40996
|
description: "ID of the space for which you want to retrieve all access methods.",
|
|
40992
40997
|
format: "uuid",
|
|
@@ -41044,6 +41049,11 @@ var openapi_default = {
|
|
|
41044
41049
|
format: "uuid",
|
|
41045
41050
|
type: "string"
|
|
41046
41051
|
},
|
|
41052
|
+
access_grant_key: {
|
|
41053
|
+
description: "Key of Access Grant to list access methods for.",
|
|
41054
|
+
minLength: 1,
|
|
41055
|
+
type: "string"
|
|
41056
|
+
},
|
|
41047
41057
|
acs_entrance_id: {
|
|
41048
41058
|
description: "ID of the entrance for which you want to retrieve all access methods.",
|
|
41049
41059
|
format: "uuid",
|
|
@@ -41060,7 +41070,6 @@ var openapi_default = {
|
|
|
41060
41070
|
type: "string"
|
|
41061
41071
|
}
|
|
41062
41072
|
},
|
|
41063
|
-
required: ["access_grant_id"],
|
|
41064
41073
|
type: "object"
|
|
41065
41074
|
}
|
|
41066
41075
|
}
|