@seamapi/types 1.733.0 → 1.735.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 +108 -21
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +312 -59
- package/dist/index.cjs +108 -21
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +62 -10
- package/lib/seam/connect/models/devices/device-metadata.d.ts +18 -0
- package/lib/seam/connect/models/devices/device-metadata.js +6 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-type.d.ts +8 -1
- package/lib/seam/connect/models/devices/device-type.js +9 -0
- package/lib/seam/connect/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +29 -3
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +21 -3
- package/lib/seam/connect/openapi.d.ts +50 -18
- package/lib/seam/connect/openapi.js +98 -20
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +150 -25
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +7 -0
- package/src/lib/seam/connect/models/devices/device-type.ts +17 -0
- package/src/lib/seam/connect/openapi.ts +100 -20
- package/src/lib/seam/connect/route-types.ts +190 -4
|
@@ -10458,6 +10458,11 @@ export default {
|
|
|
10458
10458
|
enum: ['ios_phone', 'android_phone'],
|
|
10459
10459
|
type: 'string',
|
|
10460
10460
|
},
|
|
10461
|
+
{
|
|
10462
|
+
description: 'Device type for cameras.',
|
|
10463
|
+
enum: ['ring_camera'],
|
|
10464
|
+
type: 'string',
|
|
10465
|
+
},
|
|
10461
10466
|
],
|
|
10462
10467
|
},
|
|
10463
10468
|
display_name: {
|
|
@@ -12187,6 +12192,21 @@ export default {
|
|
|
12187
12192
|
required: ['device_id', 'device_name'],
|
|
12188
12193
|
type: 'object',
|
|
12189
12194
|
},
|
|
12195
|
+
ring_metadata: {
|
|
12196
|
+
description: 'Metadata for a Ring device.',
|
|
12197
|
+
properties: {
|
|
12198
|
+
device_id: {
|
|
12199
|
+
description: 'Device ID for a Ring device.',
|
|
12200
|
+
type: 'string',
|
|
12201
|
+
},
|
|
12202
|
+
device_name: {
|
|
12203
|
+
description: 'Device name for a Ring device.',
|
|
12204
|
+
type: 'string',
|
|
12205
|
+
},
|
|
12206
|
+
},
|
|
12207
|
+
required: ['device_id', 'device_name'],
|
|
12208
|
+
type: 'object',
|
|
12209
|
+
},
|
|
12190
12210
|
salto_ks_metadata: {
|
|
12191
12211
|
description: 'Metadata for a Salto KS device.',
|
|
12192
12212
|
properties: {
|
|
@@ -27937,6 +27957,11 @@ export default {
|
|
|
27937
27957
|
enum: ['ios_phone', 'android_phone'],
|
|
27938
27958
|
type: 'string',
|
|
27939
27959
|
},
|
|
27960
|
+
{
|
|
27961
|
+
description: 'Device type for cameras.',
|
|
27962
|
+
enum: ['ring_camera'],
|
|
27963
|
+
type: 'string',
|
|
27964
|
+
},
|
|
27940
27965
|
],
|
|
27941
27966
|
},
|
|
27942
27967
|
errors: {
|
|
@@ -36543,18 +36568,6 @@ export default {
|
|
|
36543
36568
|
delete: {
|
|
36544
36569
|
description: 'Deletes an access method.',
|
|
36545
36570
|
operationId: 'accessMethodsDeleteDelete',
|
|
36546
|
-
parameters: [
|
|
36547
|
-
{
|
|
36548
|
-
in: 'query',
|
|
36549
|
-
name: 'access_method_id',
|
|
36550
|
-
required: true,
|
|
36551
|
-
schema: {
|
|
36552
|
-
description: 'ID of access method to get.',
|
|
36553
|
-
format: 'uuid',
|
|
36554
|
-
type: 'string',
|
|
36555
|
-
},
|
|
36556
|
-
},
|
|
36557
|
-
],
|
|
36558
36571
|
responses: {
|
|
36559
36572
|
200: {
|
|
36560
36573
|
content: {
|
|
@@ -36592,15 +36605,42 @@ export default {
|
|
|
36592
36605
|
content: {
|
|
36593
36606
|
'application/json': {
|
|
36594
36607
|
schema: {
|
|
36595
|
-
|
|
36596
|
-
|
|
36597
|
-
|
|
36598
|
-
|
|
36599
|
-
|
|
36608
|
+
oneOf: [
|
|
36609
|
+
{
|
|
36610
|
+
properties: {
|
|
36611
|
+
access_method_id: {
|
|
36612
|
+
description: 'ID of access method to delete.',
|
|
36613
|
+
format: 'uuid',
|
|
36614
|
+
type: 'string',
|
|
36615
|
+
},
|
|
36616
|
+
},
|
|
36617
|
+
required: ['access_method_id'],
|
|
36618
|
+
type: 'object',
|
|
36600
36619
|
},
|
|
36601
|
-
|
|
36602
|
-
|
|
36603
|
-
|
|
36620
|
+
{
|
|
36621
|
+
properties: {
|
|
36622
|
+
access_grant_id: {
|
|
36623
|
+
description:
|
|
36624
|
+
'ID of access grant whose access methods should be deleted.',
|
|
36625
|
+
format: 'uuid',
|
|
36626
|
+
type: 'string',
|
|
36627
|
+
},
|
|
36628
|
+
},
|
|
36629
|
+
required: ['access_grant_id'],
|
|
36630
|
+
type: 'object',
|
|
36631
|
+
},
|
|
36632
|
+
{
|
|
36633
|
+
properties: {
|
|
36634
|
+
reservation_key: {
|
|
36635
|
+
description:
|
|
36636
|
+
'Reservation key of the access grant whose access methods should be deleted.',
|
|
36637
|
+
type: 'string',
|
|
36638
|
+
},
|
|
36639
|
+
},
|
|
36640
|
+
required: ['reservation_key'],
|
|
36641
|
+
type: 'object',
|
|
36642
|
+
},
|
|
36643
|
+
],
|
|
36604
36644
|
},
|
|
36605
36645
|
},
|
|
36606
36646
|
},
|
|
@@ -50835,6 +50875,11 @@ export default {
|
|
|
50835
50875
|
enum: ['ios_phone', 'android_phone'],
|
|
50836
50876
|
type: 'string',
|
|
50837
50877
|
},
|
|
50878
|
+
{
|
|
50879
|
+
description: 'Device type for cameras.',
|
|
50880
|
+
enum: ['ring_camera'],
|
|
50881
|
+
type: 'string',
|
|
50882
|
+
},
|
|
50838
50883
|
],
|
|
50839
50884
|
},
|
|
50840
50885
|
},
|
|
@@ -50906,6 +50951,11 @@ export default {
|
|
|
50906
50951
|
enum: ['ios_phone', 'android_phone'],
|
|
50907
50952
|
type: 'string',
|
|
50908
50953
|
},
|
|
50954
|
+
{
|
|
50955
|
+
description: 'Device type for cameras.',
|
|
50956
|
+
enum: ['ring_camera'],
|
|
50957
|
+
type: 'string',
|
|
50958
|
+
},
|
|
50909
50959
|
],
|
|
50910
50960
|
},
|
|
50911
50961
|
type: 'array',
|
|
@@ -51275,6 +51325,11 @@ export default {
|
|
|
51275
51325
|
enum: ['ios_phone', 'android_phone'],
|
|
51276
51326
|
type: 'string',
|
|
51277
51327
|
},
|
|
51328
|
+
{
|
|
51329
|
+
description: 'Device type for cameras.',
|
|
51330
|
+
enum: ['ring_camera'],
|
|
51331
|
+
type: 'string',
|
|
51332
|
+
},
|
|
51278
51333
|
],
|
|
51279
51334
|
},
|
|
51280
51335
|
device_types: {
|
|
@@ -51345,6 +51400,11 @@ export default {
|
|
|
51345
51400
|
enum: ['ios_phone', 'android_phone'],
|
|
51346
51401
|
type: 'string',
|
|
51347
51402
|
},
|
|
51403
|
+
{
|
|
51404
|
+
description: 'Device type for cameras.',
|
|
51405
|
+
enum: ['ring_camera'],
|
|
51406
|
+
type: 'string',
|
|
51407
|
+
},
|
|
51348
51408
|
],
|
|
51349
51409
|
},
|
|
51350
51410
|
type: 'array',
|
|
@@ -52705,6 +52765,11 @@ export default {
|
|
|
52705
52765
|
enum: ['ios_phone', 'android_phone'],
|
|
52706
52766
|
type: 'string',
|
|
52707
52767
|
},
|
|
52768
|
+
{
|
|
52769
|
+
description: 'Device type for cameras.',
|
|
52770
|
+
enum: ['ring_camera'],
|
|
52771
|
+
type: 'string',
|
|
52772
|
+
},
|
|
52708
52773
|
],
|
|
52709
52774
|
},
|
|
52710
52775
|
},
|
|
@@ -52776,6 +52841,11 @@ export default {
|
|
|
52776
52841
|
enum: ['ios_phone', 'android_phone'],
|
|
52777
52842
|
type: 'string',
|
|
52778
52843
|
},
|
|
52844
|
+
{
|
|
52845
|
+
description: 'Device type for cameras.',
|
|
52846
|
+
enum: ['ring_camera'],
|
|
52847
|
+
type: 'string',
|
|
52848
|
+
},
|
|
52779
52849
|
],
|
|
52780
52850
|
},
|
|
52781
52851
|
type: 'array',
|
|
@@ -53144,6 +53214,11 @@ export default {
|
|
|
53144
53214
|
enum: ['ios_phone', 'android_phone'],
|
|
53145
53215
|
type: 'string',
|
|
53146
53216
|
},
|
|
53217
|
+
{
|
|
53218
|
+
description: 'Device type for cameras.',
|
|
53219
|
+
enum: ['ring_camera'],
|
|
53220
|
+
type: 'string',
|
|
53221
|
+
},
|
|
53147
53222
|
],
|
|
53148
53223
|
},
|
|
53149
53224
|
device_types: {
|
|
@@ -53214,6 +53289,11 @@ export default {
|
|
|
53214
53289
|
enum: ['ios_phone', 'android_phone'],
|
|
53215
53290
|
type: 'string',
|
|
53216
53291
|
},
|
|
53292
|
+
{
|
|
53293
|
+
description: 'Device type for cameras.',
|
|
53294
|
+
enum: ['ring_camera'],
|
|
53295
|
+
type: 'string',
|
|
53296
|
+
},
|
|
53217
53297
|
],
|
|
53218
53298
|
},
|
|
53219
53299
|
type: 'array',
|
|
@@ -11876,6 +11876,7 @@ export type Routes = {
|
|
|
11876
11876
|
| 'smartthings_thermostat'
|
|
11877
11877
|
)
|
|
11878
11878
|
| ('ios_phone' | 'android_phone')
|
|
11879
|
+
| 'ring_camera'
|
|
11879
11880
|
/** IDs of the spaces the device is in. */
|
|
11880
11881
|
space_ids: string[]
|
|
11881
11882
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -12572,6 +12573,15 @@ export type Routes = {
|
|
|
12572
12573
|
time_zone: string | null
|
|
12573
12574
|
}
|
|
12574
12575
|
| undefined
|
|
12576
|
+
/** Metadata for a Ring device. */
|
|
12577
|
+
ring_metadata?:
|
|
12578
|
+
| {
|
|
12579
|
+
/** Device ID for a Ring device. */
|
|
12580
|
+
device_id: string
|
|
12581
|
+
/** Device name for a Ring device. */
|
|
12582
|
+
device_name: string
|
|
12583
|
+
}
|
|
12584
|
+
| undefined
|
|
12575
12585
|
/** Metadata for a Korelock device. */
|
|
12576
12586
|
korelock_metadata?:
|
|
12577
12587
|
| {
|
|
@@ -14994,10 +15004,19 @@ export type Routes = {
|
|
|
14994
15004
|
method: 'DELETE' | 'POST'
|
|
14995
15005
|
queryParams: {}
|
|
14996
15006
|
jsonBody: {}
|
|
14997
|
-
commonParams:
|
|
14998
|
-
|
|
14999
|
-
|
|
15000
|
-
|
|
15007
|
+
commonParams:
|
|
15008
|
+
| {
|
|
15009
|
+
/** ID of access method to delete. */
|
|
15010
|
+
access_method_id: string
|
|
15011
|
+
}
|
|
15012
|
+
| {
|
|
15013
|
+
/** ID of access grant whose access methods should be deleted. */
|
|
15014
|
+
access_grant_id: string
|
|
15015
|
+
}
|
|
15016
|
+
| {
|
|
15017
|
+
/** Reservation key of the access grant whose access methods should be deleted. */
|
|
15018
|
+
reservation_key: string
|
|
15019
|
+
}
|
|
15001
15020
|
formData: {}
|
|
15002
15021
|
jsonResponse: {}
|
|
15003
15022
|
maxDuration: undefined
|
|
@@ -16698,6 +16717,7 @@ export type Routes = {
|
|
|
16698
16717
|
| 'smartthings_thermostat'
|
|
16699
16718
|
)
|
|
16700
16719
|
| ('ios_phone' | 'android_phone')
|
|
16720
|
+
| 'ring_camera'
|
|
16701
16721
|
/** IDs of the spaces the device is in. */
|
|
16702
16722
|
space_ids: string[]
|
|
16703
16723
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -17394,6 +17414,15 @@ export type Routes = {
|
|
|
17394
17414
|
time_zone: string | null
|
|
17395
17415
|
}
|
|
17396
17416
|
| undefined
|
|
17417
|
+
/** Metadata for a Ring device. */
|
|
17418
|
+
ring_metadata?:
|
|
17419
|
+
| {
|
|
17420
|
+
/** Device ID for a Ring device. */
|
|
17421
|
+
device_id: string
|
|
17422
|
+
/** Device name for a Ring device. */
|
|
17423
|
+
device_name: string
|
|
17424
|
+
}
|
|
17425
|
+
| undefined
|
|
17397
17426
|
/** Metadata for a Korelock device. */
|
|
17398
17427
|
korelock_metadata?:
|
|
17399
17428
|
| {
|
|
@@ -33397,6 +33426,7 @@ export type Routes = {
|
|
|
33397
33426
|
| 'smartthings_thermostat'
|
|
33398
33427
|
)
|
|
33399
33428
|
| ('ios_phone' | 'android_phone')
|
|
33429
|
+
| 'ring_camera'
|
|
33400
33430
|
/** IDs of the spaces the device is in. */
|
|
33401
33431
|
space_ids: string[]
|
|
33402
33432
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -34093,6 +34123,15 @@ export type Routes = {
|
|
|
34093
34123
|
time_zone: string | null
|
|
34094
34124
|
}
|
|
34095
34125
|
| undefined
|
|
34126
|
+
/** Metadata for a Ring device. */
|
|
34127
|
+
ring_metadata?:
|
|
34128
|
+
| {
|
|
34129
|
+
/** Device ID for a Ring device. */
|
|
34130
|
+
device_id: string
|
|
34131
|
+
/** Device name for a Ring device. */
|
|
34132
|
+
device_name: string
|
|
34133
|
+
}
|
|
34134
|
+
| undefined
|
|
34096
34135
|
/** Metadata for a Korelock device. */
|
|
34097
34136
|
korelock_metadata?:
|
|
34098
34137
|
| {
|
|
@@ -35029,6 +35068,7 @@ export type Routes = {
|
|
|
35029
35068
|
| 'smartthings_thermostat'
|
|
35030
35069
|
)
|
|
35031
35070
|
| ('ios_phone' | 'android_phone')
|
|
35071
|
+
| 'ring_camera'
|
|
35032
35072
|
)
|
|
35033
35073
|
| undefined
|
|
35034
35074
|
/** Array of device types for which you want to list devices. */
|
|
@@ -35074,6 +35114,7 @@ export type Routes = {
|
|
|
35074
35114
|
| 'smartthings_thermostat'
|
|
35075
35115
|
)
|
|
35076
35116
|
| ('ios_phone' | 'android_phone')
|
|
35117
|
+
| 'ring_camera'
|
|
35077
35118
|
)[]
|
|
35078
35119
|
| undefined
|
|
35079
35120
|
/** Manufacturer for which you want to list devices. */
|
|
@@ -35241,6 +35282,7 @@ export type Routes = {
|
|
|
35241
35282
|
| 'smartthings_thermostat'
|
|
35242
35283
|
)
|
|
35243
35284
|
| ('ios_phone' | 'android_phone')
|
|
35285
|
+
| 'ring_camera'
|
|
35244
35286
|
/** IDs of the spaces the device is in. */
|
|
35245
35287
|
space_ids: string[]
|
|
35246
35288
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -35937,6 +35979,15 @@ export type Routes = {
|
|
|
35937
35979
|
time_zone: string | null
|
|
35938
35980
|
}
|
|
35939
35981
|
| undefined
|
|
35982
|
+
/** Metadata for a Ring device. */
|
|
35983
|
+
ring_metadata?:
|
|
35984
|
+
| {
|
|
35985
|
+
/** Device ID for a Ring device. */
|
|
35986
|
+
device_id: string
|
|
35987
|
+
/** Device name for a Ring device. */
|
|
35988
|
+
device_name: string
|
|
35989
|
+
}
|
|
35990
|
+
| undefined
|
|
35940
35991
|
/** Metadata for a Korelock device. */
|
|
35941
35992
|
korelock_metadata?:
|
|
35942
35993
|
| {
|
|
@@ -37519,6 +37570,7 @@ export type Routes = {
|
|
|
37519
37570
|
| 'smartthings_thermostat'
|
|
37520
37571
|
)
|
|
37521
37572
|
| ('ios_phone' | 'android_phone')
|
|
37573
|
+
| 'ring_camera'
|
|
37522
37574
|
/** Unique identifier for the account associated with the device. */
|
|
37523
37575
|
connected_account_id: string
|
|
37524
37576
|
/** Location information for the device. */
|
|
@@ -38050,6 +38102,7 @@ export type Routes = {
|
|
|
38050
38102
|
| 'smartthings_thermostat'
|
|
38051
38103
|
)
|
|
38052
38104
|
| ('ios_phone' | 'android_phone')
|
|
38105
|
+
| 'ring_camera'
|
|
38053
38106
|
)
|
|
38054
38107
|
| undefined
|
|
38055
38108
|
/** Array of device types for which you want to list devices. */
|
|
@@ -38095,6 +38148,7 @@ export type Routes = {
|
|
|
38095
38148
|
| 'smartthings_thermostat'
|
|
38096
38149
|
)
|
|
38097
38150
|
| ('ios_phone' | 'android_phone')
|
|
38151
|
+
| 'ring_camera'
|
|
38098
38152
|
)[]
|
|
38099
38153
|
| undefined
|
|
38100
38154
|
/** Manufacturer for which you want to list devices. */
|
|
@@ -38262,6 +38316,7 @@ export type Routes = {
|
|
|
38262
38316
|
| 'smartthings_thermostat'
|
|
38263
38317
|
)
|
|
38264
38318
|
| ('ios_phone' | 'android_phone')
|
|
38319
|
+
| 'ring_camera'
|
|
38265
38320
|
/** Unique identifier for the account associated with the device. */
|
|
38266
38321
|
connected_account_id: string
|
|
38267
38322
|
/** Location information for the device. */
|
|
@@ -45341,6 +45396,7 @@ export type Routes = {
|
|
|
45341
45396
|
| 'smartthings_thermostat'
|
|
45342
45397
|
)
|
|
45343
45398
|
| ('ios_phone' | 'android_phone')
|
|
45399
|
+
| 'ring_camera'
|
|
45344
45400
|
/** IDs of the spaces the device is in. */
|
|
45345
45401
|
space_ids: string[]
|
|
45346
45402
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -46037,6 +46093,15 @@ export type Routes = {
|
|
|
46037
46093
|
time_zone: string | null
|
|
46038
46094
|
}
|
|
46039
46095
|
| undefined
|
|
46096
|
+
/** Metadata for a Ring device. */
|
|
46097
|
+
ring_metadata?:
|
|
46098
|
+
| {
|
|
46099
|
+
/** Device ID for a Ring device. */
|
|
46100
|
+
device_id: string
|
|
46101
|
+
/** Device name for a Ring device. */
|
|
46102
|
+
device_name: string
|
|
46103
|
+
}
|
|
46104
|
+
| undefined
|
|
46040
46105
|
/** Metadata for a Korelock device. */
|
|
46041
46106
|
korelock_metadata?:
|
|
46042
46107
|
| {
|
|
@@ -46959,6 +47024,7 @@ export type Routes = {
|
|
|
46959
47024
|
| 'smartthings_thermostat'
|
|
46960
47025
|
)
|
|
46961
47026
|
| ('ios_phone' | 'android_phone')
|
|
47027
|
+
| 'ring_camera'
|
|
46962
47028
|
/** IDs of the spaces the device is in. */
|
|
46963
47029
|
space_ids: string[]
|
|
46964
47030
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -47655,6 +47721,15 @@ export type Routes = {
|
|
|
47655
47721
|
time_zone: string | null
|
|
47656
47722
|
}
|
|
47657
47723
|
| undefined
|
|
47724
|
+
/** Metadata for a Ring device. */
|
|
47725
|
+
ring_metadata?:
|
|
47726
|
+
| {
|
|
47727
|
+
/** Device ID for a Ring device. */
|
|
47728
|
+
device_id: string
|
|
47729
|
+
/** Device name for a Ring device. */
|
|
47730
|
+
device_name: string
|
|
47731
|
+
}
|
|
47732
|
+
| undefined
|
|
47658
47733
|
/** Metadata for a Korelock device. */
|
|
47659
47734
|
korelock_metadata?:
|
|
47660
47735
|
| {
|
|
@@ -48765,6 +48840,7 @@ export type Routes = {
|
|
|
48765
48840
|
| 'smartthings_thermostat'
|
|
48766
48841
|
)
|
|
48767
48842
|
| ('ios_phone' | 'android_phone')
|
|
48843
|
+
| 'ring_camera'
|
|
48768
48844
|
/** IDs of the spaces the device is in. */
|
|
48769
48845
|
space_ids: string[]
|
|
48770
48846
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -49461,6 +49537,15 @@ export type Routes = {
|
|
|
49461
49537
|
time_zone: string | null
|
|
49462
49538
|
}
|
|
49463
49539
|
| undefined
|
|
49540
|
+
/** Metadata for a Ring device. */
|
|
49541
|
+
ring_metadata?:
|
|
49542
|
+
| {
|
|
49543
|
+
/** Device ID for a Ring device. */
|
|
49544
|
+
device_id: string
|
|
49545
|
+
/** Device name for a Ring device. */
|
|
49546
|
+
device_name: string
|
|
49547
|
+
}
|
|
49548
|
+
| undefined
|
|
49464
49549
|
/** Metadata for a Korelock device. */
|
|
49465
49550
|
korelock_metadata?:
|
|
49466
49551
|
| {
|
|
@@ -50382,6 +50467,7 @@ export type Routes = {
|
|
|
50382
50467
|
| 'smartthings_thermostat'
|
|
50383
50468
|
)
|
|
50384
50469
|
| ('ios_phone' | 'android_phone')
|
|
50470
|
+
| 'ring_camera'
|
|
50385
50471
|
/** IDs of the spaces the device is in. */
|
|
50386
50472
|
space_ids: string[]
|
|
50387
50473
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -51078,6 +51164,15 @@ export type Routes = {
|
|
|
51078
51164
|
time_zone: string | null
|
|
51079
51165
|
}
|
|
51080
51166
|
| undefined
|
|
51167
|
+
/** Metadata for a Ring device. */
|
|
51168
|
+
ring_metadata?:
|
|
51169
|
+
| {
|
|
51170
|
+
/** Device ID for a Ring device. */
|
|
51171
|
+
device_id: string
|
|
51172
|
+
/** Device name for a Ring device. */
|
|
51173
|
+
device_name: string
|
|
51174
|
+
}
|
|
51175
|
+
| undefined
|
|
51081
51176
|
/** Metadata for a Korelock device. */
|
|
51082
51177
|
korelock_metadata?:
|
|
51083
51178
|
| {
|
|
@@ -57966,6 +58061,7 @@ export type Routes = {
|
|
|
57966
58061
|
| 'smartthings_thermostat'
|
|
57967
58062
|
)
|
|
57968
58063
|
| ('ios_phone' | 'android_phone')
|
|
58064
|
+
| 'ring_camera'
|
|
57969
58065
|
/** IDs of the spaces the device is in. */
|
|
57970
58066
|
space_ids: string[]
|
|
57971
58067
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -58662,6 +58758,15 @@ export type Routes = {
|
|
|
58662
58758
|
time_zone: string | null
|
|
58663
58759
|
}
|
|
58664
58760
|
| undefined
|
|
58761
|
+
/** Metadata for a Ring device. */
|
|
58762
|
+
ring_metadata?:
|
|
58763
|
+
| {
|
|
58764
|
+
/** Device ID for a Ring device. */
|
|
58765
|
+
device_id: string
|
|
58766
|
+
/** Device name for a Ring device. */
|
|
58767
|
+
device_name: string
|
|
58768
|
+
}
|
|
58769
|
+
| undefined
|
|
58665
58770
|
/** Metadata for a Korelock device. */
|
|
58666
58771
|
korelock_metadata?:
|
|
58667
58772
|
| {
|
|
@@ -59583,6 +59688,7 @@ export type Routes = {
|
|
|
59583
59688
|
| 'smartthings_thermostat'
|
|
59584
59689
|
)
|
|
59585
59690
|
| ('ios_phone' | 'android_phone')
|
|
59691
|
+
| 'ring_camera'
|
|
59586
59692
|
/** IDs of the spaces the device is in. */
|
|
59587
59693
|
space_ids: string[]
|
|
59588
59694
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -60279,6 +60385,15 @@ export type Routes = {
|
|
|
60279
60385
|
time_zone: string | null
|
|
60280
60386
|
}
|
|
60281
60387
|
| undefined
|
|
60388
|
+
/** Metadata for a Ring device. */
|
|
60389
|
+
ring_metadata?:
|
|
60390
|
+
| {
|
|
60391
|
+
/** Device ID for a Ring device. */
|
|
60392
|
+
device_id: string
|
|
60393
|
+
/** Device name for a Ring device. */
|
|
60394
|
+
device_name: string
|
|
60395
|
+
}
|
|
60396
|
+
| undefined
|
|
60282
60397
|
/** Metadata for a Korelock device. */
|
|
60283
60398
|
korelock_metadata?:
|
|
60284
60399
|
| {
|
|
@@ -73820,6 +73935,7 @@ export type Routes = {
|
|
|
73820
73935
|
| 'smartthings_thermostat'
|
|
73821
73936
|
)
|
|
73822
73937
|
| ('ios_phone' | 'android_phone')
|
|
73938
|
+
| 'ring_camera'
|
|
73823
73939
|
/** IDs of the spaces the device is in. */
|
|
73824
73940
|
space_ids: string[]
|
|
73825
73941
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -74516,6 +74632,15 @@ export type Routes = {
|
|
|
74516
74632
|
time_zone: string | null
|
|
74517
74633
|
}
|
|
74518
74634
|
| undefined
|
|
74635
|
+
/** Metadata for a Ring device. */
|
|
74636
|
+
ring_metadata?:
|
|
74637
|
+
| {
|
|
74638
|
+
/** Device ID for a Ring device. */
|
|
74639
|
+
device_id: string
|
|
74640
|
+
/** Device name for a Ring device. */
|
|
74641
|
+
device_name: string
|
|
74642
|
+
}
|
|
74643
|
+
| undefined
|
|
74519
74644
|
/** Metadata for a Korelock device. */
|
|
74520
74645
|
korelock_metadata?:
|
|
74521
74646
|
| {
|
|
@@ -80737,6 +80862,7 @@ export type Routes = {
|
|
|
80737
80862
|
| 'smartthings_thermostat'
|
|
80738
80863
|
)
|
|
80739
80864
|
| ('ios_phone' | 'android_phone')
|
|
80865
|
+
| 'ring_camera'
|
|
80740
80866
|
/** IDs of the spaces the device is in. */
|
|
80741
80867
|
space_ids: string[]
|
|
80742
80868
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -81433,6 +81559,15 @@ export type Routes = {
|
|
|
81433
81559
|
time_zone: string | null
|
|
81434
81560
|
}
|
|
81435
81561
|
| undefined
|
|
81562
|
+
/** Metadata for a Ring device. */
|
|
81563
|
+
ring_metadata?:
|
|
81564
|
+
| {
|
|
81565
|
+
/** Device ID for a Ring device. */
|
|
81566
|
+
device_id: string
|
|
81567
|
+
/** Device name for a Ring device. */
|
|
81568
|
+
device_name: string
|
|
81569
|
+
}
|
|
81570
|
+
| undefined
|
|
81436
81571
|
/** Metadata for a Korelock device. */
|
|
81437
81572
|
korelock_metadata?:
|
|
81438
81573
|
| {
|
|
@@ -85426,6 +85561,7 @@ export type Routes = {
|
|
|
85426
85561
|
| 'smartthings_thermostat'
|
|
85427
85562
|
)
|
|
85428
85563
|
| ('ios_phone' | 'android_phone')
|
|
85564
|
+
| 'ring_camera'
|
|
85429
85565
|
/** IDs of the spaces the device is in. */
|
|
85430
85566
|
space_ids: string[]
|
|
85431
85567
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -86122,6 +86258,15 @@ export type Routes = {
|
|
|
86122
86258
|
time_zone: string | null
|
|
86123
86259
|
}
|
|
86124
86260
|
| undefined
|
|
86261
|
+
/** Metadata for a Ring device. */
|
|
86262
|
+
ring_metadata?:
|
|
86263
|
+
| {
|
|
86264
|
+
/** Device ID for a Ring device. */
|
|
86265
|
+
device_id: string
|
|
86266
|
+
/** Device name for a Ring device. */
|
|
86267
|
+
device_name: string
|
|
86268
|
+
}
|
|
86269
|
+
| undefined
|
|
86125
86270
|
/** Metadata for a Korelock device. */
|
|
86126
86271
|
korelock_metadata?:
|
|
86127
86272
|
| {
|
|
@@ -87043,6 +87188,7 @@ export type Routes = {
|
|
|
87043
87188
|
| 'smartthings_thermostat'
|
|
87044
87189
|
)
|
|
87045
87190
|
| ('ios_phone' | 'android_phone')
|
|
87191
|
+
| 'ring_camera'
|
|
87046
87192
|
/** IDs of the spaces the device is in. */
|
|
87047
87193
|
space_ids: string[]
|
|
87048
87194
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -87739,6 +87885,15 @@ export type Routes = {
|
|
|
87739
87885
|
time_zone: string | null
|
|
87740
87886
|
}
|
|
87741
87887
|
| undefined
|
|
87888
|
+
/** Metadata for a Ring device. */
|
|
87889
|
+
ring_metadata?:
|
|
87890
|
+
| {
|
|
87891
|
+
/** Device ID for a Ring device. */
|
|
87892
|
+
device_id: string
|
|
87893
|
+
/** Device name for a Ring device. */
|
|
87894
|
+
device_name: string
|
|
87895
|
+
}
|
|
87896
|
+
| undefined
|
|
87742
87897
|
/** Metadata for a Korelock device. */
|
|
87743
87898
|
korelock_metadata?:
|
|
87744
87899
|
| {
|
|
@@ -95506,6 +95661,7 @@ export type Routes = {
|
|
|
95506
95661
|
| 'smartthings_thermostat'
|
|
95507
95662
|
)
|
|
95508
95663
|
| ('ios_phone' | 'android_phone')
|
|
95664
|
+
| 'ring_camera'
|
|
95509
95665
|
/** IDs of the spaces the device is in. */
|
|
95510
95666
|
space_ids: string[]
|
|
95511
95667
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -96202,6 +96358,15 @@ export type Routes = {
|
|
|
96202
96358
|
time_zone: string | null
|
|
96203
96359
|
}
|
|
96204
96360
|
| undefined
|
|
96361
|
+
/** Metadata for a Ring device. */
|
|
96362
|
+
ring_metadata?:
|
|
96363
|
+
| {
|
|
96364
|
+
/** Device ID for a Ring device. */
|
|
96365
|
+
device_id: string
|
|
96366
|
+
/** Device name for a Ring device. */
|
|
96367
|
+
device_name: string
|
|
96368
|
+
}
|
|
96369
|
+
| undefined
|
|
96205
96370
|
/** Metadata for a Korelock device. */
|
|
96206
96371
|
korelock_metadata?:
|
|
96207
96372
|
| {
|
|
@@ -97125,6 +97290,7 @@ export type Routes = {
|
|
|
97125
97290
|
| 'smartthings_thermostat'
|
|
97126
97291
|
)
|
|
97127
97292
|
| ('ios_phone' | 'android_phone')
|
|
97293
|
+
| 'ring_camera'
|
|
97128
97294
|
/** IDs of the spaces the device is in. */
|
|
97129
97295
|
space_ids: string[]
|
|
97130
97296
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -97821,6 +97987,15 @@ export type Routes = {
|
|
|
97821
97987
|
time_zone: string | null
|
|
97822
97988
|
}
|
|
97823
97989
|
| undefined
|
|
97990
|
+
/** Metadata for a Ring device. */
|
|
97991
|
+
ring_metadata?:
|
|
97992
|
+
| {
|
|
97993
|
+
/** Device ID for a Ring device. */
|
|
97994
|
+
device_id: string
|
|
97995
|
+
/** Device name for a Ring device. */
|
|
97996
|
+
device_name: string
|
|
97997
|
+
}
|
|
97998
|
+
| undefined
|
|
97824
97999
|
/** Metadata for a Korelock device. */
|
|
97825
98000
|
korelock_metadata?:
|
|
97826
98001
|
| {
|
|
@@ -99825,6 +100000,7 @@ export type Routes = {
|
|
|
99825
100000
|
| 'smartthings_thermostat'
|
|
99826
100001
|
)
|
|
99827
100002
|
| ('ios_phone' | 'android_phone')
|
|
100003
|
+
| 'ring_camera'
|
|
99828
100004
|
/** IDs of the spaces the device is in. */
|
|
99829
100005
|
space_ids: string[]
|
|
99830
100006
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -100521,6 +100697,15 @@ export type Routes = {
|
|
|
100521
100697
|
time_zone: string | null
|
|
100522
100698
|
}
|
|
100523
100699
|
| undefined
|
|
100700
|
+
/** Metadata for a Ring device. */
|
|
100701
|
+
ring_metadata?:
|
|
100702
|
+
| {
|
|
100703
|
+
/** Device ID for a Ring device. */
|
|
100704
|
+
device_id: string
|
|
100705
|
+
/** Device name for a Ring device. */
|
|
100706
|
+
device_name: string
|
|
100707
|
+
}
|
|
100708
|
+
| undefined
|
|
100524
100709
|
/** Metadata for a Korelock device. */
|
|
100525
100710
|
korelock_metadata?:
|
|
100526
100711
|
| {
|
|
@@ -103998,6 +104183,7 @@ export type Routes = {
|
|
|
103998
104183
|
| 'smartthings_thermostat'
|
|
103999
104184
|
)
|
|
104000
104185
|
| ('ios_phone' | 'android_phone')
|
|
104186
|
+
| 'ring_camera'
|
|
104001
104187
|
/** Unique identifier for the account associated with the device. */
|
|
104002
104188
|
connected_account_id: string
|
|
104003
104189
|
/** Location information for the device. */
|