Skip to content

Commit 42649d8

Browse files
feat(deps-dev): Bump the seam group with 2 updates (#324)
* feat(deps-dev): Bump the seam group with 2 updates Bumps the seam group with 2 updates: [@seamapi/nextlove-sdk-generator](https://github.com/seamapi/nextlove-sdk-generator) and [@seamapi/types](https://github.com/seamapi/types). Updates `@seamapi/nextlove-sdk-generator` from 1.19.0 to 1.19.1 - [Commits](https://github.com/seamapi/nextlove-sdk-generator/commits) Updates `@seamapi/types` from 1.575.0 to 1.577.0 - [Release notes](https://github.com/seamapi/types/releases) - [Changelog](https://github.com/seamapi/types/blob/main/.releaserc.json) - [Commits](seamapi/types@v1.575.0...v1.577.0) --- updated-dependencies: - dependency-name: "@seamapi/nextlove-sdk-generator" dependency-version: 1.19.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: seam - dependency-name: "@seamapi/types" dependency-version: 1.577.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: seam ... Signed-off-by: dependabot[bot] <support@github.com> * ci: Generate code --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Seam Bot <seambot@getseam.com>
1 parent 48a550e commit 42649d8

File tree

3 files changed

+14
-10
lines changed

3 files changed

+14
-10
lines changed

package-lock.json

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
},
1313
"devDependencies": {
1414
"@prettier/plugin-php": "^0.24.0",
15-
"@seamapi/nextlove-sdk-generator": "^1.19.0",
16-
"@seamapi/types": "1.575.0",
15+
"@seamapi/nextlove-sdk-generator": "^1.19.1",
16+
"@seamapi/types": "1.577.0",
1717
"del": "^7.1.0",
1818
"prettier": "^3.0.0"
1919
}

src/SeamClient.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2760,6 +2760,7 @@ public function create(
27602760
?string $custom_redirect_url = null,
27612761
?string $customer_key = null,
27622762
?string $device_selection_mode = null,
2763+
?array $excluded_providers = null,
27632764
?string $provider_category = null,
27642765
?bool $wait_for_device_creation = null,
27652766
): ConnectWebview {
@@ -2793,6 +2794,9 @@ public function create(
27932794
if ($device_selection_mode !== null) {
27942795
$request_payload["device_selection_mode"] = $device_selection_mode;
27952796
}
2797+
if ($excluded_providers !== null) {
2798+
$request_payload["excluded_providers"] = $excluded_providers;
2799+
}
27962800
if ($provider_category !== null) {
27972801
$request_payload["provider_category"] = $provider_category;
27982802
}

0 commit comments

Comments
 (0)