@seamapi/types 1.448.0 → 1.449.0
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 +20 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +35 -0
- package/dist/index.cjs +20 -3
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +33 -0
- package/lib/seam/connect/openapi.js +17 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +19 -0
- package/src/lib/seam/connect/route-types.ts +4 -0
|
@@ -22005,6 +22005,8 @@ export interface Routes {
|
|
|
22005
22005
|
automatically_manage_new_devices?: boolean | undefined;
|
|
22006
22006
|
/** 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). */
|
|
22007
22007
|
custom_metadata?: Record<string, string | boolean | null> | undefined;
|
|
22008
|
+
/** List of accepted device capabilities that restrict the types of devices that can be connected through this connected account. Valid values are `lock`, `thermostat`, `noise_sensor`, and `access_control`. */
|
|
22009
|
+
accepted_capabilities?: Array<'lock' | 'thermostat' | 'noise_sensor' | 'access_control'> | undefined;
|
|
22008
22010
|
};
|
|
22009
22011
|
commonParams: {};
|
|
22010
22012
|
formData: {};
|
package/package.json
CHANGED
|
@@ -36975,6 +36975,22 @@ export default {
|
|
|
36975
36975
|
'application/json': {
|
|
36976
36976
|
schema: {
|
|
36977
36977
|
properties: {
|
|
36978
|
+
accepted_capabilities: {
|
|
36979
|
+
description:
|
|
36980
|
+
'List of accepted device capabilities that restrict the types of devices that can be connected through this connected account. Valid values are `lock`, `thermostat`, `noise_sensor`, and `access_control`.',
|
|
36981
|
+
items: {
|
|
36982
|
+
description:
|
|
36983
|
+
'\n High-level device capabilities that can be restricted in connect webviews.\n These represent the main device categories that customers can opt into.\n',
|
|
36984
|
+
enum: [
|
|
36985
|
+
'lock',
|
|
36986
|
+
'thermostat',
|
|
36987
|
+
'noise_sensor',
|
|
36988
|
+
'access_control',
|
|
36989
|
+
],
|
|
36990
|
+
type: 'string',
|
|
36991
|
+
},
|
|
36992
|
+
type: 'array',
|
|
36993
|
+
},
|
|
36978
36994
|
automatically_manage_new_devices: {
|
|
36979
36995
|
description:
|
|
36980
36996
|
'Indicates whether newly-added devices should appear as [managed devices](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices).',
|
|
@@ -47090,6 +47106,7 @@ export default {
|
|
|
47090
47106
|
{ pat_with_workspace: [] },
|
|
47091
47107
|
{ console_session_with_workspace: [] },
|
|
47092
47108
|
{ api_key: [] },
|
|
47109
|
+
{ client_session_with_customer: [] },
|
|
47093
47110
|
],
|
|
47094
47111
|
summary: '/spaces/create',
|
|
47095
47112
|
tags: [],
|
|
@@ -47542,6 +47559,7 @@ export default {
|
|
|
47542
47559
|
{ pat_with_workspace: [] },
|
|
47543
47560
|
{ console_session_with_workspace: [] },
|
|
47544
47561
|
{ api_key: [] },
|
|
47562
|
+
{ client_session_with_customer: [] },
|
|
47545
47563
|
],
|
|
47546
47564
|
summary: '/spaces/list',
|
|
47547
47565
|
tags: [],
|
|
@@ -47602,6 +47620,7 @@ export default {
|
|
|
47602
47620
|
{ pat_with_workspace: [] },
|
|
47603
47621
|
{ console_session_with_workspace: [] },
|
|
47604
47622
|
{ api_key: [] },
|
|
47623
|
+
{ client_session_with_customer: [] },
|
|
47605
47624
|
],
|
|
47606
47625
|
summary: '/spaces/list',
|
|
47607
47626
|
tags: [],
|
|
@@ -25025,6 +25025,10 @@ export interface Routes {
|
|
|
25025
25025
|
automatically_manage_new_devices?: boolean | undefined
|
|
25026
25026
|
/** 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). */
|
|
25027
25027
|
custom_metadata?: Record<string, string | boolean | null> | undefined
|
|
25028
|
+
/** List of accepted device capabilities that restrict the types of devices that can be connected through this connected account. Valid values are `lock`, `thermostat`, `noise_sensor`, and `access_control`. */
|
|
25029
|
+
accepted_capabilities?:
|
|
25030
|
+
| Array<'lock' | 'thermostat' | 'noise_sensor' | 'access_control'>
|
|
25031
|
+
| undefined
|
|
25028
25032
|
}
|
|
25029
25033
|
commonParams: {}
|
|
25030
25034
|
formData: {}
|