Skip to content

Commit 705c52e

Browse files
committed
ci: Generate code
1 parent 4f9545f commit 705c52e

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

src/SeamClient.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -420,6 +420,7 @@ public function get(
420420

421421
public function list(
422422
?array $access_code_ids = null,
423+
?string $access_grant_id = null,
423424
?string $access_method_id = null,
424425
?string $customer_key = null,
425426
?string $device_id = null,
@@ -434,6 +435,9 @@ public function list(
434435
if ($access_code_ids !== null) {
435436
$request_payload["access_code_ids"] = $access_code_ids;
436437
}
438+
if ($access_grant_id !== null) {
439+
$request_payload["access_grant_id"] = $access_grant_id;
440+
}
437441
if ($access_method_id !== null) {
438442
$request_payload["access_method_id"] = $access_method_id;
439443
}
@@ -999,6 +1003,7 @@ public function get_related(
9991003
}
10001004

10011005
public function list(
1006+
?string $access_code_id = null,
10021007
?array $access_grant_ids = null,
10031008
?string $access_grant_key = null,
10041009
?string $acs_entrance_id = null,
@@ -1014,6 +1019,9 @@ public function list(
10141019
): array {
10151020
$request_payload = [];
10161021

1022+
if ($access_code_id !== null) {
1023+
$request_payload["access_code_id"] = $access_code_id;
1024+
}
10171025
if ($access_grant_ids !== null) {
10181026
$request_payload["access_grant_ids"] = $access_grant_ids;
10191027
}
@@ -1316,6 +1324,7 @@ public function get_related(
13161324
}
13171325

13181326
public function list(
1327+
?string $access_code_id = null,
13191328
?string $access_grant_id = null,
13201329
?string $access_grant_key = null,
13211330
?string $acs_entrance_id = null,
@@ -1324,6 +1333,9 @@ public function list(
13241333
): array {
13251334
$request_payload = [];
13261335

1336+
if ($access_code_id !== null) {
1337+
$request_payload["access_code_id"] = $access_code_id;
1338+
}
13271339
if ($access_grant_id !== null) {
13281340
$request_payload["access_grant_id"] = $access_grant_id;
13291341
}

0 commit comments

Comments
 (0)