From 4f9545fce4cf5fdf33df5cccd6555c1bfbb8684a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Apr 2026 03:43:29 +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.783.0 to 1.785.0 - [Release notes](https://github.com/seamapi/types/releases) - [Commits](https://github.com/seamapi/types/compare/v1.783.0...v1.785.0) --- updated-dependencies: - dependency-name: "@seamapi/types" dependency-version: 1.785.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 a91a0ed..b58994c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -11,7 +11,7 @@ "devDependencies": { "@prettier/plugin-php": "^0.24.0", "@seamapi/nextlove-sdk-generator": "^1.19.10", - "@seamapi/types": "1.783.0", + "@seamapi/types": "1.785.0", "del": "^7.1.0", "prettier": "^3.0.0" } @@ -533,9 +533,9 @@ } }, "node_modules/@seamapi/types": { - "version": "1.783.0", - "resolved": "https://registry.npmjs.org/@seamapi/types/-/types-1.783.0.tgz", - "integrity": "sha512-lDcuQwLtVSoAEE7p2UJYdVJ8w3NdHeD/3LEjtjTQizfd1lClpOtakpSMcblT7NfPgPLWMpCy5DTLu235hLkleA==", + "version": "1.785.0", + "resolved": "https://registry.npmjs.org/@seamapi/types/-/types-1.785.0.tgz", + "integrity": "sha512-TIgTqdahRXW/WnKtK2+fj3y73hfADC3kPcViA4LRnwtvpkihO/LqmysFmdlazweCMDcjQtvmRf8vIP28Q8BppA==", "dev": true, "license": "MIT", "engines": { diff --git a/package.json b/package.json index 15693e7..e31c61e 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "devDependencies": { "@prettier/plugin-php": "^0.24.0", "@seamapi/nextlove-sdk-generator": "^1.19.10", - "@seamapi/types": "1.783.0", + "@seamapi/types": "1.785.0", "del": "^7.1.0", "prettier": "^3.0.0" } From 705c52ef6b7548874d6bd9640c5bc4a76b57a6f8 Mon Sep 17 00:00:00 2001 From: Seam Bot Date: Fri, 10 Apr 2026 03:43:43 +0000 Subject: [PATCH 2/2] ci: Generate code --- src/SeamClient.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/SeamClient.php b/src/SeamClient.php index 29e6a68..ae60cbb 100644 --- a/src/SeamClient.php +++ b/src/SeamClient.php @@ -420,6 +420,7 @@ public function get( public function list( ?array $access_code_ids = null, + ?string $access_grant_id = null, ?string $access_method_id = null, ?string $customer_key = null, ?string $device_id = null, @@ -434,6 +435,9 @@ public function list( if ($access_code_ids !== null) { $request_payload["access_code_ids"] = $access_code_ids; } + if ($access_grant_id !== null) { + $request_payload["access_grant_id"] = $access_grant_id; + } if ($access_method_id !== null) { $request_payload["access_method_id"] = $access_method_id; } @@ -999,6 +1003,7 @@ public function get_related( } public function list( + ?string $access_code_id = null, ?array $access_grant_ids = null, ?string $access_grant_key = null, ?string $acs_entrance_id = null, @@ -1014,6 +1019,9 @@ public function list( ): array { $request_payload = []; + if ($access_code_id !== null) { + $request_payload["access_code_id"] = $access_code_id; + } if ($access_grant_ids !== null) { $request_payload["access_grant_ids"] = $access_grant_ids; } @@ -1316,6 +1324,7 @@ public function get_related( } public function list( + ?string $access_code_id = null, ?string $access_grant_id = null, ?string $access_grant_key = null, ?string $acs_entrance_id = null, @@ -1324,6 +1333,9 @@ public function list( ): array { $request_payload = []; + if ($access_code_id !== null) { + $request_payload["access_code_id"] = $access_code_id; + } if ($access_grant_id !== null) { $request_payload["access_grant_id"] = $access_grant_id; }