From 85c6d20a90e49920954ff1a3d918adcea05dbb06 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 4 Jun 2025 06:27:50 +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.406.5 to 1.406.7 - [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.406.5...v1.406.7) --- updated-dependencies: - dependency-name: "@seamapi/types" dependency-version: 1.406.7 dependency-type: direct:development update-type: version-update:semver-patch 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 1b9c4348..3bc906ba 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8,7 +8,7 @@ "devDependencies": { "@seamapi/fake-seam-connect": "1.83.0", "@seamapi/nextlove-sdk-generator": "^1.18.1", - "@seamapi/types": "1.406.5", + "@seamapi/types": "1.406.7", "del": "^7.1.0", "markdown-toc": "^1.2.0", "prettier": "^3.2.5" @@ -476,9 +476,9 @@ } }, "node_modules/@seamapi/types": { - "version": "1.406.5", - "resolved": "https://registry.npmjs.org/@seamapi/types/-/types-1.406.5.tgz", - "integrity": "sha512-5+RiJdK5nhjCW8gc8T88FnPsFnYM/acGmzTCgKYc0254LJkL1cDIa9JKI8lbnOMbHMenhKR/JQVGQGx6OHaVTA==", + "version": "1.406.7", + "resolved": "https://registry.npmjs.org/@seamapi/types/-/types-1.406.7.tgz", + "integrity": "sha512-aE3gCgEvNTbQziVNTYRFninpOFEOGjv+jPbbthtWG0YREuEdcTE1wBIKIdkljPNy0PGjpv7lzB9HRnlxv4NLcw==", "dev": true, "license": "MIT", "engines": { diff --git a/package.json b/package.json index 4c6e2f9f..2c99d740 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "devDependencies": { "@seamapi/fake-seam-connect": "1.83.0", "@seamapi/nextlove-sdk-generator": "^1.18.1", - "@seamapi/types": "1.406.5", + "@seamapi/types": "1.406.7", "del": "^7.1.0", "markdown-toc": "^1.2.0", "prettier": "^3.2.5" From 7c59473110a360581459a0393d78d1824fc4f063 Mon Sep 17 00:00:00 2001 From: Seam Bot Date: Wed, 4 Jun 2025 06:28:22 +0000 Subject: [PATCH 2/2] ci: Generate code --- lib/seam/routes/clients/connect_webviews.rb | 4 ++-- lib/seam/routes/resources/client_session.rb | 2 +- lib/seam/routes/resources/index.rb | 1 + lib/seam/routes/resources/magic_link.rb | 11 +++++++++++ 4 files changed, 15 insertions(+), 3 deletions(-) create mode 100644 lib/seam/routes/resources/magic_link.rb diff --git a/lib/seam/routes/clients/connect_webviews.rb b/lib/seam/routes/clients/connect_webviews.rb index 67f5c07c..e49f8e41 100644 --- a/lib/seam/routes/clients/connect_webviews.rb +++ b/lib/seam/routes/clients/connect_webviews.rb @@ -26,8 +26,8 @@ def get(connect_webview_id:) Seam::Resources::ConnectWebview.load_from_response(res.body["connect_webview"]) end - def list(custom_metadata_has: nil, customer_id: nil, limit: nil, user_identifier_key: nil) - res = @client.post("/connect_webviews/list", {custom_metadata_has: custom_metadata_has, customer_id: customer_id, limit: limit, user_identifier_key: user_identifier_key}.compact) + def list(custom_metadata_has: nil, customer_ids: nil, limit: nil, user_identifier_key: nil) + res = @client.post("/connect_webviews/list", {custom_metadata_has: custom_metadata_has, customer_ids: customer_ids, limit: limit, user_identifier_key: user_identifier_key}.compact) Seam::Resources::ConnectWebview.load_from_response(res.body["connect_webviews"]) end diff --git a/lib/seam/routes/resources/client_session.rb b/lib/seam/routes/resources/client_session.rb index 87ae0355..315ac143 100644 --- a/lib/seam/routes/resources/client_session.rb +++ b/lib/seam/routes/resources/client_session.rb @@ -3,7 +3,7 @@ module Seam module Resources class ClientSession < BaseResource - attr_accessor :client_session_id, :connect_webview_ids, :connected_account_ids, :device_count, :token, :user_identifier_key, :user_identity_ids, :workspace_id + attr_accessor :client_session_id, :connect_webview_ids, :connected_account_ids, :customer_id, :device_count, :token, :user_identifier_key, :user_identity_ids, :workspace_id date_accessor :created_at, :expires_at end diff --git a/lib/seam/routes/resources/index.rb b/lib/seam/routes/resources/index.rb index 222d49bd..311be2a6 100644 --- a/lib/seam/routes/resources/index.rb +++ b/lib/seam/routes/resources/index.rb @@ -23,6 +23,7 @@ require_relative "enrollment_automation" require_relative "event" require_relative "instant_key" +require_relative "magic_link" require_relative "network" require_relative "noise_threshold" require_relative "pagination" diff --git a/lib/seam/routes/resources/magic_link.rb b/lib/seam/routes/resources/magic_link.rb new file mode 100644 index 00000000..f0f08404 --- /dev/null +++ b/lib/seam/routes/resources/magic_link.rb @@ -0,0 +1,11 @@ +# frozen_string_literal: true + +module Seam + module Resources + class MagicLink < BaseResource + attr_accessor :building_block_type, :customer_id, :customer_key, :url, :workspace_id + + date_accessor :created_at, :expires_at + end + end +end