Skip to content

Commit 0500c15

Browse files
feat(deps-dev): Bump @seamapi/types from 1.586.0 to 1.587.0 in the seam group (#328)
* 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.586.0 to 1.587.0 - [Release notes](https://github.com/seamapi/types/releases) - [Changelog](https://github.com/seamapi/types/blob/main/.releaserc.json) - [Commits](seamapi/types@v1.586.0...v1.587.0) --- updated-dependencies: - dependency-name: "@seamapi/types" dependency-version: 1.587.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 e1aafbc commit 0500c15

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

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.1",
16-
"@seamapi/types": "1.586.0",
16+
"@seamapi/types": "1.587.0",
1717
"del": "^7.1.0",
1818
"prettier": "^3.0.0"
1919
}

src/SeamClient.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4660,6 +4660,7 @@ public function add_devices(array $device_ids, string $space_id): void
46604660
public function create(
46614661
string $name,
46624662
?array $acs_entrance_ids = null,
4663+
?string $customer_key = null,
46634664
?array $device_ids = null,
46644665
?string $space_key = null,
46654666
): Space {
@@ -4671,6 +4672,9 @@ public function create(
46714672
if ($acs_entrance_ids !== null) {
46724673
$request_payload["acs_entrance_ids"] = $acs_entrance_ids;
46734674
}
4675+
if ($customer_key !== null) {
4676+
$request_payload["customer_key"] = $customer_key;
4677+
}
46744678
if ($device_ids !== null) {
46754679
$request_payload["device_ids"] = $device_ids;
46764680
}
@@ -4822,6 +4826,7 @@ public function remove_devices(array $device_ids, string $space_id): void
48224826

48234827
public function update(
48244828
?array $acs_entrance_ids = null,
4829+
?string $customer_key = null,
48254830
?array $device_ids = null,
48264831
?string $name = null,
48274832
?string $space_id = null,
@@ -4832,6 +4837,9 @@ public function update(
48324837
if ($acs_entrance_ids !== null) {
48334838
$request_payload["acs_entrance_ids"] = $acs_entrance_ids;
48344839
}
4840+
if ($customer_key !== null) {
4841+
$request_payload["customer_key"] = $customer_key;
4842+
}
48354843
if ($device_ids !== null) {
48364844
$request_payload["device_ids"] = $device_ids;
48374845
}

0 commit comments

Comments
 (0)