Skip to content

Commit b2c7412

Browse files
feat(deps-dev): bump @seamapi/types from 1.679.0 to 1.682.0 in the seam group (#366)
* 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.679.0 to 1.682.0 - [Release notes](https://github.com/seamapi/types/releases) - [Commits](seamapi/types@v1.679.0...v1.682.0) --- updated-dependencies: - dependency-name: "@seamapi/types" dependency-version: 1.682.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 f450119 commit b2c7412

5 files changed

Lines changed: 25 additions & 5 deletions

File tree

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

src/Objects/DeviceSaltoKsMetadata.php

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

src/Objects/DeviceUltraloqMetadata.php

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

src/SeamClient.php

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3655,6 +3655,21 @@ public function list_device_providers(
36553655
);
36563656
}
36573657

3658+
public function report_provider_metadata(array $devices): void
3659+
{
3660+
$request_payload = [];
3661+
3662+
if ($devices !== null) {
3663+
$request_payload["devices"] = $devices;
3664+
}
3665+
3666+
$this->seam->request(
3667+
"POST",
3668+
"/devices/report_provider_metadata",
3669+
json: (object) $request_payload,
3670+
);
3671+
}
3672+
36583673
public function update(
36593674
string $device_id,
36603675
mixed $custom_metadata = null,

0 commit comments

Comments
 (0)