@seamapi/types 1.399.0 → 1.399.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +877 -295
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +835 -178
- package/lib/seam/connect/models/access-codes/managed-access-code.js +8 -2
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.js +4 -0
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.js.map +1 -1
- package/lib/seam/connect/models/client-sessions/client-session.js +9 -0
- package/lib/seam/connect/models/client-sessions/client-session.js.map +1 -1
- package/lib/seam/connect/models/connect-webviews/connect-webview.js +13 -0
- package/lib/seam/connect/models/connect-webviews/connect-webview.js.map +1 -1
- package/lib/seam/connect/models/connected-accounts/connected-account.js +1 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/models/devices/capability-properties/access-code.js +4 -1
- package/lib/seam/connect/models/devices/capability-properties/access-code.js.map +1 -1
- package/lib/seam/connect/models/devices/device.js +5 -1
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.js +1 -0
- package/lib/seam/connect/models/devices/unmanaged-device.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.js +3 -0
- package/lib/seam/connect/models/events/seam-event.js.map +1 -1
- package/lib/seam/connect/models/user-identities/user-identity.js +1 -1
- package/lib/seam/connect/models/workspaces/workspace.js +1 -0
- package/lib/seam/connect/models/workspaces/workspace.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +371 -0
- package/lib/seam/connect/openapi.js +795 -256
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +464 -178
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +8 -2
- package/src/lib/seam/connect/models/access-codes/unmanaged-access-code.ts +4 -0
- package/src/lib/seam/connect/models/client-sessions/client-session.ts +9 -0
- package/src/lib/seam/connect/models/connect-webviews/connect-webview.ts +13 -0
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +1 -0
- package/src/lib/seam/connect/models/devices/capability-properties/access-code.ts +6 -1
- package/src/lib/seam/connect/models/devices/device.ts +7 -1
- package/src/lib/seam/connect/models/devices/unmanaged-device.ts +1 -0
- package/src/lib/seam/connect/models/events/seam-event.ts +3 -0
- package/src/lib/seam/connect/models/user-identities/user-identity.ts +1 -1
- package/src/lib/seam/connect/models/workspaces/workspace.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +996 -256
- package/src/lib/seam/connect/route-types.ts +466 -178
|
@@ -4,9 +4,15 @@ export interface Routes {
|
|
|
4
4
|
method: 'POST'
|
|
5
5
|
queryParams: {}
|
|
6
6
|
jsonBody: {
|
|
7
|
-
/** ID of the device for which to create the new access code. */
|
|
7
|
+
/** ID of the device for which you want to create the new access code. */
|
|
8
8
|
device_id: string
|
|
9
|
-
/** Name of the new access code.
|
|
9
|
+
/** Name of the new access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
|
|
10
|
+
|
|
11
|
+
Note that the name provided on Seam is used to identify the code on Seam and is not necessarily the name that will appear in the lock provider's app or on the device. This is because lock providers may have constraints on names, such as length, uniqueness, or characters that can be used. In addition, some lock providers may break down names into components such as `first_name` and `last_name`.
|
|
12
|
+
|
|
13
|
+
To provide a consistent experience, Seam identifies the code on Seam by its name but may modify the name that appears on the lock provider's app or on the device. For example, Seam may add additional characters or truncate the name to meet provider constraints.
|
|
14
|
+
|
|
15
|
+
To help your users identify codes set by Seam, Seam provides the name exactly as it appears on the lock provider's app or on the device as a separate property called `appearance`. This is an object with a `name` property and, optionally, `first_name` and `last_name` properties (for providers that break down a name into components). */
|
|
10
16
|
name?: string | undefined
|
|
11
17
|
/** Date and time at which the validity of the new access code starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
12
18
|
starts_at?: string | undefined
|
|
@@ -1336,7 +1342,7 @@ export interface Routes {
|
|
|
1336
1342
|
|
|
1337
1343
|
An access code is a code used for a keypad or pinpad device. Unlike physical keys, which can easily be lost or duplicated, PIN codes can be customized, tracked, and altered on the fly. Using the Seam Access Code API, you can easily generate access codes on the hundreds of door lock models with which we integrate.
|
|
1338
1344
|
|
|
1339
|
-
Seam supports programming two types of access codes: [ongoing](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#ongoing-access-codes) and [time-bound](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#time-bound-access-codes). To differentiate between the two, refer to the `type` property of the access code. Ongoing codes display as `ongoing`, whereas time-bound codes are labeled `time_bound`.
|
|
1345
|
+
Seam supports programming two types of access codes: [ongoing](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#ongoing-access-codes) and [time-bound](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#time-bound-access-codes). To differentiate between the two, refer to the `type` property of the access code. Ongoing codes display as `ongoing`, whereas time-bound codes are labeled `time_bound`. An ongoing access code is active, until it has been removed from the device. To specify an ongoing access code, leave both `starts_at` and `ends_at` empty. A time-bound access code will be programmed at the `starts_at` time and removed at the `ends_at` time.
|
|
1340
1346
|
|
|
1341
1347
|
In addition, for certain devices, Seam also supports [offline access codes](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#offline-access-codes). Offline access (PIN) codes are designed for door locks that might not always maintain an internet connection. For this type of access code, the device manufacturer uses encryption keys (tokens) to create server-based registries of algorithmically-generated offline PIN codes. Because the tokens remain synchronized with the managed devices, the locks do not require an active internet connection—and you do not need to be near the locks—to create an offline access code. Then, owners or managers can share these offline codes with users through a variety of mechanisms, such as messaging applications. That is, lock users do not need to install a smartphone application to receive an offline access code. */
|
|
1342
1348
|
access_code: {
|
|
@@ -1352,7 +1358,13 @@ export interface Routes {
|
|
|
1352
1358
|
access_code_id: string
|
|
1353
1359
|
/** Unique identifier for the device associated with the access code. */
|
|
1354
1360
|
device_id: string
|
|
1355
|
-
/** Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
|
|
1361
|
+
/** Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
|
|
1362
|
+
|
|
1363
|
+
Note that the name provided on Seam is used to identify the code on Seam and is not necessarily the name that will appear in the lock provider's app or on the device. This is because lock providers may have constraints on names, such as length, uniqueness, or characters that can be used. In addition, some lock providers may break down names into components such as `first_name` and `last_name`.
|
|
1364
|
+
|
|
1365
|
+
To provide a consistent experience, Seam identifies the code on Seam by its name but may modify the name that appears on the lock provider's app or on the device. For example, Seam may add additional characters or truncate the name to meet provider constraints.
|
|
1366
|
+
|
|
1367
|
+
To help your users identify codes set by Seam, Seam provides the name exactly as it appears on the lock provider's app or on the device as a separate property called `appearance`. This is an object with a `name` property and, optionally, `first_name` and `last_name` properties (for providers that break down a name into components). */
|
|
1356
1368
|
name: string | null
|
|
1357
1369
|
/** Code used for access. Typically, a numeric or alphanumeric string. */
|
|
1358
1370
|
code: string | null
|
|
@@ -1849,13 +1861,19 @@ export interface Routes {
|
|
|
1849
1861
|
method: 'POST' | 'PUT'
|
|
1850
1862
|
queryParams: {}
|
|
1851
1863
|
jsonBody: {
|
|
1852
|
-
/** IDs of the devices for which to create the new access codes. */
|
|
1864
|
+
/** IDs of the devices for which you want to create the new access codes. */
|
|
1853
1865
|
device_ids: string[]
|
|
1854
1866
|
/** Desired behavior if any device cannot share a code. If `throw` (default), no access codes will be created if any device cannot share a code. If `create_random_code`, a random code will be created on devices that cannot share a code. */
|
|
1855
1867
|
behavior_when_code_cannot_be_shared?: 'throw' | 'create_random_code'
|
|
1856
1868
|
/** Preferred code length. Only applicable if you do not specify a `code`. If the affected device does not support the preferred code length, Seam reverts to using the shortest supported code length. */
|
|
1857
1869
|
preferred_code_length?: number | undefined
|
|
1858
|
-
/** Name of the new access code.
|
|
1870
|
+
/** Name of the new access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
|
|
1871
|
+
|
|
1872
|
+
Note that the name provided on Seam is used to identify the code on Seam and is not necessarily the name that will appear in the lock provider's app or on the device. This is because lock providers may have constraints on names, such as length, uniqueness, or characters that can be used. In addition, some lock providers may break down names into components such as `first_name` and `last_name`.
|
|
1873
|
+
|
|
1874
|
+
To provide a consistent experience, Seam identifies the code on Seam by its name but may modify the name that appears on the lock provider's app or on the device. For example, Seam may add additional characters or truncate the name to meet provider constraints.
|
|
1875
|
+
|
|
1876
|
+
To help your users identify codes set by Seam, Seam provides the name exactly as it appears on the lock provider's app or on the device as a separate property called `appearance`. This is an object with a `name` property and, optionally, `first_name` and `last_name` properties (for providers that break down a name into components). */
|
|
1859
1877
|
name?: string | undefined
|
|
1860
1878
|
/** Date and time at which the validity of the new access code starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
1861
1879
|
starts_at?: string | undefined
|
|
@@ -1896,7 +1914,13 @@ export interface Routes {
|
|
|
1896
1914
|
access_code_id: string
|
|
1897
1915
|
/** Unique identifier for the device associated with the access code. */
|
|
1898
1916
|
device_id: string
|
|
1899
|
-
/** Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
|
|
1917
|
+
/** Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
|
|
1918
|
+
|
|
1919
|
+
Note that the name provided on Seam is used to identify the code on Seam and is not necessarily the name that will appear in the lock provider's app or on the device. This is because lock providers may have constraints on names, such as length, uniqueness, or characters that can be used. In addition, some lock providers may break down names into components such as `first_name` and `last_name`.
|
|
1920
|
+
|
|
1921
|
+
To provide a consistent experience, Seam identifies the code on Seam by its name but may modify the name that appears on the lock provider's app or on the device. For example, Seam may add additional characters or truncate the name to meet provider constraints.
|
|
1922
|
+
|
|
1923
|
+
To help your users identify codes set by Seam, Seam provides the name exactly as it appears on the lock provider's app or on the device as a separate property called `appearance`. This is an object with a `name` property and, optionally, `first_name` and `last_name` properties (for providers that break down a name into components). */
|
|
1900
1924
|
name: string | null
|
|
1901
1925
|
/** Code used for access. Typically, a numeric or alphanumeric string. */
|
|
1902
1926
|
code: string | null
|
|
@@ -2394,9 +2418,9 @@ export interface Routes {
|
|
|
2394
2418
|
queryParams: {}
|
|
2395
2419
|
jsonBody: {}
|
|
2396
2420
|
commonParams: {
|
|
2397
|
-
/** ID of the device for which to delete the access code. */
|
|
2421
|
+
/** ID of the device for which you want to delete the access code. */
|
|
2398
2422
|
device_id?: string | undefined
|
|
2399
|
-
/** ID of the access code to delete. */
|
|
2423
|
+
/** ID of the access code that you want to delete. */
|
|
2400
2424
|
access_code_id: string
|
|
2401
2425
|
/** */
|
|
2402
2426
|
sync?: boolean
|
|
@@ -3703,6 +3727,7 @@ export interface Routes {
|
|
|
3703
3727
|
queryParams: {}
|
|
3704
3728
|
jsonBody: {}
|
|
3705
3729
|
commonParams: {
|
|
3730
|
+
/** ID of the device for which you want to generate a code. */
|
|
3706
3731
|
device_id: string
|
|
3707
3732
|
}
|
|
3708
3733
|
formData: {}
|
|
@@ -3732,7 +3757,7 @@ export interface Routes {
|
|
|
3732
3757
|
|
|
3733
3758
|
An access code is a code used for a keypad or pinpad device. Unlike physical keys, which can easily be lost or duplicated, PIN codes can be customized, tracked, and altered on the fly. Using the Seam Access Code API, you can easily generate access codes on the hundreds of door lock models with which we integrate.
|
|
3734
3759
|
|
|
3735
|
-
Seam supports programming two types of access codes: [ongoing](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#ongoing-access-codes) and [time-bound](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#time-bound-access-codes). To differentiate between the two, refer to the `type` property of the access code. Ongoing codes display as `ongoing`, whereas time-bound codes are labeled `time_bound`.
|
|
3760
|
+
Seam supports programming two types of access codes: [ongoing](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#ongoing-access-codes) and [time-bound](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#time-bound-access-codes). To differentiate between the two, refer to the `type` property of the access code. Ongoing codes display as `ongoing`, whereas time-bound codes are labeled `time_bound`. An ongoing access code is active, until it has been removed from the device. To specify an ongoing access code, leave both `starts_at` and `ends_at` empty. A time-bound access code will be programmed at the `starts_at` time and removed at the `ends_at` time.
|
|
3736
3761
|
|
|
3737
3762
|
In addition, for certain devices, Seam also supports [offline access codes](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#offline-access-codes). Offline access (PIN) codes are designed for door locks that might not always maintain an internet connection. For this type of access code, the device manufacturer uses encryption keys (tokens) to create server-based registries of algorithmically-generated offline PIN codes. Because the tokens remain synchronized with the managed devices, the locks do not require an active internet connection—and you do not need to be near the locks—to create an offline access code. Then, owners or managers can share these offline codes with users through a variety of mechanisms, such as messaging applications. That is, lock users do not need to install a smartphone application to receive an offline access code. */
|
|
3738
3763
|
access_code: {
|
|
@@ -3748,7 +3773,13 @@ export interface Routes {
|
|
|
3748
3773
|
access_code_id: string
|
|
3749
3774
|
/** Unique identifier for the device associated with the access code. */
|
|
3750
3775
|
device_id: string
|
|
3751
|
-
/** Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
|
|
3776
|
+
/** Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
|
|
3777
|
+
|
|
3778
|
+
Note that the name provided on Seam is used to identify the code on Seam and is not necessarily the name that will appear in the lock provider's app or on the device. This is because lock providers may have constraints on names, such as length, uniqueness, or characters that can be used. In addition, some lock providers may break down names into components such as `first_name` and `last_name`.
|
|
3779
|
+
|
|
3780
|
+
To provide a consistent experience, Seam identifies the code on Seam by its name but may modify the name that appears on the lock provider's app or on the device. For example, Seam may add additional characters or truncate the name to meet provider constraints.
|
|
3781
|
+
|
|
3782
|
+
To help your users identify codes set by Seam, Seam provides the name exactly as it appears on the lock provider's app or on the device as a separate property called `appearance`. This is an object with a `name` property and, optionally, `first_name` and `last_name` properties (for providers that break down a name into components). */
|
|
3752
3783
|
name: string | null
|
|
3753
3784
|
/** Code used for access. Typically, a numeric or alphanumeric string. */
|
|
3754
3785
|
code: string | null
|
|
@@ -4272,7 +4303,13 @@ export interface Routes {
|
|
|
4272
4303
|
access_code_id: string
|
|
4273
4304
|
/** Unique identifier for the device associated with the access code. */
|
|
4274
4305
|
device_id: string
|
|
4275
|
-
/** Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
|
|
4306
|
+
/** Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
|
|
4307
|
+
|
|
4308
|
+
Note that the name provided on Seam is used to identify the code on Seam and is not necessarily the name that will appear in the lock provider's app or on the device. This is because lock providers may have constraints on names, such as length, uniqueness, or characters that can be used. In addition, some lock providers may break down names into components such as `first_name` and `last_name`.
|
|
4309
|
+
|
|
4310
|
+
To provide a consistent experience, Seam identifies the code on Seam by its name but may modify the name that appears on the lock provider's app or on the device. For example, Seam may add additional characters or truncate the name to meet provider constraints.
|
|
4311
|
+
|
|
4312
|
+
To help your users identify codes set by Seam, Seam provides the name exactly as it appears on the lock provider's app or on the device as a separate property called `appearance`. This is an object with a `name` property and, optionally, `first_name` and `last_name` properties (for providers that break down a name into components). */
|
|
4276
4313
|
name: string | null
|
|
4277
4314
|
/** Code used for access. Typically, a numeric or alphanumeric string. */
|
|
4278
4315
|
code: string | null
|
|
@@ -4788,7 +4825,7 @@ export interface Routes {
|
|
|
4788
4825
|
|
|
4789
4826
|
An access code is a code used for a keypad or pinpad device. Unlike physical keys, which can easily be lost or duplicated, PIN codes can be customized, tracked, and altered on the fly. Using the Seam Access Code API, you can easily generate access codes on the hundreds of door lock models with which we integrate.
|
|
4790
4827
|
|
|
4791
|
-
Seam supports programming two types of access codes: [ongoing](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#ongoing-access-codes) and [time-bound](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#time-bound-access-codes). To differentiate between the two, refer to the `type` property of the access code. Ongoing codes display as `ongoing`, whereas time-bound codes are labeled `time_bound`.
|
|
4828
|
+
Seam supports programming two types of access codes: [ongoing](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#ongoing-access-codes) and [time-bound](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#time-bound-access-codes). To differentiate between the two, refer to the `type` property of the access code. Ongoing codes display as `ongoing`, whereas time-bound codes are labeled `time_bound`. An ongoing access code is active, until it has been removed from the device. To specify an ongoing access code, leave both `starts_at` and `ends_at` empty. A time-bound access code will be programmed at the `starts_at` time and removed at the `ends_at` time.
|
|
4792
4829
|
|
|
4793
4830
|
In addition, for certain devices, Seam also supports [offline access codes](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#offline-access-codes). Offline access (PIN) codes are designed for door locks that might not always maintain an internet connection. For this type of access code, the device manufacturer uses encryption keys (tokens) to create server-based registries of algorithmically-generated offline PIN codes. Because the tokens remain synchronized with the managed devices, the locks do not require an active internet connection—and you do not need to be near the locks—to create an offline access code. Then, owners or managers can share these offline codes with users through a variety of mechanisms, such as messaging applications. That is, lock users do not need to install a smartphone application to receive an offline access code. */
|
|
4794
4831
|
backup_access_code: {
|
|
@@ -4804,7 +4841,13 @@ export interface Routes {
|
|
|
4804
4841
|
access_code_id: string
|
|
4805
4842
|
/** Unique identifier for the device associated with the access code. */
|
|
4806
4843
|
device_id: string
|
|
4807
|
-
/** Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
|
|
4844
|
+
/** Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
|
|
4845
|
+
|
|
4846
|
+
Note that the name provided on Seam is used to identify the code on Seam and is not necessarily the name that will appear in the lock provider's app or on the device. This is because lock providers may have constraints on names, such as length, uniqueness, or characters that can be used. In addition, some lock providers may break down names into components such as `first_name` and `last_name`.
|
|
4847
|
+
|
|
4848
|
+
To provide a consistent experience, Seam identifies the code on Seam by its name but may modify the name that appears on the lock provider's app or on the device. For example, Seam may add additional characters or truncate the name to meet provider constraints.
|
|
4849
|
+
|
|
4850
|
+
To help your users identify codes set by Seam, Seam provides the name exactly as it appears on the lock provider's app or on the device as a separate property called `appearance`. This is an object with a `name` property and, optionally, `first_name` and `last_name` properties (for providers that break down a name into components). */
|
|
4808
4851
|
name: string | null
|
|
4809
4852
|
/** Code used for access. Typically, a numeric or alphanumeric string. */
|
|
4810
4853
|
code: string | null
|
|
@@ -5298,7 +5341,7 @@ export interface Routes {
|
|
|
5298
5341
|
|
|
5299
5342
|
An access code is a code used for a keypad or pinpad device. Unlike physical keys, which can easily be lost or duplicated, PIN codes can be customized, tracked, and altered on the fly. Using the Seam Access Code API, you can easily generate access codes on the hundreds of door lock models with which we integrate.
|
|
5300
5343
|
|
|
5301
|
-
Seam supports programming two types of access codes: [ongoing](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#ongoing-access-codes) and [time-bound](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#time-bound-access-codes). To differentiate between the two, refer to the `type` property of the access code. Ongoing codes display as `ongoing`, whereas time-bound codes are labeled `time_bound`.
|
|
5344
|
+
Seam supports programming two types of access codes: [ongoing](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#ongoing-access-codes) and [time-bound](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#time-bound-access-codes). To differentiate between the two, refer to the `type` property of the access code. Ongoing codes display as `ongoing`, whereas time-bound codes are labeled `time_bound`. An ongoing access code is active, until it has been removed from the device. To specify an ongoing access code, leave both `starts_at` and `ends_at` empty. A time-bound access code will be programmed at the `starts_at` time and removed at the `ends_at` time.
|
|
5302
5345
|
|
|
5303
5346
|
In addition, for certain devices, Seam also supports [offline access codes](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#offline-access-codes). Offline access (PIN) codes are designed for door locks that might not always maintain an internet connection. For this type of access code, the device manufacturer uses encryption keys (tokens) to create server-based registries of algorithmically-generated offline PIN codes. Because the tokens remain synchronized with the managed devices, the locks do not require an active internet connection—and you do not need to be near the locks—to create an offline access code. Then, owners or managers can share these offline codes with users through a variety of mechanisms, such as messaging applications. That is, lock users do not need to install a smartphone application to receive an offline access code. */
|
|
5304
5347
|
access_code: {
|
|
@@ -5314,7 +5357,13 @@ export interface Routes {
|
|
|
5314
5357
|
access_code_id: string
|
|
5315
5358
|
/** Unique identifier for the device associated with the access code. */
|
|
5316
5359
|
device_id: string
|
|
5317
|
-
/** Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
|
|
5360
|
+
/** Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
|
|
5361
|
+
|
|
5362
|
+
Note that the name provided on Seam is used to identify the code on Seam and is not necessarily the name that will appear in the lock provider's app or on the device. This is because lock providers may have constraints on names, such as length, uniqueness, or characters that can be used. In addition, some lock providers may break down names into components such as `first_name` and `last_name`.
|
|
5363
|
+
|
|
5364
|
+
To provide a consistent experience, Seam identifies the code on Seam by its name but may modify the name that appears on the lock provider's app or on the device. For example, Seam may add additional characters or truncate the name to meet provider constraints.
|
|
5365
|
+
|
|
5366
|
+
To help your users identify codes set by Seam, Seam provides the name exactly as it appears on the lock provider's app or on the device as a separate property called `appearance`. This is an object with a `name` property and, optionally, `first_name` and `last_name` properties (for providers that break down a name into components). */
|
|
5318
5367
|
name: string | null
|
|
5319
5368
|
/** Code used for access. Typically, a numeric or alphanumeric string. */
|
|
5320
5369
|
code: string | null
|
|
@@ -5811,7 +5860,7 @@ export interface Routes {
|
|
|
5811
5860
|
method: 'POST'
|
|
5812
5861
|
queryParams: {}
|
|
5813
5862
|
jsonBody: {
|
|
5814
|
-
/** ID of the device for which to report constraints. */
|
|
5863
|
+
/** ID of the device for which you want to report constraints. */
|
|
5815
5864
|
device_id: string
|
|
5816
5865
|
/** Array of supported code lengths as integers between 4 and 20, inclusive. You can specify either `supported_code_lengths` or `min_code_length`/`max_code_length`. */
|
|
5817
5866
|
supported_code_lengths?: number[] | undefined
|
|
@@ -5845,7 +5894,11 @@ export interface Routes {
|
|
|
5845
5894
|
|
|
5846
5895
|
When you create an access code on a device in Seam, it is created as a managed access code. Access codes that exist on a device that were not created through Seam are considered unmanaged codes. We strictly limit the operations that can be performed on unmanaged codes.
|
|
5847
5896
|
|
|
5848
|
-
Prior to using Seam to manage your devices, you may have used another lock management system to manage the access codes on your devices. Where possible, we help you keep any existing access codes on devices and transition those codes to ones managed by your Seam workspace.
|
|
5897
|
+
Prior to using Seam to manage your devices, you may have used another lock management system to manage the access codes on your devices. Where possible, we help you keep any existing access codes on devices and transition those codes to ones managed by your Seam workspace.
|
|
5898
|
+
|
|
5899
|
+
Not all providers support unmanaged access codes. The following providers do not support unmanaged access codes:
|
|
5900
|
+
|
|
5901
|
+
- [Kwikset](https://docs.seam.co/latest/device-and-system-integration-guides/kwikset-locks) */
|
|
5849
5902
|
access_code: {
|
|
5850
5903
|
/** Nature of the access code. Values are `ongoing` for access codes that are active continuously until deactivated manually or `time_bound` for access codes that have a specific duration. */
|
|
5851
5904
|
type: 'time_bound' | 'ongoing'
|
|
@@ -5853,7 +5906,13 @@ export interface Routes {
|
|
|
5853
5906
|
access_code_id: string
|
|
5854
5907
|
/** Unique identifier for the device associated with the access code. */
|
|
5855
5908
|
device_id: string
|
|
5856
|
-
/** Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
|
|
5909
|
+
/** Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
|
|
5910
|
+
|
|
5911
|
+
Note that the name provided on Seam is used to identify the code on Seam and is not necessarily the name that will appear in the lock provider's app or on the device. This is because lock providers may have constraints on names, such as length, uniqueness, or characters that can be used. In addition, some lock providers may break down names into components such as `first_name` and `last_name`.
|
|
5912
|
+
|
|
5913
|
+
To provide a consistent experience, Seam identifies the code on Seam by its name but may modify the name that appears on the lock provider's app or on the device. For example, Seam may add additional characters or truncate the name to meet provider constraints.
|
|
5914
|
+
|
|
5915
|
+
To help your users identify codes set by Seam, Seam provides the name exactly as it appears on the lock provider's app or on the device as a separate property called `appearance`. This is an object with a `name` property and, optionally, `first_name` and `last_name` properties (for providers that break down a name into components). */
|
|
5857
5916
|
name: string | null
|
|
5858
5917
|
/** Code used for access. Typically, a numeric or alphanumeric string. */
|
|
5859
5918
|
code: string | null
|
|
@@ -6341,9 +6400,9 @@ export interface Routes {
|
|
|
6341
6400
|
commonParams: {
|
|
6342
6401
|
/** ID of the unmanaged access code that you want to convert to a managed access code. */
|
|
6343
6402
|
access_code_id: string
|
|
6344
|
-
/** Indicates whether external modification of the access code is allowed. */
|
|
6403
|
+
/** Indicates whether [external modification](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#external-modification) of the access code is allowed. */
|
|
6345
6404
|
is_external_modification_allowed?: boolean | undefined
|
|
6346
|
-
/** Indicates whether external modification of the access code is allowed. */
|
|
6405
|
+
/** Indicates whether [external modification](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#external-modification) of the access code is allowed. */
|
|
6347
6406
|
allow_external_modification?: boolean | undefined
|
|
6348
6407
|
/** Indicates whether to force the access code conversion. To switch management of an access code from one Seam workspace to another, set `force` to `true`. */
|
|
6349
6408
|
force?: boolean | undefined
|
|
@@ -6359,7 +6418,7 @@ export interface Routes {
|
|
|
6359
6418
|
queryParams: {}
|
|
6360
6419
|
jsonBody: {}
|
|
6361
6420
|
commonParams: {
|
|
6362
|
-
/** ID of the unmanaged access code to delete. */
|
|
6421
|
+
/** ID of the unmanaged access code that you want to delete. */
|
|
6363
6422
|
access_code_id: string
|
|
6364
6423
|
/** */
|
|
6365
6424
|
sync?: boolean
|
|
@@ -7681,7 +7740,11 @@ export interface Routes {
|
|
|
7681
7740
|
|
|
7682
7741
|
When you create an access code on a device in Seam, it is created as a managed access code. Access codes that exist on a device that were not created through Seam are considered unmanaged codes. We strictly limit the operations that can be performed on unmanaged codes.
|
|
7683
7742
|
|
|
7684
|
-
Prior to using Seam to manage your devices, you may have used another lock management system to manage the access codes on your devices. Where possible, we help you keep any existing access codes on devices and transition those codes to ones managed by your Seam workspace.
|
|
7743
|
+
Prior to using Seam to manage your devices, you may have used another lock management system to manage the access codes on your devices. Where possible, we help you keep any existing access codes on devices and transition those codes to ones managed by your Seam workspace.
|
|
7744
|
+
|
|
7745
|
+
Not all providers support unmanaged access codes. The following providers do not support unmanaged access codes:
|
|
7746
|
+
|
|
7747
|
+
- [Kwikset](https://docs.seam.co/latest/device-and-system-integration-guides/kwikset-locks) */
|
|
7685
7748
|
access_code: {
|
|
7686
7749
|
/** Nature of the access code. Values are `ongoing` for access codes that are active continuously until deactivated manually or `time_bound` for access codes that have a specific duration. */
|
|
7687
7750
|
type: 'time_bound' | 'ongoing'
|
|
@@ -7689,7 +7752,13 @@ export interface Routes {
|
|
|
7689
7752
|
access_code_id: string
|
|
7690
7753
|
/** Unique identifier for the device associated with the access code. */
|
|
7691
7754
|
device_id: string
|
|
7692
|
-
/** Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
|
|
7755
|
+
/** Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
|
|
7756
|
+
|
|
7757
|
+
Note that the name provided on Seam is used to identify the code on Seam and is not necessarily the name that will appear in the lock provider's app or on the device. This is because lock providers may have constraints on names, such as length, uniqueness, or characters that can be used. In addition, some lock providers may break down names into components such as `first_name` and `last_name`.
|
|
7758
|
+
|
|
7759
|
+
To provide a consistent experience, Seam identifies the code on Seam by its name but may modify the name that appears on the lock provider's app or on the device. For example, Seam may add additional characters or truncate the name to meet provider constraints.
|
|
7760
|
+
|
|
7761
|
+
To help your users identify codes set by Seam, Seam provides the name exactly as it appears on the lock provider's app or on the device as a separate property called `appearance`. This is an object with a `name` property and, optionally, `first_name` and `last_name` properties (for providers that break down a name into components). */
|
|
7693
7762
|
name: string | null
|
|
7694
7763
|
/** Code used for access. Typically, a numeric or alphanumeric string. */
|
|
7695
7764
|
code: string | null
|
|
@@ -8189,7 +8258,13 @@ export interface Routes {
|
|
|
8189
8258
|
access_code_id: string
|
|
8190
8259
|
/** Unique identifier for the device associated with the access code. */
|
|
8191
8260
|
device_id: string
|
|
8192
|
-
/** Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
|
|
8261
|
+
/** Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
|
|
8262
|
+
|
|
8263
|
+
Note that the name provided on Seam is used to identify the code on Seam and is not necessarily the name that will appear in the lock provider's app or on the device. This is because lock providers may have constraints on names, such as length, uniqueness, or characters that can be used. In addition, some lock providers may break down names into components such as `first_name` and `last_name`.
|
|
8264
|
+
|
|
8265
|
+
To provide a consistent experience, Seam identifies the code on Seam by its name but may modify the name that appears on the lock provider's app or on the device. For example, Seam may add additional characters or truncate the name to meet provider constraints.
|
|
8266
|
+
|
|
8267
|
+
To help your users identify codes set by Seam, Seam provides the name exactly as it appears on the lock provider's app or on the device as a separate property called `appearance`. This is an object with a `name` property and, optionally, `first_name` and `last_name` properties (for providers that break down a name into components). */
|
|
8193
8268
|
name: string | null
|
|
8194
8269
|
/** Code used for access. Typically, a numeric or alphanumeric string. */
|
|
8195
8270
|
code: string | null
|
|
@@ -8693,7 +8768,13 @@ export interface Routes {
|
|
|
8693
8768
|
method: 'POST' | 'PATCH' | 'PUT'
|
|
8694
8769
|
queryParams: {}
|
|
8695
8770
|
jsonBody: {
|
|
8696
|
-
/** Name of the new access code.
|
|
8771
|
+
/** Name of the new access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
|
|
8772
|
+
|
|
8773
|
+
Note that the name provided on Seam is used to identify the code on Seam and is not necessarily the name that will appear in the lock provider's app or on the device. This is because lock providers may have constraints on names, such as length, uniqueness, or characters that can be used. In addition, some lock providers may break down names into components such as `first_name` and `last_name`.
|
|
8774
|
+
|
|
8775
|
+
To provide a consistent experience, Seam identifies the code on Seam by its name but may modify the name that appears on the lock provider's app or on the device. For example, Seam may add additional characters or truncate the name to meet provider constraints.
|
|
8776
|
+
|
|
8777
|
+
To help your users identify codes set by Seam, Seam provides the name exactly as it appears on the lock provider's app or on the device as a separate property called `appearance`. This is an object with a `name` property and, optionally, `first_name` and `last_name` properties (for providers that break down a name into components). */
|
|
8697
8778
|
name?: string | undefined
|
|
8698
8779
|
/** Date and time at which the validity of the new access code starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
8699
8780
|
starts_at?: string | undefined
|
|
@@ -10036,7 +10117,13 @@ export interface Routes {
|
|
|
10036
10117
|
ends_at?: string | undefined
|
|
10037
10118
|
/** Date and time at which the validity of the new access code starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
10038
10119
|
starts_at?: string | undefined
|
|
10039
|
-
/** Name of the new access code.
|
|
10120
|
+
/** Name of the new access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
|
|
10121
|
+
|
|
10122
|
+
Note that the name provided on Seam is used to identify the code on Seam and is not necessarily the name that will appear in the lock provider's app or on the device. This is because lock providers may have constraints on names, such as length, uniqueness, or characters that can be used. In addition, some lock providers may break down names into components such as `first_name` and `last_name`.
|
|
10123
|
+
|
|
10124
|
+
To provide a consistent experience, Seam identifies the code on Seam by its name but may modify the name that appears on the lock provider's app or on the device. For example, Seam may add additional characters or truncate the name to meet provider constraints.
|
|
10125
|
+
|
|
10126
|
+
To help your users identify codes set by Seam, Seam provides the name exactly as it appears on the lock provider's app or on the device as a separate property called `appearance`. This is an object with a `name` property and, optionally, `first_name` and `last_name` properties (for providers that break down a name into components). */
|
|
10040
10127
|
name?: string | undefined
|
|
10041
10128
|
/** Key that links the group of access codes, assigned on creation by `/access_codes/create_multiple`. */
|
|
10042
10129
|
common_code_key: string
|
|
@@ -10051,9 +10138,9 @@ export interface Routes {
|
|
|
10051
10138
|
queryParams: {}
|
|
10052
10139
|
jsonBody: {}
|
|
10053
10140
|
commonParams: {
|
|
10054
|
-
/** ID of the
|
|
10141
|
+
/** ID of the access group to which you want to add an access system user. */
|
|
10055
10142
|
acs_access_group_id: string
|
|
10056
|
-
/** ID of the
|
|
10143
|
+
/** ID of the access system user that you want to add to an access group. */
|
|
10057
10144
|
acs_user_id: string
|
|
10058
10145
|
}
|
|
10059
10146
|
formData: {}
|
|
@@ -10065,7 +10152,7 @@ export interface Routes {
|
|
|
10065
10152
|
queryParams: {}
|
|
10066
10153
|
jsonBody: {}
|
|
10067
10154
|
commonParams: {
|
|
10068
|
-
/** ID of the
|
|
10155
|
+
/** ID of the access group that you want to get. */
|
|
10069
10156
|
acs_access_group_id: string
|
|
10070
10157
|
}
|
|
10071
10158
|
formData: {}
|
|
@@ -10128,9 +10215,9 @@ export interface Routes {
|
|
|
10128
10215
|
queryParams: {}
|
|
10129
10216
|
jsonBody: {}
|
|
10130
10217
|
commonParams: {
|
|
10131
|
-
/** ID of the access
|
|
10218
|
+
/** ID of the access system for which you want to retrieve all access groups. */
|
|
10132
10219
|
acs_system_id?: string | undefined
|
|
10133
|
-
/** ID of the user for which you want to retrieve all access groups. */
|
|
10220
|
+
/** ID of the access system user for which you want to retrieve all access groups. */
|
|
10134
10221
|
acs_user_id?: string | undefined
|
|
10135
10222
|
/** ID of the user identity for which you want to retrieve all access groups. */
|
|
10136
10223
|
user_identity_id?: string | undefined
|
|
@@ -10288,7 +10375,7 @@ export interface Routes {
|
|
|
10288
10375
|
queryParams: {}
|
|
10289
10376
|
jsonBody: {}
|
|
10290
10377
|
commonParams: {
|
|
10291
|
-
/** ID of the access group for which you want to retrieve all users. */
|
|
10378
|
+
/** ID of the access group for which you want to retrieve all access system users. */
|
|
10292
10379
|
acs_access_group_id: string
|
|
10293
10380
|
}
|
|
10294
10381
|
formData: {}
|
|
@@ -10516,11 +10603,11 @@ export interface Routes {
|
|
|
10516
10603
|
queryParams: {}
|
|
10517
10604
|
jsonBody: {}
|
|
10518
10605
|
commonParams: {
|
|
10519
|
-
/** ID of the
|
|
10606
|
+
/** ID of the access group from which you want to remove an access system user. */
|
|
10520
10607
|
acs_access_group_id: string
|
|
10521
|
-
/** ID of the
|
|
10608
|
+
/** ID of the access system user that you want to remove from an access group. */
|
|
10522
10609
|
acs_user_id?: string | undefined
|
|
10523
|
-
/** ID of the
|
|
10610
|
+
/** ID of the user identity associated with the user that you want to remove from an access group. */
|
|
10524
10611
|
user_identity_id?: string | undefined
|
|
10525
10612
|
}
|
|
10526
10613
|
formData: {}
|
|
@@ -10532,7 +10619,7 @@ export interface Routes {
|
|
|
10532
10619
|
queryParams: {}
|
|
10533
10620
|
jsonBody: {}
|
|
10534
10621
|
commonParams: {
|
|
10535
|
-
/** ID of the
|
|
10622
|
+
/** ID of the unmanaged access group that you want to get. */
|
|
10536
10623
|
acs_access_group_id: string
|
|
10537
10624
|
}
|
|
10538
10625
|
formData: {}
|
|
@@ -10591,9 +10678,9 @@ export interface Routes {
|
|
|
10591
10678
|
queryParams: {}
|
|
10592
10679
|
jsonBody: {}
|
|
10593
10680
|
commonParams: {
|
|
10594
|
-
/** ID of the access
|
|
10681
|
+
/** ID of the access system for which you want to retrieve all unmanaged access groups. */
|
|
10595
10682
|
acs_system_id?: string | undefined
|
|
10596
|
-
/** ID of the user for which you want to retrieve all unmanaged access groups. */
|
|
10683
|
+
/** ID of the access system user for which you want to retrieve all unmanaged access groups. */
|
|
10597
10684
|
acs_user_id?: string | undefined
|
|
10598
10685
|
}
|
|
10599
10686
|
formData: {}
|
|
@@ -10651,6 +10738,7 @@ export interface Routes {
|
|
|
10651
10738
|
queryParams: {}
|
|
10652
10739
|
jsonBody: {}
|
|
10653
10740
|
commonParams: {
|
|
10741
|
+
/** ID of the access system for which you want to list credential pools. */
|
|
10654
10742
|
acs_system_id: string
|
|
10655
10743
|
}
|
|
10656
10744
|
formData: {}
|
|
@@ -10672,10 +10760,15 @@ export interface Routes {
|
|
|
10672
10760
|
queryParams: {}
|
|
10673
10761
|
jsonBody: {}
|
|
10674
10762
|
commonParams: {
|
|
10763
|
+
/** ID of the user identity for which you want to launch a credential provisioning automation. */
|
|
10675
10764
|
user_identity_id: string
|
|
10765
|
+
/** Access system ID of the credential manager for which you want to launch a credential provisioning automation. */
|
|
10676
10766
|
credential_manager_acs_system_id: string
|
|
10767
|
+
/** ID of the credential pool for which you want to launch a credential provisioning automation. */
|
|
10677
10768
|
acs_credential_pool_id?: string | undefined
|
|
10769
|
+
/** Indicates whether to create an associated credential manager user. If you set `create_credential_manager_user` to `true`, you cannot specify a `credential_manager_acs_user_id`. */
|
|
10678
10770
|
create_credential_manager_user?: boolean | undefined
|
|
10771
|
+
/** ID of the associated access system user within the credential manager. If you specify a `credential_manager_acs_user_id`, you cannot set `create_credential_manager_user` to `true`. */
|
|
10679
10772
|
credential_manager_acs_user_id?: string | undefined
|
|
10680
10773
|
}
|
|
10681
10774
|
formData: {}
|
|
@@ -10695,9 +10788,9 @@ export interface Routes {
|
|
|
10695
10788
|
method: 'PATCH' | 'POST'
|
|
10696
10789
|
queryParams: {}
|
|
10697
10790
|
jsonBody: {
|
|
10698
|
-
/** ID of the
|
|
10791
|
+
/** ID of the access system user to whom you want to assign a credential. */
|
|
10699
10792
|
acs_user_id: string
|
|
10700
|
-
/** ID of the
|
|
10793
|
+
/** ID of the credential that you want to assign to an access system user. */
|
|
10701
10794
|
acs_credential_id: string
|
|
10702
10795
|
}
|
|
10703
10796
|
commonParams: {}
|
|
@@ -10857,11 +10950,11 @@ export interface Routes {
|
|
|
10857
10950
|
commonParams: {
|
|
10858
10951
|
/** ACS system ID of the credential manager for the new credential. */
|
|
10859
10952
|
credential_manager_acs_system_id?: string | undefined
|
|
10860
|
-
/** ID of the
|
|
10953
|
+
/** ID of the access system user to whom the new credential belongs. You must provide either `acs_user_id` or the combination of `user_identity_id` and `acs_system_id`. */
|
|
10861
10954
|
acs_user_id?: string | undefined
|
|
10862
|
-
/** ID of the user identity to whom the new credential belongs. You must provide either `acs_user_id` or the combination of `user_identity_id` and `acs_system_id`. If the
|
|
10955
|
+
/** ID of the user identity to whom the new credential belongs. You must provide either `acs_user_id` or the combination of `user_identity_id` and `acs_system_id`. If the access system contains a user with the same `email_address` or `phone_number` as the user identity that you specify, they are linked, and the credential belongs to the access system user. If the access system does not have a corresponding user, one is created. */
|
|
10863
10956
|
user_identity_id?: string | undefined
|
|
10864
|
-
/** ID of the
|
|
10957
|
+
/** ID of the access system to which the new credential belongs. You must provide either `acs_user_id` or the combination of `user_identity_id` and `acs_system_id`. */
|
|
10865
10958
|
acs_system_id?: string | undefined
|
|
10866
10959
|
/** Access method for the new credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
10867
10960
|
access_method: 'code' | 'card' | 'mobile_key'
|
|
@@ -10901,7 +10994,9 @@ export interface Routes {
|
|
|
10901
10994
|
/** Salto Space-specific metadata for the new credential. */
|
|
10902
10995
|
salto_space_metadata?:
|
|
10903
10996
|
| {
|
|
10997
|
+
/** Indicates whether to assign a first, new card to a user. See also [Programming Salto Space Card-based Credentials](https://docs.seam.co/latest/device-and-system-integration-guides/salto-proaccess-space-access-system/programming-salto-space-card-based-credentials). */
|
|
10904
10998
|
assign_new_key?: boolean | undefined
|
|
10999
|
+
/** Indicates whether to update the user's existing card. See also [Programming Salto Space Card-based Credentials](https://docs.seam.co/latest/device-and-system-integration-guides/salto-proaccess-space-access-system/programming-salto-space-card-based-credentials). */
|
|
10905
11000
|
update_current_key?: boolean | undefined
|
|
10906
11001
|
}
|
|
10907
11002
|
| undefined
|
|
@@ -11064,7 +11159,7 @@ export interface Routes {
|
|
|
11064
11159
|
queryParams: {}
|
|
11065
11160
|
jsonBody: {}
|
|
11066
11161
|
commonParams: {
|
|
11067
|
-
/** ID of the
|
|
11162
|
+
/** ID of the access system user to whom the new credential belongs. */
|
|
11068
11163
|
acs_user_id: string
|
|
11069
11164
|
/** IDs of the [`acs_entrance`s](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) for which the new credential grants access. */
|
|
11070
11165
|
allowed_acs_entrance_id: string
|
|
@@ -11229,7 +11324,7 @@ export interface Routes {
|
|
|
11229
11324
|
queryParams: {}
|
|
11230
11325
|
jsonBody: {}
|
|
11231
11326
|
commonParams: {
|
|
11232
|
-
/** ID of the
|
|
11327
|
+
/** ID of the credential that you want to delete. */
|
|
11233
11328
|
acs_credential_id: string
|
|
11234
11329
|
}
|
|
11235
11330
|
formData: {}
|
|
@@ -11241,7 +11336,7 @@ export interface Routes {
|
|
|
11241
11336
|
queryParams: {}
|
|
11242
11337
|
jsonBody: {}
|
|
11243
11338
|
commonParams: {
|
|
11244
|
-
/** ID of the
|
|
11339
|
+
/** ID of the credential that you want to get. */
|
|
11245
11340
|
acs_credential_id: string
|
|
11246
11341
|
}
|
|
11247
11342
|
formData: {}
|
|
@@ -11399,17 +11494,17 @@ export interface Routes {
|
|
|
11399
11494
|
jsonBody: {}
|
|
11400
11495
|
commonParams: (
|
|
11401
11496
|
| {
|
|
11402
|
-
/** ID of the
|
|
11497
|
+
/** ID of the access system user for which you want to retrieve all credentials. */
|
|
11403
11498
|
acs_user_id: string
|
|
11404
11499
|
}
|
|
11405
11500
|
| {
|
|
11406
|
-
/** ID of the access
|
|
11501
|
+
/** ID of the access system for which you want to retrieve all credentials. */
|
|
11407
11502
|
acs_system_id: string
|
|
11408
11503
|
}
|
|
11409
11504
|
| {
|
|
11410
|
-
/** ID of the
|
|
11505
|
+
/** ID of the access system user for which you want to retrieve all credentials. */
|
|
11411
11506
|
acs_user_id: string
|
|
11412
|
-
/** ID of the access
|
|
11507
|
+
/** ID of the access system for which you want to retrieve all credentials. */
|
|
11413
11508
|
acs_system_id: string
|
|
11414
11509
|
}
|
|
11415
11510
|
| {
|
|
@@ -11574,7 +11669,7 @@ export interface Routes {
|
|
|
11574
11669
|
queryParams: {}
|
|
11575
11670
|
jsonBody: {}
|
|
11576
11671
|
commonParams: {
|
|
11577
|
-
/** ID of the credential for which you want to retrieve all entrances to which
|
|
11672
|
+
/** ID of the credential for which you want to retrieve all entrances to which the credential grants access. */
|
|
11578
11673
|
acs_credential_id: string
|
|
11579
11674
|
}
|
|
11580
11675
|
formData: {}
|
|
@@ -11671,9 +11766,9 @@ export interface Routes {
|
|
|
11671
11766
|
method: 'PATCH' | 'POST'
|
|
11672
11767
|
queryParams: {}
|
|
11673
11768
|
jsonBody: {
|
|
11674
|
-
/** ID of the
|
|
11769
|
+
/** ID of the access system user from which you want to unassign a credential. */
|
|
11675
11770
|
acs_user_id: string
|
|
11676
|
-
/** ID of the
|
|
11771
|
+
/** ID of the credential that you want to unassign from an access system user. */
|
|
11677
11772
|
acs_credential_id: string
|
|
11678
11773
|
}
|
|
11679
11774
|
commonParams: {}
|
|
@@ -11831,7 +11926,7 @@ export interface Routes {
|
|
|
11831
11926
|
queryParams: {}
|
|
11832
11927
|
jsonBody: {}
|
|
11833
11928
|
commonParams: {
|
|
11834
|
-
/** ID of the
|
|
11929
|
+
/** ID of the unmanaged credential that you want to get. */
|
|
11835
11930
|
acs_credential_id: string
|
|
11836
11931
|
}
|
|
11837
11932
|
formData: {}
|
|
@@ -11985,17 +12080,17 @@ export interface Routes {
|
|
|
11985
12080
|
jsonBody: {}
|
|
11986
12081
|
commonParams:
|
|
11987
12082
|
| {
|
|
11988
|
-
/** ID of the
|
|
12083
|
+
/** ID of the access system user for which you want to retrieve all credentials. */
|
|
11989
12084
|
acs_user_id: string
|
|
11990
12085
|
}
|
|
11991
12086
|
| {
|
|
11992
|
-
/** ID of the access
|
|
12087
|
+
/** ID of the access system for which you want to retrieve all credentials. */
|
|
11993
12088
|
acs_system_id: string
|
|
11994
12089
|
}
|
|
11995
12090
|
| {
|
|
11996
|
-
/** ID of the
|
|
12091
|
+
/** ID of the access system user for which you want to retrieve all credentials. */
|
|
11997
12092
|
acs_user_id: string
|
|
11998
|
-
/** ID of the access
|
|
12093
|
+
/** ID of the access system for which you want to retrieve all credentials. */
|
|
11999
12094
|
acs_system_id: string
|
|
12000
12095
|
}
|
|
12001
12096
|
| {
|
|
@@ -12150,9 +12245,9 @@ export interface Routes {
|
|
|
12150
12245
|
method: 'PATCH' | 'POST'
|
|
12151
12246
|
queryParams: {}
|
|
12152
12247
|
jsonBody: {
|
|
12153
|
-
/** ID of the
|
|
12248
|
+
/** ID of the credential that you want to update. */
|
|
12154
12249
|
acs_credential_id: string
|
|
12155
|
-
/** Replacement access (PIN) code for the credential. */
|
|
12250
|
+
/** Replacement access (PIN) code for the credential that you want to update. */
|
|
12156
12251
|
code?: string | undefined
|
|
12157
12252
|
/** Replacement date and time at which the validity of the credential ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after the `starts_at` value that you set when creating the credential. */
|
|
12158
12253
|
ends_at?: string | undefined
|
|
@@ -14926,7 +15021,7 @@ export interface Routes {
|
|
|
14926
15021
|
queryParams: {}
|
|
14927
15022
|
jsonBody: {}
|
|
14928
15023
|
commonParams: {
|
|
14929
|
-
/** ID of the
|
|
15024
|
+
/** ID of the encoder that you want to get. */
|
|
14930
15025
|
acs_encoder_id: string
|
|
14931
15026
|
}
|
|
14932
15027
|
formData: {}
|
|
@@ -14975,21 +15070,21 @@ export interface Routes {
|
|
|
14975
15070
|
jsonBody: {}
|
|
14976
15071
|
commonParams:
|
|
14977
15072
|
| {
|
|
14978
|
-
/** ID of the
|
|
15073
|
+
/** ID of the access system for which you want to retrieve all encoders. */
|
|
14979
15074
|
acs_system_id: string
|
|
14980
|
-
/** Number of
|
|
15075
|
+
/** Number of encoders to return. */
|
|
14981
15076
|
limit?: number
|
|
14982
15077
|
}
|
|
14983
15078
|
| {
|
|
14984
|
-
/** IDs of the
|
|
15079
|
+
/** IDs of the access systems for which you want to retrieve all encoders. */
|
|
14985
15080
|
acs_system_ids: string[]
|
|
14986
|
-
/** Number of
|
|
15081
|
+
/** Number of encoders to return. */
|
|
14987
15082
|
limit?: number
|
|
14988
15083
|
}
|
|
14989
15084
|
| {
|
|
14990
|
-
/** IDs of the
|
|
15085
|
+
/** IDs of the encoders that you want to retrieve. */
|
|
14991
15086
|
acs_encoder_ids: string[]
|
|
14992
|
-
/** Number of
|
|
15087
|
+
/** Number of encoders to return. */
|
|
14993
15088
|
limit?: number
|
|
14994
15089
|
}
|
|
14995
15090
|
formData: {}
|
|
@@ -15023,7 +15118,7 @@ export interface Routes {
|
|
|
15023
15118
|
queryParams: {}
|
|
15024
15119
|
jsonBody: {}
|
|
15025
15120
|
commonParams: {
|
|
15026
|
-
/** ID of the
|
|
15121
|
+
/** ID of the encoder to use for the scan. */
|
|
15027
15122
|
acs_encoder_id: string
|
|
15028
15123
|
}
|
|
15029
15124
|
formData: {}
|
|
@@ -16416,6 +16511,7 @@ export interface Routes {
|
|
|
16416
16511
|
queryParams: {}
|
|
16417
16512
|
jsonBody: {}
|
|
16418
16513
|
commonParams: {
|
|
16514
|
+
/** ID of the entrance that you want to get. */
|
|
16419
16515
|
acs_entrance_id: string
|
|
16420
16516
|
}
|
|
16421
16517
|
formData: {}
|
|
@@ -16515,7 +16611,9 @@ export interface Routes {
|
|
|
16515
16611
|
method: 'POST'
|
|
16516
16612
|
queryParams: {}
|
|
16517
16613
|
jsonBody: {
|
|
16614
|
+
/** ID of the entrance to which you want to grant an access system user access. */
|
|
16518
16615
|
acs_entrance_id: string
|
|
16616
|
+
/** ID of the access system user to whom you want to grant access to an entrance. */
|
|
16519
16617
|
acs_user_id: string
|
|
16520
16618
|
}
|
|
16521
16619
|
commonParams: {}
|
|
@@ -16528,9 +16626,11 @@ export interface Routes {
|
|
|
16528
16626
|
queryParams: {}
|
|
16529
16627
|
jsonBody: {}
|
|
16530
16628
|
commonParams: {
|
|
16629
|
+
/** ID of the access system for which you want to retrieve all entrances. */
|
|
16531
16630
|
acs_system_id?: string | undefined
|
|
16631
|
+
/** ID of the credential for which you want to retrieve all entrances. */
|
|
16532
16632
|
acs_credential_id?: string | undefined
|
|
16533
|
-
/**
|
|
16633
|
+
/** ID of the location for which you want to retrieve all entrances. */
|
|
16534
16634
|
location_id?: (string | null) | undefined
|
|
16535
16635
|
}
|
|
16536
16636
|
formData: {}
|
|
@@ -16628,7 +16728,9 @@ export interface Routes {
|
|
|
16628
16728
|
queryParams: {}
|
|
16629
16729
|
jsonBody: {}
|
|
16630
16730
|
commonParams: {
|
|
16731
|
+
/** ID of the entrance for which you want to list all credentials that grant access. */
|
|
16631
16732
|
acs_entrance_id: string
|
|
16733
|
+
/** Conditions that credentials must meet to be included in the returned list. */
|
|
16632
16734
|
include_if?: Array<'visionline_metadata.is_valid'> | undefined
|
|
16633
16735
|
}
|
|
16634
16736
|
formData: {}
|
|
@@ -16780,7 +16882,7 @@ export interface Routes {
|
|
|
16780
16882
|
queryParams: {}
|
|
16781
16883
|
jsonBody: {}
|
|
16782
16884
|
commonParams: {
|
|
16783
|
-
/** ID of the
|
|
16885
|
+
/** ID of the access system that you want to get. */
|
|
16784
16886
|
acs_system_id: string
|
|
16785
16887
|
}
|
|
16786
16888
|
formData: {}
|
|
@@ -16975,7 +17077,7 @@ export interface Routes {
|
|
|
16975
17077
|
queryParams: {}
|
|
16976
17078
|
jsonBody: {}
|
|
16977
17079
|
commonParams: {
|
|
16978
|
-
/** ID of the connected account by which to filter the list of
|
|
17080
|
+
/** ID of the connected account by which you want to filter the list of access systems. */
|
|
16979
17081
|
connected_account_id?: string | undefined
|
|
16980
17082
|
}
|
|
16981
17083
|
formData: {}
|
|
@@ -17165,7 +17267,7 @@ export interface Routes {
|
|
|
17165
17267
|
queryParams: {}
|
|
17166
17268
|
jsonBody: {}
|
|
17167
17269
|
commonParams: {
|
|
17168
|
-
/** ID of the
|
|
17270
|
+
/** ID of the access system for which you want to retrieve all compatible credential manager systems. */
|
|
17169
17271
|
acs_system_id: string
|
|
17170
17272
|
}
|
|
17171
17273
|
formData: {}
|
|
@@ -17355,9 +17457,9 @@ export interface Routes {
|
|
|
17355
17457
|
queryParams: {}
|
|
17356
17458
|
jsonBody: {}
|
|
17357
17459
|
commonParams: {
|
|
17358
|
-
/** ID of the
|
|
17460
|
+
/** ID of the access system user that you want to add to an access group. */
|
|
17359
17461
|
acs_user_id: string
|
|
17360
|
-
/** ID of the
|
|
17462
|
+
/** ID of the access group to which you want to add an access system user. */
|
|
17361
17463
|
acs_access_group_id: string
|
|
17362
17464
|
}
|
|
17363
17465
|
formData: {}
|
|
@@ -17368,18 +17470,20 @@ export interface Routes {
|
|
|
17368
17470
|
method: 'POST'
|
|
17369
17471
|
queryParams: {}
|
|
17370
17472
|
jsonBody: {
|
|
17371
|
-
/** Full name of the new
|
|
17473
|
+
/** Full name of the new access system user. */
|
|
17372
17474
|
full_name: string
|
|
17373
|
-
/** ID of the
|
|
17475
|
+
/** ID of the access system to which you want to add the new access system user. */
|
|
17374
17476
|
acs_system_id: string
|
|
17375
|
-
/** Array of
|
|
17477
|
+
/** Array of access group IDs to indicate the access groups to which you want to add the new access system user. */
|
|
17376
17478
|
acs_access_group_ids?: string[]
|
|
17377
|
-
/** ID of the user identity with which to associate the new
|
|
17479
|
+
/** ID of the user identity with which you want to associate the new access system user. */
|
|
17378
17480
|
user_identity_id?: string | undefined
|
|
17379
|
-
/** `starts_at` and `ends_at` timestamps for the new
|
|
17481
|
+
/** `starts_at` and `ends_at` timestamps for the new access system user's access. If you specify an `access_schedule`, you may include both `starts_at` and `ends_at`. If you omit `starts_at`, it defaults to the current time. `ends_at` is optional and must be a time in the future and after `starts_at`. */
|
|
17380
17482
|
access_schedule?:
|
|
17381
17483
|
| {
|
|
17484
|
+
/** Starting timestamp for the new access system user's access. */
|
|
17382
17485
|
starts_at?: string | undefined
|
|
17486
|
+
/** Ending timestamp for the new access system user's access. */
|
|
17383
17487
|
ends_at?: (string | undefined) | null
|
|
17384
17488
|
}
|
|
17385
17489
|
| undefined
|
|
@@ -17622,7 +17726,7 @@ export interface Routes {
|
|
|
17622
17726
|
queryParams: {}
|
|
17623
17727
|
jsonBody: {}
|
|
17624
17728
|
commonParams: {
|
|
17625
|
-
/** ID of the
|
|
17729
|
+
/** ID of the access system user that you want to delete. */
|
|
17626
17730
|
acs_user_id: string
|
|
17627
17731
|
}
|
|
17628
17732
|
formData: {}
|
|
@@ -17634,7 +17738,7 @@ export interface Routes {
|
|
|
17634
17738
|
queryParams: {}
|
|
17635
17739
|
jsonBody: {}
|
|
17636
17740
|
commonParams: {
|
|
17637
|
-
/** ID of the
|
|
17741
|
+
/** ID of the access system user that you want to get. */
|
|
17638
17742
|
acs_user_id: string
|
|
17639
17743
|
}
|
|
17640
17744
|
formData: {}
|
|
@@ -17867,18 +17971,19 @@ export interface Routes {
|
|
|
17867
17971
|
queryParams: {}
|
|
17868
17972
|
jsonBody: {}
|
|
17869
17973
|
commonParams: {
|
|
17870
|
-
/** ID of the user identity for which you want to retrieve all
|
|
17974
|
+
/** ID of the user identity for which you want to retrieve all access system users. */
|
|
17871
17975
|
user_identity_id?: string | undefined
|
|
17872
|
-
/** Phone number of the user identity for which you want to retrieve all
|
|
17976
|
+
/** Phone number of the user identity for which you want to retrieve all access system users, in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, `+15555550100`). */
|
|
17873
17977
|
user_identity_phone_number?: string | undefined
|
|
17874
|
-
/** Email address of the user identity for which you want to retrieve all
|
|
17978
|
+
/** Email address of the user identity for which you want to retrieve all access system users. */
|
|
17875
17979
|
user_identity_email_address?: string | undefined
|
|
17876
|
-
/** ID of the `acs_system` for which you want to retrieve all
|
|
17980
|
+
/** ID of the `acs_system` for which you want to retrieve all access system users. */
|
|
17877
17981
|
acs_system_id?: string | undefined
|
|
17878
|
-
/** String for which to search. Filters returned
|
|
17982
|
+
/** String for which to search. Filters returned access system users to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address`, `acs_user_id`, `user_identity_id`, `user_identity_full_name` or `user_identity_phone_number`. */
|
|
17879
17983
|
search?: string | undefined
|
|
17880
17984
|
/** Maximum number of records to return per page. */
|
|
17881
17985
|
limit?: number
|
|
17986
|
+
/** Timestamp by which to limit returned access system users. Returns users created before this timestamp. */
|
|
17882
17987
|
created_before?: Date | undefined
|
|
17883
17988
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
17884
17989
|
page_cursor?: (string | undefined) | null
|
|
@@ -18117,7 +18222,7 @@ export interface Routes {
|
|
|
18117
18222
|
queryParams: {}
|
|
18118
18223
|
jsonBody: {}
|
|
18119
18224
|
commonParams: {
|
|
18120
|
-
/** ID of the
|
|
18225
|
+
/** ID of the access system user for whom you want to list accessible entrances. */
|
|
18121
18226
|
acs_user_id: string
|
|
18122
18227
|
}
|
|
18123
18228
|
formData: {}
|
|
@@ -18215,9 +18320,9 @@ export interface Routes {
|
|
|
18215
18320
|
queryParams: {}
|
|
18216
18321
|
jsonBody: {}
|
|
18217
18322
|
commonParams: {
|
|
18218
|
-
/** ID of the
|
|
18323
|
+
/** ID of the access system user that you want to remove from an access group. */
|
|
18219
18324
|
acs_user_id: string
|
|
18220
|
-
/** ID of the
|
|
18325
|
+
/** ID of the access group from which you want to remove an access system user. */
|
|
18221
18326
|
acs_access_group_id: string
|
|
18222
18327
|
}
|
|
18223
18328
|
formData: {}
|
|
@@ -18228,7 +18333,7 @@ export interface Routes {
|
|
|
18228
18333
|
method: 'POST'
|
|
18229
18334
|
queryParams: {}
|
|
18230
18335
|
jsonBody: {
|
|
18231
|
-
/** ID of the
|
|
18336
|
+
/** ID of the access system user for whom you want to revoke access. */
|
|
18232
18337
|
acs_user_id: string
|
|
18233
18338
|
}
|
|
18234
18339
|
commonParams: {}
|
|
@@ -18241,7 +18346,7 @@ export interface Routes {
|
|
|
18241
18346
|
queryParams: {}
|
|
18242
18347
|
jsonBody: {}
|
|
18243
18348
|
commonParams: {
|
|
18244
|
-
/** ID of the
|
|
18349
|
+
/** ID of the access system user that you want to suspend. */
|
|
18245
18350
|
acs_user_id: string
|
|
18246
18351
|
}
|
|
18247
18352
|
formData: {}
|
|
@@ -18253,6 +18358,7 @@ export interface Routes {
|
|
|
18253
18358
|
queryParams: {}
|
|
18254
18359
|
jsonBody: {}
|
|
18255
18360
|
commonParams: {
|
|
18361
|
+
/** ID of the unmanaged access system user that you want to get. */
|
|
18256
18362
|
acs_user_id: string
|
|
18257
18363
|
}
|
|
18258
18364
|
formData: {}
|
|
@@ -18481,10 +18587,15 @@ export interface Routes {
|
|
|
18481
18587
|
queryParams: {}
|
|
18482
18588
|
jsonBody: {}
|
|
18483
18589
|
commonParams: {
|
|
18590
|
+
/** ID of the user identity for which you want to retrieve all unmanaged access system users. */
|
|
18484
18591
|
user_identity_id?: string | undefined
|
|
18592
|
+
/** Phone number of the user identity for which you want to retrieve all unmanaged access system users. */
|
|
18485
18593
|
user_identity_phone_number?: string | undefined
|
|
18594
|
+
/** Email address of the user identity for which you want to retrieve all unmanaged access system users. */
|
|
18486
18595
|
user_identity_email_address?: string | undefined
|
|
18596
|
+
/** ID of the access system for which you want to retrieve all unmanaged access system users. */
|
|
18487
18597
|
acs_system_id?: string | undefined
|
|
18598
|
+
/** Number of unmanaged access system users to return. */
|
|
18488
18599
|
limit?: number
|
|
18489
18600
|
}
|
|
18490
18601
|
formData: {}
|
|
@@ -18712,7 +18823,7 @@ export interface Routes {
|
|
|
18712
18823
|
queryParams: {}
|
|
18713
18824
|
jsonBody: {}
|
|
18714
18825
|
commonParams: {
|
|
18715
|
-
/** ID of the
|
|
18826
|
+
/** ID of the access system user that you want to unsuspend. */
|
|
18716
18827
|
acs_user_id: string
|
|
18717
18828
|
}
|
|
18718
18829
|
formData: {}
|
|
@@ -18723,10 +18834,12 @@ export interface Routes {
|
|
|
18723
18834
|
method: 'PATCH' | 'POST'
|
|
18724
18835
|
queryParams: {}
|
|
18725
18836
|
jsonBody: {
|
|
18726
|
-
/** `starts_at` and `ends_at` timestamps for the
|
|
18837
|
+
/** `starts_at` and `ends_at` timestamps for the access system user's access. If you specify an `access_schedule`, you may include both `starts_at` and `ends_at`. If you omit `starts_at`, it defaults to the current time. `ends_at` is optional and must be a time in the future and after `starts_at`. */
|
|
18727
18838
|
access_schedule?:
|
|
18728
18839
|
| ({
|
|
18840
|
+
/** Starting timestamp for the access system user's access. */
|
|
18729
18841
|
starts_at: string
|
|
18842
|
+
/** Ending timestamp for the access system user's access. */
|
|
18730
18843
|
ends_at: string
|
|
18731
18844
|
} | null)
|
|
18732
18845
|
| undefined
|
|
@@ -18753,6 +18866,7 @@ export interface Routes {
|
|
|
18753
18866
|
queryParams: {}
|
|
18754
18867
|
jsonBody: {}
|
|
18755
18868
|
commonParams: {
|
|
18869
|
+
/** ID of the action attempt that you want to get. */
|
|
18756
18870
|
action_attempt_id: string
|
|
18757
18871
|
}
|
|
18758
18872
|
formData: {}
|
|
@@ -20057,6 +20171,7 @@ export interface Routes {
|
|
|
20057
20171
|
queryParams: {}
|
|
20058
20172
|
jsonBody: {}
|
|
20059
20173
|
commonParams: {
|
|
20174
|
+
/** IDs of the action attempts that you want to retrieve. */
|
|
20060
20175
|
action_attempt_ids: string[]
|
|
20061
20176
|
}
|
|
20062
20177
|
formData: {}
|
|
@@ -21361,6 +21476,7 @@ export interface Routes {
|
|
|
21361
21476
|
queryParams: {}
|
|
21362
21477
|
jsonBody: {}
|
|
21363
21478
|
commonParams: {
|
|
21479
|
+
/** ID of the Seam Bridge that you want to get. */
|
|
21364
21480
|
bridge_id: string
|
|
21365
21481
|
}
|
|
21366
21482
|
formData: {}
|
|
@@ -21393,16 +21509,29 @@ export interface Routes {
|
|
|
21393
21509
|
method: 'POST' | 'PUT'
|
|
21394
21510
|
queryParams: {}
|
|
21395
21511
|
jsonBody: {
|
|
21512
|
+
/** Your user ID for the user for whom you want to create a client session. */
|
|
21396
21513
|
user_identifier_key?: string | undefined
|
|
21514
|
+
/** IDs of the [Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews) for which you want to create a client session. */
|
|
21397
21515
|
connect_webview_ids?: string[] | undefined
|
|
21516
|
+
/** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) for which you want to create a client session. */
|
|
21398
21517
|
connected_account_ids?: string[] | undefined
|
|
21518
|
+
/** IDs of the [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) for which you want to create a client session. */
|
|
21399
21519
|
user_identity_ids?: string[] | undefined
|
|
21520
|
+
/** Date and time at which the client session should expire, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
21400
21521
|
expires_at?: Date | undefined
|
|
21401
21522
|
}
|
|
21402
21523
|
commonParams: {}
|
|
21403
21524
|
formData: {}
|
|
21404
21525
|
jsonResponse: {
|
|
21405
|
-
/**
|
|
21526
|
+
/** Represents a [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). If you want to restrict your users' access to their own devices, use client sessions.
|
|
21527
|
+
|
|
21528
|
+
You create each client session with a custom `user_identifier_key`. Normally, the `user_identifier_key` is a user ID that your application provides.
|
|
21529
|
+
|
|
21530
|
+
When calling the Seam API from your backend using an API key, you can pass the `user_identifier_key` as a parameter to limit results to the associated client session. For example, `/devices/list?user_identifier_key=123` only returns devices associated with the client session created with the `user_identifier_key` `123`.
|
|
21531
|
+
|
|
21532
|
+
A client session has a token that you can use with the Seam JavaScript SDK to make requests from the client (browser) directly to the Seam API. The token restricts the user's access to only the devices that they own.
|
|
21533
|
+
|
|
21534
|
+
See also [Get Started with React](https://docs.seam.co/latest/ui-components/overview/getting-started-with-seam-components/get-started-with-react-components-and-client-session-tokens). */
|
|
21406
21535
|
client_session: {
|
|
21407
21536
|
client_session_id: string
|
|
21408
21537
|
workspace_id: string
|
|
@@ -21423,6 +21552,7 @@ export interface Routes {
|
|
|
21423
21552
|
queryParams: {}
|
|
21424
21553
|
jsonBody: {}
|
|
21425
21554
|
commonParams: {
|
|
21555
|
+
/** ID of the client session that you want to delete. */
|
|
21426
21556
|
client_session_id: string
|
|
21427
21557
|
}
|
|
21428
21558
|
formData: {}
|
|
@@ -21434,12 +21564,22 @@ export interface Routes {
|
|
|
21434
21564
|
queryParams: {}
|
|
21435
21565
|
jsonBody: {}
|
|
21436
21566
|
commonParams: {
|
|
21567
|
+
/** ID of the client session that you want to get. */
|
|
21437
21568
|
client_session_id?: string | undefined
|
|
21569
|
+
/** User identifier key associated with the client session that you want to get. */
|
|
21438
21570
|
user_identifier_key?: string | undefined
|
|
21439
21571
|
}
|
|
21440
21572
|
formData: {}
|
|
21441
21573
|
jsonResponse: {
|
|
21442
|
-
/**
|
|
21574
|
+
/** Represents a [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). If you want to restrict your users' access to their own devices, use client sessions.
|
|
21575
|
+
|
|
21576
|
+
You create each client session with a custom `user_identifier_key`. Normally, the `user_identifier_key` is a user ID that your application provides.
|
|
21577
|
+
|
|
21578
|
+
When calling the Seam API from your backend using an API key, you can pass the `user_identifier_key` as a parameter to limit results to the associated client session. For example, `/devices/list?user_identifier_key=123` only returns devices associated with the client session created with the `user_identifier_key` `123`.
|
|
21579
|
+
|
|
21580
|
+
A client session has a token that you can use with the Seam JavaScript SDK to make requests from the client (browser) directly to the Seam API. The token restricts the user's access to only the devices that they own.
|
|
21581
|
+
|
|
21582
|
+
See also [Get Started with React](https://docs.seam.co/latest/ui-components/overview/getting-started-with-seam-components/get-started-with-react-components-and-client-session-tokens). */
|
|
21443
21583
|
client_session: {
|
|
21444
21584
|
client_session_id: string
|
|
21445
21585
|
workspace_id: string
|
|
@@ -21459,16 +21599,29 @@ export interface Routes {
|
|
|
21459
21599
|
method: 'POST'
|
|
21460
21600
|
queryParams: {}
|
|
21461
21601
|
jsonBody: {
|
|
21602
|
+
/** Your user ID for the user that you want to associate with the client session (or that is already associated with the existing client session). */
|
|
21462
21603
|
user_identifier_key?: string | undefined
|
|
21604
|
+
/** IDs of the [Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews) that you want to associate with the client session (or that are already associated with the existing client session). */
|
|
21463
21605
|
connect_webview_ids?: string[] | undefined
|
|
21606
|
+
/** IDs of the [connected accounts](https://docs.seam.co/latest/api/connected_accounts) that you want to associate with the client session (or that are already associated with the existing client session). */
|
|
21464
21607
|
connected_account_ids?: string[] | undefined
|
|
21608
|
+
/** IDs of the [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session (or that are already associated with the existing client session). */
|
|
21465
21609
|
user_identity_ids?: string[] | undefined
|
|
21610
|
+
/** Date and time at which the client session should expire (or at which the existing client session expires), in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
21466
21611
|
expires_at?: Date | undefined
|
|
21467
21612
|
}
|
|
21468
21613
|
commonParams: {}
|
|
21469
21614
|
formData: {}
|
|
21470
21615
|
jsonResponse: {
|
|
21471
|
-
/**
|
|
21616
|
+
/** Represents a [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). If you want to restrict your users' access to their own devices, use client sessions.
|
|
21617
|
+
|
|
21618
|
+
You create each client session with a custom `user_identifier_key`. Normally, the `user_identifier_key` is a user ID that your application provides.
|
|
21619
|
+
|
|
21620
|
+
When calling the Seam API from your backend using an API key, you can pass the `user_identifier_key` as a parameter to limit results to the associated client session. For example, `/devices/list?user_identifier_key=123` only returns devices associated with the client session created with the `user_identifier_key` `123`.
|
|
21621
|
+
|
|
21622
|
+
A client session has a token that you can use with the Seam JavaScript SDK to make requests from the client (browser) directly to the Seam API. The token restricts the user's access to only the devices that they own.
|
|
21623
|
+
|
|
21624
|
+
See also [Get Started with React](https://docs.seam.co/latest/ui-components/overview/getting-started-with-seam-components/get-started-with-react-components-and-client-session-tokens). */
|
|
21472
21625
|
client_session: {
|
|
21473
21626
|
client_session_id: string
|
|
21474
21627
|
workspace_id: string
|
|
@@ -21489,15 +21642,28 @@ export interface Routes {
|
|
|
21489
21642
|
queryParams: {}
|
|
21490
21643
|
jsonBody: {}
|
|
21491
21644
|
commonParams: {
|
|
21645
|
+
/** ID of the client session to which you want to grant access to resources. */
|
|
21492
21646
|
client_session_id?: string | undefined
|
|
21647
|
+
/** Your user ID for the user that you want to associate with the client session. */
|
|
21493
21648
|
user_identifier_key?: string | undefined
|
|
21649
|
+
/** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) that you want to associate with the client session. */
|
|
21494
21650
|
connected_account_ids?: string[] | undefined
|
|
21651
|
+
/** IDs of the [Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews) that you want to associate with the client session. */
|
|
21495
21652
|
connect_webview_ids?: string[] | undefined
|
|
21653
|
+
/** IDs of the [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session. */
|
|
21496
21654
|
user_identity_ids?: string[] | undefined
|
|
21497
21655
|
}
|
|
21498
21656
|
formData: {}
|
|
21499
21657
|
jsonResponse: {
|
|
21500
|
-
/**
|
|
21658
|
+
/** Represents a [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). If you want to restrict your users' access to their own devices, use client sessions.
|
|
21659
|
+
|
|
21660
|
+
You create each client session with a custom `user_identifier_key`. Normally, the `user_identifier_key` is a user ID that your application provides.
|
|
21661
|
+
|
|
21662
|
+
When calling the Seam API from your backend using an API key, you can pass the `user_identifier_key` as a parameter to limit results to the associated client session. For example, `/devices/list?user_identifier_key=123` only returns devices associated with the client session created with the `user_identifier_key` `123`.
|
|
21663
|
+
|
|
21664
|
+
A client session has a token that you can use with the Seam JavaScript SDK to make requests from the client (browser) directly to the Seam API. The token restricts the user's access to only the devices that they own.
|
|
21665
|
+
|
|
21666
|
+
See also [Get Started with React](https://docs.seam.co/latest/ui-components/overview/getting-started-with-seam-components/get-started-with-react-components-and-client-session-tokens). */
|
|
21501
21667
|
client_session: {
|
|
21502
21668
|
client_session_id: string
|
|
21503
21669
|
workspace_id: string
|
|
@@ -21518,10 +21684,15 @@ export interface Routes {
|
|
|
21518
21684
|
queryParams: {}
|
|
21519
21685
|
jsonBody: {}
|
|
21520
21686
|
commonParams: {
|
|
21687
|
+
/** ID of the client session that you want to retrieve. */
|
|
21521
21688
|
client_session_id?: string | undefined
|
|
21689
|
+
/** Your user ID for the user by which you want to filter client sessions. */
|
|
21522
21690
|
user_identifier_key?: string | undefined
|
|
21691
|
+
/** ID of the [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews) for which you want to retrieve client sessions. */
|
|
21523
21692
|
connect_webview_id?: string | undefined
|
|
21693
|
+
/** Indicates whether to retrieve only client sessions without associated user identifier keys. */
|
|
21524
21694
|
without_user_identifier_key?: boolean | undefined
|
|
21695
|
+
/** ID of the [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) for which you want to retrieve client sessions. */
|
|
21525
21696
|
user_identity_id?: string | undefined
|
|
21526
21697
|
}
|
|
21527
21698
|
formData: {}
|
|
@@ -21546,6 +21717,7 @@ export interface Routes {
|
|
|
21546
21717
|
queryParams: {}
|
|
21547
21718
|
jsonBody: {}
|
|
21548
21719
|
commonParams: {
|
|
21720
|
+
/** ID of the client session that you want to revoke. */
|
|
21549
21721
|
client_session_id: string
|
|
21550
21722
|
}
|
|
21551
21723
|
formData: {}
|
|
@@ -21556,9 +21728,13 @@ export interface Routes {
|
|
|
21556
21728
|
method: 'POST'
|
|
21557
21729
|
queryParams: {}
|
|
21558
21730
|
jsonBody: {
|
|
21731
|
+
/** */
|
|
21559
21732
|
device_selection_mode?: ('none' | 'single' | 'multiple') | undefined
|
|
21733
|
+
/** URL that you want to redirect the user to after the provider login is complete. */
|
|
21560
21734
|
custom_redirect_url?: string | undefined
|
|
21735
|
+
/** Alternative URL that you want to redirect the user to on an error. If you do not set this parameter, the Connect Webview falls back to the `custom_redirect_url`. */
|
|
21561
21736
|
custom_redirect_failure_url?: string | undefined
|
|
21737
|
+
/** Accepted device provider keys as an alternative to `provider_category`. Use this parameter to specify accepted providers explicitly. See [Customize the Brands to Display in Your Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). To list all provider keys, use [`/devices/list_device_providers`](https://docs.seam.co/latest/api/devices/list_device_providers) with no filters. */
|
|
21562
21738
|
accepted_providers?:
|
|
21563
21739
|
| Array<
|
|
21564
21740
|
| 'dormakaba_community'
|
|
@@ -21613,6 +21789,7 @@ export interface Routes {
|
|
|
21613
21789
|
| 'google_nest'
|
|
21614
21790
|
>
|
|
21615
21791
|
| undefined
|
|
21792
|
+
/** Specifies the category of providers that you want to include. To list all providers within a category, use [`/devices/list_device_providers`](https://docs.seam.co/latest/api/devices/list_device_providers) with the desired `provider_category` filter. */
|
|
21616
21793
|
provider_category?:
|
|
21617
21794
|
| (
|
|
21618
21795
|
| 'stable'
|
|
@@ -21623,14 +21800,27 @@ export interface Routes {
|
|
|
21623
21800
|
| 'internal_beta'
|
|
21624
21801
|
)
|
|
21625
21802
|
| undefined
|
|
21803
|
+
/** Custom metadata that you want to associate with the Connect Webview. Supports up to 50 JSON key:value pairs. [Adding custom metadata to a Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview) enables you to store custom information, like customer details or internal IDs from your application. The custom metadata is then transferred to any [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) that were connected using the Connect Webview, making it easy to find and filter these resources in your [workspace](https://docs.seam.co/latest/core-concepts/workspaces). You can also [filter Connect Webviews by custom metadata](https://docs.seam.co/latest/core-concepts/connect-webviews/filtering-connect-webviews-by-custom-metadata). */
|
|
21626
21804
|
custom_metadata?: Record<string, string | boolean | null> | undefined
|
|
21805
|
+
/** Indicates whether newly-added devices should appear as [managed devices](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices). See also: [Customize the Behavior Settings of Your Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-behavior-settings-of-your-connect-webviews). */
|
|
21627
21806
|
automatically_manage_new_devices?: boolean
|
|
21807
|
+
/** Indicates whether Seam should finish syncing all devices in a newly-connected account before completing the associated Connect Webview. See also: [Customize the Behavior Settings of Your Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-behavior-settings-of-your-connect-webviews). */
|
|
21628
21808
|
wait_for_device_creation?: boolean
|
|
21629
21809
|
}
|
|
21630
21810
|
commonParams: {}
|
|
21631
21811
|
formData: {}
|
|
21632
21812
|
jsonResponse: {
|
|
21633
|
-
/**
|
|
21813
|
+
/** Represents a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews).
|
|
21814
|
+
|
|
21815
|
+
Connect Webviews are fully-embedded client-side components that you add to your app. Your users interact with your embedded Connect Webviews to link their IoT device or system accounts to Seam. That is, Connect Webviews walk your users through the process of logging in to their device or system accounts. Seam handles all the authentication steps, and—once your user has completed the authorization through your app—you can access and control their devices or systems using the Seam API.
|
|
21816
|
+
|
|
21817
|
+
Connect Webviews perform credential validation, multifactor authentication (when applicable), and error handling for each brand that Seam supports. Further, Connect Webviews work across all modern browsers and platforms, including Chrome, Safari, and Firefox.
|
|
21818
|
+
|
|
21819
|
+
To enable a user to connect their device or system account to Seam through your app, first create a `connect_webview`. Once created, this `connect_webview` includes a URL that you can use to open an [iframe](https://www.w3schools.com/html/html_iframe.asp) or new window containing the Connect Webview for your user.
|
|
21820
|
+
|
|
21821
|
+
When you create a Connect Webview, specify the desired provider category key in the `provider_category` parameter. Alternately, to specify a list of providers explicitly, use the `accepted_providers` parameter with a list of device provider keys.
|
|
21822
|
+
|
|
21823
|
+
To list all providers within a category, use `/devices/list_device_providers` with the desired `provider_category` filter. To list all provider keys, use `/devices/list_device_providers` with no filters. */
|
|
21634
21824
|
connect_webview: {
|
|
21635
21825
|
connect_webview_id: string
|
|
21636
21826
|
workspace_id: string
|
|
@@ -21663,6 +21853,7 @@ export interface Routes {
|
|
|
21663
21853
|
method: 'DELETE' | 'POST'
|
|
21664
21854
|
queryParams: {}
|
|
21665
21855
|
jsonBody: {
|
|
21856
|
+
/** ID of the Connect Webview that you want to delete. */
|
|
21666
21857
|
connect_webview_id: string
|
|
21667
21858
|
}
|
|
21668
21859
|
commonParams: {}
|
|
@@ -21675,11 +21866,22 @@ export interface Routes {
|
|
|
21675
21866
|
queryParams: {}
|
|
21676
21867
|
jsonBody: {}
|
|
21677
21868
|
commonParams: {
|
|
21869
|
+
/** ID of the Connect Webview that you want to get. */
|
|
21678
21870
|
connect_webview_id: string
|
|
21679
21871
|
}
|
|
21680
21872
|
formData: {}
|
|
21681
21873
|
jsonResponse: {
|
|
21682
|
-
/**
|
|
21874
|
+
/** Represents a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews).
|
|
21875
|
+
|
|
21876
|
+
Connect Webviews are fully-embedded client-side components that you add to your app. Your users interact with your embedded Connect Webviews to link their IoT device or system accounts to Seam. That is, Connect Webviews walk your users through the process of logging in to their device or system accounts. Seam handles all the authentication steps, and—once your user has completed the authorization through your app—you can access and control their devices or systems using the Seam API.
|
|
21877
|
+
|
|
21878
|
+
Connect Webviews perform credential validation, multifactor authentication (when applicable), and error handling for each brand that Seam supports. Further, Connect Webviews work across all modern browsers and platforms, including Chrome, Safari, and Firefox.
|
|
21879
|
+
|
|
21880
|
+
To enable a user to connect their device or system account to Seam through your app, first create a `connect_webview`. Once created, this `connect_webview` includes a URL that you can use to open an [iframe](https://www.w3schools.com/html/html_iframe.asp) or new window containing the Connect Webview for your user.
|
|
21881
|
+
|
|
21882
|
+
When you create a Connect Webview, specify the desired provider category key in the `provider_category` parameter. Alternately, to specify a list of providers explicitly, use the `accepted_providers` parameter with a list of device provider keys.
|
|
21883
|
+
|
|
21884
|
+
To list all providers within a category, use `/devices/list_device_providers` with the desired `provider_category` filter. To list all provider keys, use `/devices/list_device_providers` with no filters. */
|
|
21683
21885
|
connect_webview: {
|
|
21684
21886
|
connect_webview_id: string
|
|
21685
21887
|
workspace_id: string
|
|
@@ -21713,10 +21915,11 @@ export interface Routes {
|
|
|
21713
21915
|
queryParams: {}
|
|
21714
21916
|
jsonBody: {}
|
|
21715
21917
|
commonParams: {
|
|
21716
|
-
/**
|
|
21918
|
+
/** Your user ID for the user by which you want to filter Connect Webviews. */
|
|
21717
21919
|
user_identifier_key?: string | undefined
|
|
21718
|
-
/**
|
|
21920
|
+
/** Custom metadata pairs by which you want to [filter Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/filtering-connect-webviews-by-custom-metadata). Returns Connect Webviews with `custom_metadata` that contains all of the provided key:value pairs. */
|
|
21719
21921
|
custom_metadata_has?: Record<string, string | boolean> | undefined
|
|
21922
|
+
/** Maximum number of records to return per page. */
|
|
21720
21923
|
limit?: number
|
|
21721
21924
|
}
|
|
21722
21925
|
formData: {}
|
|
@@ -21753,7 +21956,9 @@ export interface Routes {
|
|
|
21753
21956
|
method: 'DELETE' | 'POST'
|
|
21754
21957
|
queryParams: {}
|
|
21755
21958
|
jsonBody: {
|
|
21959
|
+
/** ID of the connected account that you want to delete. */
|
|
21756
21960
|
connected_account_id: string
|
|
21961
|
+
/** */
|
|
21757
21962
|
sync?: boolean
|
|
21758
21963
|
}
|
|
21759
21964
|
commonParams: {}
|
|
@@ -21767,14 +21972,16 @@ export interface Routes {
|
|
|
21767
21972
|
jsonBody: {}
|
|
21768
21973
|
commonParams:
|
|
21769
21974
|
| {
|
|
21975
|
+
/** ID of the connected account that you want to get. */
|
|
21770
21976
|
connected_account_id: string
|
|
21771
21977
|
}
|
|
21772
21978
|
| {
|
|
21979
|
+
/** Email address associated with the connected account that you want to get. */
|
|
21773
21980
|
email: string
|
|
21774
21981
|
}
|
|
21775
21982
|
formData: {}
|
|
21776
21983
|
jsonResponse: {
|
|
21777
|
-
/**
|
|
21984
|
+
/** Represents a [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). A connected account is an external third-party account to which your user has authorized Seam to get access, for example, an August account with a list of door locks. */
|
|
21778
21985
|
connected_account: {
|
|
21779
21986
|
connected_account_id?: string | undefined
|
|
21780
21987
|
created_at?: string | undefined
|
|
@@ -21877,9 +22084,9 @@ export interface Routes {
|
|
|
21877
22084
|
queryParams: {}
|
|
21878
22085
|
jsonBody: {}
|
|
21879
22086
|
commonParams: {
|
|
21880
|
-
/**
|
|
22087
|
+
/** Your user ID for the user by which you want to filter connected accounts. */
|
|
21881
22088
|
user_identifier_key?: string | undefined
|
|
21882
|
-
/** Returns accounts
|
|
22089
|
+
/** Custom metadata pairs by which you want to filter connected accounts. Returns connected accounts with `custom_metadata` that contains all of the provided key:value pairs. */
|
|
21883
22090
|
custom_metadata_has?: Record<string, string | boolean> | undefined
|
|
21884
22091
|
customer_ids?: string[] | undefined
|
|
21885
22092
|
/** Maximum number of records to return per page. */
|
|
@@ -21999,14 +22206,17 @@ export interface Routes {
|
|
|
21999
22206
|
method: 'POST'
|
|
22000
22207
|
queryParams: {}
|
|
22001
22208
|
jsonBody: {
|
|
22209
|
+
/** ID of the connected account that you want to update. */
|
|
22002
22210
|
connected_account_id: string
|
|
22211
|
+
/** Indicates whether newly-added devices should appear as [managed devices](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices). */
|
|
22003
22212
|
automatically_manage_new_devices?: boolean | undefined
|
|
22213
|
+
/** Custom metadata that you want to associate with the connected account. Supports up to 50 JSON key:value pairs. [Adding custom metadata to a connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account) enables you to store custom information, like customer details or internal IDs from your application. Then, you can [filter connected accounts by the desired metadata](https://docs.seam.co/latest/core-concepts/connected-accounts/filtering-connected-accounts-by-custom-metadata). */
|
|
22004
22214
|
custom_metadata?: Record<string, string | boolean | null> | undefined
|
|
22005
22215
|
}
|
|
22006
22216
|
commonParams: {}
|
|
22007
22217
|
formData: {}
|
|
22008
22218
|
jsonResponse: {
|
|
22009
|
-
/**
|
|
22219
|
+
/** Represents a [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). A connected account is an external third-party account to which your user has authorized Seam to get access, for example, an August account with a list of door locks. */
|
|
22010
22220
|
connected_account: {
|
|
22011
22221
|
connected_account_id?: string | undefined
|
|
22012
22222
|
created_at?: string | undefined
|
|
@@ -22109,6 +22319,7 @@ export interface Routes {
|
|
|
22109
22319
|
queryParams: {}
|
|
22110
22320
|
jsonBody: {}
|
|
22111
22321
|
commonParams: {
|
|
22322
|
+
/** ID of the device that you want to delete. */
|
|
22112
22323
|
device_id: string
|
|
22113
22324
|
}
|
|
22114
22325
|
formData: {}
|
|
@@ -22120,12 +22331,14 @@ export interface Routes {
|
|
|
22120
22331
|
queryParams: {}
|
|
22121
22332
|
jsonBody: {}
|
|
22122
22333
|
commonParams: {
|
|
22334
|
+
/** ID of the device that you want to get. */
|
|
22123
22335
|
device_id?: string | undefined
|
|
22336
|
+
/** Name of the device that you want to get. */
|
|
22124
22337
|
name?: string | undefined
|
|
22125
22338
|
}
|
|
22126
22339
|
formData: {}
|
|
22127
22340
|
jsonResponse: {
|
|
22128
|
-
/**
|
|
22341
|
+
/** Represents a [device](https://docs.seam.co/latest/core-concepts/devices) that has been connected to Seam. */
|
|
22129
22342
|
device: {
|
|
22130
22343
|
/** Unique identifier for the device. */
|
|
22131
22344
|
device_id: string
|
|
@@ -22235,7 +22448,7 @@ export interface Routes {
|
|
|
22235
22448
|
status: 'critical' | 'low' | 'good' | 'full'
|
|
22236
22449
|
}
|
|
22237
22450
|
| undefined
|
|
22238
|
-
/** Manufacturer of the device. */
|
|
22451
|
+
/** Manufacturer of the device. When a device, such as a smart lock, is connected through a smart hub, the manufacturer of the device might be different from that of the smart hub. */
|
|
22239
22452
|
manufacturer?: string | undefined
|
|
22240
22453
|
/** Image URL for the device. */
|
|
22241
22454
|
image_url?: string | undefined
|
|
@@ -22595,6 +22808,7 @@ export interface Routes {
|
|
|
22595
22808
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
22596
22809
|
| (number[] | undefined)
|
|
22597
22810
|
| undefined
|
|
22811
|
+
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
22598
22812
|
code_constraints?:
|
|
22599
22813
|
| (
|
|
22600
22814
|
| Array<
|
|
@@ -23122,13 +23336,13 @@ export interface Routes {
|
|
|
23122
23336
|
jsonBody: {}
|
|
23123
23337
|
commonParams: {
|
|
23124
23338
|
customer_ids?: string[] | undefined
|
|
23125
|
-
/** ID of the connected account
|
|
23339
|
+
/** ID of the connected account for which you want to list devices. */
|
|
23126
23340
|
connected_account_id?: string | undefined
|
|
23127
|
-
/** Array of IDs of the connected accounts
|
|
23341
|
+
/** Array of IDs of the connected accounts for which you want to list devices. */
|
|
23128
23342
|
connected_account_ids?: string[] | undefined
|
|
23129
|
-
/** ID of the Connect Webview
|
|
23343
|
+
/** ID of the Connect Webview for which you want to list devices. */
|
|
23130
23344
|
connect_webview_id?: string | undefined
|
|
23131
|
-
/** Device type
|
|
23345
|
+
/** Device type for which you want to list devices. */
|
|
23132
23346
|
device_type?:
|
|
23133
23347
|
| (
|
|
23134
23348
|
| (
|
|
@@ -23172,7 +23386,7 @@ export interface Routes {
|
|
|
23172
23386
|
| ('ios_phone' | 'android_phone')
|
|
23173
23387
|
)
|
|
23174
23388
|
| undefined
|
|
23175
|
-
/** Array of device types
|
|
23389
|
+
/** Array of device types for which you want to list devices. */
|
|
23176
23390
|
device_types?:
|
|
23177
23391
|
| Array<
|
|
23178
23392
|
| (
|
|
@@ -23216,7 +23430,7 @@ export interface Routes {
|
|
|
23216
23430
|
| ('ios_phone' | 'android_phone')
|
|
23217
23431
|
>
|
|
23218
23432
|
| undefined
|
|
23219
|
-
/** Manufacturer
|
|
23433
|
+
/** Manufacturer for which you want to list devices. */
|
|
23220
23434
|
manufacturer?:
|
|
23221
23435
|
| (
|
|
23222
23436
|
| 'akuvox'
|
|
@@ -23259,15 +23473,15 @@ export interface Routes {
|
|
|
23259
23473
|
| 'sensi'
|
|
23260
23474
|
)
|
|
23261
23475
|
| undefined
|
|
23262
|
-
/** Array of device IDs
|
|
23476
|
+
/** Array of device IDs for which you want to list devices. */
|
|
23263
23477
|
device_ids?: string[] | undefined
|
|
23264
23478
|
/** Numerical limit on the number of devices to return. */
|
|
23265
23479
|
limit?: number
|
|
23266
|
-
/**
|
|
23480
|
+
/** Timestamp by which to limit returned devices. Returns devices created before this timestamp. */
|
|
23267
23481
|
created_before?: Date | undefined
|
|
23268
|
-
/** Your own internal user ID for the user
|
|
23482
|
+
/** Your own internal user ID for the user for which you want to list devices. */
|
|
23269
23483
|
user_identifier_key?: string | undefined
|
|
23270
|
-
/** Set of key:value [custom metadata](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device) pairs
|
|
23484
|
+
/** Set of key:value [custom metadata](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device) pairs for which you want to list devices. */
|
|
23271
23485
|
custom_metadata_has?: Record<string, string | boolean> | undefined
|
|
23272
23486
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
23273
23487
|
page_cursor?: (string | undefined) | null
|
|
@@ -23303,7 +23517,7 @@ export interface Routes {
|
|
|
23303
23517
|
| 'can_simulate_disconnection'
|
|
23304
23518
|
>
|
|
23305
23519
|
| undefined
|
|
23306
|
-
/**
|
|
23520
|
+
/** ID of the location for which you want to list devices. */
|
|
23307
23521
|
unstable_location_id?: (string | null) | undefined
|
|
23308
23522
|
}
|
|
23309
23523
|
formData: {}
|
|
@@ -23417,7 +23631,7 @@ export interface Routes {
|
|
|
23417
23631
|
status: 'critical' | 'low' | 'good' | 'full'
|
|
23418
23632
|
}
|
|
23419
23633
|
| undefined
|
|
23420
|
-
/** Manufacturer of the device. */
|
|
23634
|
+
/** Manufacturer of the device. When a device, such as a smart lock, is connected through a smart hub, the manufacturer of the device might be different from that of the smart hub. */
|
|
23421
23635
|
manufacturer?: string | undefined
|
|
23422
23636
|
/** Image URL for the device. */
|
|
23423
23637
|
image_url?: string | undefined
|
|
@@ -23777,6 +23991,7 @@ export interface Routes {
|
|
|
23777
23991
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
23778
23992
|
| (number[] | undefined)
|
|
23779
23993
|
| undefined
|
|
23994
|
+
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
23780
23995
|
code_constraints?:
|
|
23781
23996
|
| (
|
|
23782
23997
|
| Array<
|
|
@@ -24312,6 +24527,7 @@ export interface Routes {
|
|
|
24312
24527
|
queryParams: {}
|
|
24313
24528
|
jsonBody: {}
|
|
24314
24529
|
commonParams: {
|
|
24530
|
+
/** Category for which you want to list providers. */
|
|
24315
24531
|
provider_category?:
|
|
24316
24532
|
| (
|
|
24317
24533
|
| 'stable'
|
|
@@ -24401,6 +24617,7 @@ export interface Routes {
|
|
|
24401
24617
|
method: 'POST'
|
|
24402
24618
|
queryParams: {}
|
|
24403
24619
|
jsonBody: {
|
|
24620
|
+
/** ID of the device that you want to simulate connecting to Seam. */
|
|
24404
24621
|
device_id: string
|
|
24405
24622
|
}
|
|
24406
24623
|
commonParams: {}
|
|
@@ -24412,6 +24629,7 @@ export interface Routes {
|
|
|
24412
24629
|
method: 'POST'
|
|
24413
24630
|
queryParams: {}
|
|
24414
24631
|
jsonBody: {
|
|
24632
|
+
/** ID of the device that you want to simulate disconnecting from Seam. */
|
|
24415
24633
|
device_id: string
|
|
24416
24634
|
}
|
|
24417
24635
|
commonParams: {}
|
|
@@ -24423,6 +24641,7 @@ export interface Routes {
|
|
|
24423
24641
|
method: 'DELETE' | 'POST'
|
|
24424
24642
|
queryParams: {}
|
|
24425
24643
|
jsonBody: {
|
|
24644
|
+
/** ID of the device that you want to simulate removing from Seam. */
|
|
24426
24645
|
device_id: string
|
|
24427
24646
|
}
|
|
24428
24647
|
commonParams: {}
|
|
@@ -24435,12 +24654,14 @@ export interface Routes {
|
|
|
24435
24654
|
queryParams: {}
|
|
24436
24655
|
jsonBody: {}
|
|
24437
24656
|
commonParams: {
|
|
24657
|
+
/** ID of the unmanaged device that you want to get. */
|
|
24438
24658
|
device_id?: string | undefined
|
|
24659
|
+
/** Name of the unmanaged device that you want to get. */
|
|
24439
24660
|
name?: string | undefined
|
|
24440
24661
|
}
|
|
24441
24662
|
formData: {}
|
|
24442
24663
|
jsonResponse: {
|
|
24443
|
-
/**
|
|
24664
|
+
/** Represents an [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices). An unmanaged device has a limited set of visible properties and a subset of supported events. You cannot control an unmanaged device. Any [access codes](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/migrating-existing-access-codes) on an unmanaged device are unmanaged. To control an unmanaged device with Seam, [convert it to a managed device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices#convert-an-unmanaged-device-to-managed). */
|
|
24444
24665
|
device: {
|
|
24445
24666
|
/** Unique identifier for the device. */
|
|
24446
24667
|
device_id: string
|
|
@@ -24746,7 +24967,7 @@ export interface Routes {
|
|
|
24746
24967
|
name: string
|
|
24747
24968
|
/** Indicates whether the device is online. */
|
|
24748
24969
|
online: boolean
|
|
24749
|
-
/** Manufacturer of the device. */
|
|
24970
|
+
/** Manufacturer of the device. When a device, such as a smart lock, is connected through a smart hub, the manufacturer of the device might be different from that of the smart hub. */
|
|
24750
24971
|
manufacturer?: string | undefined
|
|
24751
24972
|
/** Image URL for the device. */
|
|
24752
24973
|
image_url?: string | undefined
|
|
@@ -24804,13 +25025,13 @@ export interface Routes {
|
|
|
24804
25025
|
jsonBody: {}
|
|
24805
25026
|
commonParams: {
|
|
24806
25027
|
customer_ids?: string[] | undefined
|
|
24807
|
-
/** ID of the connected account
|
|
25028
|
+
/** ID of the connected account for which you want to list devices. */
|
|
24808
25029
|
connected_account_id?: string | undefined
|
|
24809
|
-
/** Array of IDs of the connected accounts
|
|
25030
|
+
/** Array of IDs of the connected accounts for which you want to list devices. */
|
|
24810
25031
|
connected_account_ids?: string[] | undefined
|
|
24811
|
-
/** ID of the Connect Webview
|
|
25032
|
+
/** ID of the Connect Webview for which you want to list devices. */
|
|
24812
25033
|
connect_webview_id?: string | undefined
|
|
24813
|
-
/** Device type
|
|
25034
|
+
/** Device type for which you want to list devices. */
|
|
24814
25035
|
device_type?:
|
|
24815
25036
|
| (
|
|
24816
25037
|
| (
|
|
@@ -24854,7 +25075,7 @@ export interface Routes {
|
|
|
24854
25075
|
| ('ios_phone' | 'android_phone')
|
|
24855
25076
|
)
|
|
24856
25077
|
| undefined
|
|
24857
|
-
/** Array of device types
|
|
25078
|
+
/** Array of device types for which you want to list devices. */
|
|
24858
25079
|
device_types?:
|
|
24859
25080
|
| Array<
|
|
24860
25081
|
| (
|
|
@@ -24898,7 +25119,7 @@ export interface Routes {
|
|
|
24898
25119
|
| ('ios_phone' | 'android_phone')
|
|
24899
25120
|
>
|
|
24900
25121
|
| undefined
|
|
24901
|
-
/** Manufacturer
|
|
25122
|
+
/** Manufacturer for which you want to list devices. */
|
|
24902
25123
|
manufacturer?:
|
|
24903
25124
|
| (
|
|
24904
25125
|
| 'akuvox'
|
|
@@ -24941,15 +25162,15 @@ export interface Routes {
|
|
|
24941
25162
|
| 'sensi'
|
|
24942
25163
|
)
|
|
24943
25164
|
| undefined
|
|
24944
|
-
/** Array of device IDs
|
|
25165
|
+
/** Array of device IDs for which you want to list devices. */
|
|
24945
25166
|
device_ids?: string[] | undefined
|
|
24946
25167
|
/** Numerical limit on the number of devices to return. */
|
|
24947
25168
|
limit?: number
|
|
24948
|
-
/**
|
|
25169
|
+
/** Timestamp by which to limit returned devices. Returns devices created before this timestamp. */
|
|
24949
25170
|
created_before?: Date | undefined
|
|
24950
|
-
/** Your own internal user ID for the user
|
|
25171
|
+
/** Your own internal user ID for the user for which you want to list devices. */
|
|
24951
25172
|
user_identifier_key?: string | undefined
|
|
24952
|
-
/** Set of key:value [custom metadata](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device) pairs
|
|
25173
|
+
/** Set of key:value [custom metadata](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device) pairs for which you want to list devices. */
|
|
24953
25174
|
custom_metadata_has?: Record<string, string | boolean> | undefined
|
|
24954
25175
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
24955
25176
|
page_cursor?: (string | undefined) | null
|
|
@@ -24985,7 +25206,7 @@ export interface Routes {
|
|
|
24985
25206
|
| 'can_simulate_disconnection'
|
|
24986
25207
|
>
|
|
24987
25208
|
| undefined
|
|
24988
|
-
/**
|
|
25209
|
+
/** ID of the location for which you want to list devices. */
|
|
24989
25210
|
unstable_location_id?: (string | null) | undefined
|
|
24990
25211
|
}
|
|
24991
25212
|
formData: {}
|
|
@@ -25295,7 +25516,7 @@ export interface Routes {
|
|
|
25295
25516
|
name: string
|
|
25296
25517
|
/** Indicates whether the device is online. */
|
|
25297
25518
|
online: boolean
|
|
25298
|
-
/** Manufacturer of the device. */
|
|
25519
|
+
/** Manufacturer of the device. When a device, such as a smart lock, is connected through a smart hub, the manufacturer of the device might be different from that of the smart hub. */
|
|
25299
25520
|
manufacturer?: string | undefined
|
|
25300
25521
|
/** Image URL for the device. */
|
|
25301
25522
|
image_url?: string | undefined
|
|
@@ -25352,7 +25573,9 @@ export interface Routes {
|
|
|
25352
25573
|
queryParams: {}
|
|
25353
25574
|
jsonBody: {}
|
|
25354
25575
|
commonParams: {
|
|
25576
|
+
/** ID of the unmanaged device that you want to update. */
|
|
25355
25577
|
device_id: string
|
|
25578
|
+
/** Indicates whether the device is managed. Set this parameter to `true` to convert an unmanaged device to managed. */
|
|
25356
25579
|
is_managed: true
|
|
25357
25580
|
}
|
|
25358
25581
|
formData: {}
|
|
@@ -25364,14 +25587,19 @@ export interface Routes {
|
|
|
25364
25587
|
queryParams: {}
|
|
25365
25588
|
jsonBody: {}
|
|
25366
25589
|
commonParams: {
|
|
25590
|
+
/** ID of the device that you want to update. */
|
|
25367
25591
|
device_id: string
|
|
25368
25592
|
properties?:
|
|
25369
25593
|
| {
|
|
25594
|
+
/** Name for the device. */
|
|
25370
25595
|
name?: (string | null) | undefined
|
|
25371
25596
|
}
|
|
25372
25597
|
| undefined
|
|
25598
|
+
/** Name for the device. */
|
|
25373
25599
|
name?: (string | null) | undefined
|
|
25600
|
+
/** Indicates whether the device is managed. To unmanage a device, set `is_managed` to `false`. */
|
|
25374
25601
|
is_managed?: boolean
|
|
25602
|
+
/** Custom metadata that you want to associate with the device. Supports up to 50 JSON key:value pairs. [Adding custom metadata to a device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device) enables you to store custom information, like customer details or internal IDs from your application. Then, you can [filter devices by the desired metadata](https://docs.seam.co/latest/core-concepts/devices/filtering-devices-by-custom-metadata). */
|
|
25375
25603
|
custom_metadata?: Record<string, string | boolean | null> | undefined
|
|
25376
25604
|
}
|
|
25377
25605
|
formData: {}
|
|
@@ -25389,7 +25617,9 @@ export interface Routes {
|
|
|
25389
25617
|
}
|
|
25390
25618
|
formData: {}
|
|
25391
25619
|
jsonResponse: {
|
|
25392
|
-
/**
|
|
25620
|
+
/** Represents an event. Events let you know when something interesting happens in your workspace. For example, when a lock is unlocked, Seam creates a `lock.unlocked` event. When a device's battery level is low, Seam creates a `device.battery_low` event.
|
|
25621
|
+
|
|
25622
|
+
As with other API resources, you can retrieve an individual event or a list of events. Seam also provides a separate [webhook](https://docs.seam.co/latest/developer-tools/webhooks) system for sending the event objects directly to an endpoint on your sever. Manage webhooks through [Seam Console](https://console.seam.co). You can also use the webhooks sandbox in Seam Console to see the different payloads for each event and test them against your own endpoints. */
|
|
25393
25623
|
event?:
|
|
25394
25624
|
| (
|
|
25395
25625
|
| {
|
|
@@ -28545,7 +28775,7 @@ export interface Routes {
|
|
|
28545
28775
|
}
|
|
28546
28776
|
formData: {}
|
|
28547
28777
|
jsonResponse: {
|
|
28548
|
-
/**
|
|
28778
|
+
/** Represents a [device](https://docs.seam.co/latest/core-concepts/devices) that has been connected to Seam. */
|
|
28549
28779
|
lock: {
|
|
28550
28780
|
/** Unique identifier for the device. */
|
|
28551
28781
|
device_id: string
|
|
@@ -28655,7 +28885,7 @@ export interface Routes {
|
|
|
28655
28885
|
status: 'critical' | 'low' | 'good' | 'full'
|
|
28656
28886
|
}
|
|
28657
28887
|
| undefined
|
|
28658
|
-
/** Manufacturer of the device. */
|
|
28888
|
+
/** Manufacturer of the device. When a device, such as a smart lock, is connected through a smart hub, the manufacturer of the device might be different from that of the smart hub. */
|
|
28659
28889
|
manufacturer?: string | undefined
|
|
28660
28890
|
/** Image URL for the device. */
|
|
28661
28891
|
image_url?: string | undefined
|
|
@@ -29015,6 +29245,7 @@ export interface Routes {
|
|
|
29015
29245
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
29016
29246
|
| (number[] | undefined)
|
|
29017
29247
|
| undefined
|
|
29248
|
+
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
29018
29249
|
code_constraints?:
|
|
29019
29250
|
| (
|
|
29020
29251
|
| Array<
|
|
@@ -29533,7 +29764,7 @@ export interface Routes {
|
|
|
29533
29764
|
can_simulate_connection?: boolean | undefined
|
|
29534
29765
|
can_simulate_disconnection?: boolean | undefined
|
|
29535
29766
|
}
|
|
29536
|
-
/**
|
|
29767
|
+
/** Represents a [device](https://docs.seam.co/latest/core-concepts/devices) that has been connected to Seam. */
|
|
29537
29768
|
device: {
|
|
29538
29769
|
/** Unique identifier for the device. */
|
|
29539
29770
|
device_id: string
|
|
@@ -29643,7 +29874,7 @@ export interface Routes {
|
|
|
29643
29874
|
status: 'critical' | 'low' | 'good' | 'full'
|
|
29644
29875
|
}
|
|
29645
29876
|
| undefined
|
|
29646
|
-
/** Manufacturer of the device. */
|
|
29877
|
+
/** Manufacturer of the device. When a device, such as a smart lock, is connected through a smart hub, the manufacturer of the device might be different from that of the smart hub. */
|
|
29647
29878
|
manufacturer?: string | undefined
|
|
29648
29879
|
/** Image URL for the device. */
|
|
29649
29880
|
image_url?: string | undefined
|
|
@@ -30003,6 +30234,7 @@ export interface Routes {
|
|
|
30003
30234
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
30004
30235
|
| (number[] | undefined)
|
|
30005
30236
|
| undefined
|
|
30237
|
+
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
30006
30238
|
code_constraints?:
|
|
30007
30239
|
| (
|
|
30008
30240
|
| Array<
|
|
@@ -30530,11 +30762,11 @@ export interface Routes {
|
|
|
30530
30762
|
jsonBody: {}
|
|
30531
30763
|
commonParams: {
|
|
30532
30764
|
customer_ids?: string[] | undefined
|
|
30533
|
-
/** ID of the connected account
|
|
30765
|
+
/** ID of the connected account for which you want to list devices. */
|
|
30534
30766
|
connected_account_id?: string | undefined
|
|
30535
|
-
/** Array of IDs of the connected accounts
|
|
30767
|
+
/** Array of IDs of the connected accounts for which you want to list devices. */
|
|
30536
30768
|
connected_account_ids?: string[] | undefined
|
|
30537
|
-
/** ID of the Connect Webview
|
|
30769
|
+
/** ID of the Connect Webview for which you want to list devices. */
|
|
30538
30770
|
connect_webview_id?: string | undefined
|
|
30539
30771
|
/** Device type by which to filter devices. */
|
|
30540
30772
|
device_type?:
|
|
@@ -30632,15 +30864,15 @@ export interface Routes {
|
|
|
30632
30864
|
| 'akiles'
|
|
30633
30865
|
)
|
|
30634
30866
|
| undefined
|
|
30635
|
-
/** Array of device IDs
|
|
30867
|
+
/** Array of device IDs for which you want to list devices. */
|
|
30636
30868
|
device_ids?: string[] | undefined
|
|
30637
30869
|
/** Numerical limit on the number of devices to return. */
|
|
30638
30870
|
limit?: number
|
|
30639
|
-
/**
|
|
30871
|
+
/** Timestamp by which to limit returned devices. Returns devices created before this timestamp. */
|
|
30640
30872
|
created_before?: Date | undefined
|
|
30641
|
-
/** Your own internal user ID for the user
|
|
30873
|
+
/** Your own internal user ID for the user for which you want to list devices. */
|
|
30642
30874
|
user_identifier_key?: string | undefined
|
|
30643
|
-
/** Set of key:value [custom metadata](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device) pairs
|
|
30875
|
+
/** Set of key:value [custom metadata](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device) pairs for which you want to list devices. */
|
|
30644
30876
|
custom_metadata_has?: Record<string, string | boolean> | undefined
|
|
30645
30877
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
30646
30878
|
page_cursor?: (string | undefined) | null
|
|
@@ -30676,7 +30908,7 @@ export interface Routes {
|
|
|
30676
30908
|
| 'can_simulate_disconnection'
|
|
30677
30909
|
>
|
|
30678
30910
|
| undefined
|
|
30679
|
-
/**
|
|
30911
|
+
/** ID of the location for which you want to list devices. */
|
|
30680
30912
|
unstable_location_id?: (string | null) | undefined
|
|
30681
30913
|
}
|
|
30682
30914
|
formData: {}
|
|
@@ -30790,7 +31022,7 @@ export interface Routes {
|
|
|
30790
31022
|
status: 'critical' | 'low' | 'good' | 'full'
|
|
30791
31023
|
}
|
|
30792
31024
|
| undefined
|
|
30793
|
-
/** Manufacturer of the device. */
|
|
31025
|
+
/** Manufacturer of the device. When a device, such as a smart lock, is connected through a smart hub, the manufacturer of the device might be different from that of the smart hub. */
|
|
30794
31026
|
manufacturer?: string | undefined
|
|
30795
31027
|
/** Image URL for the device. */
|
|
30796
31028
|
image_url?: string | undefined
|
|
@@ -31150,6 +31382,7 @@ export interface Routes {
|
|
|
31150
31382
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
31151
31383
|
| (number[] | undefined)
|
|
31152
31384
|
| undefined
|
|
31385
|
+
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
31153
31386
|
code_constraints?:
|
|
31154
31387
|
| (
|
|
31155
31388
|
| Array<
|
|
@@ -31777,7 +32010,7 @@ export interface Routes {
|
|
|
31777
32010
|
status: 'critical' | 'low' | 'good' | 'full'
|
|
31778
32011
|
}
|
|
31779
32012
|
| undefined
|
|
31780
|
-
/** Manufacturer of the device. */
|
|
32013
|
+
/** Manufacturer of the device. When a device, such as a smart lock, is connected through a smart hub, the manufacturer of the device might be different from that of the smart hub. */
|
|
31781
32014
|
manufacturer?: string | undefined
|
|
31782
32015
|
/** Image URL for the device. */
|
|
31783
32016
|
image_url?: string | undefined
|
|
@@ -32137,6 +32370,7 @@ export interface Routes {
|
|
|
32137
32370
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
32138
32371
|
| (number[] | undefined)
|
|
32139
32372
|
| undefined
|
|
32373
|
+
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
32140
32374
|
code_constraints?:
|
|
32141
32375
|
| (
|
|
32142
32376
|
| Array<
|
|
@@ -37918,11 +38152,11 @@ export interface Routes {
|
|
|
37918
38152
|
jsonBody: {}
|
|
37919
38153
|
commonParams: {
|
|
37920
38154
|
customer_ids?: string[] | undefined
|
|
37921
|
-
/** ID of the connected account
|
|
38155
|
+
/** ID of the connected account for which you want to list devices. */
|
|
37922
38156
|
connected_account_id?: string | undefined
|
|
37923
|
-
/** Array of IDs of the connected accounts
|
|
38157
|
+
/** Array of IDs of the connected accounts for which you want to list devices. */
|
|
37924
38158
|
connected_account_ids?: string[] | undefined
|
|
37925
|
-
/** ID of the Connect Webview
|
|
38159
|
+
/** ID of the Connect Webview for which you want to list devices. */
|
|
37926
38160
|
connect_webview_id?: string | undefined
|
|
37927
38161
|
/** Device type by which to filter devices. */
|
|
37928
38162
|
device_type?: ('noiseaware_activity_zone' | 'minut_sensor') | undefined
|
|
@@ -37932,15 +38166,15 @@ export interface Routes {
|
|
|
37932
38166
|
| undefined
|
|
37933
38167
|
/** Manufacturer by which to filter devices. */
|
|
37934
38168
|
manufacturer?: ('minut' | 'noiseaware') | undefined
|
|
37935
|
-
/** Array of device IDs
|
|
38169
|
+
/** Array of device IDs for which you want to list devices. */
|
|
37936
38170
|
device_ids?: string[] | undefined
|
|
37937
38171
|
/** Numerical limit on the number of devices to return. */
|
|
37938
38172
|
limit?: number
|
|
37939
|
-
/**
|
|
38173
|
+
/** Timestamp by which to limit returned devices. Returns devices created before this timestamp. */
|
|
37940
38174
|
created_before?: Date | undefined
|
|
37941
|
-
/** Your own internal user ID for the user
|
|
38175
|
+
/** Your own internal user ID for the user for which you want to list devices. */
|
|
37942
38176
|
user_identifier_key?: string | undefined
|
|
37943
|
-
/** Set of key:value [custom metadata](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device) pairs
|
|
38177
|
+
/** Set of key:value [custom metadata](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device) pairs for which you want to list devices. */
|
|
37944
38178
|
custom_metadata_has?: Record<string, string | boolean> | undefined
|
|
37945
38179
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
37946
38180
|
page_cursor?: (string | undefined) | null
|
|
@@ -37976,7 +38210,7 @@ export interface Routes {
|
|
|
37976
38210
|
| 'can_simulate_disconnection'
|
|
37977
38211
|
>
|
|
37978
38212
|
| undefined
|
|
37979
|
-
/**
|
|
38213
|
+
/** ID of the location for which you want to list devices. */
|
|
37980
38214
|
unstable_location_id?: (string | null) | undefined
|
|
37981
38215
|
}
|
|
37982
38216
|
formData: {}
|
|
@@ -38090,7 +38324,7 @@ export interface Routes {
|
|
|
38090
38324
|
status: 'critical' | 'low' | 'good' | 'full'
|
|
38091
38325
|
}
|
|
38092
38326
|
| undefined
|
|
38093
|
-
/** Manufacturer of the device. */
|
|
38327
|
+
/** Manufacturer of the device. When a device, such as a smart lock, is connected through a smart hub, the manufacturer of the device might be different from that of the smart hub. */
|
|
38094
38328
|
manufacturer?: string | undefined
|
|
38095
38329
|
/** Image URL for the device. */
|
|
38096
38330
|
image_url?: string | undefined
|
|
@@ -38450,6 +38684,7 @@ export interface Routes {
|
|
|
38450
38684
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
38451
38685
|
| (number[] | undefined)
|
|
38452
38686
|
| undefined
|
|
38687
|
+
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
38453
38688
|
code_constraints?:
|
|
38454
38689
|
| (
|
|
38455
38690
|
| Array<
|
|
@@ -39077,7 +39312,7 @@ export interface Routes {
|
|
|
39077
39312
|
status: 'critical' | 'low' | 'good' | 'full'
|
|
39078
39313
|
}
|
|
39079
39314
|
| undefined
|
|
39080
|
-
/** Manufacturer of the device. */
|
|
39315
|
+
/** Manufacturer of the device. When a device, such as a smart lock, is connected through a smart hub, the manufacturer of the device might be different from that of the smart hub. */
|
|
39081
39316
|
manufacturer?: string | undefined
|
|
39082
39317
|
/** Image URL for the device. */
|
|
39083
39318
|
image_url?: string | undefined
|
|
@@ -39437,6 +39672,7 @@ export interface Routes {
|
|
|
39437
39672
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
39438
39673
|
| (number[] | undefined)
|
|
39439
39674
|
| undefined
|
|
39675
|
+
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
39440
39676
|
code_constraints?:
|
|
39441
39677
|
| (
|
|
39442
39678
|
| Array<
|
|
@@ -44429,7 +44665,15 @@ export interface Routes {
|
|
|
44429
44665
|
commonParams: {}
|
|
44430
44666
|
formData: {}
|
|
44431
44667
|
jsonResponse: {
|
|
44432
|
-
/**
|
|
44668
|
+
/** Represents a [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). If you want to restrict your users' access to their own devices, use client sessions.
|
|
44669
|
+
|
|
44670
|
+
You create each client session with a custom `user_identifier_key`. Normally, the `user_identifier_key` is a user ID that your application provides.
|
|
44671
|
+
|
|
44672
|
+
When calling the Seam API from your backend using an API key, you can pass the `user_identifier_key` as a parameter to limit results to the associated client session. For example, `/devices/list?user_identifier_key=123` only returns devices associated with the client session created with the `user_identifier_key` `123`.
|
|
44673
|
+
|
|
44674
|
+
A client session has a token that you can use with the Seam JavaScript SDK to make requests from the client (browser) directly to the Seam API. The token restricts the user's access to only the devices that they own.
|
|
44675
|
+
|
|
44676
|
+
See also [Get Started with React](https://docs.seam.co/latest/ui-components/overview/getting-started-with-seam-components/get-started-with-react-components-and-client-session-tokens). */
|
|
44433
44677
|
client_session: {
|
|
44434
44678
|
client_session_id: string
|
|
44435
44679
|
workspace_id: string
|
|
@@ -48637,7 +48881,7 @@ export interface Routes {
|
|
|
48637
48881
|
}
|
|
48638
48882
|
formData: {}
|
|
48639
48883
|
jsonResponse: {
|
|
48640
|
-
/**
|
|
48884
|
+
/** Represents a [device](https://docs.seam.co/latest/core-concepts/devices) that has been connected to Seam. */
|
|
48641
48885
|
thermostat: {
|
|
48642
48886
|
/** Unique identifier for the device. */
|
|
48643
48887
|
device_id: string
|
|
@@ -48747,7 +48991,7 @@ export interface Routes {
|
|
|
48747
48991
|
status: 'critical' | 'low' | 'good' | 'full'
|
|
48748
48992
|
}
|
|
48749
48993
|
| undefined
|
|
48750
|
-
/** Manufacturer of the device. */
|
|
48994
|
+
/** Manufacturer of the device. When a device, such as a smart lock, is connected through a smart hub, the manufacturer of the device might be different from that of the smart hub. */
|
|
48751
48995
|
manufacturer?: string | undefined
|
|
48752
48996
|
/** Image URL for the device. */
|
|
48753
48997
|
image_url?: string | undefined
|
|
@@ -49107,6 +49351,7 @@ export interface Routes {
|
|
|
49107
49351
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
49108
49352
|
| (number[] | undefined)
|
|
49109
49353
|
| undefined
|
|
49354
|
+
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
49110
49355
|
code_constraints?:
|
|
49111
49356
|
| (
|
|
49112
49357
|
| Array<
|
|
@@ -52260,11 +52505,11 @@ export interface Routes {
|
|
|
52260
52505
|
jsonBody: {}
|
|
52261
52506
|
commonParams: {
|
|
52262
52507
|
customer_ids?: string[] | undefined
|
|
52263
|
-
/** ID of the connected account
|
|
52508
|
+
/** ID of the connected account for which you want to list devices. */
|
|
52264
52509
|
connected_account_id?: string | undefined
|
|
52265
|
-
/** Array of IDs of the connected accounts
|
|
52510
|
+
/** Array of IDs of the connected accounts for which you want to list devices. */
|
|
52266
52511
|
connected_account_ids?: string[] | undefined
|
|
52267
|
-
/** ID of the Connect Webview
|
|
52512
|
+
/** ID of the Connect Webview for which you want to list devices. */
|
|
52268
52513
|
connect_webview_id?: string | undefined
|
|
52269
52514
|
/** Device type by which to filter thermostat devices. */
|
|
52270
52515
|
device_type?:
|
|
@@ -52292,15 +52537,15 @@ export interface Routes {
|
|
|
52292
52537
|
manufacturer?:
|
|
52293
52538
|
| ('ecobee' | 'honeywell_resideo' | 'nest' | 'tado' | 'sensi')
|
|
52294
52539
|
| undefined
|
|
52295
|
-
/** Array of device IDs
|
|
52540
|
+
/** Array of device IDs for which you want to list devices. */
|
|
52296
52541
|
device_ids?: string[] | undefined
|
|
52297
52542
|
/** Numerical limit on the number of devices to return. */
|
|
52298
52543
|
limit?: number
|
|
52299
|
-
/**
|
|
52544
|
+
/** Timestamp by which to limit returned devices. Returns devices created before this timestamp. */
|
|
52300
52545
|
created_before?: Date | undefined
|
|
52301
|
-
/** Your own internal user ID for the user
|
|
52546
|
+
/** Your own internal user ID for the user for which you want to list devices. */
|
|
52302
52547
|
user_identifier_key?: string | undefined
|
|
52303
|
-
/** Set of key:value [custom metadata](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device) pairs
|
|
52548
|
+
/** Set of key:value [custom metadata](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device) pairs for which you want to list devices. */
|
|
52304
52549
|
custom_metadata_has?: Record<string, string | boolean> | undefined
|
|
52305
52550
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
52306
52551
|
page_cursor?: (string | undefined) | null
|
|
@@ -52336,7 +52581,7 @@ export interface Routes {
|
|
|
52336
52581
|
| 'can_simulate_disconnection'
|
|
52337
52582
|
>
|
|
52338
52583
|
| undefined
|
|
52339
|
-
/**
|
|
52584
|
+
/** ID of the location for which you want to list devices. */
|
|
52340
52585
|
unstable_location_id?: (string | null) | undefined
|
|
52341
52586
|
}
|
|
52342
52587
|
formData: {}
|
|
@@ -52450,7 +52695,7 @@ export interface Routes {
|
|
|
52450
52695
|
status: 'critical' | 'low' | 'good' | 'full'
|
|
52451
52696
|
}
|
|
52452
52697
|
| undefined
|
|
52453
|
-
/** Manufacturer of the device. */
|
|
52698
|
+
/** Manufacturer of the device. When a device, such as a smart lock, is connected through a smart hub, the manufacturer of the device might be different from that of the smart hub. */
|
|
52454
52699
|
manufacturer?: string | undefined
|
|
52455
52700
|
/** Image URL for the device. */
|
|
52456
52701
|
image_url?: string | undefined
|
|
@@ -52810,6 +53055,7 @@ export interface Routes {
|
|
|
52810
53055
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
52811
53056
|
| (number[] | undefined)
|
|
52812
53057
|
| undefined
|
|
53058
|
+
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
52813
53059
|
code_constraints?:
|
|
52814
53060
|
| (
|
|
52815
53061
|
| Array<
|
|
@@ -53437,7 +53683,7 @@ export interface Routes {
|
|
|
53437
53683
|
status: 'critical' | 'low' | 'good' | 'full'
|
|
53438
53684
|
}
|
|
53439
53685
|
| undefined
|
|
53440
|
-
/** Manufacturer of the device. */
|
|
53686
|
+
/** Manufacturer of the device. When a device, such as a smart lock, is connected through a smart hub, the manufacturer of the device might be different from that of the smart hub. */
|
|
53441
53687
|
manufacturer?: string | undefined
|
|
53442
53688
|
/** Image URL for the device. */
|
|
53443
53689
|
image_url?: string | undefined
|
|
@@ -53797,6 +54043,7 @@ export interface Routes {
|
|
|
53797
54043
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
53798
54044
|
| (number[] | undefined)
|
|
53799
54045
|
| undefined
|
|
54046
|
+
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
53800
54047
|
code_constraints?:
|
|
53801
54048
|
| (
|
|
53802
54049
|
| Array<
|
|
@@ -60332,6 +60579,45 @@ export interface Routes {
|
|
|
60332
60579
|
}
|
|
60333
60580
|
}
|
|
60334
60581
|
}
|
|
60582
|
+
'/unstable_partner/resources/push': {
|
|
60583
|
+
route: '/unstable_partner/resources/push'
|
|
60584
|
+
method: 'POST'
|
|
60585
|
+
queryParams: {}
|
|
60586
|
+
jsonBody:
|
|
60587
|
+
| Array<{
|
|
60588
|
+
partner_resource_type?: string | undefined
|
|
60589
|
+
partner_resource_key?: string | undefined
|
|
60590
|
+
customer_key?: string | undefined
|
|
60591
|
+
email_address?: string | undefined
|
|
60592
|
+
phone_number?: string | undefined
|
|
60593
|
+
starts_at?: string | undefined
|
|
60594
|
+
ends_at?: string | undefined
|
|
60595
|
+
user_identity_key?: string | undefined
|
|
60596
|
+
location_keys?: string[] | undefined
|
|
60597
|
+
name?: string | undefined
|
|
60598
|
+
description?: string | undefined
|
|
60599
|
+
icon_url?: string | undefined
|
|
60600
|
+
custom_metadata?: Record<string, string> | undefined
|
|
60601
|
+
}>
|
|
60602
|
+
| {
|
|
60603
|
+
partner_resource_type?: string | undefined
|
|
60604
|
+
partner_resource_key?: string | undefined
|
|
60605
|
+
customer_key?: string | undefined
|
|
60606
|
+
email_address?: string | undefined
|
|
60607
|
+
phone_number?: string | undefined
|
|
60608
|
+
starts_at?: string | undefined
|
|
60609
|
+
ends_at?: string | undefined
|
|
60610
|
+
user_identity_key?: string | undefined
|
|
60611
|
+
location_keys?: string[] | undefined
|
|
60612
|
+
name?: string | undefined
|
|
60613
|
+
description?: string | undefined
|
|
60614
|
+
icon_url?: string | undefined
|
|
60615
|
+
custom_metadata?: Record<string, string> | undefined
|
|
60616
|
+
}
|
|
60617
|
+
commonParams: {}
|
|
60618
|
+
formData: {}
|
|
60619
|
+
jsonResponse: {}
|
|
60620
|
+
}
|
|
60335
60621
|
'/user_identities/add_acs_user': {
|
|
60336
60622
|
route: '/user_identities/add_acs_user'
|
|
60337
60623
|
method: 'POST' | 'PUT'
|
|
@@ -60365,7 +60651,7 @@ export interface Routes {
|
|
|
60365
60651
|
}
|
|
60366
60652
|
formData: {}
|
|
60367
60653
|
jsonResponse: {
|
|
60368
|
-
/** Represents a [user identity](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
60654
|
+
/** Represents a [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) associated with an application user account. */
|
|
60369
60655
|
user_identity: {
|
|
60370
60656
|
/** ID of the user identity. */
|
|
60371
60657
|
user_identity_id: string
|
|
@@ -60528,7 +60814,7 @@ export interface Routes {
|
|
|
60528
60814
|
}
|
|
60529
60815
|
formData: {}
|
|
60530
60816
|
jsonResponse: {
|
|
60531
|
-
/** Represents a [user identity](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
60817
|
+
/** Represents a [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) associated with an application user account. */
|
|
60532
60818
|
user_identity: {
|
|
60533
60819
|
/** ID of the user identity. */
|
|
60534
60820
|
user_identity_id: string
|
|
@@ -60709,7 +60995,7 @@ export interface Routes {
|
|
|
60709
60995
|
status: 'critical' | 'low' | 'good' | 'full'
|
|
60710
60996
|
}
|
|
60711
60997
|
| undefined
|
|
60712
|
-
/** Manufacturer of the device. */
|
|
60998
|
+
/** Manufacturer of the device. When a device, such as a smart lock, is connected through a smart hub, the manufacturer of the device might be different from that of the smart hub. */
|
|
60713
60999
|
manufacturer?: string | undefined
|
|
60714
61000
|
/** Image URL for the device. */
|
|
60715
61001
|
image_url?: string | undefined
|
|
@@ -61069,6 +61355,7 @@ export interface Routes {
|
|
|
61069
61355
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
61070
61356
|
| (number[] | undefined)
|
|
61071
61357
|
| undefined
|
|
61358
|
+
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
61072
61359
|
code_constraints?:
|
|
61073
61360
|
| (
|
|
61074
61361
|
| Array<
|
|
@@ -61698,7 +61985,7 @@ export interface Routes {
|
|
|
61698
61985
|
status: 'critical' | 'low' | 'good' | 'full'
|
|
61699
61986
|
}
|
|
61700
61987
|
| undefined
|
|
61701
|
-
/** Manufacturer of the device. */
|
|
61988
|
+
/** Manufacturer of the device. When a device, such as a smart lock, is connected through a smart hub, the manufacturer of the device might be different from that of the smart hub. */
|
|
61702
61989
|
manufacturer?: string | undefined
|
|
61703
61990
|
/** Image URL for the device. */
|
|
61704
61991
|
image_url?: string | undefined
|
|
@@ -62058,6 +62345,7 @@ export interface Routes {
|
|
|
62058
62345
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
62059
62346
|
| (number[] | undefined)
|
|
62060
62347
|
| undefined
|
|
62348
|
+
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
62061
62349
|
code_constraints?:
|
|
62062
62350
|
| (
|
|
62063
62351
|
| Array<
|
|
@@ -63156,7 +63444,7 @@ export interface Routes {
|
|
|
63156
63444
|
commonParams: {}
|
|
63157
63445
|
formData: {}
|
|
63158
63446
|
jsonResponse: {
|
|
63159
|
-
/**
|
|
63447
|
+
/** Represents a Seam [workspace](https://docs.seam.co/latest/core-concepts/workspaces). A workspace is a top-level entity that encompasses all other resources below it, such as devices, connected accounts, and Connect Webviews. Seam provides two types of workspaces. A [sandbox workspace](https://docs.seam.co/latest/core-concepts/workspaces#sandbox-workspaces) is a special type of workspace designed for testing code. Sandbox workspaces offer test device accounts and virtual devices that you can connect and control. This ability to work with virtual devices is quite handy because it removes the need to own physical devices from multiple brands. To connect real devices and systems to Seam, use a [production workspace](https://docs.seam.co/latest/core-concepts/workspaces#production-workspaces). */
|
|
63160
63448
|
workspace: {
|
|
63161
63449
|
workspace_id: string
|
|
63162
63450
|
name: string
|
|
@@ -63185,7 +63473,7 @@ export interface Routes {
|
|
|
63185
63473
|
commonParams: {}
|
|
63186
63474
|
formData: {}
|
|
63187
63475
|
jsonResponse: {
|
|
63188
|
-
/**
|
|
63476
|
+
/** Represents a Seam [workspace](https://docs.seam.co/latest/core-concepts/workspaces). A workspace is a top-level entity that encompasses all other resources below it, such as devices, connected accounts, and Connect Webviews. Seam provides two types of workspaces. A [sandbox workspace](https://docs.seam.co/latest/core-concepts/workspaces#sandbox-workspaces) is a special type of workspace designed for testing code. Sandbox workspaces offer test device accounts and virtual devices that you can connect and control. This ability to work with virtual devices is quite handy because it removes the need to own physical devices from multiple brands. To connect real devices and systems to Seam, use a [production workspace](https://docs.seam.co/latest/core-concepts/workspaces#production-workspaces). */
|
|
63189
63477
|
workspace: {
|
|
63190
63478
|
workspace_id: string
|
|
63191
63479
|
name: string
|