@seamapi/types 1.574.0 → 1.576.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 +15 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +20 -1
- package/dist/index.cjs +15 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +15 -0
- package/lib/seam/connect/openapi.js +15 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +5 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +18 -2
- package/src/lib/seam/connect/route-types.ts +5 -1
|
@@ -30490,6 +30490,8 @@ export type Routes = {
|
|
|
30490
30490
|
wait_for_device_creation?: boolean;
|
|
30491
30491
|
/** List of accepted device capabilities that restrict the types of devices that can be connected through the Connect Webview. If not provided, defaults will be determined based on the accepted providers. */
|
|
30492
30492
|
accepted_capabilities?: ('lock' | 'thermostat' | 'noise_sensor' | 'access_control')[] | undefined;
|
|
30493
|
+
/** List of provider keys to exclude from the Connect Webview. These providers will not be shown when the user tries to connect an account. */
|
|
30494
|
+
excluded_providers?: string[] | undefined;
|
|
30493
30495
|
};
|
|
30494
30496
|
commonParams: {};
|
|
30495
30497
|
formData: {};
|
|
@@ -76444,7 +76446,9 @@ export type Routes = {
|
|
|
76444
76446
|
jsonBody: {};
|
|
76445
76447
|
commonParams: {
|
|
76446
76448
|
/** ID of the user identity to which you want to add an access system user. */
|
|
76447
|
-
user_identity_id
|
|
76449
|
+
user_identity_id?: string | undefined;
|
|
76450
|
+
/** Key of the user identity to which you want to add an access system user. */
|
|
76451
|
+
user_identity_key?: string | undefined;
|
|
76448
76452
|
/** ID of the access system user that you want to add to the user identity. */
|
|
76449
76453
|
acs_user_id: string;
|
|
76450
76454
|
};
|
package/package.json
CHANGED
|
@@ -37653,6 +37653,12 @@ export default {
|
|
|
37653
37653
|
type: 'string',
|
|
37654
37654
|
'x-undocumented': 'Not supported.',
|
|
37655
37655
|
},
|
|
37656
|
+
excluded_providers: {
|
|
37657
|
+
description:
|
|
37658
|
+
'List of provider keys to exclude from the Connect Webview. These providers will not be shown when the user tries to connect an account.',
|
|
37659
|
+
items: { type: 'string' },
|
|
37660
|
+
type: 'array',
|
|
37661
|
+
},
|
|
37656
37662
|
provider_category: {
|
|
37657
37663
|
description:
|
|
37658
37664
|
'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.',
|
|
@@ -56509,8 +56515,13 @@ export default {
|
|
|
56509
56515
|
format: 'uuid',
|
|
56510
56516
|
type: 'string',
|
|
56511
56517
|
},
|
|
56518
|
+
user_identity_key: {
|
|
56519
|
+
description:
|
|
56520
|
+
'Key of the user identity to which you want to add an access system user.',
|
|
56521
|
+
type: 'string',
|
|
56522
|
+
},
|
|
56512
56523
|
},
|
|
56513
|
-
required: ['
|
|
56524
|
+
required: ['acs_user_id'],
|
|
56514
56525
|
type: 'object',
|
|
56515
56526
|
},
|
|
56516
56527
|
},
|
|
@@ -56565,8 +56576,13 @@ export default {
|
|
|
56565
56576
|
format: 'uuid',
|
|
56566
56577
|
type: 'string',
|
|
56567
56578
|
},
|
|
56579
|
+
user_identity_key: {
|
|
56580
|
+
description:
|
|
56581
|
+
'Key of the user identity to which you want to add an access system user.',
|
|
56582
|
+
type: 'string',
|
|
56583
|
+
},
|
|
56568
56584
|
},
|
|
56569
|
-
required: ['
|
|
56585
|
+
required: ['acs_user_id'],
|
|
56570
56586
|
type: 'object',
|
|
56571
56587
|
},
|
|
56572
56588
|
},
|
|
@@ -35475,6 +35475,8 @@ export type Routes = {
|
|
|
35475
35475
|
accepted_capabilities?:
|
|
35476
35476
|
| ('lock' | 'thermostat' | 'noise_sensor' | 'access_control')[]
|
|
35477
35477
|
| undefined
|
|
35478
|
+
/** List of provider keys to exclude from the Connect Webview. These providers will not be shown when the user tries to connect an account. */
|
|
35479
|
+
excluded_providers?: string[] | undefined
|
|
35478
35480
|
}
|
|
35479
35481
|
commonParams: {}
|
|
35480
35482
|
formData: {}
|
|
@@ -90854,7 +90856,9 @@ export type Routes = {
|
|
|
90854
90856
|
jsonBody: {}
|
|
90855
90857
|
commonParams: {
|
|
90856
90858
|
/** ID of the user identity to which you want to add an access system user. */
|
|
90857
|
-
user_identity_id
|
|
90859
|
+
user_identity_id?: string | undefined
|
|
90860
|
+
/** Key of the user identity to which you want to add an access system user. */
|
|
90861
|
+
user_identity_key?: string | undefined
|
|
90858
90862
|
/** ID of the access system user that you want to add to the user identity. */
|
|
90859
90863
|
acs_user_id: string
|
|
90860
90864
|
}
|