Skip to content

Commit 2a8ee59

Browse files
feat(deps-dev): bump @seamapi/types from 1.809.0 to 1.811.0 in the seam group (#433)
* 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](seamapi/types@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] <support@github.com> * ci: Generate code --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Seam Bot <seambot@getseam.com>
1 parent a5bebba commit 2a8ee59

5 files changed

Lines changed: 41 additions & 5 deletions

File tree

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"devDependencies": {
1414
"@prettier/plugin-php": "^0.24.0",
1515
"@seamapi/nextlove-sdk-generator": "^1.19.10",
16-
"@seamapi/types": "1.809.0",
16+
"@seamapi/types": "1.811.0",
1717
"del": "^7.1.0",
1818
"prettier": "^3.0.0"
1919
}

src/Objects/Space.php

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Objects/SpaceCustomerData.php

Lines changed: 24 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/SeamClient.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4956,6 +4956,7 @@ public function add_devices(array $device_ids, string $space_id): void
49564956
public function create(
49574957
string $name,
49584958
?array $acs_entrance_ids = null,
4959+
mixed $customer_data = null,
49594960
?string $customer_key = null,
49604961
?array $device_ids = null,
49614962
?string $space_key = null,
@@ -4968,6 +4969,9 @@ public function create(
49684969
if ($acs_entrance_ids !== null) {
49694970
$request_payload["acs_entrance_ids"] = $acs_entrance_ids;
49704971
}
4972+
if ($customer_data !== null) {
4973+
$request_payload["customer_data"] = $customer_data;
4974+
}
49714975
if ($customer_key !== null) {
49724976
$request_payload["customer_key"] = $customer_key;
49734977
}
@@ -5133,6 +5137,7 @@ public function remove_devices(array $device_ids, string $space_id): void
51335137

51345138
public function update(
51355139
?array $acs_entrance_ids = null,
5140+
mixed $customer_data = null,
51365141
?string $customer_key = null,
51375142
?array $device_ids = null,
51385143
?string $name = null,
@@ -5144,6 +5149,9 @@ public function update(
51445149
if ($acs_entrance_ids !== null) {
51455150
$request_payload["acs_entrance_ids"] = $acs_entrance_ids;
51465151
}
5152+
if ($customer_data !== null) {
5153+
$request_payload["customer_data"] = $customer_data;
5154+
}
51475155
if ($customer_key !== null) {
51485156
$request_payload["customer_key"] = $customer_key;
51495157
}

0 commit comments

Comments
 (0)