@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
|
@@ -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.',
|