@seamapi/types 1.443.0 → 1.444.1
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 +45 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +95 -1
- package/dist/index.cjs +45 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/lib/seam/connect/model-types.d.ts +1 -1
- package/lib/seam/connect/openapi.d.ts +15 -0
- package/lib/seam/connect/openapi.js +45 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +6 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/model-types.ts +3 -0
- package/src/lib/seam/connect/openapi.ts +51 -0
- package/src/lib/seam/connect/route-types.ts +6 -0
|
@@ -11453,6 +11453,12 @@ export interface Routes {
|
|
|
11453
11453
|
commonParams: {
|
|
11454
11454
|
/** ID of access grant to list access methods for. */
|
|
11455
11455
|
access_grant_id: string;
|
|
11456
|
+
/** ID of the device for which you want to retrieve all access methods. */
|
|
11457
|
+
device_id?: string | undefined;
|
|
11458
|
+
/** ID of the entrance for which you want to retrieve all access methods. */
|
|
11459
|
+
acs_entrance_id?: string | undefined;
|
|
11460
|
+
/** ID of the space for which you want to retrieve all access methods. */
|
|
11461
|
+
space_id?: string | undefined;
|
|
11456
11462
|
};
|
|
11457
11463
|
formData: {};
|
|
11458
11464
|
jsonResponse: {
|
package/package.json
CHANGED
|
@@ -15,6 +15,7 @@ export type {
|
|
|
15
15
|
BuildingBlockType,
|
|
16
16
|
Bundle,
|
|
17
17
|
ClientSession,
|
|
18
|
+
ClimatePreset,
|
|
18
19
|
ConnectedAccount,
|
|
19
20
|
ConnectedAccountError,
|
|
20
21
|
ConnectedAccountWarning,
|
|
@@ -31,7 +32,9 @@ export type {
|
|
|
31
32
|
SeamEvent,
|
|
32
33
|
SeamEventType,
|
|
33
34
|
Space,
|
|
35
|
+
ThermostatDailyProgram,
|
|
34
36
|
ThermostatSchedule,
|
|
37
|
+
ThermostatWeeklyProgram,
|
|
35
38
|
UnmanagedAccessCode,
|
|
36
39
|
UnmanagedDevice,
|
|
37
40
|
UserIdentity,
|
|
@@ -28463,6 +28463,39 @@ export default {
|
|
|
28463
28463
|
type: 'string',
|
|
28464
28464
|
},
|
|
28465
28465
|
},
|
|
28466
|
+
{
|
|
28467
|
+
in: 'query',
|
|
28468
|
+
name: 'device_id',
|
|
28469
|
+
required: false,
|
|
28470
|
+
schema: {
|
|
28471
|
+
description:
|
|
28472
|
+
'ID of the device for which you want to retrieve all access methods.',
|
|
28473
|
+
format: 'uuid',
|
|
28474
|
+
type: 'string',
|
|
28475
|
+
},
|
|
28476
|
+
},
|
|
28477
|
+
{
|
|
28478
|
+
in: 'query',
|
|
28479
|
+
name: 'acs_entrance_id',
|
|
28480
|
+
required: false,
|
|
28481
|
+
schema: {
|
|
28482
|
+
description:
|
|
28483
|
+
'ID of the entrance for which you want to retrieve all access methods.',
|
|
28484
|
+
format: 'uuid',
|
|
28485
|
+
type: 'string',
|
|
28486
|
+
},
|
|
28487
|
+
},
|
|
28488
|
+
{
|
|
28489
|
+
in: 'query',
|
|
28490
|
+
name: 'space_id',
|
|
28491
|
+
required: false,
|
|
28492
|
+
schema: {
|
|
28493
|
+
description:
|
|
28494
|
+
'ID of the space for which you want to retrieve all access methods.',
|
|
28495
|
+
format: 'uuid',
|
|
28496
|
+
type: 'string',
|
|
28497
|
+
},
|
|
28498
|
+
},
|
|
28466
28499
|
],
|
|
28467
28500
|
responses: {
|
|
28468
28501
|
200: {
|
|
@@ -28515,6 +28548,24 @@ export default {
|
|
|
28515
28548
|
format: 'uuid',
|
|
28516
28549
|
type: 'string',
|
|
28517
28550
|
},
|
|
28551
|
+
acs_entrance_id: {
|
|
28552
|
+
description:
|
|
28553
|
+
'ID of the entrance for which you want to retrieve all access methods.',
|
|
28554
|
+
format: 'uuid',
|
|
28555
|
+
type: 'string',
|
|
28556
|
+
},
|
|
28557
|
+
device_id: {
|
|
28558
|
+
description:
|
|
28559
|
+
'ID of the device for which you want to retrieve all access methods.',
|
|
28560
|
+
format: 'uuid',
|
|
28561
|
+
type: 'string',
|
|
28562
|
+
},
|
|
28563
|
+
space_id: {
|
|
28564
|
+
description:
|
|
28565
|
+
'ID of the space for which you want to retrieve all access methods.',
|
|
28566
|
+
format: 'uuid',
|
|
28567
|
+
type: 'string',
|
|
28568
|
+
},
|
|
28518
28569
|
},
|
|
28519
28570
|
required: ['access_grant_id'],
|
|
28520
28571
|
type: 'object',
|
|
@@ -12858,6 +12858,12 @@ export interface Routes {
|
|
|
12858
12858
|
commonParams: {
|
|
12859
12859
|
/** ID of access grant to list access methods for. */
|
|
12860
12860
|
access_grant_id: string
|
|
12861
|
+
/** ID of the device for which you want to retrieve all access methods. */
|
|
12862
|
+
device_id?: string | undefined
|
|
12863
|
+
/** ID of the entrance for which you want to retrieve all access methods. */
|
|
12864
|
+
acs_entrance_id?: string | undefined
|
|
12865
|
+
/** ID of the space for which you want to retrieve all access methods. */
|
|
12866
|
+
space_id?: string | undefined
|
|
12861
12867
|
}
|
|
12862
12868
|
formData: {}
|
|
12863
12869
|
jsonResponse: {
|