Skip to content

Commit 7e2d7e0

Browse files
feat(deps-dev): bump @seamapi/types from 1.757.0 to 1.761.0 in the seam group (#407)
* 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.757.0 to 1.761.0 - [Release notes](https://github.com/seamapi/types/releases) - [Commits](seamapi/types@v1.757.0...v1.761.0) --- updated-dependencies: - dependency-name: "@seamapi/types" dependency-version: 1.761.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 fdced4a commit 7e2d7e0

File tree

3 files changed

+18
-5
lines changed

3 files changed

+18
-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.8",
16-
"@seamapi/types": "1.757.0",
16+
"@seamapi/types": "1.761.0",
1717
"del": "^7.1.0",
1818
"prettier": "^3.0.0"
1919
}

src/SeamClient.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1195,8 +1195,11 @@ public function get(string $access_grant_id): void
11951195
public function list(
11961196
?string $acs_entrance_id = null,
11971197
?string $acs_system_id = null,
1198+
?float $limit = null,
1199+
?string $page_cursor = null,
11981200
?string $reservation_key = null,
11991201
?string $user_identity_id = null,
1202+
?callable $on_response = null,
12001203
): void {
12011204
$request_payload = [];
12021205

@@ -1206,6 +1209,12 @@ public function list(
12061209
if ($acs_system_id !== null) {
12071210
$request_payload["acs_system_id"] = $acs_system_id;
12081211
}
1212+
if ($limit !== null) {
1213+
$request_payload["limit"] = $limit;
1214+
}
1215+
if ($page_cursor !== null) {
1216+
$request_payload["page_cursor"] = $page_cursor;
1217+
}
12091218
if ($reservation_key !== null) {
12101219
$request_payload["reservation_key"] = $reservation_key;
12111220
}
@@ -1218,6 +1227,10 @@ public function list(
12181227
"/access_grants/unmanaged/list",
12191228
json: (object) $request_payload,
12201229
);
1230+
1231+
if ($on_response !== null) {
1232+
$on_response($res);
1233+
}
12211234
}
12221235

12231236
public function update(

0 commit comments

Comments
 (0)