@seamapi/types 1.986.0 → 1.988.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/lib/seam/connect/models/acs/acs-entrance.d.ts +4 -4
- package/lib/seam/connect/models/acs/metadata/salto-space.d.ts +2 -2
- package/lib/seam/connect/models/devices/device-metadata.d.ts +10 -0
- package/lib/seam/connect/models/devices/device-metadata.js +8 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +19 -0
- package/lib/seam/connect/models/devices/device.js +3 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +15 -0
- package/lib/seam/connect/models/phones/phone-session.d.ts +18 -18
- package/lib/seam/connect/openapi.js +18 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +130 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +10 -0
- package/src/lib/seam/connect/models/devices/device.ts +3 -0
- package/src/lib/seam/connect/openapi.ts +22 -0
- package/src/lib/seam/connect/route-types.ts +130 -0
|
@@ -14172,10 +14172,14 @@ export type Routes = {
|
|
|
14172
14172
|
| {
|
|
14173
14173
|
/** Device ID for a Google Nest device. */
|
|
14174
14174
|
nest_device_id?: (string | undefined) | undefined
|
|
14175
|
+
/** ID of the Google Nest structure containing the device. */
|
|
14176
|
+
nest_structure_id?: (string | undefined) | undefined
|
|
14175
14177
|
/** Device name for a Google Nest device. Google sets this value. */
|
|
14176
14178
|
device_name?: (string | undefined) | undefined
|
|
14177
14179
|
/** Custom device name for a Google Nest device. The device owner sets this value. */
|
|
14178
14180
|
device_custom_name?: (string | undefined) | undefined
|
|
14181
|
+
/** Name of the Google Nest structure containing the device. The device owner sets this value. */
|
|
14182
|
+
structure_name?: (string | undefined) | undefined
|
|
14179
14183
|
/** Display name for a Google Nest device. */
|
|
14180
14184
|
display_name?: (string | undefined) | undefined
|
|
14181
14185
|
}
|
|
@@ -15070,6 +15074,9 @@ export type Routes = {
|
|
|
15070
15074
|
/** Name of the device location.
|
|
15071
15075
|
*/
|
|
15072
15076
|
location_name?: string | undefined
|
|
15077
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
15078
|
+
*/
|
|
15079
|
+
room_name?: string | undefined
|
|
15073
15080
|
/** Time zone of the device location.
|
|
15074
15081
|
*/
|
|
15075
15082
|
time_zone?: string | undefined
|
|
@@ -22564,10 +22571,14 @@ export type Routes = {
|
|
|
22564
22571
|
| {
|
|
22565
22572
|
/** Device ID for a Google Nest device. */
|
|
22566
22573
|
nest_device_id?: (string | undefined) | undefined
|
|
22574
|
+
/** ID of the Google Nest structure containing the device. */
|
|
22575
|
+
nest_structure_id?: (string | undefined) | undefined
|
|
22567
22576
|
/** Device name for a Google Nest device. Google sets this value. */
|
|
22568
22577
|
device_name?: (string | undefined) | undefined
|
|
22569
22578
|
/** Custom device name for a Google Nest device. The device owner sets this value. */
|
|
22570
22579
|
device_custom_name?: (string | undefined) | undefined
|
|
22580
|
+
/** Name of the Google Nest structure containing the device. The device owner sets this value. */
|
|
22581
|
+
structure_name?: (string | undefined) | undefined
|
|
22571
22582
|
/** Display name for a Google Nest device. */
|
|
22572
22583
|
display_name?: (string | undefined) | undefined
|
|
22573
22584
|
}
|
|
@@ -23462,6 +23473,9 @@ export type Routes = {
|
|
|
23462
23473
|
/** Name of the device location.
|
|
23463
23474
|
*/
|
|
23464
23475
|
location_name?: string | undefined
|
|
23476
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
23477
|
+
*/
|
|
23478
|
+
room_name?: string | undefined
|
|
23465
23479
|
/** Time zone of the device location.
|
|
23466
23480
|
*/
|
|
23467
23481
|
time_zone?: string | undefined
|
|
@@ -50536,10 +50550,14 @@ export type Routes = {
|
|
|
50536
50550
|
| {
|
|
50537
50551
|
/** Device ID for a Google Nest device. */
|
|
50538
50552
|
nest_device_id?: (string | undefined) | undefined
|
|
50553
|
+
/** ID of the Google Nest structure containing the device. */
|
|
50554
|
+
nest_structure_id?: (string | undefined) | undefined
|
|
50539
50555
|
/** Device name for a Google Nest device. Google sets this value. */
|
|
50540
50556
|
device_name?: (string | undefined) | undefined
|
|
50541
50557
|
/** Custom device name for a Google Nest device. The device owner sets this value. */
|
|
50542
50558
|
device_custom_name?: (string | undefined) | undefined
|
|
50559
|
+
/** Name of the Google Nest structure containing the device. The device owner sets this value. */
|
|
50560
|
+
structure_name?: (string | undefined) | undefined
|
|
50543
50561
|
/** Display name for a Google Nest device. */
|
|
50544
50562
|
display_name?: (string | undefined) | undefined
|
|
50545
50563
|
}
|
|
@@ -51382,6 +51400,9 @@ export type Routes = {
|
|
|
51382
51400
|
/** Name of the device location.
|
|
51383
51401
|
*/
|
|
51384
51402
|
location_name?: string | undefined
|
|
51403
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
51404
|
+
*/
|
|
51405
|
+
room_name?: string | undefined
|
|
51385
51406
|
/** Time zone of the device location.
|
|
51386
51407
|
*/
|
|
51387
51408
|
time_zone?: string | undefined
|
|
@@ -52649,10 +52670,14 @@ export type Routes = {
|
|
|
52649
52670
|
| {
|
|
52650
52671
|
/** Device ID for a Google Nest device. */
|
|
52651
52672
|
nest_device_id?: (string | undefined) | undefined
|
|
52673
|
+
/** ID of the Google Nest structure containing the device. */
|
|
52674
|
+
nest_structure_id?: (string | undefined) | undefined
|
|
52652
52675
|
/** Device name for a Google Nest device. Google sets this value. */
|
|
52653
52676
|
device_name?: (string | undefined) | undefined
|
|
52654
52677
|
/** Custom device name for a Google Nest device. The device owner sets this value. */
|
|
52655
52678
|
device_custom_name?: (string | undefined) | undefined
|
|
52679
|
+
/** Name of the Google Nest structure containing the device. The device owner sets this value. */
|
|
52680
|
+
structure_name?: (string | undefined) | undefined
|
|
52656
52681
|
/** Display name for a Google Nest device. */
|
|
52657
52682
|
display_name?: (string | undefined) | undefined
|
|
52658
52683
|
}
|
|
@@ -53495,6 +53520,9 @@ export type Routes = {
|
|
|
53495
53520
|
/** Name of the device location.
|
|
53496
53521
|
*/
|
|
53497
53522
|
location_name?: string | undefined
|
|
53523
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
53524
|
+
*/
|
|
53525
|
+
room_name?: string | undefined
|
|
53498
53526
|
/** Time zone of the device location.
|
|
53499
53527
|
*/
|
|
53500
53528
|
time_zone?: string | undefined
|
|
@@ -55588,6 +55616,9 @@ export type Routes = {
|
|
|
55588
55616
|
/** Name of the device location.
|
|
55589
55617
|
*/
|
|
55590
55618
|
location_name?: string | undefined
|
|
55619
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
55620
|
+
*/
|
|
55621
|
+
room_name?: string | undefined
|
|
55591
55622
|
/** Time zone of the device location.
|
|
55592
55623
|
*/
|
|
55593
55624
|
time_zone?: string | undefined
|
|
@@ -56412,6 +56443,9 @@ export type Routes = {
|
|
|
56412
56443
|
/** Name of the device location.
|
|
56413
56444
|
*/
|
|
56414
56445
|
location_name?: string | undefined
|
|
56446
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
56447
|
+
*/
|
|
56448
|
+
room_name?: string | undefined
|
|
56415
56449
|
/** Time zone of the device location.
|
|
56416
56450
|
*/
|
|
56417
56451
|
time_zone?: string | undefined
|
|
@@ -67304,10 +67338,14 @@ export type Routes = {
|
|
|
67304
67338
|
| {
|
|
67305
67339
|
/** Device ID for a Google Nest device. */
|
|
67306
67340
|
nest_device_id?: (string | undefined) | undefined
|
|
67341
|
+
/** ID of the Google Nest structure containing the device. */
|
|
67342
|
+
nest_structure_id?: (string | undefined) | undefined
|
|
67307
67343
|
/** Device name for a Google Nest device. Google sets this value. */
|
|
67308
67344
|
device_name?: (string | undefined) | undefined
|
|
67309
67345
|
/** Custom device name for a Google Nest device. The device owner sets this value. */
|
|
67310
67346
|
device_custom_name?: (string | undefined) | undefined
|
|
67347
|
+
/** Name of the Google Nest structure containing the device. The device owner sets this value. */
|
|
67348
|
+
structure_name?: (string | undefined) | undefined
|
|
67311
67349
|
/** Display name for a Google Nest device. */
|
|
67312
67350
|
display_name?: (string | undefined) | undefined
|
|
67313
67351
|
}
|
|
@@ -68150,6 +68188,9 @@ export type Routes = {
|
|
|
68150
68188
|
/** Name of the device location.
|
|
68151
68189
|
*/
|
|
68152
68190
|
location_name?: string | undefined
|
|
68191
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
68192
|
+
*/
|
|
68193
|
+
room_name?: string | undefined
|
|
68153
68194
|
/** Time zone of the device location.
|
|
68154
68195
|
*/
|
|
68155
68196
|
time_zone?: string | undefined
|
|
@@ -69171,10 +69212,14 @@ export type Routes = {
|
|
|
69171
69212
|
| {
|
|
69172
69213
|
/** Device ID for a Google Nest device. */
|
|
69173
69214
|
nest_device_id?: (string | undefined) | undefined
|
|
69215
|
+
/** ID of the Google Nest structure containing the device. */
|
|
69216
|
+
nest_structure_id?: (string | undefined) | undefined
|
|
69174
69217
|
/** Device name for a Google Nest device. Google sets this value. */
|
|
69175
69218
|
device_name?: (string | undefined) | undefined
|
|
69176
69219
|
/** Custom device name for a Google Nest device. The device owner sets this value. */
|
|
69177
69220
|
device_custom_name?: (string | undefined) | undefined
|
|
69221
|
+
/** Name of the Google Nest structure containing the device. The device owner sets this value. */
|
|
69222
|
+
structure_name?: (string | undefined) | undefined
|
|
69178
69223
|
/** Display name for a Google Nest device. */
|
|
69179
69224
|
display_name?: (string | undefined) | undefined
|
|
69180
69225
|
}
|
|
@@ -70017,6 +70062,9 @@ export type Routes = {
|
|
|
70017
70062
|
/** Name of the device location.
|
|
70018
70063
|
*/
|
|
70019
70064
|
location_name?: string | undefined
|
|
70065
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
70066
|
+
*/
|
|
70067
|
+
room_name?: string | undefined
|
|
70020
70068
|
/** Time zone of the device location.
|
|
70021
70069
|
*/
|
|
70022
70070
|
time_zone?: string | undefined
|
|
@@ -71237,10 +71285,14 @@ export type Routes = {
|
|
|
71237
71285
|
| {
|
|
71238
71286
|
/** Device ID for a Google Nest device. */
|
|
71239
71287
|
nest_device_id?: (string | undefined) | undefined
|
|
71288
|
+
/** ID of the Google Nest structure containing the device. */
|
|
71289
|
+
nest_structure_id?: (string | undefined) | undefined
|
|
71240
71290
|
/** Device name for a Google Nest device. Google sets this value. */
|
|
71241
71291
|
device_name?: (string | undefined) | undefined
|
|
71242
71292
|
/** Custom device name for a Google Nest device. The device owner sets this value. */
|
|
71243
71293
|
device_custom_name?: (string | undefined) | undefined
|
|
71294
|
+
/** Name of the Google Nest structure containing the device. The device owner sets this value. */
|
|
71295
|
+
structure_name?: (string | undefined) | undefined
|
|
71244
71296
|
/** Display name for a Google Nest device. */
|
|
71245
71297
|
display_name?: (string | undefined) | undefined
|
|
71246
71298
|
}
|
|
@@ -72083,6 +72135,9 @@ export type Routes = {
|
|
|
72083
72135
|
/** Name of the device location.
|
|
72084
72136
|
*/
|
|
72085
72137
|
location_name?: string | undefined
|
|
72138
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
72139
|
+
*/
|
|
72140
|
+
room_name?: string | undefined
|
|
72086
72141
|
/** Time zone of the device location.
|
|
72087
72142
|
*/
|
|
72088
72143
|
time_zone?: string | undefined
|
|
@@ -73103,10 +73158,14 @@ export type Routes = {
|
|
|
73103
73158
|
| {
|
|
73104
73159
|
/** Device ID for a Google Nest device. */
|
|
73105
73160
|
nest_device_id?: (string | undefined) | undefined
|
|
73161
|
+
/** ID of the Google Nest structure containing the device. */
|
|
73162
|
+
nest_structure_id?: (string | undefined) | undefined
|
|
73106
73163
|
/** Device name for a Google Nest device. Google sets this value. */
|
|
73107
73164
|
device_name?: (string | undefined) | undefined
|
|
73108
73165
|
/** Custom device name for a Google Nest device. The device owner sets this value. */
|
|
73109
73166
|
device_custom_name?: (string | undefined) | undefined
|
|
73167
|
+
/** Name of the Google Nest structure containing the device. The device owner sets this value. */
|
|
73168
|
+
structure_name?: (string | undefined) | undefined
|
|
73110
73169
|
/** Display name for a Google Nest device. */
|
|
73111
73170
|
display_name?: (string | undefined) | undefined
|
|
73112
73171
|
}
|
|
@@ -73949,6 +74008,9 @@ export type Routes = {
|
|
|
73949
74008
|
/** Name of the device location.
|
|
73950
74009
|
*/
|
|
73951
74010
|
location_name?: string | undefined
|
|
74011
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
74012
|
+
*/
|
|
74013
|
+
room_name?: string | undefined
|
|
73952
74014
|
/** Time zone of the device location.
|
|
73953
74015
|
*/
|
|
73954
74016
|
time_zone?: string | undefined
|
|
@@ -83410,10 +83472,14 @@ export type Routes = {
|
|
|
83410
83472
|
| {
|
|
83411
83473
|
/** Device ID for a Google Nest device. */
|
|
83412
83474
|
nest_device_id?: (string | undefined) | undefined
|
|
83475
|
+
/** ID of the Google Nest structure containing the device. */
|
|
83476
|
+
nest_structure_id?: (string | undefined) | undefined
|
|
83413
83477
|
/** Device name for a Google Nest device. Google sets this value. */
|
|
83414
83478
|
device_name?: (string | undefined) | undefined
|
|
83415
83479
|
/** Custom device name for a Google Nest device. The device owner sets this value. */
|
|
83416
83480
|
device_custom_name?: (string | undefined) | undefined
|
|
83481
|
+
/** Name of the Google Nest structure containing the device. The device owner sets this value. */
|
|
83482
|
+
structure_name?: (string | undefined) | undefined
|
|
83417
83483
|
/** Display name for a Google Nest device. */
|
|
83418
83484
|
display_name?: (string | undefined) | undefined
|
|
83419
83485
|
}
|
|
@@ -84256,6 +84322,9 @@ export type Routes = {
|
|
|
84256
84322
|
/** Name of the device location.
|
|
84257
84323
|
*/
|
|
84258
84324
|
location_name?: string | undefined
|
|
84325
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
84326
|
+
*/
|
|
84327
|
+
room_name?: string | undefined
|
|
84259
84328
|
/** Time zone of the device location.
|
|
84260
84329
|
*/
|
|
84261
84330
|
time_zone?: string | undefined
|
|
@@ -85276,10 +85345,14 @@ export type Routes = {
|
|
|
85276
85345
|
| {
|
|
85277
85346
|
/** Device ID for a Google Nest device. */
|
|
85278
85347
|
nest_device_id?: (string | undefined) | undefined
|
|
85348
|
+
/** ID of the Google Nest structure containing the device. */
|
|
85349
|
+
nest_structure_id?: (string | undefined) | undefined
|
|
85279
85350
|
/** Device name for a Google Nest device. Google sets this value. */
|
|
85280
85351
|
device_name?: (string | undefined) | undefined
|
|
85281
85352
|
/** Custom device name for a Google Nest device. The device owner sets this value. */
|
|
85282
85353
|
device_custom_name?: (string | undefined) | undefined
|
|
85354
|
+
/** Name of the Google Nest structure containing the device. The device owner sets this value. */
|
|
85355
|
+
structure_name?: (string | undefined) | undefined
|
|
85283
85356
|
/** Display name for a Google Nest device. */
|
|
85284
85357
|
display_name?: (string | undefined) | undefined
|
|
85285
85358
|
}
|
|
@@ -86122,6 +86195,9 @@ export type Routes = {
|
|
|
86122
86195
|
/** Name of the device location.
|
|
86123
86196
|
*/
|
|
86124
86197
|
location_name?: string | undefined
|
|
86198
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
86199
|
+
*/
|
|
86200
|
+
room_name?: string | undefined
|
|
86125
86201
|
/** Time zone of the device location.
|
|
86126
86202
|
*/
|
|
86127
86203
|
time_zone?: string | undefined
|
|
@@ -94691,6 +94767,7 @@ export type Routes = {
|
|
|
94691
94767
|
| 'LYNX_MIGRATION_ENABLED'
|
|
94692
94768
|
| 'AURORA_CUSTOMER_FILTER_ENABLED'
|
|
94693
94769
|
| 'AUTOMATION_IMMINENT_CHECK_IN_QUEUE'
|
|
94770
|
+
| 'ACCESS_METHOD_DEADLINE_ERRORS'
|
|
94694
94771
|
/** Whether the feature flag should be enabled for the workspace. */
|
|
94695
94772
|
enabled: boolean
|
|
94696
94773
|
}
|
|
@@ -94709,6 +94786,7 @@ export type Routes = {
|
|
|
94709
94786
|
| 'LYNX_MIGRATION_ENABLED'
|
|
94710
94787
|
| 'AURORA_CUSTOMER_FILTER_ENABLED'
|
|
94711
94788
|
| 'AUTOMATION_IMMINENT_CHECK_IN_QUEUE'
|
|
94789
|
+
| 'ACCESS_METHOD_DEADLINE_ERRORS'
|
|
94712
94790
|
enabled: boolean
|
|
94713
94791
|
}
|
|
94714
94792
|
}
|
|
@@ -105103,10 +105181,14 @@ export type Routes = {
|
|
|
105103
105181
|
| {
|
|
105104
105182
|
/** Device ID for a Google Nest device. */
|
|
105105
105183
|
nest_device_id?: (string | undefined) | undefined
|
|
105184
|
+
/** ID of the Google Nest structure containing the device. */
|
|
105185
|
+
nest_structure_id?: (string | undefined) | undefined
|
|
105106
105186
|
/** Device name for a Google Nest device. Google sets this value. */
|
|
105107
105187
|
device_name?: (string | undefined) | undefined
|
|
105108
105188
|
/** Custom device name for a Google Nest device. The device owner sets this value. */
|
|
105109
105189
|
device_custom_name?: (string | undefined) | undefined
|
|
105190
|
+
/** Name of the Google Nest structure containing the device. The device owner sets this value. */
|
|
105191
|
+
structure_name?: (string | undefined) | undefined
|
|
105110
105192
|
/** Display name for a Google Nest device. */
|
|
105111
105193
|
display_name?: (string | undefined) | undefined
|
|
105112
105194
|
}
|
|
@@ -106001,6 +106083,9 @@ export type Routes = {
|
|
|
106001
106083
|
/** Name of the device location.
|
|
106002
106084
|
*/
|
|
106003
106085
|
location_name?: string | undefined
|
|
106086
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
106087
|
+
*/
|
|
106088
|
+
room_name?: string | undefined
|
|
106004
106089
|
/** Time zone of the device location.
|
|
106005
106090
|
*/
|
|
106006
106091
|
time_zone?: string | undefined
|
|
@@ -114480,10 +114565,14 @@ export type Routes = {
|
|
|
114480
114565
|
| {
|
|
114481
114566
|
/** Device ID for a Google Nest device. */
|
|
114482
114567
|
nest_device_id?: (string | undefined) | undefined
|
|
114568
|
+
/** ID of the Google Nest structure containing the device. */
|
|
114569
|
+
nest_structure_id?: (string | undefined) | undefined
|
|
114483
114570
|
/** Device name for a Google Nest device. Google sets this value. */
|
|
114484
114571
|
device_name?: (string | undefined) | undefined
|
|
114485
114572
|
/** Custom device name for a Google Nest device. The device owner sets this value. */
|
|
114486
114573
|
device_custom_name?: (string | undefined) | undefined
|
|
114574
|
+
/** Name of the Google Nest structure containing the device. The device owner sets this value. */
|
|
114575
|
+
structure_name?: (string | undefined) | undefined
|
|
114487
114576
|
/** Display name for a Google Nest device. */
|
|
114488
114577
|
display_name?: (string | undefined) | undefined
|
|
114489
114578
|
}
|
|
@@ -115326,6 +115415,9 @@ export type Routes = {
|
|
|
115326
115415
|
/** Name of the device location.
|
|
115327
115416
|
*/
|
|
115328
115417
|
location_name?: string | undefined
|
|
115418
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
115419
|
+
*/
|
|
115420
|
+
room_name?: string | undefined
|
|
115329
115421
|
/** Time zone of the device location.
|
|
115330
115422
|
*/
|
|
115331
115423
|
time_zone?: string | undefined
|
|
@@ -120656,10 +120748,14 @@ export type Routes = {
|
|
|
120656
120748
|
| {
|
|
120657
120749
|
/** Device ID for a Google Nest device. */
|
|
120658
120750
|
nest_device_id?: (string | undefined) | undefined
|
|
120751
|
+
/** ID of the Google Nest structure containing the device. */
|
|
120752
|
+
nest_structure_id?: (string | undefined) | undefined
|
|
120659
120753
|
/** Device name for a Google Nest device. Google sets this value. */
|
|
120660
120754
|
device_name?: (string | undefined) | undefined
|
|
120661
120755
|
/** Custom device name for a Google Nest device. The device owner sets this value. */
|
|
120662
120756
|
device_custom_name?: (string | undefined) | undefined
|
|
120757
|
+
/** Name of the Google Nest structure containing the device. The device owner sets this value. */
|
|
120758
|
+
structure_name?: (string | undefined) | undefined
|
|
120663
120759
|
/** Display name for a Google Nest device. */
|
|
120664
120760
|
display_name?: (string | undefined) | undefined
|
|
120665
120761
|
}
|
|
@@ -121502,6 +121598,9 @@ export type Routes = {
|
|
|
121502
121598
|
/** Name of the device location.
|
|
121503
121599
|
*/
|
|
121504
121600
|
location_name?: string | undefined
|
|
121601
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
121602
|
+
*/
|
|
121603
|
+
room_name?: string | undefined
|
|
121505
121604
|
/** Time zone of the device location.
|
|
121506
121605
|
*/
|
|
121507
121606
|
time_zone?: string | undefined
|
|
@@ -122522,10 +122621,14 @@ export type Routes = {
|
|
|
122522
122621
|
| {
|
|
122523
122622
|
/** Device ID for a Google Nest device. */
|
|
122524
122623
|
nest_device_id?: (string | undefined) | undefined
|
|
122624
|
+
/** ID of the Google Nest structure containing the device. */
|
|
122625
|
+
nest_structure_id?: (string | undefined) | undefined
|
|
122525
122626
|
/** Device name for a Google Nest device. Google sets this value. */
|
|
122526
122627
|
device_name?: (string | undefined) | undefined
|
|
122527
122628
|
/** Custom device name for a Google Nest device. The device owner sets this value. */
|
|
122528
122629
|
device_custom_name?: (string | undefined) | undefined
|
|
122630
|
+
/** Name of the Google Nest structure containing the device. The device owner sets this value. */
|
|
122631
|
+
structure_name?: (string | undefined) | undefined
|
|
122529
122632
|
/** Display name for a Google Nest device. */
|
|
122530
122633
|
display_name?: (string | undefined) | undefined
|
|
122531
122634
|
}
|
|
@@ -123368,6 +123471,9 @@ export type Routes = {
|
|
|
123368
123471
|
/** Name of the device location.
|
|
123369
123472
|
*/
|
|
123370
123473
|
location_name?: string | undefined
|
|
123474
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
123475
|
+
*/
|
|
123476
|
+
room_name?: string | undefined
|
|
123371
123477
|
/** Time zone of the device location.
|
|
123372
123478
|
*/
|
|
123373
123479
|
time_zone?: string | undefined
|
|
@@ -133770,10 +133876,14 @@ export type Routes = {
|
|
|
133770
133876
|
| {
|
|
133771
133877
|
/** Device ID for a Google Nest device. */
|
|
133772
133878
|
nest_device_id?: (string | undefined) | undefined
|
|
133879
|
+
/** ID of the Google Nest structure containing the device. */
|
|
133880
|
+
nest_structure_id?: (string | undefined) | undefined
|
|
133773
133881
|
/** Device name for a Google Nest device. Google sets this value. */
|
|
133774
133882
|
device_name?: (string | undefined) | undefined
|
|
133775
133883
|
/** Custom device name for a Google Nest device. The device owner sets this value. */
|
|
133776
133884
|
device_custom_name?: (string | undefined) | undefined
|
|
133885
|
+
/** Name of the Google Nest structure containing the device. The device owner sets this value. */
|
|
133886
|
+
structure_name?: (string | undefined) | undefined
|
|
133777
133887
|
/** Display name for a Google Nest device. */
|
|
133778
133888
|
display_name?: (string | undefined) | undefined
|
|
133779
133889
|
}
|
|
@@ -134616,6 +134726,9 @@ export type Routes = {
|
|
|
134616
134726
|
/** Name of the device location.
|
|
134617
134727
|
*/
|
|
134618
134728
|
location_name?: string | undefined
|
|
134729
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
134730
|
+
*/
|
|
134731
|
+
room_name?: string | undefined
|
|
134619
134732
|
/** Time zone of the device location.
|
|
134620
134733
|
*/
|
|
134621
134734
|
time_zone?: string | undefined
|
|
@@ -135638,10 +135751,14 @@ export type Routes = {
|
|
|
135638
135751
|
| {
|
|
135639
135752
|
/** Device ID for a Google Nest device. */
|
|
135640
135753
|
nest_device_id?: (string | undefined) | undefined
|
|
135754
|
+
/** ID of the Google Nest structure containing the device. */
|
|
135755
|
+
nest_structure_id?: (string | undefined) | undefined
|
|
135641
135756
|
/** Device name for a Google Nest device. Google sets this value. */
|
|
135642
135757
|
device_name?: (string | undefined) | undefined
|
|
135643
135758
|
/** Custom device name for a Google Nest device. The device owner sets this value. */
|
|
135644
135759
|
device_custom_name?: (string | undefined) | undefined
|
|
135760
|
+
/** Name of the Google Nest structure containing the device. The device owner sets this value. */
|
|
135761
|
+
structure_name?: (string | undefined) | undefined
|
|
135645
135762
|
/** Display name for a Google Nest device. */
|
|
135646
135763
|
display_name?: (string | undefined) | undefined
|
|
135647
135764
|
}
|
|
@@ -136484,6 +136601,9 @@ export type Routes = {
|
|
|
136484
136601
|
/** Name of the device location.
|
|
136485
136602
|
*/
|
|
136486
136603
|
location_name?: string | undefined
|
|
136604
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
136605
|
+
*/
|
|
136606
|
+
room_name?: string | undefined
|
|
136487
136607
|
/** Time zone of the device location.
|
|
136488
136608
|
*/
|
|
136489
136609
|
time_zone?: string | undefined
|
|
@@ -139019,10 +139139,14 @@ export type Routes = {
|
|
|
139019
139139
|
| {
|
|
139020
139140
|
/** Device ID for a Google Nest device. */
|
|
139021
139141
|
nest_device_id?: (string | undefined) | undefined
|
|
139142
|
+
/** ID of the Google Nest structure containing the device. */
|
|
139143
|
+
nest_structure_id?: (string | undefined) | undefined
|
|
139022
139144
|
/** Device name for a Google Nest device. Google sets this value. */
|
|
139023
139145
|
device_name?: (string | undefined) | undefined
|
|
139024
139146
|
/** Custom device name for a Google Nest device. The device owner sets this value. */
|
|
139025
139147
|
device_custom_name?: (string | undefined) | undefined
|
|
139148
|
+
/** Name of the Google Nest structure containing the device. The device owner sets this value. */
|
|
139149
|
+
structure_name?: (string | undefined) | undefined
|
|
139026
139150
|
/** Display name for a Google Nest device. */
|
|
139027
139151
|
display_name?: (string | undefined) | undefined
|
|
139028
139152
|
}
|
|
@@ -139917,6 +140041,9 @@ export type Routes = {
|
|
|
139917
140041
|
/** Name of the device location.
|
|
139918
140042
|
*/
|
|
139919
140043
|
location_name?: string | undefined
|
|
140044
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
140045
|
+
*/
|
|
140046
|
+
room_name?: string | undefined
|
|
139920
140047
|
/** Time zone of the device location.
|
|
139921
140048
|
*/
|
|
139922
140049
|
time_zone?: string | undefined
|
|
@@ -144103,6 +144230,9 @@ export type Routes = {
|
|
|
144103
144230
|
/** Name of the device location.
|
|
144104
144231
|
*/
|
|
144105
144232
|
location_name?: string | undefined
|
|
144233
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
144234
|
+
*/
|
|
144235
|
+
room_name?: string | undefined
|
|
144106
144236
|
/** Time zone of the device location.
|
|
144107
144237
|
*/
|
|
144108
144238
|
time_zone?: string | undefined
|