Skip to content

Commit d4ca8ab

Browse files
dependabot[bot]seambotrazor-x
authored
feat(deps-dev): bump @seamapi/types from 1.157.1 to 1.168.0 in the seam group (#102)
* 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.157.1 to 1.168.0 - [Release notes](https://github.com/seamapi/types/releases) - [Changelog](https://github.com/seamapi/types/blob/main/.releaserc.json) - [Commits](seamapi/types@v1.157.1...v1.168.0) --- updated-dependencies: - dependency-name: "@seamapi/types" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: seam ... Signed-off-by: dependabot[bot] <[email protected]> * ci: Generate code --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Seam Bot <[email protected]> Co-authored-by: Evan Sosenko <[email protected]>
1 parent 568828c commit d4ca8ab

9 files changed

+68
-13
lines changed

package-lock.json

+4-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"devDependencies": {
1414
"@prettier/plugin-php": "^0.22.1",
1515
"@seamapi/nextlove-sdk-generator": "1.8.5",
16-
"@seamapi/types": "1.157.1",
16+
"@seamapi/types": "1.168.0",
1717
"del": "^7.1.0",
1818
"prettier": "^3.0.0"
1919
}

src/Objects/AcsCredentialVisionlineMetadata.php

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Objects/AcsEntrance.php

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Objects/AcsEntranceErrors.php

+25
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Objects/AcsSystem.php

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Objects/DeviceAvigilonAltaMetadata.php

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Objects/Event.php

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/SeamClient.php

+8-2
Original file line numberDiff line numberDiff line change
@@ -1161,8 +1161,11 @@ public function unassign(
11611161
);
11621162
}
11631163

1164-
public function update(string $acs_credential_id, string $code): void
1165-
{
1164+
public function update(
1165+
string $acs_credential_id,
1166+
string $code = null,
1167+
string $ends_at = null
1168+
): void {
11661169
$request_payload = [];
11671170

11681171
if ($acs_credential_id !== null) {
@@ -1171,6 +1174,9 @@ public function update(string $acs_credential_id, string $code): void
11711174
if ($code !== null) {
11721175
$request_payload["code"] = $code;
11731176
}
1177+
if ($ends_at !== null) {
1178+
$request_payload["ends_at"] = $ends_at;
1179+
}
11741180

11751181
$this->seam->request(
11761182
"POST",

0 commit comments

Comments
 (0)