Skip to content

Commit 52510f1

Browse files
feat(deps-dev): bump @seamapi/types from 1.703.0 to 1.704.0 in the seam group (#380)
* feat(deps-dev): bump @seamapi/types in the seam group Bumps the seam group with 1 update: [@seamapi/types](https://github.com/seamapi/types). Updates `@seamapi/types` from 1.703.0 to 1.704.0 - [Release notes](https://github.com/seamapi/types/releases) - [Commits](seamapi/types@v1.703.0...v1.704.0) --- updated-dependencies: - dependency-name: "@seamapi/types" dependency-version: 1.704.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 d96516c commit 52510f1

File tree

3 files changed

+41
-5
lines changed

3 files changed

+41
-5
lines changed

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"devDependencies": {
1414
"@prettier/plugin-php": "^0.24.0",
1515
"@seamapi/nextlove-sdk-generator": "^1.19.6",
16-
"@seamapi/types": "1.703.0",
16+
"@seamapi/types": "1.704.0",
1717
"del": "^7.1.0",
1818
"prettier": "^3.0.0"
1919
}

src/SeamClient.php

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4023,6 +4023,13 @@ public function get(
40234023
public function list(
40244024
?string $access_code_id = null,
40254025
?array $access_code_ids = null,
4026+
?string $access_grant_id = null,
4027+
?array $access_grant_ids = null,
4028+
?string $access_method_id = null,
4029+
?array $access_method_ids = null,
4030+
?string $acs_access_group_id = null,
4031+
?string $acs_credential_id = null,
4032+
?string $acs_encoder_id = null,
40264033
?string $acs_entrance_id = null,
40274034
?string $acs_system_id = null,
40284035
?array $acs_system_ids = null,
@@ -4038,6 +4045,8 @@ public function list(
40384045
?array $event_types = null,
40394046
?float $limit = null,
40404047
?string $since = null,
4048+
?string $space_id = null,
4049+
?array $space_ids = null,
40414050
?float $unstable_offset = null,
40424051
?string $user_identity_id = null,
40434052
): array {
@@ -4049,6 +4058,27 @@ public function list(
40494058
if ($access_code_ids !== null) {
40504059
$request_payload["access_code_ids"] = $access_code_ids;
40514060
}
4061+
if ($access_grant_id !== null) {
4062+
$request_payload["access_grant_id"] = $access_grant_id;
4063+
}
4064+
if ($access_grant_ids !== null) {
4065+
$request_payload["access_grant_ids"] = $access_grant_ids;
4066+
}
4067+
if ($access_method_id !== null) {
4068+
$request_payload["access_method_id"] = $access_method_id;
4069+
}
4070+
if ($access_method_ids !== null) {
4071+
$request_payload["access_method_ids"] = $access_method_ids;
4072+
}
4073+
if ($acs_access_group_id !== null) {
4074+
$request_payload["acs_access_group_id"] = $acs_access_group_id;
4075+
}
4076+
if ($acs_credential_id !== null) {
4077+
$request_payload["acs_credential_id"] = $acs_credential_id;
4078+
}
4079+
if ($acs_encoder_id !== null) {
4080+
$request_payload["acs_encoder_id"] = $acs_encoder_id;
4081+
}
40524082
if ($acs_entrance_id !== null) {
40534083
$request_payload["acs_entrance_id"] = $acs_entrance_id;
40544084
}
@@ -4094,6 +4124,12 @@ public function list(
40944124
if ($since !== null) {
40954125
$request_payload["since"] = $since;
40964126
}
4127+
if ($space_id !== null) {
4128+
$request_payload["space_id"] = $space_id;
4129+
}
4130+
if ($space_ids !== null) {
4131+
$request_payload["space_ids"] = $space_ids;
4132+
}
40974133
if ($unstable_offset !== null) {
40984134
$request_payload["unstable_offset"] = $unstable_offset;
40994135
}

0 commit comments

Comments
 (0)