Skip to content

Commit f4064f6

Browse files
feat(deps-dev): bump @seamapi/types from 1.975.0 to 1.979.0 in the seam group (#453)
* 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.975.0 to 1.979.0 - [Release notes](https://github.com/seamapi/types/releases) - [Commits](seamapi/types@v1.975.0...v1.979.0) --- updated-dependencies: - dependency-name: "@seamapi/types" dependency-version: 1.979.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 1b80215 commit f4064f6

8 files changed

Lines changed: 104 additions & 5 deletions

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
@@ -18,7 +18,7 @@
1818
"@prettier/plugin-php": "^0.24.0",
1919
"@seamapi/blueprint": "^1.0.0",
2020
"@seamapi/smith": "^1.0.0",
21-
"@seamapi/types": "1.975.0",
21+
"@seamapi/types": "1.979.0",
2222
"change-case": "^5.4.4",
2323
"prettier": "^3.0.0"
2424
}

src/Objects/AcsEntrance.php

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

src/Objects/AcsEntranceActions.php

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

src/Objects/AcsEntranceAkilesMetadata.php

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

src/Objects/DeviceAqaraMetadata.php

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

src/Objects/DeviceProperties.php

Lines changed: 4 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: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3476,12 +3476,14 @@ public function __construct(SeamClient $seam)
34763476
public function create_portal(
34773477
?array $customer_resources_filters = null,
34783478
?string $customization_profile_id = null,
3479+
mixed $deep_link = null,
34793480
?bool $exclude_locale_picker = null,
34803481
mixed $features = null,
34813482
?bool $is_embedded = null,
34823483
mixed $landing_page = null,
34833484
?string $locale = null,
34843485
?string $navigation_mode = null,
3486+
?bool $read_only = null,
34853487
mixed $customer_data = null,
34863488
): CustomerPortal {
34873489
$request_payload = [];
@@ -3496,6 +3498,9 @@ public function create_portal(
34963498
"customization_profile_id"
34973499
] = $customization_profile_id;
34983500
}
3501+
if ($deep_link !== null) {
3502+
$request_payload["deep_link"] = $deep_link;
3503+
}
34993504
if ($exclude_locale_picker !== null) {
35003505
$request_payload["exclude_locale_picker"] = $exclude_locale_picker;
35013506
}
@@ -3514,6 +3519,9 @@ public function create_portal(
35143519
if ($navigation_mode !== null) {
35153520
$request_payload["navigation_mode"] = $navigation_mode;
35163521
}
3522+
if ($read_only !== null) {
3523+
$request_payload["read_only"] = $read_only;
3524+
}
35173525
if ($customer_data !== null) {
35183526
$request_payload["customer_data"] = $customer_data;
35193527
}

0 commit comments

Comments
 (0)