Skip to content

Commit e89344d

Browse files
feat(deps-dev): Bump @seamapi/types from 1.460.0 to 1.462.0 in the seam group (#741)
* 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.460.0 to 1.462.0 - [Release notes](https://github.com/seamapi/types/releases) - [Changelog](https://github.com/seamapi/types/blob/main/.releaserc.json) - [Commits](seamapi/types@v1.460.0...v1.462.0) --- updated-dependencies: - dependency-name: "@seamapi/types" dependency-version: 1.462.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: seam ... Signed-off-by: dependabot[bot] <[email protected]> * ci: Generate docs --------- 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]>
1 parent e883c44 commit e89344d

File tree

9 files changed

+619
-25
lines changed

9 files changed

+619
-25
lines changed

docs/api/_blueprint.json

Lines changed: 571 additions & 12 deletions
Large diffs are not rendered by default.

docs/api/_report.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
### Routes
66

7+
- `/instant_keys`
78
- `/thermostats/daily_programs`
89
- `/user_identities/enrollment_automations`
910

@@ -87,7 +88,7 @@ These items are intentionally undocumented.
8788
- `/seam/bridge/v1/bridge_client_sessions/regenerate_pairing_code`: Seam Bridge Client only.
8889
- `/seam/bridge/v1/bridge_client_sessions/report_status`: Seam Bridge Client only.
8990
- `/seam/bridge/v1/bridge_connected_systems/list`: Seam Bridge Client only.
90-
- `/seam/console/v1/get_resource_type`: Internal endpoint for Console
91+
- `/seam/console/v1/get_resource_locator`: Internal endpoint for Console
9192
- `/seam/customer/v1/automation_runs/list`: Internal endpoint for customer portals.
9293
- `/seam/customer/v1/automations/delete`: Internal endpoint for customer portals.
9394
- `/seam/customer/v1/automations/get`: Internal endpoint for customer portals.
@@ -538,7 +539,7 @@ These items are deprecated.
538539
- `/access_methods/get_related`: `batch`
539540
- `/bridges/get`: `bridge`
540541
- `/bridges/list`: `bridges`
541-
- `/seam/console/v1/get_resource_type`: `resource_type`
542+
- `/seam/console/v1/get_resource_locator`: `resource_locator`
542543
- `/seam/customer/v1/automation_runs/list`: `automation_runs`
543544
- `/seam/customer/v1/portals/get`: `customer_portal`
544545
- `/seam/partner/v1/building_blocks/spaces/auto_map`: `spaces`
@@ -552,6 +553,8 @@ These items are deprecated.
552553
- `/access_methods/get_related`
553554
- `/customers/create_portal`
554555
- `/customers/push_data`
556+
- `/instant_keys/get`
557+
- `/instant_keys/list`
555558
- `/locks/get`
556559
- `/spaces/get_related`
557560
- `/user_identities/enrollment_automations/delete`

docs/api/access_grants/create.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -518,6 +518,12 @@ Set of IDs of existing spaces to which access is being granted.
518518

519519
---
520520

521+
**`space_keys`** *Array* *of Strings*
522+
523+
Set of keys of existing spaces to which access is being granted.
524+
525+
---
526+
521527
**`starts_at`** *String*
522528

523529
Date and time at which the validity of the new grant starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.
@@ -561,6 +567,18 @@ Unique phone number for the user identity in [E.164 format](https://www.itu.int/
561567
---
562568

563569

570+
571+
<details>
572+
573+
<summary><b><code>user_identity_key</code></b> <i>String</i></summary>
574+
575+
Unique key for the user identity.
576+
577+
</details>
578+
579+
---
580+
581+
564582
**`user_identity_id`** *String*
565583

566584
ID of user identity for whom access is being granted.

docs/api/access_grants/get_related.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ Possible enum values:
3737
- <code>spaces</code>
3838
- <code>devices</code>
3939
- <code>acs_entrances</code>
40+
- <code>connected_accounts</code>
41+
- <code>acs_systems</code>
42+
- <code>user_identity</code>
4043
</details>
4144

4245
---
@@ -50,6 +53,9 @@ Possible enum values:
5053
- <code>spaces</code>
5154
- <code>devices</code>
5255
- <code>acs_entrances</code>
56+
- <code>connected_accounts</code>
57+
- <code>acs_systems</code>
58+
- <code>user_identity</code>
5359
</details>
5460

5561
---

docs/api/devices/simulate/README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,11 @@ Simulates disconnecting a device from Seam. Only applicable for [sandbox devices
2424

2525
[**`/devices/simulate/disconnect_from_hub`**](./disconnect_from_hub.md)
2626

27-
Simulates taking the Wi-Fi hub (bridge) offline for a device.
28-
Only applicable for [sandbox workspaces](../../../core-concepts/workspaces/README.md#sandbox-workspaces) and August locks today, but designed so we can extend to other providers later.
29-
This will set the `hub_disconnected` error on the device.
27+
Simulates taking the Wi‑Fi hub (bridge) offline for a device.
28+
Only applicable for sandbox workspaces and currently
29+
implemented for August and TTLock locks.
30+
This will set the corresponding `hub_disconnected` or
31+
`ttlock_lock_not_paired_to_gateway` error on the device.
3032

3133

3234
[**`/devices/simulate/remove`**](./remove.md)

docs/api/devices/simulate/disconnect_from_hub.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@
33
- [Request Parameters](#request-parameters)
44
- [Response](#response)
55

6-
Simulates taking the Wi-Fi hub (bridge) offline for a device.
7-
Only applicable for [sandbox workspaces](../../../core-concepts/workspaces/README.md#sandbox-workspaces) and August locks today, but designed so we can extend to other providers later.
8-
This will set the `hub_disconnected` error on the device.
6+
Simulates taking the Wi‑Fi hub (bridge) offline for a device.
7+
Only applicable for sandbox workspaces and currently
8+
implemented for August and TTLock locks.
9+
This will set the corresponding `hub_disconnected` or
10+
`ttlock_lock_not_paired_to_gateway` error on the device.
911

1012

1113
{% tabs %}

docs/api/spaces/get_related.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ Possible enum values:
3737
- <code>spaces</code>
3838
- <code>devices</code>
3939
- <code>acs_entrances</code>
40+
- <code>connected_accounts</code>
41+
- <code>acs_systems</code>
4042
</details>
4143

4244
---
@@ -50,6 +52,8 @@ Possible enum values:
5052
- <code>spaces</code>
5153
- <code>devices</code>
5254
- <code>acs_entrances</code>
55+
- <code>connected_accounts</code>
56+
- <code>acs_systems</code>
5357
</details>
5458

5559
---

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
@@ -32,7 +32,7 @@
3232
"@prettier/plugin-ruby": "^4.0.4",
3333
"@seamapi/blueprint": "^0.51.3",
3434
"@seamapi/smith": "^0.4.4",
35-
"@seamapi/types": "^1.460.0",
35+
"@seamapi/types": "^1.462.0",
3636
"@types/command-exists": "^1.2.3",
3737
"change-case": "^5.4.4",
3838
"command-exists": "^1.2.9",

0 commit comments

Comments
 (0)