Skip to content

Commit 49f8a86

Browse files
committed
ci: Generate code
1 parent 90c438b commit 49f8a86

3 files changed

Lines changed: 13 additions & 3 deletions

File tree

src/Objects/AccessMethod.php

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

src/Objects/UnmanagedAccessCode.php

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

src/SeamClient.php

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -460,6 +460,7 @@ public function get_timeline(
460460

461461
public function list(
462462
?array $access_code_ids = null,
463+
?string $access_method_id = null,
463464
?string $customer_key = null,
464465
?string $device_id = null,
465466
?float $limit = null,
@@ -473,6 +474,9 @@ public function list(
473474
if ($access_code_ids !== null) {
474475
$request_payload["access_code_ids"] = $access_code_ids;
475476
}
477+
if ($access_method_id !== null) {
478+
$request_payload["access_method_id"] = $access_method_id;
479+
}
476480
if ($customer_key !== null) {
477481
$request_payload["customer_key"] = $customer_key;
478482
}
@@ -1350,7 +1354,8 @@ public function get_related(
13501354
}
13511355

13521356
public function list(
1353-
string $access_grant_id,
1357+
?string $access_grant_id = null,
1358+
?string $access_grant_key = null,
13541359
?string $acs_entrance_id = null,
13551360
?string $device_id = null,
13561361
?string $space_id = null,
@@ -1360,6 +1365,9 @@ public function list(
13601365
if ($access_grant_id !== null) {
13611366
$request_payload["access_grant_id"] = $access_grant_id;
13621367
}
1368+
if ($access_grant_key !== null) {
1369+
$request_payload["access_grant_key"] = $access_grant_key;
1370+
}
13631371
if ($acs_entrance_id !== null) {
13641372
$request_payload["acs_entrance_id"] = $acs_entrance_id;
13651373
}

0 commit comments

Comments
 (0)