@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
|
@@ -14073,6 +14073,8 @@ export type Routes = {
|
|
|
14073
14073
|
acs_system_id?: string | undefined;
|
|
14074
14074
|
/** ID of the entrance by which you want to filter the list of Access Grants. */
|
|
14075
14075
|
acs_entrance_id?: string | undefined;
|
|
14076
|
+
/** ID of the device by which you want to filter the list of Access Grants. */
|
|
14077
|
+
device_id?: string | undefined;
|
|
14076
14078
|
/**
|
|
14077
14079
|
* @deprecated Use `space_id`.*/
|
|
14078
14080
|
location_id?: string | undefined;
|
package/package.json
CHANGED
|
@@ -36557,6 +36557,16 @@ const openapi: OpenAPISpec = {
|
|
|
36557
36557
|
type: 'string',
|
|
36558
36558
|
},
|
|
36559
36559
|
},
|
|
36560
|
+
{
|
|
36561
|
+
in: 'query',
|
|
36562
|
+
name: 'device_id',
|
|
36563
|
+
schema: {
|
|
36564
|
+
description:
|
|
36565
|
+
'ID of the device by which you want to filter the list of Access Grants.',
|
|
36566
|
+
format: 'uuid',
|
|
36567
|
+
type: 'string',
|
|
36568
|
+
},
|
|
36569
|
+
},
|
|
36560
36570
|
{
|
|
36561
36571
|
in: 'query',
|
|
36562
36572
|
name: 'location_id',
|
|
@@ -36685,6 +36695,12 @@ const openapi: OpenAPISpec = {
|
|
|
36685
36695
|
'Customer key for which you want to list access grants.',
|
|
36686
36696
|
type: 'string',
|
|
36687
36697
|
},
|
|
36698
|
+
device_id: {
|
|
36699
|
+
description:
|
|
36700
|
+
'ID of the device by which you want to filter the list of Access Grants.',
|
|
36701
|
+
format: 'uuid',
|
|
36702
|
+
type: 'string',
|
|
36703
|
+
},
|
|
36688
36704
|
limit: {
|
|
36689
36705
|
default: 500,
|
|
36690
36706
|
description:
|
|
@@ -16234,6 +16234,8 @@ export type Routes = {
|
|
|
16234
16234
|
acs_system_id?: string | undefined
|
|
16235
16235
|
/** ID of the entrance by which you want to filter the list of Access Grants. */
|
|
16236
16236
|
acs_entrance_id?: string | undefined
|
|
16237
|
+
/** ID of the device by which you want to filter the list of Access Grants. */
|
|
16238
|
+
device_id?: string | undefined
|
|
16237
16239
|
/**
|
|
16238
16240
|
* @deprecated Use `space_id`.*/
|
|
16239
16241
|
location_id?: string | undefined
|