We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b3c29a commit 1f7b43aCopy full SHA for 1f7b43a
1 file changed
src/SeamClient.php
@@ -2760,6 +2760,7 @@ public function create(
2760
?string $custom_redirect_url = null,
2761
?string $customer_key = null,
2762
?string $device_selection_mode = null,
2763
+ ?array $excluded_providers = null,
2764
?string $provider_category = null,
2765
?bool $wait_for_device_creation = null,
2766
): ConnectWebview {
@@ -2793,6 +2794,9 @@ public function create(
2793
2794
if ($device_selection_mode !== null) {
2795
$request_payload["device_selection_mode"] = $device_selection_mode;
2796
}
2797
+ if ($excluded_providers !== null) {
2798
+ $request_payload["excluded_providers"] = $excluded_providers;
2799
+ }
2800
if ($provider_category !== null) {
2801
$request_payload["provider_category"] = $provider_category;
2802
0 commit comments