@seamapi/types 1.784.0 → 1.786.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 +28 -8
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +73 -3
- package/dist/index.cjs +28 -8
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +14 -0
- package/lib/seam/connect/models/devices/device-metadata.d.ts +5 -0
- package/lib/seam/connect/models/devices/device-metadata.js +4 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +7 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +5 -0
- package/lib/seam/connect/openapi.d.ts +8 -0
- package/lib/seam/connect/openapi.js +25 -8
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +39 -3
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +28 -8
- package/src/lib/seam/connect/route-types.ts +47 -3
|
@@ -4392,12 +4392,14 @@ export type Routes = {
|
|
|
4392
4392
|
commonParams: {
|
|
4393
4393
|
/** Customer key for which you want to list access codes. */
|
|
4394
4394
|
customer_key?: string | undefined;
|
|
4395
|
-
/** ID of the device for which you want to list access codes. Specify `device_id`, `access_code_ids`, or `
|
|
4395
|
+
/** ID of the device for which you want to list access codes. Specify `device_id`, `access_code_ids`, `access_method_id`, or `access_grant_id`. */
|
|
4396
4396
|
device_id?: string | undefined;
|
|
4397
|
-
/** IDs of the access codes that you want to retrieve. Specify `device_id`, `access_code_ids`, or `
|
|
4397
|
+
/** IDs of the access codes that you want to retrieve. Specify `device_id`, `access_code_ids`, `access_method_id`, or `access_grant_id`. */
|
|
4398
4398
|
access_code_ids?: string[] | undefined;
|
|
4399
|
-
/** ID of the access method for which you want to list access codes. Specify `device_id`, `access_code_ids`, or `
|
|
4399
|
+
/** ID of the access method for which you want to list access codes. Specify `device_id`, `access_code_ids`, `access_method_id`, or `access_grant_id`. */
|
|
4400
4400
|
access_method_id?: string | undefined;
|
|
4401
|
+
/** ID of the access grant for which you want to list access codes. Specify `device_id`, `access_code_ids`, `access_method_id`, or `access_grant_id`. */
|
|
4402
|
+
access_grant_id?: string | undefined;
|
|
4401
4403
|
/** Your user ID for the user by which to filter access codes. */
|
|
4402
4404
|
user_identifier_key?: string | undefined;
|
|
4403
4405
|
/** Numerical limit on the number of access codes to return. */
|
|
@@ -11345,6 +11347,8 @@ export type Routes = {
|
|
|
11345
11347
|
product_type: string;
|
|
11346
11348
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
11347
11349
|
dual_setpoints_not_supported?: boolean | undefined;
|
|
11350
|
+
/** Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
11351
|
+
enforced_setpoint_range_celsius?: [number, number] | undefined;
|
|
11348
11352
|
} | undefined;
|
|
11349
11353
|
/** Metadata for a KeyNest device. */
|
|
11350
11354
|
keynest_metadata?: {
|
|
@@ -15665,6 +15669,8 @@ export type Routes = {
|
|
|
15665
15669
|
product_type: string;
|
|
15666
15670
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
15667
15671
|
dual_setpoints_not_supported?: boolean | undefined;
|
|
15672
|
+
/** Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
15673
|
+
enforced_setpoint_range_celsius?: [number, number] | undefined;
|
|
15668
15674
|
} | undefined;
|
|
15669
15675
|
/** Metadata for a KeyNest device. */
|
|
15670
15676
|
keynest_metadata?: {
|
|
@@ -32172,6 +32178,8 @@ export type Routes = {
|
|
|
32172
32178
|
product_type: string;
|
|
32173
32179
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
32174
32180
|
dual_setpoints_not_supported?: boolean | undefined;
|
|
32181
|
+
/** Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
32182
|
+
enforced_setpoint_range_celsius?: [number, number] | undefined;
|
|
32175
32183
|
} | undefined;
|
|
32176
32184
|
/** Metadata for a KeyNest device. */
|
|
32177
32185
|
keynest_metadata?: {
|
|
@@ -33545,6 +33553,8 @@ export type Routes = {
|
|
|
33545
33553
|
product_type: string;
|
|
33546
33554
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
33547
33555
|
dual_setpoints_not_supported?: boolean | undefined;
|
|
33556
|
+
/** Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
33557
|
+
enforced_setpoint_range_celsius?: [number, number] | undefined;
|
|
33548
33558
|
} | undefined;
|
|
33549
33559
|
/** Metadata for a KeyNest device. */
|
|
33550
33560
|
keynest_metadata?: {
|
|
@@ -43066,6 +43076,8 @@ export type Routes = {
|
|
|
43066
43076
|
product_type: string;
|
|
43067
43077
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
43068
43078
|
dual_setpoints_not_supported?: boolean | undefined;
|
|
43079
|
+
/** Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
43080
|
+
enforced_setpoint_range_celsius?: [number, number] | undefined;
|
|
43069
43081
|
} | undefined;
|
|
43070
43082
|
/** Metadata for a KeyNest device. */
|
|
43071
43083
|
keynest_metadata?: {
|
|
@@ -44389,6 +44401,8 @@ export type Routes = {
|
|
|
44389
44401
|
product_type: string;
|
|
44390
44402
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
44391
44403
|
dual_setpoints_not_supported?: boolean | undefined;
|
|
44404
|
+
/** Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
44405
|
+
enforced_setpoint_range_celsius?: [number, number] | undefined;
|
|
44392
44406
|
} | undefined;
|
|
44393
44407
|
/** Metadata for a KeyNest device. */
|
|
44394
44408
|
keynest_metadata?: {
|
|
@@ -45762,6 +45776,8 @@ export type Routes = {
|
|
|
45762
45776
|
product_type: string;
|
|
45763
45777
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
45764
45778
|
dual_setpoints_not_supported?: boolean | undefined;
|
|
45779
|
+
/** Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
45780
|
+
enforced_setpoint_range_celsius?: [number, number] | undefined;
|
|
45765
45781
|
} | undefined;
|
|
45766
45782
|
/** Metadata for a KeyNest device. */
|
|
45767
45783
|
keynest_metadata?: {
|
|
@@ -47084,6 +47100,8 @@ export type Routes = {
|
|
|
47084
47100
|
product_type: string;
|
|
47085
47101
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
47086
47102
|
dual_setpoints_not_supported?: boolean | undefined;
|
|
47103
|
+
/** Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
47104
|
+
enforced_setpoint_range_celsius?: [number, number] | undefined;
|
|
47087
47105
|
} | undefined;
|
|
47088
47106
|
/** Metadata for a KeyNest device. */
|
|
47089
47107
|
keynest_metadata?: {
|
|
@@ -53803,6 +53821,8 @@ export type Routes = {
|
|
|
53803
53821
|
product_type: string;
|
|
53804
53822
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
53805
53823
|
dual_setpoints_not_supported?: boolean | undefined;
|
|
53824
|
+
/** Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
53825
|
+
enforced_setpoint_range_celsius?: [number, number] | undefined;
|
|
53806
53826
|
} | undefined;
|
|
53807
53827
|
/** Metadata for a KeyNest device. */
|
|
53808
53828
|
keynest_metadata?: {
|
|
@@ -55125,6 +55145,8 @@ export type Routes = {
|
|
|
55125
55145
|
product_type: string;
|
|
55126
55146
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
55127
55147
|
dual_setpoints_not_supported?: boolean | undefined;
|
|
55148
|
+
/** Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
55149
|
+
enforced_setpoint_range_celsius?: [number, number] | undefined;
|
|
55128
55150
|
} | undefined;
|
|
55129
55151
|
/** Metadata for a KeyNest device. */
|
|
55130
55152
|
keynest_metadata?: {
|
|
@@ -68462,6 +68484,8 @@ export type Routes = {
|
|
|
68462
68484
|
product_type: string;
|
|
68463
68485
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
68464
68486
|
dual_setpoints_not_supported?: boolean | undefined;
|
|
68487
|
+
/** Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
68488
|
+
enforced_setpoint_range_celsius?: [number, number] | undefined;
|
|
68465
68489
|
} | undefined;
|
|
68466
68490
|
/** Metadata for a KeyNest device. */
|
|
68467
68491
|
keynest_metadata?: {
|
|
@@ -74575,6 +74599,8 @@ export type Routes = {
|
|
|
74575
74599
|
product_type: string;
|
|
74576
74600
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
74577
74601
|
dual_setpoints_not_supported?: boolean | undefined;
|
|
74602
|
+
/** Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
74603
|
+
enforced_setpoint_range_celsius?: [number, number] | undefined;
|
|
74578
74604
|
} | undefined;
|
|
74579
74605
|
/** Metadata for a KeyNest device. */
|
|
74580
74606
|
keynest_metadata?: {
|
|
@@ -78634,6 +78660,8 @@ export type Routes = {
|
|
|
78634
78660
|
product_type: string;
|
|
78635
78661
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
78636
78662
|
dual_setpoints_not_supported?: boolean | undefined;
|
|
78663
|
+
/** Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
78664
|
+
enforced_setpoint_range_celsius?: [number, number] | undefined;
|
|
78637
78665
|
} | undefined;
|
|
78638
78666
|
/** Metadata for a KeyNest device. */
|
|
78639
78667
|
keynest_metadata?: {
|
|
@@ -79956,6 +79984,8 @@ export type Routes = {
|
|
|
79956
79984
|
product_type: string;
|
|
79957
79985
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
79958
79986
|
dual_setpoints_not_supported?: boolean | undefined;
|
|
79987
|
+
/** Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
79988
|
+
enforced_setpoint_range_celsius?: [number, number] | undefined;
|
|
79959
79989
|
} | undefined;
|
|
79960
79990
|
/** Metadata for a KeyNest device. */
|
|
79961
79991
|
keynest_metadata?: {
|
|
@@ -87568,6 +87598,8 @@ export type Routes = {
|
|
|
87568
87598
|
product_type: string;
|
|
87569
87599
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
87570
87600
|
dual_setpoints_not_supported?: boolean | undefined;
|
|
87601
|
+
/** Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
87602
|
+
enforced_setpoint_range_celsius?: [number, number] | undefined;
|
|
87571
87603
|
} | undefined;
|
|
87572
87604
|
/** Metadata for a KeyNest device. */
|
|
87573
87605
|
keynest_metadata?: {
|
|
@@ -88892,6 +88924,8 @@ export type Routes = {
|
|
|
88892
88924
|
product_type: string;
|
|
88893
88925
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
88894
88926
|
dual_setpoints_not_supported?: boolean | undefined;
|
|
88927
|
+
/** Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
88928
|
+
enforced_setpoint_range_celsius?: [number, number] | undefined;
|
|
88895
88929
|
} | undefined;
|
|
88896
88930
|
/** Metadata for a KeyNest device. */
|
|
88897
88931
|
keynest_metadata?: {
|
|
@@ -91339,6 +91373,8 @@ export type Routes = {
|
|
|
91339
91373
|
product_type: string;
|
|
91340
91374
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
91341
91375
|
dual_setpoints_not_supported?: boolean | undefined;
|
|
91376
|
+
/** Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
91377
|
+
enforced_setpoint_range_celsius?: [number, number] | undefined;
|
|
91342
91378
|
} | undefined;
|
|
91343
91379
|
/** Metadata for a KeyNest device. */
|
|
91344
91380
|
keynest_metadata?: {
|
package/package.json
CHANGED
|
@@ -644,6 +644,12 @@ export const device_metadata = z
|
|
|
644
644
|
.describe(
|
|
645
645
|
`Set to true when the device does not support the /dual-setpoints API endpoint.`,
|
|
646
646
|
),
|
|
647
|
+
enforced_setpoint_range_celsius: z
|
|
648
|
+
.tuple([z.number(), z.number()])
|
|
649
|
+
.optional()
|
|
650
|
+
.describe(
|
|
651
|
+
`Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error.`,
|
|
652
|
+
),
|
|
647
653
|
})
|
|
648
654
|
.describe(`Metadata for a Sensi device.`),
|
|
649
655
|
|
|
@@ -13098,6 +13098,10 @@ export default {
|
|
|
13098
13098
|
'Set to true when the device does not support the /dual-setpoints API endpoint.',
|
|
13099
13099
|
type: 'boolean',
|
|
13100
13100
|
},
|
|
13101
|
+
enforced_setpoint_range_celsius: {
|
|
13102
|
+
description:
|
|
13103
|
+
'Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error.',
|
|
13104
|
+
},
|
|
13101
13105
|
product_type: {
|
|
13102
13106
|
description: 'Product type for a Sensi device.',
|
|
13103
13107
|
type: 'string',
|
|
@@ -32406,7 +32410,7 @@ export default {
|
|
|
32406
32410
|
'/access_codes/list': {
|
|
32407
32411
|
get: {
|
|
32408
32412
|
description:
|
|
32409
|
-
'Returns a list of all [access codes](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).\n\nSpecify `device_id`, `access_code_ids`, or `
|
|
32413
|
+
'Returns a list of all [access codes](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).\n\nSpecify `device_id`, `access_code_ids`, `access_method_id`, or `access_grant_id`.',
|
|
32410
32414
|
operationId: 'accessCodesListGet',
|
|
32411
32415
|
parameters: [
|
|
32412
32416
|
{
|
|
@@ -32423,7 +32427,7 @@ export default {
|
|
|
32423
32427
|
name: 'device_id',
|
|
32424
32428
|
schema: {
|
|
32425
32429
|
description:
|
|
32426
|
-
'ID of the device for which you want to list access codes. Specify `device_id`, `access_code_ids`, or `
|
|
32430
|
+
'ID of the device for which you want to list access codes. Specify `device_id`, `access_code_ids`, `access_method_id`, or `access_grant_id`.',
|
|
32427
32431
|
format: 'uuid',
|
|
32428
32432
|
type: 'string',
|
|
32429
32433
|
},
|
|
@@ -32433,7 +32437,7 @@ export default {
|
|
|
32433
32437
|
name: 'access_code_ids',
|
|
32434
32438
|
schema: {
|
|
32435
32439
|
description:
|
|
32436
|
-
'IDs of the access codes that you want to retrieve. Specify `device_id`, `access_code_ids`, or `
|
|
32440
|
+
'IDs of the access codes that you want to retrieve. Specify `device_id`, `access_code_ids`, `access_method_id`, or `access_grant_id`.',
|
|
32437
32441
|
items: { format: 'uuid', type: 'string' },
|
|
32438
32442
|
type: 'array',
|
|
32439
32443
|
},
|
|
@@ -32443,7 +32447,17 @@ export default {
|
|
|
32443
32447
|
name: 'access_method_id',
|
|
32444
32448
|
schema: {
|
|
32445
32449
|
description:
|
|
32446
|
-
'ID of the access method for which you want to list access codes. Specify `device_id`, `access_code_ids`, or `
|
|
32450
|
+
'ID of the access method for which you want to list access codes. Specify `device_id`, `access_code_ids`, `access_method_id`, or `access_grant_id`.',
|
|
32451
|
+
format: 'uuid',
|
|
32452
|
+
type: 'string',
|
|
32453
|
+
},
|
|
32454
|
+
},
|
|
32455
|
+
{
|
|
32456
|
+
in: 'query',
|
|
32457
|
+
name: 'access_grant_id',
|
|
32458
|
+
schema: {
|
|
32459
|
+
description:
|
|
32460
|
+
'ID of the access grant for which you want to list access codes. Specify `device_id`, `access_code_ids`, `access_method_id`, or `access_grant_id`.',
|
|
32447
32461
|
format: 'uuid',
|
|
32448
32462
|
type: 'string',
|
|
32449
32463
|
},
|
|
@@ -32529,7 +32543,7 @@ export default {
|
|
|
32529
32543
|
},
|
|
32530
32544
|
post: {
|
|
32531
32545
|
description:
|
|
32532
|
-
'Returns a list of all [access codes](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).\n\nSpecify `device_id`, `access_code_ids`, or `
|
|
32546
|
+
'Returns a list of all [access codes](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).\n\nSpecify `device_id`, `access_code_ids`, `access_method_id`, or `access_grant_id`.',
|
|
32533
32547
|
operationId: 'accessCodesListPost',
|
|
32534
32548
|
requestBody: {
|
|
32535
32549
|
content: {
|
|
@@ -32538,13 +32552,19 @@ export default {
|
|
|
32538
32552
|
properties: {
|
|
32539
32553
|
access_code_ids: {
|
|
32540
32554
|
description:
|
|
32541
|
-
'IDs of the access codes that you want to retrieve. Specify `device_id`, `access_code_ids`, or `
|
|
32555
|
+
'IDs of the access codes that you want to retrieve. Specify `device_id`, `access_code_ids`, `access_method_id`, or `access_grant_id`.',
|
|
32542
32556
|
items: { format: 'uuid', type: 'string' },
|
|
32543
32557
|
type: 'array',
|
|
32544
32558
|
},
|
|
32559
|
+
access_grant_id: {
|
|
32560
|
+
description:
|
|
32561
|
+
'ID of the access grant for which you want to list access codes. Specify `device_id`, `access_code_ids`, `access_method_id`, or `access_grant_id`.',
|
|
32562
|
+
format: 'uuid',
|
|
32563
|
+
type: 'string',
|
|
32564
|
+
},
|
|
32545
32565
|
access_method_id: {
|
|
32546
32566
|
description:
|
|
32547
|
-
'ID of the access method for which you want to list access codes. Specify `device_id`, `access_code_ids`, or `
|
|
32567
|
+
'ID of the access method for which you want to list access codes. Specify `device_id`, `access_code_ids`, `access_method_id`, or `access_grant_id`.',
|
|
32548
32568
|
format: 'uuid',
|
|
32549
32569
|
type: 'string',
|
|
32550
32570
|
},
|
|
@@ -32555,7 +32575,7 @@ export default {
|
|
|
32555
32575
|
},
|
|
32556
32576
|
device_id: {
|
|
32557
32577
|
description:
|
|
32558
|
-
'ID of the device for which you want to list access codes. Specify `device_id`, `access_code_ids`, or `
|
|
32578
|
+
'ID of the device for which you want to list access codes. Specify `device_id`, `access_code_ids`, `access_method_id`, or `access_grant_id`.',
|
|
32559
32579
|
format: 'uuid',
|
|
32560
32580
|
type: 'string',
|
|
32561
32581
|
},
|
|
@@ -5023,12 +5023,14 @@ export type Routes = {
|
|
|
5023
5023
|
commonParams: {
|
|
5024
5024
|
/** Customer key for which you want to list access codes. */
|
|
5025
5025
|
customer_key?: string | undefined
|
|
5026
|
-
/** ID of the device for which you want to list access codes. Specify `device_id`, `access_code_ids`, or `
|
|
5026
|
+
/** ID of the device for which you want to list access codes. Specify `device_id`, `access_code_ids`, `access_method_id`, or `access_grant_id`. */
|
|
5027
5027
|
device_id?: string | undefined
|
|
5028
|
-
/** IDs of the access codes that you want to retrieve. Specify `device_id`, `access_code_ids`, or `
|
|
5028
|
+
/** IDs of the access codes that you want to retrieve. Specify `device_id`, `access_code_ids`, `access_method_id`, or `access_grant_id`. */
|
|
5029
5029
|
access_code_ids?: string[] | undefined
|
|
5030
|
-
/** ID of the access method for which you want to list access codes. Specify `device_id`, `access_code_ids`, or `
|
|
5030
|
+
/** ID of the access method for which you want to list access codes. Specify `device_id`, `access_code_ids`, `access_method_id`, or `access_grant_id`. */
|
|
5031
5031
|
access_method_id?: string | undefined
|
|
5032
|
+
/** ID of the access grant for which you want to list access codes. Specify `device_id`, `access_code_ids`, `access_method_id`, or `access_grant_id`. */
|
|
5033
|
+
access_grant_id?: string | undefined
|
|
5032
5034
|
/** Your user ID for the user by which to filter access codes. */
|
|
5033
5035
|
user_identifier_key?: string | undefined
|
|
5034
5036
|
/** Numerical limit on the number of access codes to return. */
|
|
@@ -12915,6 +12917,10 @@ export type Routes = {
|
|
|
12915
12917
|
product_type: string
|
|
12916
12918
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
12917
12919
|
dual_setpoints_not_supported?: boolean | undefined
|
|
12920
|
+
/** Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
12921
|
+
enforced_setpoint_range_celsius?:
|
|
12922
|
+
| [number, number]
|
|
12923
|
+
| undefined
|
|
12918
12924
|
}
|
|
12919
12925
|
| undefined
|
|
12920
12926
|
/** Metadata for a KeyNest device. */
|
|
@@ -18024,6 +18030,10 @@ export type Routes = {
|
|
|
18024
18030
|
product_type: string
|
|
18025
18031
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
18026
18032
|
dual_setpoints_not_supported?: boolean | undefined
|
|
18033
|
+
/** Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
18034
|
+
enforced_setpoint_range_celsius?:
|
|
18035
|
+
| [number, number]
|
|
18036
|
+
| undefined
|
|
18027
18037
|
}
|
|
18028
18038
|
| undefined
|
|
18029
18039
|
/** Metadata for a KeyNest device. */
|
|
@@ -37290,6 +37300,8 @@ export type Routes = {
|
|
|
37290
37300
|
product_type: string
|
|
37291
37301
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
37292
37302
|
dual_setpoints_not_supported?: boolean | undefined
|
|
37303
|
+
/** Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
37304
|
+
enforced_setpoint_range_celsius?: [number, number] | undefined
|
|
37293
37305
|
}
|
|
37294
37306
|
| undefined
|
|
37295
37307
|
/** Metadata for a KeyNest device. */
|
|
@@ -39169,6 +39181,8 @@ export type Routes = {
|
|
|
39169
39181
|
product_type: string
|
|
39170
39182
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
39171
39183
|
dual_setpoints_not_supported?: boolean | undefined
|
|
39184
|
+
/** Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
39185
|
+
enforced_setpoint_range_celsius?: [number, number] | undefined
|
|
39172
39186
|
}
|
|
39173
39187
|
| undefined
|
|
39174
39188
|
/** Metadata for a KeyNest device. */
|
|
@@ -51036,6 +51050,8 @@ export type Routes = {
|
|
|
51036
51050
|
product_type: string
|
|
51037
51051
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
51038
51052
|
dual_setpoints_not_supported?: boolean | undefined
|
|
51053
|
+
/** Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
51054
|
+
enforced_setpoint_range_celsius?: [number, number] | undefined
|
|
51039
51055
|
}
|
|
51040
51056
|
| undefined
|
|
51041
51057
|
/** Metadata for a KeyNest device. */
|
|
@@ -52684,6 +52700,8 @@ export type Routes = {
|
|
|
52684
52700
|
product_type: string
|
|
52685
52701
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
52686
52702
|
dual_setpoints_not_supported?: boolean | undefined
|
|
52703
|
+
/** Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
52704
|
+
enforced_setpoint_range_celsius?: [number, number] | undefined
|
|
52687
52705
|
}
|
|
52688
52706
|
| undefined
|
|
52689
52707
|
/** Metadata for a KeyNest device. */
|
|
@@ -54522,6 +54540,8 @@ export type Routes = {
|
|
|
54522
54540
|
product_type: string
|
|
54523
54541
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
54524
54542
|
dual_setpoints_not_supported?: boolean | undefined
|
|
54543
|
+
/** Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
54544
|
+
enforced_setpoint_range_celsius?: [number, number] | undefined
|
|
54525
54545
|
}
|
|
54526
54546
|
| undefined
|
|
54527
54547
|
/** Metadata for a KeyNest device. */
|
|
@@ -56169,6 +56189,8 @@ export type Routes = {
|
|
|
56169
56189
|
product_type: string
|
|
56170
56190
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
56171
56191
|
dual_setpoints_not_supported?: boolean | undefined
|
|
56192
|
+
/** Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
56193
|
+
enforced_setpoint_range_celsius?: [number, number] | undefined
|
|
56172
56194
|
}
|
|
56173
56195
|
| undefined
|
|
56174
56196
|
/** Metadata for a KeyNest device. */
|
|
@@ -64105,6 +64127,8 @@ export type Routes = {
|
|
|
64105
64127
|
product_type: string
|
|
64106
64128
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
64107
64129
|
dual_setpoints_not_supported?: boolean | undefined
|
|
64130
|
+
/** Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
64131
|
+
enforced_setpoint_range_celsius?: [number, number] | undefined
|
|
64108
64132
|
}
|
|
64109
64133
|
| undefined
|
|
64110
64134
|
/** Metadata for a KeyNest device. */
|
|
@@ -65752,6 +65776,8 @@ export type Routes = {
|
|
|
65752
65776
|
product_type: string
|
|
65753
65777
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
65754
65778
|
dual_setpoints_not_supported?: boolean | undefined
|
|
65779
|
+
/** Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
65780
|
+
enforced_setpoint_range_celsius?: [number, number] | undefined
|
|
65755
65781
|
}
|
|
65756
65782
|
| undefined
|
|
65757
65783
|
/** Metadata for a KeyNest device. */
|
|
@@ -81310,6 +81336,10 @@ export type Routes = {
|
|
|
81310
81336
|
product_type: string
|
|
81311
81337
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
81312
81338
|
dual_setpoints_not_supported?: boolean | undefined
|
|
81339
|
+
/** Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
81340
|
+
enforced_setpoint_range_celsius?:
|
|
81341
|
+
| [number, number]
|
|
81342
|
+
| undefined
|
|
81313
81343
|
}
|
|
81314
81344
|
| undefined
|
|
81315
81345
|
/** Metadata for a KeyNest device. */
|
|
@@ -88529,6 +88559,8 @@ export type Routes = {
|
|
|
88529
88559
|
product_type: string
|
|
88530
88560
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
88531
88561
|
dual_setpoints_not_supported?: boolean | undefined
|
|
88562
|
+
/** Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
88563
|
+
enforced_setpoint_range_celsius?: [number, number] | undefined
|
|
88532
88564
|
}
|
|
88533
88565
|
| undefined
|
|
88534
88566
|
/** Metadata for a KeyNest device. */
|
|
@@ -93410,6 +93442,8 @@ export type Routes = {
|
|
|
93410
93442
|
product_type: string
|
|
93411
93443
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
93412
93444
|
dual_setpoints_not_supported?: boolean | undefined
|
|
93445
|
+
/** Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
93446
|
+
enforced_setpoint_range_celsius?: [number, number] | undefined
|
|
93413
93447
|
}
|
|
93414
93448
|
| undefined
|
|
93415
93449
|
/** Metadata for a KeyNest device. */
|
|
@@ -95057,6 +95091,8 @@ export type Routes = {
|
|
|
95057
95091
|
product_type: string
|
|
95058
95092
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
95059
95093
|
dual_setpoints_not_supported?: boolean | undefined
|
|
95094
|
+
/** Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
95095
|
+
enforced_setpoint_range_celsius?: [number, number] | undefined
|
|
95060
95096
|
}
|
|
95061
95097
|
| undefined
|
|
95062
95098
|
/** Metadata for a KeyNest device. */
|
|
@@ -103874,6 +103910,8 @@ export type Routes = {
|
|
|
103874
103910
|
product_type: string
|
|
103875
103911
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
103876
103912
|
dual_setpoints_not_supported?: boolean | undefined
|
|
103913
|
+
/** Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
103914
|
+
enforced_setpoint_range_celsius?: [number, number] | undefined
|
|
103877
103915
|
}
|
|
103878
103916
|
| undefined
|
|
103879
103917
|
/** Metadata for a KeyNest device. */
|
|
@@ -105523,6 +105561,8 @@ export type Routes = {
|
|
|
105523
105561
|
product_type: string
|
|
105524
105562
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
105525
105563
|
dual_setpoints_not_supported?: boolean | undefined
|
|
105564
|
+
/** Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
105565
|
+
enforced_setpoint_range_celsius?: [number, number] | undefined
|
|
105526
105566
|
}
|
|
105527
105567
|
| undefined
|
|
105528
105568
|
/** Metadata for a KeyNest device. */
|
|
@@ -108439,6 +108479,10 @@ export type Routes = {
|
|
|
108439
108479
|
product_type: string
|
|
108440
108480
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
108441
108481
|
dual_setpoints_not_supported?: boolean | undefined
|
|
108482
|
+
/** Enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
108483
|
+
enforced_setpoint_range_celsius?:
|
|
108484
|
+
| [number, number]
|
|
108485
|
+
| undefined
|
|
108442
108486
|
}
|
|
108443
108487
|
| undefined
|
|
108444
108488
|
/** Metadata for a KeyNest device. */
|