From 73333d557cdcc8b28548ae6770df31281bdd9ce3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 18 Sep 2026 06:13:00 +0000 Subject: [PATCH 1/2] feat(deps-dev): bump @seamapi/types in the seam group Bumps the seam group with 1 update: [@seamapi/types](https://github.com/seamapi/types). Updates `@seamapi/types` from 1.1075.0 to 1.1076.0 - [Release notes](https://github.com/seamapi/types/releases) - [Commits](https://github.com/seamapi/types/compare/v1.1075.0...v1.1076.0) --- updated-dependencies: - dependency-name: "@seamapi/types" dependency-version: 1.1076.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: seam ... Signed-off-by: dependabot[bot] --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index cb11b4a..8e4cd13 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,7 +9,7 @@ "@seamapi/blueprint": "^1.12.0", "@seamapi/fake-seam-connect": "2.0.6", "@seamapi/smith": "^1.1.0", - "@seamapi/types": "1.1075.0", + "@seamapi/types": "1.1076.0", "change-case": "^5.4.4", "markdown-toc": "^1.2.0", "prettier": "^3.2.5" @@ -864,9 +864,9 @@ } }, "node_modules/@seamapi/types": { - "version": "1.1075.0", - "resolved": "https://registry.npmjs.org/@seamapi/types/-/types-1.1075.0.tgz", - "integrity": "sha512-134KCyANlwNf8XFeXIjNUUWdFOs7Nz0fUd5w8/DIuYeFGjzfzazCAoMfZD8dLu0DVQlrByHdmckKJp8GzVD84A==", + "version": "1.1076.0", + "resolved": "https://registry.npmjs.org/@seamapi/types/-/types-1.1076.0.tgz", + "integrity": "sha512-o2C89vg7cZixTH7rg4VRxCFsiL1w/evT2Cdnvd97EE4UhClyEEhyPYZLwXi64S8/2YSQr+hmr5Ay62vLX9OVWA==", "dev": true, "license": "MIT", "engines": { diff --git a/package.json b/package.json index c1989fe..3202bea 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,7 @@ "@seamapi/blueprint": "^1.12.0", "@seamapi/fake-seam-connect": "2.0.6", "@seamapi/smith": "^1.1.0", - "@seamapi/types": "1.1075.0", + "@seamapi/types": "1.1076.0", "change-case": "^5.4.4", "markdown-toc": "^1.2.0", "prettier": "^3.2.5" From be09c61c539e2bd8064e908b53c552232fc11c57 Mon Sep 17 00:00:00 2001 From: Seam Bot Date: Fri, 18 Sep 2026 06:13:49 +0000 Subject: [PATCH 2/2] ci: Generate code --- lib/seam/resources/device.rb | 16 ++++++++++++++++ lib/seam/resources/device_provider.rb | 1 + lib/seam/resources/unmanaged_device.rb | 1 + 3 files changed, 18 insertions(+) diff --git a/lib/seam/resources/device.rb b/lib/seam/resources/device.rb index 64d68b2..3e8afeb 100644 --- a/lib/seam/resources/device.rb +++ b/lib/seam/resources/device.rb @@ -1137,6 +1137,18 @@ class TadoMetadata < BaseResource attr_accessor :serial_no end + class TapoMetadata < BaseResource + # Firmware version reported by the camera. + # @return [String, nil] + attr_accessor :firmware_version + # Hardware version reported by the camera. + # @return [String, nil] + attr_accessor :hardware_version + # Model reported by the Tapo camera. + # @return [String, nil] + attr_accessor :model + end + class TedeeMetadata < BaseResource # Bridge ID for a Tedee device. # @return [Float, nil] @@ -1880,6 +1892,9 @@ class ThermostatWeeklyProgram < BaseResource # Metadata for a tado° device. # @return [TadoMetadata, nil] resource_accessor :tado_metadata, TadoMetadata + # Metadata for a Tapo camera. + # @return [TapoMetadata, nil] + resource_accessor :tapo_metadata, TapoMetadata # Metadata for a Tedee device. # @return [TedeeMetadata, nil] resource_accessor :tedee_metadata, TedeeMetadata @@ -2748,6 +2763,7 @@ class MaxAccessCodesReached < Warnings # - `ios_phone` # - `android_phone` # - `ring_camera` + # - `tapo_camera` attr_accessor :device_type # 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. # @return [String] diff --git a/lib/seam/resources/device_provider.rb b/lib/seam/resources/device_provider.rb index b8d3e23..b4c098a 100644 --- a/lib/seam/resources/device_provider.rb +++ b/lib/seam/resources/device_provider.rb @@ -123,6 +123,7 @@ class DeviceProvider < BaseResource # - `sifely` # - `thirty_three_lock` # - `ring` + # - `tapo` # - `ical` # - `lodgify` # - `hostaway` diff --git a/lib/seam/resources/unmanaged_device.rb b/lib/seam/resources/unmanaged_device.rb index 608ee69..057e0f2 100644 --- a/lib/seam/resources/unmanaged_device.rb +++ b/lib/seam/resources/unmanaged_device.rb @@ -1059,6 +1059,7 @@ class MaxAccessCodesReached < Warnings # - `ios_phone` # - `android_phone` # - `ring_camera` + # - `tapo_camera` attr_accessor :device_type # 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. # @return [String]