@seamapi/types 1.961.0 → 1.962.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 +4 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +3 -2
- package/dist/index.cjs +4 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +2 -1
- package/lib/seam/connect/models/devices/device-provider.js +2 -1
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/openapi.js +2 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-provider.ts +2 -1
- package/src/lib/seam/connect/openapi.ts +2 -0
- package/src/lib/seam/connect/route-types.ts +2 -0
|
@@ -38858,7 +38858,7 @@ export type Routes = {
|
|
|
38858
38858
|
/** Associate the Connect Webview, the connected account, and all resources under the connected account with a customer. If the connected account already exists, it will be associated with the customer. If the connected account already exists, but is already associated with a customer, the Connect Webview will show an error. */
|
|
38859
38859
|
customer_key?: string | undefined;
|
|
38860
38860
|
/** 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/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/api/devices/list_device_providers) with no filters. */
|
|
38861
|
-
accepted_providers?: ('hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'yale_access' | 'hid_cm' | 'google_nest' | 'slack')[] | undefined;
|
|
38861
|
+
accepted_providers?: ('hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'salto_ks_accept' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'yale_access' | 'hid_cm' | 'google_nest' | 'slack')[] | undefined;
|
|
38862
38862
|
/** 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/api/devices/list_device_providers) with the desired `provider_category` filter. */
|
|
38863
38863
|
provider_category?: ('stable' | 'consumer_smartlocks' | 'beta' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'cameras' | 'connectors' | 'internal_beta') | undefined;
|
|
38864
38864
|
/** 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/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/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/core-concepts/workspaces). You can also [filter Connect Webviews by custom metadata](https://docs.seam.co/core-concepts/connect-webviews/filtering-connect-webviews-by-custom-metadata). */
|
|
@@ -43645,7 +43645,7 @@ export type Routes = {
|
|
|
43645
43645
|
jsonResponse: {
|
|
43646
43646
|
device_providers: {
|
|
43647
43647
|
/** Name of the device provider. */
|
|
43648
|
-
device_provider_name: 'hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi';
|
|
43648
|
+
device_provider_name: 'hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'salto_ks_accept' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi';
|
|
43649
43649
|
/** Display name for the device provider. */
|
|
43650
43650
|
display_name: string;
|
|
43651
43651
|
/** Image URL for the device provider. */
|
package/package.json
CHANGED
|
@@ -19,6 +19,7 @@ export const DEVICE_PROVIDERS = {
|
|
|
19
19
|
DOORKING: 'doorking',
|
|
20
20
|
SALTO: 'salto',
|
|
21
21
|
SALTO_KS: 'salto_ks',
|
|
22
|
+
SALTO_KS_ACCEPT: 'salto_ks_accept',
|
|
22
23
|
LOCKLY: 'lockly',
|
|
23
24
|
TTLOCK: 'ttlock',
|
|
24
25
|
LINEAR: 'linear',
|
|
@@ -143,7 +144,7 @@ export const PROVIDER_CATEGORY_MAP = {
|
|
|
143
144
|
'thirty_three_lock',
|
|
144
145
|
],
|
|
145
146
|
|
|
146
|
-
beta: ['kisi'],
|
|
147
|
+
beta: ['kisi', 'salto_ks_accept'],
|
|
147
148
|
|
|
148
149
|
thermostats: ['ecobee', 'nest', 'sensi', 'honeywell_resideo', 'first_alert'],
|
|
149
150
|
noise_sensors: ['minut', 'noiseaware'],
|
|
@@ -17049,6 +17049,7 @@ const openapi: OpenAPISpec = {
|
|
|
17049
17049
|
'doorking',
|
|
17050
17050
|
'salto',
|
|
17051
17051
|
'salto_ks',
|
|
17052
|
+
'salto_ks_accept',
|
|
17052
17053
|
'lockly',
|
|
17053
17054
|
'ttlock',
|
|
17054
17055
|
'linear',
|
|
@@ -52303,6 +52304,7 @@ const openapi: OpenAPISpec = {
|
|
|
52303
52304
|
'doorking',
|
|
52304
52305
|
'salto',
|
|
52305
52306
|
'salto_ks',
|
|
52307
|
+
'salto_ks_accept',
|
|
52306
52308
|
'lockly',
|
|
52307
52309
|
'ttlock',
|
|
52308
52310
|
'linear',
|
|
@@ -46223,6 +46223,7 @@ export type Routes = {
|
|
|
46223
46223
|
| 'doorking'
|
|
46224
46224
|
| 'salto'
|
|
46225
46225
|
| 'salto_ks'
|
|
46226
|
+
| 'salto_ks_accept'
|
|
46226
46227
|
| 'lockly'
|
|
46227
46228
|
| 'ttlock'
|
|
46228
46229
|
| 'linear'
|
|
@@ -52385,6 +52386,7 @@ export type Routes = {
|
|
|
52385
52386
|
| 'doorking'
|
|
52386
52387
|
| 'salto'
|
|
52387
52388
|
| 'salto_ks'
|
|
52389
|
+
| 'salto_ks_accept'
|
|
52388
52390
|
| 'lockly'
|
|
52389
52391
|
| 'ttlock'
|
|
52390
52392
|
| 'linear'
|