From 8414a93f18f515e909cef723a8f8a7d230f189b8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Jul 2025 08:10:27 +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.471.0 to 1.474.0 - [Release notes](https://github.com/seamapi/types/releases) - [Changelog](https://github.com/seamapi/types/blob/main/.releaserc.json) - [Commits](https://github.com/seamapi/types/compare/v1.471.0...v1.474.0) --- updated-dependencies: - dependency-name: "@seamapi/types" dependency-version: 1.474.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 3d6d6e8..f9a94a2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8,7 +8,7 @@ "devDependencies": { "@seamapi/fake-seam-connect": "1.83.2", "@seamapi/nextlove-sdk-generator": "^1.19.0", - "@seamapi/types": "1.471.0", + "@seamapi/types": "1.474.0", "del": "^7.1.0", "markdown-toc": "^1.2.0", "prettier": "^3.2.5" @@ -476,9 +476,9 @@ } }, "node_modules/@seamapi/types": { - "version": "1.471.0", - "resolved": "https://registry.npmjs.org/@seamapi/types/-/types-1.471.0.tgz", - "integrity": "sha512-6zdP7J8I5e420Xm32+ccq+yCCsOUm6usWVCKL+R7zU8v7+MuXapJON43CIQD3wFLoHciTe/Z0VrUWT8TY0diOw==", + "version": "1.474.0", + "resolved": "https://registry.npmjs.org/@seamapi/types/-/types-1.474.0.tgz", + "integrity": "sha512-BZpkLOakSCgelXm5S8nQRCgos4aRqudpH7l2KEey82FZIvN14w2+7Y7VzOXH/gGRSNVu7oqFN2cCeqjC2jRb1w==", "dev": true, "license": "MIT", "engines": { diff --git a/package.json b/package.json index 9bae3ca..0d573d5 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "devDependencies": { "@seamapi/fake-seam-connect": "1.83.2", "@seamapi/nextlove-sdk-generator": "^1.19.0", - "@seamapi/types": "1.471.0", + "@seamapi/types": "1.474.0", "del": "^7.1.0", "markdown-toc": "^1.2.0", "prettier": "^3.2.5" From de18190c18c838c4ddb5e5845a75d5db0be1d4e6 Mon Sep 17 00:00:00 2001 From: Seam Bot Date: Mon, 28 Jul 2025 08:11:02 +0000 Subject: [PATCH 2/2] ci: Generate code --- lib/seam/routes/resources/acs_entrance.rb | 2 +- lib/seam/routes/resources/index.rb | 1 - lib/seam/routes/resources/location.rb | 11 ----------- 3 files changed, 1 insertion(+), 13 deletions(-) delete mode 100644 lib/seam/routes/resources/location.rb diff --git a/lib/seam/routes/resources/acs_entrance.rb b/lib/seam/routes/resources/acs_entrance.rb index 258e0eb..2e0be04 100644 --- a/lib/seam/routes/resources/acs_entrance.rb +++ b/lib/seam/routes/resources/acs_entrance.rb @@ -3,7 +3,7 @@ module Seam module Resources class AcsEntrance < BaseResource - attr_accessor :acs_entrance_id, :acs_system_id, :assa_abloy_vostio_metadata, :can_unlock_with_card, :can_unlock_with_code, :can_unlock_with_mobile_key, :connected_account_id, :display_name, :dormakaba_community_metadata, :latch_metadata, :salto_ks_metadata, :salto_space_metadata, :visionline_metadata + attr_accessor :acs_entrance_id, :acs_system_id, :assa_abloy_vostio_metadata, :can_unlock_with_card, :can_unlock_with_code, :can_unlock_with_mobile_key, :connected_account_id, :display_name, :dormakaba_ambiance_metadata, :dormakaba_community_metadata, :latch_metadata, :salto_ks_metadata, :salto_space_metadata, :visionline_metadata date_accessor :created_at diff --git a/lib/seam/routes/resources/index.rb b/lib/seam/routes/resources/index.rb index bb7a5f9..3adc03e 100644 --- a/lib/seam/routes/resources/index.rb +++ b/lib/seam/routes/resources/index.rb @@ -27,7 +27,6 @@ require_relative "enrollment_automation" require_relative "event" require_relative "instant_key" -require_relative "location" require_relative "magic_link" require_relative "noise_threshold" require_relative "pagination" diff --git a/lib/seam/routes/resources/location.rb b/lib/seam/routes/resources/location.rb deleted file mode 100644 index 2b7fab1..0000000 --- a/lib/seam/routes/resources/location.rb +++ /dev/null @@ -1,11 +0,0 @@ -# frozen_string_literal: true - -module Seam - module Resources - class Location < BaseResource - attr_accessor :display_name, :geolocation, :location_id, :name, :time_zone, :workspace_id - - date_accessor :created_at - end - end -end