Skip to content

Commit 73e6fc3

Browse files
committed
ci: Generate code
1 parent 8703584 commit 73e6fc3

6 files changed

Lines changed: 74 additions & 0 deletions

File tree

src/Objects/AcsAccessGroup.php

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

src/Objects/AcsAccessGroupErrors.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/Objects/Space.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/UnmanagedAcsAccessGroup.php

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

src/Objects/UnmanagedAcsAccessGroupErrors.php

Lines changed: 25 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: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5037,14 +5037,23 @@ public function get_related(
50375037

50385038
public function list(
50395039
?string $customer_key = null,
5040+
?float $limit = null,
5041+
?string $page_cursor = null,
50405042
?string $search = null,
50415043
?string $space_key = null,
5044+
?callable $on_response = null,
50425045
): array {
50435046
$request_payload = [];
50445047

50455048
if ($customer_key !== null) {
50465049
$request_payload["customer_key"] = $customer_key;
50475050
}
5051+
if ($limit !== null) {
5052+
$request_payload["limit"] = $limit;
5053+
}
5054+
if ($page_cursor !== null) {
5055+
$request_payload["page_cursor"] = $page_cursor;
5056+
}
50485057
if ($search !== null) {
50495058
$request_payload["search"] = $search;
50505059
}
@@ -5058,6 +5067,10 @@ public function list(
50585067
json: (object) $request_payload,
50595068
);
50605069

5070+
if ($on_response !== null) {
5071+
$on_response($res);
5072+
}
5073+
50615074
return array_map(fn($r) => Space::from_json($r), $res->spaces);
50625075
}
50635076

0 commit comments

Comments
 (0)