@seamapi/types 1.733.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.
@@ -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: {
@@ -50835,6 +50860,11 @@ export default {
50835
50860
  enum: ['ios_phone', 'android_phone'],
50836
50861
  type: 'string',
50837
50862
  },
50863
+ {
50864
+ description: 'Device type for cameras.',
50865
+ enum: ['ring_camera'],
50866
+ type: 'string',
50867
+ },
50838
50868
  ],
50839
50869
  },
50840
50870
  },
@@ -50906,6 +50936,11 @@ export default {
50906
50936
  enum: ['ios_phone', 'android_phone'],
50907
50937
  type: 'string',
50908
50938
  },
50939
+ {
50940
+ description: 'Device type for cameras.',
50941
+ enum: ['ring_camera'],
50942
+ type: 'string',
50943
+ },
50909
50944
  ],
50910
50945
  },
50911
50946
  type: 'array',
@@ -51275,6 +51310,11 @@ export default {
51275
51310
  enum: ['ios_phone', 'android_phone'],
51276
51311
  type: 'string',
51277
51312
  },
51313
+ {
51314
+ description: 'Device type for cameras.',
51315
+ enum: ['ring_camera'],
51316
+ type: 'string',
51317
+ },
51278
51318
  ],
51279
51319
  },
51280
51320
  device_types: {
@@ -51345,6 +51385,11 @@ export default {
51345
51385
  enum: ['ios_phone', 'android_phone'],
51346
51386
  type: 'string',
51347
51387
  },
51388
+ {
51389
+ description: 'Device type for cameras.',
51390
+ enum: ['ring_camera'],
51391
+ type: 'string',
51392
+ },
51348
51393
  ],
51349
51394
  },
51350
51395
  type: 'array',
@@ -52705,6 +52750,11 @@ export default {
52705
52750
  enum: ['ios_phone', 'android_phone'],
52706
52751
  type: 'string',
52707
52752
  },
52753
+ {
52754
+ description: 'Device type for cameras.',
52755
+ enum: ['ring_camera'],
52756
+ type: 'string',
52757
+ },
52708
52758
  ],
52709
52759
  },
52710
52760
  },
@@ -52776,6 +52826,11 @@ export default {
52776
52826
  enum: ['ios_phone', 'android_phone'],
52777
52827
  type: 'string',
52778
52828
  },
52829
+ {
52830
+ description: 'Device type for cameras.',
52831
+ enum: ['ring_camera'],
52832
+ type: 'string',
52833
+ },
52779
52834
  ],
52780
52835
  },
52781
52836
  type: 'array',
@@ -53144,6 +53199,11 @@ export default {
53144
53199
  enum: ['ios_phone', 'android_phone'],
53145
53200
  type: 'string',
53146
53201
  },
53202
+ {
53203
+ description: 'Device type for cameras.',
53204
+ enum: ['ring_camera'],
53205
+ type: 'string',
53206
+ },
53147
53207
  ],
53148
53208
  },
53149
53209
  device_types: {
@@ -53214,6 +53274,11 @@ export default {
53214
53274
  enum: ['ios_phone', 'android_phone'],
53215
53275
  type: 'string',
53216
53276
  },
53277
+ {
53278
+ description: 'Device type for cameras.',
53279
+ enum: ['ring_camera'],
53280
+ type: 'string',
53281
+ },
53217
53282
  ],
53218
53283
  },
53219
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
  | {
@@ -33397,6 +33417,7 @@ export type Routes = {
33397
33417
  | 'smartthings_thermostat'
33398
33418
  )
33399
33419
  | ('ios_phone' | 'android_phone')
33420
+ | 'ring_camera'
33400
33421
  /** IDs of the spaces the device is in. */
33401
33422
  space_ids: string[]
33402
33423
  /** Optional nickname to describe the device, settable through Seam. */
@@ -34093,6 +34114,15 @@ export type Routes = {
34093
34114
  time_zone: string | null
34094
34115
  }
34095
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
34096
34126
  /** Metadata for a Korelock device. */
34097
34127
  korelock_metadata?:
34098
34128
  | {
@@ -35029,6 +35059,7 @@ export type Routes = {
35029
35059
  | 'smartthings_thermostat'
35030
35060
  )
35031
35061
  | ('ios_phone' | 'android_phone')
35062
+ | 'ring_camera'
35032
35063
  )
35033
35064
  | undefined
35034
35065
  /** Array of device types for which you want to list devices. */
@@ -35074,6 +35105,7 @@ export type Routes = {
35074
35105
  | 'smartthings_thermostat'
35075
35106
  )
35076
35107
  | ('ios_phone' | 'android_phone')
35108
+ | 'ring_camera'
35077
35109
  )[]
35078
35110
  | undefined
35079
35111
  /** Manufacturer for which you want to list devices. */
@@ -35241,6 +35273,7 @@ export type Routes = {
35241
35273
  | 'smartthings_thermostat'
35242
35274
  )
35243
35275
  | ('ios_phone' | 'android_phone')
35276
+ | 'ring_camera'
35244
35277
  /** IDs of the spaces the device is in. */
35245
35278
  space_ids: string[]
35246
35279
  /** Optional nickname to describe the device, settable through Seam. */
@@ -35937,6 +35970,15 @@ export type Routes = {
35937
35970
  time_zone: string | null
35938
35971
  }
35939
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
35940
35982
  /** Metadata for a Korelock device. */
35941
35983
  korelock_metadata?:
35942
35984
  | {
@@ -37519,6 +37561,7 @@ export type Routes = {
37519
37561
  | 'smartthings_thermostat'
37520
37562
  )
37521
37563
  | ('ios_phone' | 'android_phone')
37564
+ | 'ring_camera'
37522
37565
  /** Unique identifier for the account associated with the device. */
37523
37566
  connected_account_id: string
37524
37567
  /** Location information for the device. */
@@ -38050,6 +38093,7 @@ export type Routes = {
38050
38093
  | 'smartthings_thermostat'
38051
38094
  )
38052
38095
  | ('ios_phone' | 'android_phone')
38096
+ | 'ring_camera'
38053
38097
  )
38054
38098
  | undefined
38055
38099
  /** Array of device types for which you want to list devices. */
@@ -38095,6 +38139,7 @@ export type Routes = {
38095
38139
  | 'smartthings_thermostat'
38096
38140
  )
38097
38141
  | ('ios_phone' | 'android_phone')
38142
+ | 'ring_camera'
38098
38143
  )[]
38099
38144
  | undefined
38100
38145
  /** Manufacturer for which you want to list devices. */
@@ -38262,6 +38307,7 @@ export type Routes = {
38262
38307
  | 'smartthings_thermostat'
38263
38308
  )
38264
38309
  | ('ios_phone' | 'android_phone')
38310
+ | 'ring_camera'
38265
38311
  /** Unique identifier for the account associated with the device. */
38266
38312
  connected_account_id: string
38267
38313
  /** Location information for the device. */
@@ -45341,6 +45387,7 @@ export type Routes = {
45341
45387
  | 'smartthings_thermostat'
45342
45388
  )
45343
45389
  | ('ios_phone' | 'android_phone')
45390
+ | 'ring_camera'
45344
45391
  /** IDs of the spaces the device is in. */
45345
45392
  space_ids: string[]
45346
45393
  /** Optional nickname to describe the device, settable through Seam. */
@@ -46037,6 +46084,15 @@ export type Routes = {
46037
46084
  time_zone: string | null
46038
46085
  }
46039
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
46040
46096
  /** Metadata for a Korelock device. */
46041
46097
  korelock_metadata?:
46042
46098
  | {
@@ -46959,6 +47015,7 @@ export type Routes = {
46959
47015
  | 'smartthings_thermostat'
46960
47016
  )
46961
47017
  | ('ios_phone' | 'android_phone')
47018
+ | 'ring_camera'
46962
47019
  /** IDs of the spaces the device is in. */
46963
47020
  space_ids: string[]
46964
47021
  /** Optional nickname to describe the device, settable through Seam. */
@@ -47655,6 +47712,15 @@ export type Routes = {
47655
47712
  time_zone: string | null
47656
47713
  }
47657
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
47658
47724
  /** Metadata for a Korelock device. */
47659
47725
  korelock_metadata?:
47660
47726
  | {
@@ -48765,6 +48831,7 @@ export type Routes = {
48765
48831
  | 'smartthings_thermostat'
48766
48832
  )
48767
48833
  | ('ios_phone' | 'android_phone')
48834
+ | 'ring_camera'
48768
48835
  /** IDs of the spaces the device is in. */
48769
48836
  space_ids: string[]
48770
48837
  /** Optional nickname to describe the device, settable through Seam. */
@@ -49461,6 +49528,15 @@ export type Routes = {
49461
49528
  time_zone: string | null
49462
49529
  }
49463
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
49464
49540
  /** Metadata for a Korelock device. */
49465
49541
  korelock_metadata?:
49466
49542
  | {
@@ -50382,6 +50458,7 @@ export type Routes = {
50382
50458
  | 'smartthings_thermostat'
50383
50459
  )
50384
50460
  | ('ios_phone' | 'android_phone')
50461
+ | 'ring_camera'
50385
50462
  /** IDs of the spaces the device is in. */
50386
50463
  space_ids: string[]
50387
50464
  /** Optional nickname to describe the device, settable through Seam. */
@@ -51078,6 +51155,15 @@ export type Routes = {
51078
51155
  time_zone: string | null
51079
51156
  }
51080
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
51081
51167
  /** Metadata for a Korelock device. */
51082
51168
  korelock_metadata?:
51083
51169
  | {
@@ -57966,6 +58052,7 @@ export type Routes = {
57966
58052
  | 'smartthings_thermostat'
57967
58053
  )
57968
58054
  | ('ios_phone' | 'android_phone')
58055
+ | 'ring_camera'
57969
58056
  /** IDs of the spaces the device is in. */
57970
58057
  space_ids: string[]
57971
58058
  /** Optional nickname to describe the device, settable through Seam. */
@@ -58662,6 +58749,15 @@ export type Routes = {
58662
58749
  time_zone: string | null
58663
58750
  }
58664
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
58665
58761
  /** Metadata for a Korelock device. */
58666
58762
  korelock_metadata?:
58667
58763
  | {
@@ -59583,6 +59679,7 @@ export type Routes = {
59583
59679
  | 'smartthings_thermostat'
59584
59680
  )
59585
59681
  | ('ios_phone' | 'android_phone')
59682
+ | 'ring_camera'
59586
59683
  /** IDs of the spaces the device is in. */
59587
59684
  space_ids: string[]
59588
59685
  /** Optional nickname to describe the device, settable through Seam. */
@@ -60279,6 +60376,15 @@ export type Routes = {
60279
60376
  time_zone: string | null
60280
60377
  }
60281
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
60282
60388
  /** Metadata for a Korelock device. */
60283
60389
  korelock_metadata?:
60284
60390
  | {
@@ -73820,6 +73926,7 @@ export type Routes = {
73820
73926
  | 'smartthings_thermostat'
73821
73927
  )
73822
73928
  | ('ios_phone' | 'android_phone')
73929
+ | 'ring_camera'
73823
73930
  /** IDs of the spaces the device is in. */
73824
73931
  space_ids: string[]
73825
73932
  /** Optional nickname to describe the device, settable through Seam. */
@@ -74516,6 +74623,15 @@ export type Routes = {
74516
74623
  time_zone: string | null
74517
74624
  }
74518
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
74519
74635
  /** Metadata for a Korelock device. */
74520
74636
  korelock_metadata?:
74521
74637
  | {
@@ -80737,6 +80853,7 @@ export type Routes = {
80737
80853
  | 'smartthings_thermostat'
80738
80854
  )
80739
80855
  | ('ios_phone' | 'android_phone')
80856
+ | 'ring_camera'
80740
80857
  /** IDs of the spaces the device is in. */
80741
80858
  space_ids: string[]
80742
80859
  /** Optional nickname to describe the device, settable through Seam. */
@@ -81433,6 +81550,15 @@ export type Routes = {
81433
81550
  time_zone: string | null
81434
81551
  }
81435
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
81436
81562
  /** Metadata for a Korelock device. */
81437
81563
  korelock_metadata?:
81438
81564
  | {
@@ -85426,6 +85552,7 @@ export type Routes = {
85426
85552
  | 'smartthings_thermostat'
85427
85553
  )
85428
85554
  | ('ios_phone' | 'android_phone')
85555
+ | 'ring_camera'
85429
85556
  /** IDs of the spaces the device is in. */
85430
85557
  space_ids: string[]
85431
85558
  /** Optional nickname to describe the device, settable through Seam. */
@@ -86122,6 +86249,15 @@ export type Routes = {
86122
86249
  time_zone: string | null
86123
86250
  }
86124
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
86125
86261
  /** Metadata for a Korelock device. */
86126
86262
  korelock_metadata?:
86127
86263
  | {
@@ -87043,6 +87179,7 @@ export type Routes = {
87043
87179
  | 'smartthings_thermostat'
87044
87180
  )
87045
87181
  | ('ios_phone' | 'android_phone')
87182
+ | 'ring_camera'
87046
87183
  /** IDs of the spaces the device is in. */
87047
87184
  space_ids: string[]
87048
87185
  /** Optional nickname to describe the device, settable through Seam. */
@@ -87739,6 +87876,15 @@ export type Routes = {
87739
87876
  time_zone: string | null
87740
87877
  }
87741
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
87742
87888
  /** Metadata for a Korelock device. */
87743
87889
  korelock_metadata?:
87744
87890
  | {
@@ -95506,6 +95652,7 @@ export type Routes = {
95506
95652
  | 'smartthings_thermostat'
95507
95653
  )
95508
95654
  | ('ios_phone' | 'android_phone')
95655
+ | 'ring_camera'
95509
95656
  /** IDs of the spaces the device is in. */
95510
95657
  space_ids: string[]
95511
95658
  /** Optional nickname to describe the device, settable through Seam. */
@@ -96202,6 +96349,15 @@ export type Routes = {
96202
96349
  time_zone: string | null
96203
96350
  }
96204
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
96205
96361
  /** Metadata for a Korelock device. */
96206
96362
  korelock_metadata?:
96207
96363
  | {
@@ -97125,6 +97281,7 @@ export type Routes = {
97125
97281
  | 'smartthings_thermostat'
97126
97282
  )
97127
97283
  | ('ios_phone' | 'android_phone')
97284
+ | 'ring_camera'
97128
97285
  /** IDs of the spaces the device is in. */
97129
97286
  space_ids: string[]
97130
97287
  /** Optional nickname to describe the device, settable through Seam. */
@@ -97821,6 +97978,15 @@ export type Routes = {
97821
97978
  time_zone: string | null
97822
97979
  }
97823
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
97824
97990
  /** Metadata for a Korelock device. */
97825
97991
  korelock_metadata?:
97826
97992
  | {
@@ -99825,6 +99991,7 @@ export type Routes = {
99825
99991
  | 'smartthings_thermostat'
99826
99992
  )
99827
99993
  | ('ios_phone' | 'android_phone')
99994
+ | 'ring_camera'
99828
99995
  /** IDs of the spaces the device is in. */
99829
99996
  space_ids: string[]
99830
99997
  /** Optional nickname to describe the device, settable through Seam. */
@@ -100521,6 +100688,15 @@ export type Routes = {
100521
100688
  time_zone: string | null
100522
100689
  }
100523
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
100524
100700
  /** Metadata for a Korelock device. */
100525
100701
  korelock_metadata?:
100526
100702
  | {
@@ -103998,6 +104174,7 @@ export type Routes = {
103998
104174
  | 'smartthings_thermostat'
103999
104175
  )
104000
104176
  | ('ios_phone' | 'android_phone')
104177
+ | 'ring_camera'
104001
104178
  /** Unique identifier for the account associated with the device. */
104002
104179
  connected_account_id: string
104003
104180
  /** Location information for the device. */