@seamapi/types 1.732.0 → 1.734.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 +81 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +279 -40
- package/dist/index.cjs +81 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +62 -10
- package/lib/seam/connect/models/customer/customer-portal.d.ts +4 -0
- package/lib/seam/connect/models/customer/customer-portal.js +8 -0
- package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
- 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 +22 -0
- package/lib/seam/connect/openapi.js +71 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +145 -24
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/customer-portal.ts +8 -0
- 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 +72 -0
- package/src/lib/seam/connect/route-types.ts +179 -0
|
@@ -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: {
|
|
@@ -47988,6 +48013,13 @@ export default {
|
|
|
47988
48013
|
},
|
|
47989
48014
|
description: 'Configuration for a customer portal',
|
|
47990
48015
|
properties: {
|
|
48016
|
+
_dev: {
|
|
48017
|
+
default: false,
|
|
48018
|
+
description:
|
|
48019
|
+
'Whether the portal is in developer mode. Only available for Seam employees.',
|
|
48020
|
+
type: 'boolean',
|
|
48021
|
+
'x-undocumented': 'Internal developer mode flag.',
|
|
48022
|
+
},
|
|
47991
48023
|
customer_resources_filters: {
|
|
47992
48024
|
description:
|
|
47993
48025
|
'Filter configuration for resources based on their custom_metadata. Each filter specifies a field, operation, and value to match against resource custom_metadata.',
|
|
@@ -50828,6 +50860,11 @@ export default {
|
|
|
50828
50860
|
enum: ['ios_phone', 'android_phone'],
|
|
50829
50861
|
type: 'string',
|
|
50830
50862
|
},
|
|
50863
|
+
{
|
|
50864
|
+
description: 'Device type for cameras.',
|
|
50865
|
+
enum: ['ring_camera'],
|
|
50866
|
+
type: 'string',
|
|
50867
|
+
},
|
|
50831
50868
|
],
|
|
50832
50869
|
},
|
|
50833
50870
|
},
|
|
@@ -50899,6 +50936,11 @@ export default {
|
|
|
50899
50936
|
enum: ['ios_phone', 'android_phone'],
|
|
50900
50937
|
type: 'string',
|
|
50901
50938
|
},
|
|
50939
|
+
{
|
|
50940
|
+
description: 'Device type for cameras.',
|
|
50941
|
+
enum: ['ring_camera'],
|
|
50942
|
+
type: 'string',
|
|
50943
|
+
},
|
|
50902
50944
|
],
|
|
50903
50945
|
},
|
|
50904
50946
|
type: 'array',
|
|
@@ -51268,6 +51310,11 @@ export default {
|
|
|
51268
51310
|
enum: ['ios_phone', 'android_phone'],
|
|
51269
51311
|
type: 'string',
|
|
51270
51312
|
},
|
|
51313
|
+
{
|
|
51314
|
+
description: 'Device type for cameras.',
|
|
51315
|
+
enum: ['ring_camera'],
|
|
51316
|
+
type: 'string',
|
|
51317
|
+
},
|
|
51271
51318
|
],
|
|
51272
51319
|
},
|
|
51273
51320
|
device_types: {
|
|
@@ -51338,6 +51385,11 @@ export default {
|
|
|
51338
51385
|
enum: ['ios_phone', 'android_phone'],
|
|
51339
51386
|
type: 'string',
|
|
51340
51387
|
},
|
|
51388
|
+
{
|
|
51389
|
+
description: 'Device type for cameras.',
|
|
51390
|
+
enum: ['ring_camera'],
|
|
51391
|
+
type: 'string',
|
|
51392
|
+
},
|
|
51341
51393
|
],
|
|
51342
51394
|
},
|
|
51343
51395
|
type: 'array',
|
|
@@ -52698,6 +52750,11 @@ export default {
|
|
|
52698
52750
|
enum: ['ios_phone', 'android_phone'],
|
|
52699
52751
|
type: 'string',
|
|
52700
52752
|
},
|
|
52753
|
+
{
|
|
52754
|
+
description: 'Device type for cameras.',
|
|
52755
|
+
enum: ['ring_camera'],
|
|
52756
|
+
type: 'string',
|
|
52757
|
+
},
|
|
52701
52758
|
],
|
|
52702
52759
|
},
|
|
52703
52760
|
},
|
|
@@ -52769,6 +52826,11 @@ export default {
|
|
|
52769
52826
|
enum: ['ios_phone', 'android_phone'],
|
|
52770
52827
|
type: 'string',
|
|
52771
52828
|
},
|
|
52829
|
+
{
|
|
52830
|
+
description: 'Device type for cameras.',
|
|
52831
|
+
enum: ['ring_camera'],
|
|
52832
|
+
type: 'string',
|
|
52833
|
+
},
|
|
52772
52834
|
],
|
|
52773
52835
|
},
|
|
52774
52836
|
type: 'array',
|
|
@@ -53137,6 +53199,11 @@ export default {
|
|
|
53137
53199
|
enum: ['ios_phone', 'android_phone'],
|
|
53138
53200
|
type: 'string',
|
|
53139
53201
|
},
|
|
53202
|
+
{
|
|
53203
|
+
description: 'Device type for cameras.',
|
|
53204
|
+
enum: ['ring_camera'],
|
|
53205
|
+
type: 'string',
|
|
53206
|
+
},
|
|
53140
53207
|
],
|
|
53141
53208
|
},
|
|
53142
53209
|
device_types: {
|
|
@@ -53207,6 +53274,11 @@ export default {
|
|
|
53207
53274
|
enum: ['ios_phone', 'android_phone'],
|
|
53208
53275
|
type: 'string',
|
|
53209
53276
|
},
|
|
53277
|
+
{
|
|
53278
|
+
description: 'Device type for cameras.',
|
|
53279
|
+
enum: ['ring_camera'],
|
|
53280
|
+
type: 'string',
|
|
53281
|
+
},
|
|
53210
53282
|
],
|
|
53211
53283
|
},
|
|
53212
53284
|
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
|
| {
|
|
@@ -16698,6 +16708,7 @@ export type Routes = {
|
|
|
16698
16708
|
| 'smartthings_thermostat'
|
|
16699
16709
|
)
|
|
16700
16710
|
| ('ios_phone' | 'android_phone')
|
|
16711
|
+
| 'ring_camera'
|
|
16701
16712
|
/** IDs of the spaces the device is in. */
|
|
16702
16713
|
space_ids: string[]
|
|
16703
16714
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -17394,6 +17405,15 @@ export type Routes = {
|
|
|
17394
17405
|
time_zone: string | null
|
|
17395
17406
|
}
|
|
17396
17407
|
| undefined
|
|
17408
|
+
/** Metadata for a Ring device. */
|
|
17409
|
+
ring_metadata?:
|
|
17410
|
+
| {
|
|
17411
|
+
/** Device ID for a Ring device. */
|
|
17412
|
+
device_id: string
|
|
17413
|
+
/** Device name for a Ring device. */
|
|
17414
|
+
device_name: string
|
|
17415
|
+
}
|
|
17416
|
+
| undefined
|
|
17397
17417
|
/** Metadata for a Korelock device. */
|
|
17398
17418
|
korelock_metadata?:
|
|
17399
17419
|
| {
|
|
@@ -32549,6 +32569,8 @@ export type Routes = {
|
|
|
32549
32569
|
resource_key: string
|
|
32550
32570
|
}
|
|
32551
32571
|
| undefined
|
|
32572
|
+
/** Whether the portal is in developer mode. Only available for Seam employees. */
|
|
32573
|
+
_dev?: boolean
|
|
32552
32574
|
} & {
|
|
32553
32575
|
customer_data?:
|
|
32554
32576
|
| {
|
|
@@ -33395,6 +33417,7 @@ export type Routes = {
|
|
|
33395
33417
|
| 'smartthings_thermostat'
|
|
33396
33418
|
)
|
|
33397
33419
|
| ('ios_phone' | 'android_phone')
|
|
33420
|
+
| 'ring_camera'
|
|
33398
33421
|
/** IDs of the spaces the device is in. */
|
|
33399
33422
|
space_ids: string[]
|
|
33400
33423
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -34091,6 +34114,15 @@ export type Routes = {
|
|
|
34091
34114
|
time_zone: string | null
|
|
34092
34115
|
}
|
|
34093
34116
|
| undefined
|
|
34117
|
+
/** Metadata for a Ring device. */
|
|
34118
|
+
ring_metadata?:
|
|
34119
|
+
| {
|
|
34120
|
+
/** Device ID for a Ring device. */
|
|
34121
|
+
device_id: string
|
|
34122
|
+
/** Device name for a Ring device. */
|
|
34123
|
+
device_name: string
|
|
34124
|
+
}
|
|
34125
|
+
| undefined
|
|
34094
34126
|
/** Metadata for a Korelock device. */
|
|
34095
34127
|
korelock_metadata?:
|
|
34096
34128
|
| {
|
|
@@ -35027,6 +35059,7 @@ export type Routes = {
|
|
|
35027
35059
|
| 'smartthings_thermostat'
|
|
35028
35060
|
)
|
|
35029
35061
|
| ('ios_phone' | 'android_phone')
|
|
35062
|
+
| 'ring_camera'
|
|
35030
35063
|
)
|
|
35031
35064
|
| undefined
|
|
35032
35065
|
/** Array of device types for which you want to list devices. */
|
|
@@ -35072,6 +35105,7 @@ export type Routes = {
|
|
|
35072
35105
|
| 'smartthings_thermostat'
|
|
35073
35106
|
)
|
|
35074
35107
|
| ('ios_phone' | 'android_phone')
|
|
35108
|
+
| 'ring_camera'
|
|
35075
35109
|
)[]
|
|
35076
35110
|
| undefined
|
|
35077
35111
|
/** Manufacturer for which you want to list devices. */
|
|
@@ -35239,6 +35273,7 @@ export type Routes = {
|
|
|
35239
35273
|
| 'smartthings_thermostat'
|
|
35240
35274
|
)
|
|
35241
35275
|
| ('ios_phone' | 'android_phone')
|
|
35276
|
+
| 'ring_camera'
|
|
35242
35277
|
/** IDs of the spaces the device is in. */
|
|
35243
35278
|
space_ids: string[]
|
|
35244
35279
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -35935,6 +35970,15 @@ export type Routes = {
|
|
|
35935
35970
|
time_zone: string | null
|
|
35936
35971
|
}
|
|
35937
35972
|
| undefined
|
|
35973
|
+
/** Metadata for a Ring device. */
|
|
35974
|
+
ring_metadata?:
|
|
35975
|
+
| {
|
|
35976
|
+
/** Device ID for a Ring device. */
|
|
35977
|
+
device_id: string
|
|
35978
|
+
/** Device name for a Ring device. */
|
|
35979
|
+
device_name: string
|
|
35980
|
+
}
|
|
35981
|
+
| undefined
|
|
35938
35982
|
/** Metadata for a Korelock device. */
|
|
35939
35983
|
korelock_metadata?:
|
|
35940
35984
|
| {
|
|
@@ -37517,6 +37561,7 @@ export type Routes = {
|
|
|
37517
37561
|
| 'smartthings_thermostat'
|
|
37518
37562
|
)
|
|
37519
37563
|
| ('ios_phone' | 'android_phone')
|
|
37564
|
+
| 'ring_camera'
|
|
37520
37565
|
/** Unique identifier for the account associated with the device. */
|
|
37521
37566
|
connected_account_id: string
|
|
37522
37567
|
/** Location information for the device. */
|
|
@@ -38048,6 +38093,7 @@ export type Routes = {
|
|
|
38048
38093
|
| 'smartthings_thermostat'
|
|
38049
38094
|
)
|
|
38050
38095
|
| ('ios_phone' | 'android_phone')
|
|
38096
|
+
| 'ring_camera'
|
|
38051
38097
|
)
|
|
38052
38098
|
| undefined
|
|
38053
38099
|
/** Array of device types for which you want to list devices. */
|
|
@@ -38093,6 +38139,7 @@ export type Routes = {
|
|
|
38093
38139
|
| 'smartthings_thermostat'
|
|
38094
38140
|
)
|
|
38095
38141
|
| ('ios_phone' | 'android_phone')
|
|
38142
|
+
| 'ring_camera'
|
|
38096
38143
|
)[]
|
|
38097
38144
|
| undefined
|
|
38098
38145
|
/** Manufacturer for which you want to list devices. */
|
|
@@ -38260,6 +38307,7 @@ export type Routes = {
|
|
|
38260
38307
|
| 'smartthings_thermostat'
|
|
38261
38308
|
)
|
|
38262
38309
|
| ('ios_phone' | 'android_phone')
|
|
38310
|
+
| 'ring_camera'
|
|
38263
38311
|
/** Unique identifier for the account associated with the device. */
|
|
38264
38312
|
connected_account_id: string
|
|
38265
38313
|
/** Location information for the device. */
|
|
@@ -45339,6 +45387,7 @@ export type Routes = {
|
|
|
45339
45387
|
| 'smartthings_thermostat'
|
|
45340
45388
|
)
|
|
45341
45389
|
| ('ios_phone' | 'android_phone')
|
|
45390
|
+
| 'ring_camera'
|
|
45342
45391
|
/** IDs of the spaces the device is in. */
|
|
45343
45392
|
space_ids: string[]
|
|
45344
45393
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -46035,6 +46084,15 @@ export type Routes = {
|
|
|
46035
46084
|
time_zone: string | null
|
|
46036
46085
|
}
|
|
46037
46086
|
| undefined
|
|
46087
|
+
/** Metadata for a Ring device. */
|
|
46088
|
+
ring_metadata?:
|
|
46089
|
+
| {
|
|
46090
|
+
/** Device ID for a Ring device. */
|
|
46091
|
+
device_id: string
|
|
46092
|
+
/** Device name for a Ring device. */
|
|
46093
|
+
device_name: string
|
|
46094
|
+
}
|
|
46095
|
+
| undefined
|
|
46038
46096
|
/** Metadata for a Korelock device. */
|
|
46039
46097
|
korelock_metadata?:
|
|
46040
46098
|
| {
|
|
@@ -46957,6 +47015,7 @@ export type Routes = {
|
|
|
46957
47015
|
| 'smartthings_thermostat'
|
|
46958
47016
|
)
|
|
46959
47017
|
| ('ios_phone' | 'android_phone')
|
|
47018
|
+
| 'ring_camera'
|
|
46960
47019
|
/** IDs of the spaces the device is in. */
|
|
46961
47020
|
space_ids: string[]
|
|
46962
47021
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -47653,6 +47712,15 @@ export type Routes = {
|
|
|
47653
47712
|
time_zone: string | null
|
|
47654
47713
|
}
|
|
47655
47714
|
| undefined
|
|
47715
|
+
/** Metadata for a Ring device. */
|
|
47716
|
+
ring_metadata?:
|
|
47717
|
+
| {
|
|
47718
|
+
/** Device ID for a Ring device. */
|
|
47719
|
+
device_id: string
|
|
47720
|
+
/** Device name for a Ring device. */
|
|
47721
|
+
device_name: string
|
|
47722
|
+
}
|
|
47723
|
+
| undefined
|
|
47656
47724
|
/** Metadata for a Korelock device. */
|
|
47657
47725
|
korelock_metadata?:
|
|
47658
47726
|
| {
|
|
@@ -48763,6 +48831,7 @@ export type Routes = {
|
|
|
48763
48831
|
| 'smartthings_thermostat'
|
|
48764
48832
|
)
|
|
48765
48833
|
| ('ios_phone' | 'android_phone')
|
|
48834
|
+
| 'ring_camera'
|
|
48766
48835
|
/** IDs of the spaces the device is in. */
|
|
48767
48836
|
space_ids: string[]
|
|
48768
48837
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -49459,6 +49528,15 @@ export type Routes = {
|
|
|
49459
49528
|
time_zone: string | null
|
|
49460
49529
|
}
|
|
49461
49530
|
| undefined
|
|
49531
|
+
/** Metadata for a Ring device. */
|
|
49532
|
+
ring_metadata?:
|
|
49533
|
+
| {
|
|
49534
|
+
/** Device ID for a Ring device. */
|
|
49535
|
+
device_id: string
|
|
49536
|
+
/** Device name for a Ring device. */
|
|
49537
|
+
device_name: string
|
|
49538
|
+
}
|
|
49539
|
+
| undefined
|
|
49462
49540
|
/** Metadata for a Korelock device. */
|
|
49463
49541
|
korelock_metadata?:
|
|
49464
49542
|
| {
|
|
@@ -50380,6 +50458,7 @@ export type Routes = {
|
|
|
50380
50458
|
| 'smartthings_thermostat'
|
|
50381
50459
|
)
|
|
50382
50460
|
| ('ios_phone' | 'android_phone')
|
|
50461
|
+
| 'ring_camera'
|
|
50383
50462
|
/** IDs of the spaces the device is in. */
|
|
50384
50463
|
space_ids: string[]
|
|
50385
50464
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -51076,6 +51155,15 @@ export type Routes = {
|
|
|
51076
51155
|
time_zone: string | null
|
|
51077
51156
|
}
|
|
51078
51157
|
| undefined
|
|
51158
|
+
/** Metadata for a Ring device. */
|
|
51159
|
+
ring_metadata?:
|
|
51160
|
+
| {
|
|
51161
|
+
/** Device ID for a Ring device. */
|
|
51162
|
+
device_id: string
|
|
51163
|
+
/** Device name for a Ring device. */
|
|
51164
|
+
device_name: string
|
|
51165
|
+
}
|
|
51166
|
+
| undefined
|
|
51079
51167
|
/** Metadata for a Korelock device. */
|
|
51080
51168
|
korelock_metadata?:
|
|
51081
51169
|
| {
|
|
@@ -57964,6 +58052,7 @@ export type Routes = {
|
|
|
57964
58052
|
| 'smartthings_thermostat'
|
|
57965
58053
|
)
|
|
57966
58054
|
| ('ios_phone' | 'android_phone')
|
|
58055
|
+
| 'ring_camera'
|
|
57967
58056
|
/** IDs of the spaces the device is in. */
|
|
57968
58057
|
space_ids: string[]
|
|
57969
58058
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -58660,6 +58749,15 @@ export type Routes = {
|
|
|
58660
58749
|
time_zone: string | null
|
|
58661
58750
|
}
|
|
58662
58751
|
| undefined
|
|
58752
|
+
/** Metadata for a Ring device. */
|
|
58753
|
+
ring_metadata?:
|
|
58754
|
+
| {
|
|
58755
|
+
/** Device ID for a Ring device. */
|
|
58756
|
+
device_id: string
|
|
58757
|
+
/** Device name for a Ring device. */
|
|
58758
|
+
device_name: string
|
|
58759
|
+
}
|
|
58760
|
+
| undefined
|
|
58663
58761
|
/** Metadata for a Korelock device. */
|
|
58664
58762
|
korelock_metadata?:
|
|
58665
58763
|
| {
|
|
@@ -59581,6 +59679,7 @@ export type Routes = {
|
|
|
59581
59679
|
| 'smartthings_thermostat'
|
|
59582
59680
|
)
|
|
59583
59681
|
| ('ios_phone' | 'android_phone')
|
|
59682
|
+
| 'ring_camera'
|
|
59584
59683
|
/** IDs of the spaces the device is in. */
|
|
59585
59684
|
space_ids: string[]
|
|
59586
59685
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -60277,6 +60376,15 @@ export type Routes = {
|
|
|
60277
60376
|
time_zone: string | null
|
|
60278
60377
|
}
|
|
60279
60378
|
| undefined
|
|
60379
|
+
/** Metadata for a Ring device. */
|
|
60380
|
+
ring_metadata?:
|
|
60381
|
+
| {
|
|
60382
|
+
/** Device ID for a Ring device. */
|
|
60383
|
+
device_id: string
|
|
60384
|
+
/** Device name for a Ring device. */
|
|
60385
|
+
device_name: string
|
|
60386
|
+
}
|
|
60387
|
+
| undefined
|
|
60280
60388
|
/** Metadata for a Korelock device. */
|
|
60281
60389
|
korelock_metadata?:
|
|
60282
60390
|
| {
|
|
@@ -73818,6 +73926,7 @@ export type Routes = {
|
|
|
73818
73926
|
| 'smartthings_thermostat'
|
|
73819
73927
|
)
|
|
73820
73928
|
| ('ios_phone' | 'android_phone')
|
|
73929
|
+
| 'ring_camera'
|
|
73821
73930
|
/** IDs of the spaces the device is in. */
|
|
73822
73931
|
space_ids: string[]
|
|
73823
73932
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -74514,6 +74623,15 @@ export type Routes = {
|
|
|
74514
74623
|
time_zone: string | null
|
|
74515
74624
|
}
|
|
74516
74625
|
| undefined
|
|
74626
|
+
/** Metadata for a Ring device. */
|
|
74627
|
+
ring_metadata?:
|
|
74628
|
+
| {
|
|
74629
|
+
/** Device ID for a Ring device. */
|
|
74630
|
+
device_id: string
|
|
74631
|
+
/** Device name for a Ring device. */
|
|
74632
|
+
device_name: string
|
|
74633
|
+
}
|
|
74634
|
+
| undefined
|
|
74517
74635
|
/** Metadata for a Korelock device. */
|
|
74518
74636
|
korelock_metadata?:
|
|
74519
74637
|
| {
|
|
@@ -80735,6 +80853,7 @@ export type Routes = {
|
|
|
80735
80853
|
| 'smartthings_thermostat'
|
|
80736
80854
|
)
|
|
80737
80855
|
| ('ios_phone' | 'android_phone')
|
|
80856
|
+
| 'ring_camera'
|
|
80738
80857
|
/** IDs of the spaces the device is in. */
|
|
80739
80858
|
space_ids: string[]
|
|
80740
80859
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -81431,6 +81550,15 @@ export type Routes = {
|
|
|
81431
81550
|
time_zone: string | null
|
|
81432
81551
|
}
|
|
81433
81552
|
| undefined
|
|
81553
|
+
/** Metadata for a Ring device. */
|
|
81554
|
+
ring_metadata?:
|
|
81555
|
+
| {
|
|
81556
|
+
/** Device ID for a Ring device. */
|
|
81557
|
+
device_id: string
|
|
81558
|
+
/** Device name for a Ring device. */
|
|
81559
|
+
device_name: string
|
|
81560
|
+
}
|
|
81561
|
+
| undefined
|
|
81434
81562
|
/** Metadata for a Korelock device. */
|
|
81435
81563
|
korelock_metadata?:
|
|
81436
81564
|
| {
|
|
@@ -85424,6 +85552,7 @@ export type Routes = {
|
|
|
85424
85552
|
| 'smartthings_thermostat'
|
|
85425
85553
|
)
|
|
85426
85554
|
| ('ios_phone' | 'android_phone')
|
|
85555
|
+
| 'ring_camera'
|
|
85427
85556
|
/** IDs of the spaces the device is in. */
|
|
85428
85557
|
space_ids: string[]
|
|
85429
85558
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -86120,6 +86249,15 @@ export type Routes = {
|
|
|
86120
86249
|
time_zone: string | null
|
|
86121
86250
|
}
|
|
86122
86251
|
| undefined
|
|
86252
|
+
/** Metadata for a Ring device. */
|
|
86253
|
+
ring_metadata?:
|
|
86254
|
+
| {
|
|
86255
|
+
/** Device ID for a Ring device. */
|
|
86256
|
+
device_id: string
|
|
86257
|
+
/** Device name for a Ring device. */
|
|
86258
|
+
device_name: string
|
|
86259
|
+
}
|
|
86260
|
+
| undefined
|
|
86123
86261
|
/** Metadata for a Korelock device. */
|
|
86124
86262
|
korelock_metadata?:
|
|
86125
86263
|
| {
|
|
@@ -87041,6 +87179,7 @@ export type Routes = {
|
|
|
87041
87179
|
| 'smartthings_thermostat'
|
|
87042
87180
|
)
|
|
87043
87181
|
| ('ios_phone' | 'android_phone')
|
|
87182
|
+
| 'ring_camera'
|
|
87044
87183
|
/** IDs of the spaces the device is in. */
|
|
87045
87184
|
space_ids: string[]
|
|
87046
87185
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -87737,6 +87876,15 @@ export type Routes = {
|
|
|
87737
87876
|
time_zone: string | null
|
|
87738
87877
|
}
|
|
87739
87878
|
| undefined
|
|
87879
|
+
/** Metadata for a Ring device. */
|
|
87880
|
+
ring_metadata?:
|
|
87881
|
+
| {
|
|
87882
|
+
/** Device ID for a Ring device. */
|
|
87883
|
+
device_id: string
|
|
87884
|
+
/** Device name for a Ring device. */
|
|
87885
|
+
device_name: string
|
|
87886
|
+
}
|
|
87887
|
+
| undefined
|
|
87740
87888
|
/** Metadata for a Korelock device. */
|
|
87741
87889
|
korelock_metadata?:
|
|
87742
87890
|
| {
|
|
@@ -95504,6 +95652,7 @@ export type Routes = {
|
|
|
95504
95652
|
| 'smartthings_thermostat'
|
|
95505
95653
|
)
|
|
95506
95654
|
| ('ios_phone' | 'android_phone')
|
|
95655
|
+
| 'ring_camera'
|
|
95507
95656
|
/** IDs of the spaces the device is in. */
|
|
95508
95657
|
space_ids: string[]
|
|
95509
95658
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -96200,6 +96349,15 @@ export type Routes = {
|
|
|
96200
96349
|
time_zone: string | null
|
|
96201
96350
|
}
|
|
96202
96351
|
| undefined
|
|
96352
|
+
/** Metadata for a Ring device. */
|
|
96353
|
+
ring_metadata?:
|
|
96354
|
+
| {
|
|
96355
|
+
/** Device ID for a Ring device. */
|
|
96356
|
+
device_id: string
|
|
96357
|
+
/** Device name for a Ring device. */
|
|
96358
|
+
device_name: string
|
|
96359
|
+
}
|
|
96360
|
+
| undefined
|
|
96203
96361
|
/** Metadata for a Korelock device. */
|
|
96204
96362
|
korelock_metadata?:
|
|
96205
96363
|
| {
|
|
@@ -97123,6 +97281,7 @@ export type Routes = {
|
|
|
97123
97281
|
| 'smartthings_thermostat'
|
|
97124
97282
|
)
|
|
97125
97283
|
| ('ios_phone' | 'android_phone')
|
|
97284
|
+
| 'ring_camera'
|
|
97126
97285
|
/** IDs of the spaces the device is in. */
|
|
97127
97286
|
space_ids: string[]
|
|
97128
97287
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -97819,6 +97978,15 @@ export type Routes = {
|
|
|
97819
97978
|
time_zone: string | null
|
|
97820
97979
|
}
|
|
97821
97980
|
| undefined
|
|
97981
|
+
/** Metadata for a Ring device. */
|
|
97982
|
+
ring_metadata?:
|
|
97983
|
+
| {
|
|
97984
|
+
/** Device ID for a Ring device. */
|
|
97985
|
+
device_id: string
|
|
97986
|
+
/** Device name for a Ring device. */
|
|
97987
|
+
device_name: string
|
|
97988
|
+
}
|
|
97989
|
+
| undefined
|
|
97822
97990
|
/** Metadata for a Korelock device. */
|
|
97823
97991
|
korelock_metadata?:
|
|
97824
97992
|
| {
|
|
@@ -99823,6 +99991,7 @@ export type Routes = {
|
|
|
99823
99991
|
| 'smartthings_thermostat'
|
|
99824
99992
|
)
|
|
99825
99993
|
| ('ios_phone' | 'android_phone')
|
|
99994
|
+
| 'ring_camera'
|
|
99826
99995
|
/** IDs of the spaces the device is in. */
|
|
99827
99996
|
space_ids: string[]
|
|
99828
99997
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -100519,6 +100688,15 @@ export type Routes = {
|
|
|
100519
100688
|
time_zone: string | null
|
|
100520
100689
|
}
|
|
100521
100690
|
| undefined
|
|
100691
|
+
/** Metadata for a Ring device. */
|
|
100692
|
+
ring_metadata?:
|
|
100693
|
+
| {
|
|
100694
|
+
/** Device ID for a Ring device. */
|
|
100695
|
+
device_id: string
|
|
100696
|
+
/** Device name for a Ring device. */
|
|
100697
|
+
device_name: string
|
|
100698
|
+
}
|
|
100699
|
+
| undefined
|
|
100522
100700
|
/** Metadata for a Korelock device. */
|
|
100523
100701
|
korelock_metadata?:
|
|
100524
100702
|
| {
|
|
@@ -103996,6 +104174,7 @@ export type Routes = {
|
|
|
103996
104174
|
| 'smartthings_thermostat'
|
|
103997
104175
|
)
|
|
103998
104176
|
| ('ios_phone' | 'android_phone')
|
|
104177
|
+
| 'ring_camera'
|
|
103999
104178
|
/** Unique identifier for the account associated with the device. */
|
|
104000
104179
|
connected_account_id: string
|
|
104001
104180
|
/** Location information for the device. */
|