Skip to content

Commit

Permalink
Merge pull request #203 from seamapi/dependabot/npm_and_yarn/seam-688…
Browse files Browse the repository at this point in the history
…770e6c7

feat(deps-dev): Bump @seamapi/types from 1.279.0 to 1.283.0 in the seam group
  • Loading branch information
seambot authored Oct 30, 2024
2 parents 9e55a7e + 06c0a03 commit 53e117e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"devDependencies": {
"@prettier/plugin-php": "^0.22.1",
"@seamapi/nextlove-sdk-generator": "1.14.6",
"@seamapi/types": "1.279.0",
"@seamapi/types": "1.283.0",
"del": "^7.1.0",
"prettier": "^3.0.0"
}
Expand Down
8 changes: 8 additions & 0 deletions src/SeamClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -2859,6 +2859,8 @@ public function get(
public function list(
string $access_code_id = null,
array $access_code_ids = null,
string $acs_system_id = null,
array $acs_system_ids = null,
array $between = null,
string $connect_webview_id = null,
string $connected_account_id = null,
Expand All @@ -2878,6 +2880,12 @@ public function list(
if ($access_code_ids !== null) {
$request_payload["access_code_ids"] = $access_code_ids;
}
if ($acs_system_id !== null) {
$request_payload["acs_system_id"] = $acs_system_id;
}
if ($acs_system_ids !== null) {
$request_payload["acs_system_ids"] = $acs_system_ids;
}
if ($between !== null) {
$request_payload["between"] = $between;
}
Expand Down

0 comments on commit 53e117e

Please sign in to comment.