@seamapi/types 1.864.0 → 1.865.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
package/dist/connect.d.cts
CHANGED
|
@@ -79707,6 +79707,8 @@ type Routes = {
|
|
|
79707
79707
|
acs_system_id?: string | undefined;
|
|
79708
79708
|
/** ID of the entrance by which you want to filter the list of Access Grants. */
|
|
79709
79709
|
acs_entrance_id?: string | undefined;
|
|
79710
|
+
/** ID of the device by which you want to filter the list of Access Grants. */
|
|
79711
|
+
device_id?: string | undefined;
|
|
79710
79712
|
/**
|
|
79711
79713
|
* @deprecated Use `space_id`.*/
|
|
79712
79714
|
location_id?: string | undefined;
|
package/dist/index.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.",
|