From af486264627745e1ae6c9cda3c20216b39538f02 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 Apr 2026 06:17:06 +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.809.0 to 1.811.0 - [Release notes](https://github.com/seamapi/types/releases) - [Commits](https://github.com/seamapi/types/compare/v1.809.0...v1.811.0) --- updated-dependencies: - dependency-name: "@seamapi/types" dependency-version: 1.811.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 3741e72..657d275 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8,7 +8,7 @@ "devDependencies": { "@seamapi/fake-seam-connect": "1.86.0", "@seamapi/nextlove-sdk-generator": "^1.19.10", - "@seamapi/types": "1.809.0", + "@seamapi/types": "1.811.0", "del": "^7.1.0", "markdown-toc": "^1.2.0", "prettier": "^3.2.5" @@ -536,9 +536,9 @@ } }, "node_modules/@seamapi/types": { - "version": "1.809.0", - "resolved": "https://registry.npmjs.org/@seamapi/types/-/types-1.809.0.tgz", - "integrity": "sha512-xBrXorx5njf53vwoHSgEzXxL4Bul82kxKOzRVNs/K37VU4YcaLKQc1Q7ONuFPP/PfDSWP2pCOiRgzx99nrPiHQ==", + "version": "1.811.0", + "resolved": "https://registry.npmjs.org/@seamapi/types/-/types-1.811.0.tgz", + "integrity": "sha512-pKnGG3+OBDp1JXU8zvwbrYvXLvdJNCFAuey78igPRCrNgsd1v9w7XvA4Fefb4Yx4FHjPmArNQaAHy/TbgEtx0A==", "dev": true, "license": "MIT", "engines": { diff --git a/package.json b/package.json index 47e1665..7413f71 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "devDependencies": { "@seamapi/fake-seam-connect": "1.86.0", "@seamapi/nextlove-sdk-generator": "^1.19.10", - "@seamapi/types": "1.809.0", + "@seamapi/types": "1.811.0", "del": "^7.1.0", "markdown-toc": "^1.2.0", "prettier": "^3.2.5" From b5f559d286670ec2e4e0dfb968154b43f667d683 Mon Sep 17 00:00:00 2001 From: Seam Bot Date: Tue, 28 Apr 2026 06:17:42 +0000 Subject: [PATCH 2/2] ci: Generate code --- lib/seam/routes/clients/spaces.rb | 8 ++++---- lib/seam/routes/resources/space.rb | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/seam/routes/clients/spaces.rb b/lib/seam/routes/clients/spaces.rb index 498d5c0..5f0a029 100644 --- a/lib/seam/routes/clients/spaces.rb +++ b/lib/seam/routes/clients/spaces.rb @@ -20,8 +20,8 @@ def add_devices(device_ids:, space_id:) nil end - def create(name:, acs_entrance_ids: nil, customer_key: nil, device_ids: nil, space_key: nil) - res = @client.post("/spaces/create", {name: name, acs_entrance_ids: acs_entrance_ids, customer_key: customer_key, device_ids: device_ids, space_key: space_key}.compact) + def create(name:, acs_entrance_ids: nil, customer_data: nil, customer_key: nil, device_ids: nil, space_key: nil) + res = @client.post("/spaces/create", {name: name, acs_entrance_ids: acs_entrance_ids, customer_data: customer_data, customer_key: customer_key, device_ids: device_ids, space_key: space_key}.compact) Seam::Resources::Space.load_from_response(res.body["space"]) end @@ -62,8 +62,8 @@ def remove_devices(device_ids:, space_id:) nil end - def update(acs_entrance_ids: nil, customer_key: nil, device_ids: nil, name: nil, space_id: nil, space_key: nil) - res = @client.post("/spaces/update", {acs_entrance_ids: acs_entrance_ids, customer_key: customer_key, device_ids: device_ids, name: name, space_id: space_id, space_key: space_key}.compact) + def update(acs_entrance_ids: nil, customer_data: nil, customer_key: nil, device_ids: nil, name: nil, space_id: nil, space_key: nil) + res = @client.post("/spaces/update", {acs_entrance_ids: acs_entrance_ids, customer_data: customer_data, customer_key: customer_key, device_ids: device_ids, name: name, space_id: space_id, space_key: space_key}.compact) Seam::Resources::Space.load_from_response(res.body["space"]) end diff --git a/lib/seam/routes/resources/space.rb b/lib/seam/routes/resources/space.rb index d867e09..fd8978c 100644 --- a/lib/seam/routes/resources/space.rb +++ b/lib/seam/routes/resources/space.rb @@ -3,7 +3,7 @@ module Seam module Resources class Space < BaseResource - attr_accessor :acs_entrance_count, :customer_key, :device_count, :display_name, :name, :parent_space_id, :parent_space_key, :space_id, :space_key, :workspace_id + attr_accessor :acs_entrance_count, :customer_data, :customer_key, :device_count, :display_name, :name, :parent_space_id, :parent_space_key, :space_id, :space_key, :workspace_id date_accessor :created_at end