Skip to content

Commit 30c3a59

Browse files
committed
ci: Generate code
1 parent eed7c44 commit 30c3a59

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

package-lock.json

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

src/SeamClient.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3290,6 +3290,7 @@ public function create_portal(
32903290
?bool $is_embedded = null,
32913291
mixed $landing_page = null,
32923292
?string $locale = null,
3293+
mixed $property_listing_filter = null,
32933294
mixed $customer_data = null,
32943295
): MagicLink {
32953296
$request_payload = [];
@@ -3311,6 +3312,11 @@ public function create_portal(
33113312
if ($locale !== null) {
33123313
$request_payload["locale"] = $locale;
33133314
}
3315+
if ($property_listing_filter !== null) {
3316+
$request_payload[
3317+
"property_listing_filter"
3318+
] = $property_listing_filter;
3319+
}
33143320
if ($customer_data !== null) {
33153321
$request_payload["customer_data"] = $customer_data;
33163322
}

0 commit comments

Comments
 (0)