seam 2.155.0 → 2.157.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.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/lib/seam/resources/device.rb +17 -1
- data/lib/seam/resources/device_provider.rb +1 -0
- data/lib/seam/resources/unmanaged_device.rb +1 -0
- data/lib/seam/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2798eb3b2b95fac5a6be01f3cca2e86883a7481b333b5742d108c4e3d0d6516d
|
|
4
|
+
data.tar.gz: 4d6421e4c3123a84b96fffa3f71bd82c12de363e9bfcdaea4a7c46bacca31978
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '097fa833f6fc51b938d28ee9f25632e3ab8031e4b631a678c3d21ecf2540c06f9a3c9d317d041baa2915d683ae59f2b2242176352a350b28b3e29852fc15bba2'
|
|
7
|
+
data.tar.gz: 1f74cae81dcdd44451eb26c57d0d8f5ab6b20c400d730641bff973f0a8bb37d66fb970f3b14c5b8b23c22506033a44957fe4e8fd4d1392a34aa643e295acd8cd
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
seam (2.
|
|
4
|
+
seam (2.157.0)
|
|
5
5
|
faraday (~> 2.7)
|
|
6
6
|
faraday-retry (~> 2.2)
|
|
7
7
|
svix (~> 1.30)
|
|
@@ -171,7 +171,7 @@ CHECKSUMS
|
|
|
171
171
|
rubocop-ast (1.50.0) sha256=b9ca88300da0803ee222ad20cdb30494c0a784eed06fdc35d254b06d662788db
|
|
172
172
|
rubocop-performance (1.26.1) sha256=cd19b936ff196df85829d264b522fd4f98b6c89ad271fa52744a8c11b8f71834
|
|
173
173
|
ruby-progressbar (1.13.0) sha256=80fc9c47a9b640d6834e0dc7b3c94c9df37f08cb072b7761e4a71e22cff29b33
|
|
174
|
-
seam (2.
|
|
174
|
+
seam (2.157.0)
|
|
175
175
|
simplecov (1.1.1) sha256=25825ef13f0b2e74694d769817dad6ab8e90131dabdaa666e522fea105521e78
|
|
176
176
|
simplecov-console (0.9.5) sha256=b1108bcfff5f210143e2b8301698c367b01586f20d25a73e95475a5df6fc6ff6
|
|
177
177
|
standard (1.56.0) sha256=ae2af4d9669589162ac69ed5ef59dcf9f346d4afc81f7e62b84339310dfcb787
|
|
@@ -928,7 +928,7 @@ module Seam
|
|
|
928
928
|
# Device name for a Google Nest device. Google sets this value.
|
|
929
929
|
# @return [String, nil]
|
|
930
930
|
attr_accessor :device_name
|
|
931
|
-
#
|
|
931
|
+
# Name of the Google Home room containing the device. The device owner sets this value.
|
|
932
932
|
# @return [String, nil]
|
|
933
933
|
attr_accessor :display_name
|
|
934
934
|
# Device ID for a Google Nest device.
|
|
@@ -1137,6 +1137,18 @@ module Seam
|
|
|
1137
1137
|
attr_accessor :serial_no
|
|
1138
1138
|
end
|
|
1139
1139
|
|
|
1140
|
+
class TapoMetadata < BaseResource
|
|
1141
|
+
# Firmware version reported by the camera.
|
|
1142
|
+
# @return [String, nil]
|
|
1143
|
+
attr_accessor :firmware_version
|
|
1144
|
+
# Hardware version reported by the camera.
|
|
1145
|
+
# @return [String, nil]
|
|
1146
|
+
attr_accessor :hardware_version
|
|
1147
|
+
# Model reported by the Tapo camera.
|
|
1148
|
+
# @return [String, nil]
|
|
1149
|
+
attr_accessor :model
|
|
1150
|
+
end
|
|
1151
|
+
|
|
1140
1152
|
class TedeeMetadata < BaseResource
|
|
1141
1153
|
# Bridge ID for a Tedee device.
|
|
1142
1154
|
# @return [Float, nil]
|
|
@@ -1880,6 +1892,9 @@ module Seam
|
|
|
1880
1892
|
# Metadata for a tado° device.
|
|
1881
1893
|
# @return [TadoMetadata, nil]
|
|
1882
1894
|
resource_accessor :tado_metadata, TadoMetadata
|
|
1895
|
+
# Metadata for a Tapo camera.
|
|
1896
|
+
# @return [TapoMetadata, nil]
|
|
1897
|
+
resource_accessor :tapo_metadata, TapoMetadata
|
|
1883
1898
|
# Metadata for a Tedee device.
|
|
1884
1899
|
# @return [TedeeMetadata, nil]
|
|
1885
1900
|
resource_accessor :tedee_metadata, TedeeMetadata
|
|
@@ -2748,6 +2763,7 @@ module Seam
|
|
|
2748
2763
|
# - `ios_phone`
|
|
2749
2764
|
# - `android_phone`
|
|
2750
2765
|
# - `ring_camera`
|
|
2766
|
+
# - `tapo_camera`
|
|
2751
2767
|
attr_accessor :device_type
|
|
2752
2768
|
# Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices.
|
|
2753
2769
|
# @return [String]
|
|
@@ -1059,6 +1059,7 @@ module Seam
|
|
|
1059
1059
|
# - `ios_phone`
|
|
1060
1060
|
# - `android_phone`
|
|
1061
1061
|
# - `ring_camera`
|
|
1062
|
+
# - `tapo_camera`
|
|
1062
1063
|
attr_accessor :device_type
|
|
1063
1064
|
# Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices.
|
|
1064
1065
|
# @return [String]
|
data/lib/seam/version.rb
CHANGED