From 7c906ae0bba262e8e29dde47e626f3200f10f312 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 May 2026 08:23:16 +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.827.0 to 1.828.0 - [Release notes](https://github.com/seamapi/types/releases) - [Commits](https://github.com/seamapi/types/compare/v1.827.0...v1.828.0) --- updated-dependencies: - dependency-name: "@seamapi/types" dependency-version: 1.828.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 229cb23..045f9c4 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.827.0", + "@seamapi/types": "1.828.0", "del": "^7.1.0", "prettier": "^3.0.0" } @@ -533,9 +533,9 @@ } }, "node_modules/@seamapi/types": { - "version": "1.827.0", - "resolved": "https://registry.npmjs.org/@seamapi/types/-/types-1.827.0.tgz", - "integrity": "sha512-6O00BEPCobbqKnNYm5948p+bA6LKk1N3QJaZBXILLOK2hu06QscpB9XxmLl1bhHANQMehtXGPAjA/bDccpMQtA==", + "version": "1.828.0", + "resolved": "https://registry.npmjs.org/@seamapi/types/-/types-1.828.0.tgz", + "integrity": "sha512-hWCAbJBiEtsRK+N8cargp9bI1vXUQ3B6Azj7Jf2WGlVoHRk3NveFwRW1aY+JaCTqlxk7bXfURmeIcLDuFpXfbw==", "dev": true, "license": "MIT", "engines": { diff --git a/package.json b/package.json index 330f834..3705d73 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.827.0", + "@seamapi/types": "1.828.0", "del": "^7.1.0", "prettier": "^3.0.0" } From 42a82e237f60c3e7aaa1f319735a5e5c232d0d9d Mon Sep 17 00:00:00 2001 From: Seam Bot Date: Tue, 12 May 2026 08:23:32 +0000 Subject: [PATCH 2/2] ci: Generate code --- src/Objects/AccessGrantErrors.php | 2 ++ src/Objects/Event.php | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/Objects/AccessGrantErrors.php b/src/Objects/AccessGrantErrors.php index 5e0ea23..5ae9d80 100644 --- a/src/Objects/AccessGrantErrors.php +++ b/src/Objects/AccessGrantErrors.php @@ -13,6 +13,7 @@ public static function from_json(mixed $json): AccessGrantErrors|null created_at: $json->created_at, error_code: $json->error_code, message: $json->message, + missing_device_ids: $json->missing_device_ids ?? null, ); } @@ -20,5 +21,6 @@ public function __construct( public string $created_at, public string $error_code, public string $message, + public array|null $missing_device_ids, ) {} } diff --git a/src/Objects/Event.php b/src/Objects/Event.php index 709d5da..80f3210 100644 --- a/src/Objects/Event.php +++ b/src/Objects/Event.php @@ -102,6 +102,7 @@ public static function from_json(mixed $json): Event|null is_via_nfc: $json->is_via_nfc ?? null, method: $json->method ?? null, minut_metadata: $json->minut_metadata ?? null, + missing_device_ids: $json->missing_device_ids ?? null, motion_sub_type: $json->motion_sub_type ?? null, noise_level_decibels: $json->noise_level_decibels ?? null, noise_level_nrs: $json->noise_level_nrs ?? null, @@ -189,6 +190,7 @@ public function __construct( public bool|null $is_via_nfc, public string|null $method, public mixed $minut_metadata, + public array|null $missing_device_ids, public string|null $motion_sub_type, public float|null $noise_level_decibels, public float|null $noise_level_nrs,