@seamapi/types 1.735.0 → 1.736.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 +43 -15
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +39 -38
- package/dist/index.cjs +43 -15
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +10 -10
- package/lib/seam/connect/models/connect-webviews/connect-webview.d.ts +3 -3
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +3 -3
- package/lib/seam/connect/models/devices/device-provider.d.ts +5 -3
- package/lib/seam/connect/models/devices/device-provider.js +10 -1
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/models/provider-capability.d.ts +1 -1
- package/lib/seam/connect/models/provider-capability.js +1 -0
- package/lib/seam/connect/models/provider-capability.js.map +1 -1
- package/lib/seam/connect/openapi.js +27 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +19 -19
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-provider.ts +11 -1
- package/src/lib/seam/connect/models/provider-capability.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +27 -2
- package/src/lib/seam/connect/route-types.ts +31 -2
package/dist/connect.d.cts
CHANGED
|
@@ -15879,7 +15879,7 @@ declare const batch: z.ZodObject<{
|
|
|
15879
15879
|
custom_metadata: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
15880
15880
|
automatically_manage_new_devices: z.ZodBoolean;
|
|
15881
15881
|
customer_key: z.ZodOptional<z.ZodString>;
|
|
15882
|
-
accepted_capabilities: z.ZodArray<z.ZodEnum<["lock", "thermostat", "noise_sensor", "access_control"]>, "many">;
|
|
15882
|
+
accepted_capabilities: z.ZodArray<z.ZodEnum<["lock", "thermostat", "noise_sensor", "access_control", "camera"]>, "many">;
|
|
15883
15883
|
}, "strip", z.ZodTypeAny, {
|
|
15884
15884
|
display_name: string;
|
|
15885
15885
|
errors: ({
|
|
@@ -15942,7 +15942,7 @@ declare const batch: z.ZodObject<{
|
|
|
15942
15942
|
})[];
|
|
15943
15943
|
custom_metadata: Record<string, string | boolean>;
|
|
15944
15944
|
automatically_manage_new_devices: boolean;
|
|
15945
|
-
accepted_capabilities: ("lock" | "thermostat" | "noise_sensor" | "access_control")[];
|
|
15945
|
+
accepted_capabilities: ("lock" | "thermostat" | "noise_sensor" | "access_control" | "camera")[];
|
|
15946
15946
|
created_at?: string | undefined;
|
|
15947
15947
|
user_identifier?: {
|
|
15948
15948
|
phone?: string | undefined;
|
|
@@ -16016,7 +16016,7 @@ declare const batch: z.ZodObject<{
|
|
|
16016
16016
|
})[];
|
|
16017
16017
|
custom_metadata: Record<string, string | boolean>;
|
|
16018
16018
|
automatically_manage_new_devices: boolean;
|
|
16019
|
-
accepted_capabilities: ("lock" | "thermostat" | "noise_sensor" | "access_control")[];
|
|
16019
|
+
accepted_capabilities: ("lock" | "thermostat" | "noise_sensor" | "access_control" | "camera")[];
|
|
16020
16020
|
created_at?: string | undefined;
|
|
16021
16021
|
user_identifier?: {
|
|
16022
16022
|
phone?: string | undefined;
|
|
@@ -26429,7 +26429,7 @@ declare const batch: z.ZodObject<{
|
|
|
26429
26429
|
url: z.ZodString;
|
|
26430
26430
|
device_selection_mode: z.ZodEnum<["none", "single", "multiple"]>;
|
|
26431
26431
|
accepted_providers: z.ZodArray<z.ZodString, "many">;
|
|
26432
|
-
accepted_capabilities: z.ZodArray<z.ZodEnum<["lock", "thermostat", "noise_sensor", "access_control"]>, "many">;
|
|
26432
|
+
accepted_capabilities: z.ZodArray<z.ZodEnum<["lock", "thermostat", "noise_sensor", "access_control", "camera"]>, "many">;
|
|
26433
26433
|
accepted_devices: z.ZodArray<z.ZodString, "many">;
|
|
26434
26434
|
any_device_allowed: z.ZodBoolean;
|
|
26435
26435
|
any_provider_allowed: z.ZodBoolean;
|
|
@@ -26450,7 +26450,7 @@ declare const batch: z.ZodObject<{
|
|
|
26450
26450
|
connected_account_id: string | null;
|
|
26451
26451
|
custom_metadata: Record<string, string | boolean>;
|
|
26452
26452
|
automatically_manage_new_devices: boolean;
|
|
26453
|
-
accepted_capabilities: ("lock" | "thermostat" | "noise_sensor" | "access_control")[];
|
|
26453
|
+
accepted_capabilities: ("lock" | "thermostat" | "noise_sensor" | "access_control" | "camera")[];
|
|
26454
26454
|
connect_webview_id: string;
|
|
26455
26455
|
url: string;
|
|
26456
26456
|
device_selection_mode: "none" | "single" | "multiple";
|
|
@@ -26472,7 +26472,7 @@ declare const batch: z.ZodObject<{
|
|
|
26472
26472
|
connected_account_id: string | null;
|
|
26473
26473
|
custom_metadata: Record<string, string | boolean>;
|
|
26474
26474
|
automatically_manage_new_devices: boolean;
|
|
26475
|
-
accepted_capabilities: ("lock" | "thermostat" | "noise_sensor" | "access_control")[];
|
|
26475
|
+
accepted_capabilities: ("lock" | "thermostat" | "noise_sensor" | "access_control" | "camera")[];
|
|
26476
26476
|
connect_webview_id: string;
|
|
26477
26477
|
url: string;
|
|
26478
26478
|
device_selection_mode: "none" | "single" | "multiple";
|
|
@@ -36039,7 +36039,7 @@ declare const batch: z.ZodObject<{
|
|
|
36039
36039
|
})[];
|
|
36040
36040
|
custom_metadata: Record<string, string | boolean>;
|
|
36041
36041
|
automatically_manage_new_devices: boolean;
|
|
36042
|
-
accepted_capabilities: ("lock" | "thermostat" | "noise_sensor" | "access_control")[];
|
|
36042
|
+
accepted_capabilities: ("lock" | "thermostat" | "noise_sensor" | "access_control" | "camera")[];
|
|
36043
36043
|
created_at?: string | undefined;
|
|
36044
36044
|
user_identifier?: {
|
|
36045
36045
|
phone?: string | undefined;
|
|
@@ -37669,7 +37669,7 @@ declare const batch: z.ZodObject<{
|
|
|
37669
37669
|
connected_account_id: string | null;
|
|
37670
37670
|
custom_metadata: Record<string, string | boolean>;
|
|
37671
37671
|
automatically_manage_new_devices: boolean;
|
|
37672
|
-
accepted_capabilities: ("lock" | "thermostat" | "noise_sensor" | "access_control")[];
|
|
37672
|
+
accepted_capabilities: ("lock" | "thermostat" | "noise_sensor" | "access_control" | "camera")[];
|
|
37673
37673
|
connect_webview_id: string;
|
|
37674
37674
|
url: string;
|
|
37675
37675
|
device_selection_mode: "none" | "single" | "multiple";
|
|
@@ -40674,7 +40674,7 @@ declare const batch: z.ZodObject<{
|
|
|
40674
40674
|
})[];
|
|
40675
40675
|
custom_metadata: Record<string, string | boolean>;
|
|
40676
40676
|
automatically_manage_new_devices: boolean;
|
|
40677
|
-
accepted_capabilities: ("lock" | "thermostat" | "noise_sensor" | "access_control")[];
|
|
40677
|
+
accepted_capabilities: ("lock" | "thermostat" | "noise_sensor" | "access_control" | "camera")[];
|
|
40678
40678
|
created_at?: string | undefined;
|
|
40679
40679
|
user_identifier?: {
|
|
40680
40680
|
phone?: string | undefined;
|
|
@@ -42304,7 +42304,7 @@ declare const batch: z.ZodObject<{
|
|
|
42304
42304
|
connected_account_id: string | null;
|
|
42305
42305
|
custom_metadata: Record<string, string | boolean>;
|
|
42306
42306
|
automatically_manage_new_devices: boolean;
|
|
42307
|
-
accepted_capabilities: ("lock" | "thermostat" | "noise_sensor" | "access_control")[];
|
|
42307
|
+
accepted_capabilities: ("lock" | "thermostat" | "noise_sensor" | "access_control" | "camera")[];
|
|
42308
42308
|
connect_webview_id: string;
|
|
42309
42309
|
url: string;
|
|
42310
42310
|
device_selection_mode: "none" | "single" | "multiple";
|
|
@@ -44647,7 +44647,7 @@ declare const connect_webview: z.ZodObject<{
|
|
|
44647
44647
|
url: z.ZodString;
|
|
44648
44648
|
device_selection_mode: z.ZodEnum<["none", "single", "multiple"]>;
|
|
44649
44649
|
accepted_providers: z.ZodArray<z.ZodString, "many">;
|
|
44650
|
-
accepted_capabilities: z.ZodArray<z.ZodEnum<["lock", "thermostat", "noise_sensor", "access_control"]>, "many">;
|
|
44650
|
+
accepted_capabilities: z.ZodArray<z.ZodEnum<["lock", "thermostat", "noise_sensor", "access_control", "camera"]>, "many">;
|
|
44651
44651
|
accepted_devices: z.ZodArray<z.ZodString, "many">;
|
|
44652
44652
|
any_device_allowed: z.ZodBoolean;
|
|
44653
44653
|
any_provider_allowed: z.ZodBoolean;
|
|
@@ -44668,7 +44668,7 @@ declare const connect_webview: z.ZodObject<{
|
|
|
44668
44668
|
connected_account_id: string | null;
|
|
44669
44669
|
custom_metadata: Record<string, string | boolean>;
|
|
44670
44670
|
automatically_manage_new_devices: boolean;
|
|
44671
|
-
accepted_capabilities: ("lock" | "thermostat" | "noise_sensor" | "access_control")[];
|
|
44671
|
+
accepted_capabilities: ("lock" | "thermostat" | "noise_sensor" | "access_control" | "camera")[];
|
|
44672
44672
|
connect_webview_id: string;
|
|
44673
44673
|
url: string;
|
|
44674
44674
|
device_selection_mode: "none" | "single" | "multiple";
|
|
@@ -44690,7 +44690,7 @@ declare const connect_webview: z.ZodObject<{
|
|
|
44690
44690
|
connected_account_id: string | null;
|
|
44691
44691
|
custom_metadata: Record<string, string | boolean>;
|
|
44692
44692
|
automatically_manage_new_devices: boolean;
|
|
44693
|
-
accepted_capabilities: ("lock" | "thermostat" | "noise_sensor" | "access_control")[];
|
|
44693
|
+
accepted_capabilities: ("lock" | "thermostat" | "noise_sensor" | "access_control" | "camera")[];
|
|
44694
44694
|
connect_webview_id: string;
|
|
44695
44695
|
url: string;
|
|
44696
44696
|
device_selection_mode: "none" | "single" | "multiple";
|
|
@@ -45179,7 +45179,7 @@ declare const connected_account: z.ZodObject<{
|
|
|
45179
45179
|
custom_metadata: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
45180
45180
|
automatically_manage_new_devices: z.ZodBoolean;
|
|
45181
45181
|
customer_key: z.ZodOptional<z.ZodString>;
|
|
45182
|
-
accepted_capabilities: z.ZodArray<z.ZodEnum<["lock", "thermostat", "noise_sensor", "access_control"]>, "many">;
|
|
45182
|
+
accepted_capabilities: z.ZodArray<z.ZodEnum<["lock", "thermostat", "noise_sensor", "access_control", "camera"]>, "many">;
|
|
45183
45183
|
}, "strip", z.ZodTypeAny, {
|
|
45184
45184
|
display_name: string;
|
|
45185
45185
|
errors: ({
|
|
@@ -45242,7 +45242,7 @@ declare const connected_account: z.ZodObject<{
|
|
|
45242
45242
|
})[];
|
|
45243
45243
|
custom_metadata: Record<string, string | boolean>;
|
|
45244
45244
|
automatically_manage_new_devices: boolean;
|
|
45245
|
-
accepted_capabilities: ("lock" | "thermostat" | "noise_sensor" | "access_control")[];
|
|
45245
|
+
accepted_capabilities: ("lock" | "thermostat" | "noise_sensor" | "access_control" | "camera")[];
|
|
45246
45246
|
created_at?: string | undefined;
|
|
45247
45247
|
user_identifier?: {
|
|
45248
45248
|
phone?: string | undefined;
|
|
@@ -45316,7 +45316,7 @@ declare const connected_account: z.ZodObject<{
|
|
|
45316
45316
|
})[];
|
|
45317
45317
|
custom_metadata: Record<string, string | boolean>;
|
|
45318
45318
|
automatically_manage_new_devices: boolean;
|
|
45319
|
-
accepted_capabilities: ("lock" | "thermostat" | "noise_sensor" | "access_control")[];
|
|
45319
|
+
accepted_capabilities: ("lock" | "thermostat" | "noise_sensor" | "access_control" | "camera")[];
|
|
45320
45320
|
created_at?: string | undefined;
|
|
45321
45321
|
user_identifier?: {
|
|
45322
45322
|
phone?: string | undefined;
|
|
@@ -50479,13 +50479,14 @@ declare const DEVICE_PROVIDERS: {
|
|
|
50479
50479
|
readonly KORELOCK: "korelock";
|
|
50480
50480
|
readonly DORMAKABA_AMBIANCE: "dormakaba_ambiance";
|
|
50481
50481
|
readonly ULTRALOQ: "ultraloq";
|
|
50482
|
+
readonly RING: "ring";
|
|
50482
50483
|
};
|
|
50483
50484
|
type DeviceProviderName = (typeof DEVICE_PROVIDERS)[keyof typeof DEVICE_PROVIDERS];
|
|
50484
50485
|
declare const device_provider: z.ZodObject<{
|
|
50485
50486
|
device_provider_name: z.ZodEnum<[DeviceProviderName, ...DeviceProviderName[]]>;
|
|
50486
50487
|
display_name: z.ZodString;
|
|
50487
50488
|
image_url: z.ZodString;
|
|
50488
|
-
provider_categories: z.ZodArray<z.ZodEnum<["stable" | "consumer_smartlocks" | "beta" | "thermostats" | "noise_sensors" | "access_control_systems" | "internal_beta", ...("stable" | "consumer_smartlocks" | "beta" | "thermostats" | "noise_sensors" | "access_control_systems" | "internal_beta")[]]>, "many">;
|
|
50489
|
+
provider_categories: z.ZodArray<z.ZodEnum<["stable" | "consumer_smartlocks" | "beta" | "thermostats" | "noise_sensors" | "access_control_systems" | "cameras" | "internal_beta", ...("stable" | "consumer_smartlocks" | "beta" | "thermostats" | "noise_sensors" | "access_control_systems" | "cameras" | "internal_beta")[]]>, "many">;
|
|
50489
50490
|
} & {
|
|
50490
50491
|
can_remotely_unlock: z.ZodOptional<z.ZodBoolean>;
|
|
50491
50492
|
can_remotely_lock: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -50510,7 +50511,7 @@ declare const device_provider: z.ZodObject<{
|
|
|
50510
50511
|
display_name: string;
|
|
50511
50512
|
image_url: string;
|
|
50512
50513
|
device_provider_name: DeviceProviderName;
|
|
50513
|
-
provider_categories: ("stable" | "consumer_smartlocks" | "beta" | "thermostats" | "noise_sensors" | "access_control_systems" | "internal_beta")[];
|
|
50514
|
+
provider_categories: ("stable" | "consumer_smartlocks" | "beta" | "thermostats" | "noise_sensors" | "access_control_systems" | "cameras" | "internal_beta")[];
|
|
50514
50515
|
can_remotely_unlock?: boolean | undefined;
|
|
50515
50516
|
can_remotely_lock?: boolean | undefined;
|
|
50516
50517
|
can_program_offline_access_codes?: boolean | undefined;
|
|
@@ -50534,7 +50535,7 @@ declare const device_provider: z.ZodObject<{
|
|
|
50534
50535
|
display_name: string;
|
|
50535
50536
|
image_url: string;
|
|
50536
50537
|
device_provider_name: DeviceProviderName;
|
|
50537
|
-
provider_categories: ("stable" | "consumer_smartlocks" | "beta" | "thermostats" | "noise_sensors" | "access_control_systems" | "internal_beta")[];
|
|
50538
|
+
provider_categories: ("stable" | "consumer_smartlocks" | "beta" | "thermostats" | "noise_sensors" | "access_control_systems" | "cameras" | "internal_beta")[];
|
|
50538
50539
|
can_remotely_unlock?: boolean | undefined;
|
|
50539
50540
|
can_remotely_lock?: boolean | undefined;
|
|
50540
50541
|
can_program_offline_access_codes?: boolean | undefined;
|
|
@@ -139881,7 +139882,7 @@ type Routes = {
|
|
|
139881
139882
|
/** Your unique key for the customer associated with this connected account. */
|
|
139882
139883
|
customer_key?: string | undefined;
|
|
139883
139884
|
/** List of capabilities that were accepted during the account connection process. */
|
|
139884
|
-
accepted_capabilities: ('lock' | 'thermostat' | 'noise_sensor' | 'access_control')[];
|
|
139885
|
+
accepted_capabilities: ('lock' | 'thermostat' | 'noise_sensor' | 'access_control' | 'camera')[];
|
|
139885
139886
|
}[] | undefined;
|
|
139886
139887
|
acs_systems?: {
|
|
139887
139888
|
/** ID of the default credential manager `acs_system` for this [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
@@ -155111,9 +155112,9 @@ type Routes = {
|
|
|
155111
155112
|
/** 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. */
|
|
155112
155113
|
customer_key?: string | undefined;
|
|
155113
155114
|
/** 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. */
|
|
155114
|
-
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' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'dormakaba_ambiance' | 'ultraloq' | 'yale_access' | 'hid_cm' | 'google_nest')[] | undefined;
|
|
155115
|
+
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' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'dormakaba_ambiance' | 'ultraloq' | 'ring' | 'yale_access' | 'hid_cm' | 'google_nest')[] | undefined;
|
|
155115
155116
|
/** 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. */
|
|
155116
|
-
provider_category?: ('stable' | 'consumer_smartlocks' | 'beta' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'internal_beta') | undefined;
|
|
155117
|
+
provider_category?: ('stable' | 'consumer_smartlocks' | 'beta' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'cameras' | 'internal_beta') | undefined;
|
|
155117
155118
|
/** 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). */
|
|
155118
155119
|
custom_metadata?: {
|
|
155119
155120
|
[x: string]: string | boolean | null;
|
|
@@ -155123,7 +155124,7 @@ type Routes = {
|
|
|
155123
155124
|
/** 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). */
|
|
155124
155125
|
wait_for_device_creation?: boolean;
|
|
155125
155126
|
/** 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. */
|
|
155126
|
-
accepted_capabilities?: ('lock' | 'thermostat' | 'noise_sensor' | 'access_control')[] | undefined;
|
|
155127
|
+
accepted_capabilities?: ('lock' | 'thermostat' | 'noise_sensor' | 'access_control' | 'camera')[] | undefined;
|
|
155127
155128
|
/** List of provider keys to exclude from the Connect Webview. These providers will not be shown when the user tries to connect an account. */
|
|
155128
155129
|
excluded_providers?: string[] | undefined;
|
|
155129
155130
|
};
|
|
@@ -155156,7 +155157,7 @@ type Routes = {
|
|
|
155156
155157
|
/** List of accepted [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
|
|
155157
155158
|
accepted_providers: string[];
|
|
155158
155159
|
/** High-level device capabilities that the Connect Webview can accept. When creating a Connect Webview, you can specify the types of devices that it can connect to Seam. If you do not set custom `accepted_capabilities`, Seam uses a default set of `accepted_capabilities` for each provider. For example, if you create a Connect Webview that accepts SmartThing devices, without specifying `accepted_capabilities`, Seam accepts only SmartThings locks. To connect SmartThings thermostats and locks to Seam, create a Connect Webview and include both `thermostat` and `lock` in the `accepted_capabilities`. */
|
|
155159
|
-
accepted_capabilities: ('lock' | 'thermostat' | 'noise_sensor' | 'access_control')[];
|
|
155160
|
+
accepted_capabilities: ('lock' | 'thermostat' | 'noise_sensor' | 'access_control' | 'camera')[];
|
|
155160
155161
|
/**
|
|
155161
155162
|
* @deprecated Unused. Will be removed.*/
|
|
155162
155163
|
accepted_devices: string[];
|
|
@@ -155241,7 +155242,7 @@ type Routes = {
|
|
|
155241
155242
|
/** List of accepted [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
|
|
155242
155243
|
accepted_providers: string[];
|
|
155243
155244
|
/** High-level device capabilities that the Connect Webview can accept. When creating a Connect Webview, you can specify the types of devices that it can connect to Seam. If you do not set custom `accepted_capabilities`, Seam uses a default set of `accepted_capabilities` for each provider. For example, if you create a Connect Webview that accepts SmartThing devices, without specifying `accepted_capabilities`, Seam accepts only SmartThings locks. To connect SmartThings thermostats and locks to Seam, create a Connect Webview and include both `thermostat` and `lock` in the `accepted_capabilities`. */
|
|
155244
|
-
accepted_capabilities: ('lock' | 'thermostat' | 'noise_sensor' | 'access_control')[];
|
|
155245
|
+
accepted_capabilities: ('lock' | 'thermostat' | 'noise_sensor' | 'access_control' | 'camera')[];
|
|
155245
155246
|
/**
|
|
155246
155247
|
* @deprecated Unused. Will be removed.*/
|
|
155247
155248
|
accepted_devices: string[];
|
|
@@ -155314,7 +155315,7 @@ type Routes = {
|
|
|
155314
155315
|
/** List of accepted [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
|
|
155315
155316
|
accepted_providers: string[];
|
|
155316
155317
|
/** High-level device capabilities that the Connect Webview can accept. When creating a Connect Webview, you can specify the types of devices that it can connect to Seam. If you do not set custom `accepted_capabilities`, Seam uses a default set of `accepted_capabilities` for each provider. For example, if you create a Connect Webview that accepts SmartThing devices, without specifying `accepted_capabilities`, Seam accepts only SmartThings locks. To connect SmartThings thermostats and locks to Seam, create a Connect Webview and include both `thermostat` and `lock` in the `accepted_capabilities`. */
|
|
155317
|
-
accepted_capabilities: ('lock' | 'thermostat' | 'noise_sensor' | 'access_control')[];
|
|
155318
|
+
accepted_capabilities: ('lock' | 'thermostat' | 'noise_sensor' | 'access_control' | 'camera')[];
|
|
155318
155319
|
/**
|
|
155319
155320
|
* @deprecated Unused. Will be removed.*/
|
|
155320
155321
|
accepted_devices: string[];
|
|
@@ -155524,7 +155525,7 @@ type Routes = {
|
|
|
155524
155525
|
/** Your unique key for the customer associated with this connected account. */
|
|
155525
155526
|
customer_key?: string | undefined;
|
|
155526
155527
|
/** List of capabilities that were accepted during the account connection process. */
|
|
155527
|
-
accepted_capabilities: ('lock' | 'thermostat' | 'noise_sensor' | 'access_control')[];
|
|
155528
|
+
accepted_capabilities: ('lock' | 'thermostat' | 'noise_sensor' | 'access_control' | 'camera')[];
|
|
155528
155529
|
};
|
|
155529
155530
|
};
|
|
155530
155531
|
maxDuration: undefined;
|
|
@@ -155688,7 +155689,7 @@ type Routes = {
|
|
|
155688
155689
|
/** Your unique key for the customer associated with this connected account. */
|
|
155689
155690
|
customer_key?: string | undefined;
|
|
155690
155691
|
/** List of capabilities that were accepted during the account connection process. */
|
|
155691
|
-
accepted_capabilities: ('lock' | 'thermostat' | 'noise_sensor' | 'access_control')[];
|
|
155692
|
+
accepted_capabilities: ('lock' | 'thermostat' | 'noise_sensor' | 'access_control' | 'camera')[];
|
|
155692
155693
|
}[];
|
|
155693
155694
|
/** Information about the current page of results. */
|
|
155694
155695
|
pagination: {
|
|
@@ -155742,7 +155743,7 @@ type Routes = {
|
|
|
155742
155743
|
[x: string]: string | boolean | null;
|
|
155743
155744
|
} | undefined;
|
|
155744
155745
|
/** 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`. */
|
|
155745
|
-
accepted_capabilities?: ('lock' | 'thermostat' | 'noise_sensor' | 'access_control')[] | undefined;
|
|
155746
|
+
accepted_capabilities?: ('lock' | 'thermostat' | 'noise_sensor' | 'access_control' | 'camera')[] | undefined;
|
|
155746
155747
|
/** The customer key to associate with this connected account. If provided, the connected account and all resources under the connected account will be moved to this customer. May only be provided if the connected account is not already associated with a customer. */
|
|
155747
155748
|
customer_key?: string | undefined;
|
|
155748
155749
|
};
|
|
@@ -155886,7 +155887,7 @@ type Routes = {
|
|
|
155886
155887
|
/** Your unique key for the customer associated with this connected account. */
|
|
155887
155888
|
customer_key?: string | undefined;
|
|
155888
155889
|
/** List of capabilities that were accepted during the account connection process. */
|
|
155889
|
-
accepted_capabilities: ('lock' | 'thermostat' | 'noise_sensor' | 'access_control')[];
|
|
155890
|
+
accepted_capabilities: ('lock' | 'thermostat' | 'noise_sensor' | 'access_control' | 'camera')[];
|
|
155890
155891
|
};
|
|
155891
155892
|
};
|
|
155892
155893
|
maxDuration: undefined;
|
|
@@ -158046,7 +158047,7 @@ type Routes = {
|
|
|
158046
158047
|
/** Array of device types for which you want to list devices. */
|
|
158047
158048
|
device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera')[] | undefined;
|
|
158048
158049
|
/** Manufacturer for which you want to list devices. */
|
|
158049
|
-
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'korelock' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq') | undefined;
|
|
158050
|
+
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'korelock' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring') | undefined;
|
|
158050
158051
|
/** Array of device IDs for which you want to list devices. */
|
|
158051
158052
|
device_ids?: string[] | undefined;
|
|
158052
158053
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -159399,15 +159400,15 @@ type Routes = {
|
|
|
159399
159400
|
jsonBody: {};
|
|
159400
159401
|
commonParams: {
|
|
159401
159402
|
/** Category for which you want to list providers. */
|
|
159402
|
-
provider_category?: ('stable' | 'consumer_smartlocks' | 'beta' | 'thermostats' | 'noise_sensors' | 'access_control_systems') | undefined;
|
|
159403
|
+
provider_category?: ('stable' | 'consumer_smartlocks' | 'beta' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'cameras') | undefined;
|
|
159403
159404
|
};
|
|
159404
159405
|
formData: {};
|
|
159405
159406
|
jsonResponse: {
|
|
159406
159407
|
device_providers: {
|
|
159407
|
-
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' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'dormakaba_ambiance' | 'ultraloq';
|
|
159408
|
+
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' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'dormakaba_ambiance' | 'ultraloq' | 'ring';
|
|
159408
159409
|
display_name: string;
|
|
159409
159410
|
image_url: string;
|
|
159410
|
-
provider_categories: ('stable' | 'consumer_smartlocks' | 'beta' | 'thermostats' | 'noise_sensors' | 'access_control_systems')[];
|
|
159411
|
+
provider_categories: ('stable' | 'consumer_smartlocks' | 'beta' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'cameras')[];
|
|
159411
159412
|
can_remotely_unlock?: boolean | undefined;
|
|
159412
159413
|
can_remotely_lock?: boolean | undefined;
|
|
159413
159414
|
can_program_offline_access_codes?: boolean | undefined;
|
|
@@ -159988,7 +159989,7 @@ type Routes = {
|
|
|
159988
159989
|
/** Array of device types for which you want to list devices. */
|
|
159989
159990
|
device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera')[] | undefined;
|
|
159990
159991
|
/** Manufacturer for which you want to list devices. */
|
|
159991
|
-
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'korelock' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq') | undefined;
|
|
159992
|
+
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'korelock' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring') | undefined;
|
|
159992
159993
|
/** Array of device IDs for which you want to list devices. */
|
|
159993
159994
|
device_ids?: string[] | undefined;
|
|
159994
159995
|
/** Timestamp by which to limit returned devices. Returns devices created before this timestamp. */
|
|
@@ -191682,7 +191683,7 @@ type Routes = {
|
|
|
191682
191683
|
/** Your unique key for the customer associated with this connected account. */
|
|
191683
191684
|
customer_key?: string | undefined;
|
|
191684
191685
|
/** List of capabilities that were accepted during the account connection process. */
|
|
191685
|
-
accepted_capabilities: ('lock' | 'thermostat' | 'noise_sensor' | 'access_control')[];
|
|
191686
|
+
accepted_capabilities: ('lock' | 'thermostat' | 'noise_sensor' | 'access_control' | 'camera')[];
|
|
191686
191687
|
}[] | undefined;
|
|
191687
191688
|
acs_systems?: {
|
|
191688
191689
|
/** ID of the default credential manager `acs_system` for this [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
@@ -215998,7 +215999,7 @@ type Routes = {
|
|
|
215998
215999
|
/** List of accepted [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
|
|
215999
216000
|
accepted_providers: string[];
|
|
216000
216001
|
/** High-level device capabilities that the Connect Webview can accept. When creating a Connect Webview, you can specify the types of devices that it can connect to Seam. If you do not set custom `accepted_capabilities`, Seam uses a default set of `accepted_capabilities` for each provider. For example, if you create a Connect Webview that accepts SmartThing devices, without specifying `accepted_capabilities`, Seam accepts only SmartThings locks. To connect SmartThings thermostats and locks to Seam, create a Connect Webview and include both `thermostat` and `lock` in the `accepted_capabilities`. */
|
|
216001
|
-
accepted_capabilities: ('lock' | 'thermostat' | 'noise_sensor' | 'access_control')[];
|
|
216002
|
+
accepted_capabilities: ('lock' | 'thermostat' | 'noise_sensor' | 'access_control' | 'camera')[];
|
|
216002
216003
|
/**
|
|
216003
216004
|
* @deprecated Unused. Will be removed.*/
|
|
216004
216005
|
accepted_devices: string[];
|
|
@@ -216444,7 +216445,7 @@ type Routes = {
|
|
|
216444
216445
|
/** Your unique key for the customer associated with this connected account. */
|
|
216445
216446
|
customer_key?: string | undefined;
|
|
216446
216447
|
/** List of capabilities that were accepted during the account connection process. */
|
|
216447
|
-
accepted_capabilities: ('lock' | 'thermostat' | 'noise_sensor' | 'access_control')[];
|
|
216448
|
+
accepted_capabilities: ('lock' | 'thermostat' | 'noise_sensor' | 'access_control' | 'camera')[];
|
|
216448
216449
|
}[] | undefined;
|
|
216449
216450
|
events?: ({
|
|
216450
216451
|
/** ID of the event. */
|
package/dist/index.cjs
CHANGED
|
@@ -558,7 +558,8 @@ var provider_capability = zod.z.enum([
|
|
|
558
558
|
"lock",
|
|
559
559
|
"thermostat",
|
|
560
560
|
"noise_sensor",
|
|
561
|
-
"access_control"
|
|
561
|
+
"access_control",
|
|
562
|
+
"camera"
|
|
562
563
|
]).describe(`
|
|
563
564
|
High-level device capabilities that can be restricted in connect webviews.
|
|
564
565
|
These represent the main device categories that customers can opt into.
|
|
@@ -1939,7 +1940,8 @@ var DEVICE_PROVIDERS = {
|
|
|
1939
1940
|
KEYNEST: "keynest",
|
|
1940
1941
|
KORELOCK: "korelock",
|
|
1941
1942
|
DORMAKABA_AMBIANCE: "dormakaba_ambiance",
|
|
1942
|
-
ULTRALOQ: "ultraloq"
|
|
1943
|
+
ULTRALOQ: "ultraloq",
|
|
1944
|
+
RING: "ring"
|
|
1943
1945
|
};
|
|
1944
1946
|
var ALL_DEVICE_PROVIDERS = Object.values(DEVICE_PROVIDERS);
|
|
1945
1947
|
var PROVIDER_CATEGORY_MAP = {
|
|
@@ -2006,6 +2008,7 @@ var PROVIDER_CATEGORY_MAP = {
|
|
|
2006
2008
|
"legic_connect",
|
|
2007
2009
|
"hotek"
|
|
2008
2010
|
],
|
|
2011
|
+
cameras: ["ring"],
|
|
2009
2012
|
internal_beta: ALL_DEVICE_PROVIDERS
|
|
2010
2013
|
};
|
|
2011
2014
|
var PROVIDER_CATEGORIES = Object.keys(PROVIDER_CATEGORY_MAP);
|
|
@@ -14886,7 +14889,13 @@ var openapi_default = {
|
|
|
14886
14889
|
description: "High-level device capabilities that the Connect Webview can accept. When creating a Connect Webview, you can specify the types of devices that it can connect to Seam. If you do not set custom `accepted_capabilities`, Seam uses a default set of `accepted_capabilities` for each provider. For example, if you create a Connect Webview that accepts SmartThing devices, without specifying `accepted_capabilities`, Seam accepts only SmartThings locks. To connect SmartThings thermostats and locks to Seam, create a Connect Webview and include both `thermostat` and `lock` in the `accepted_capabilities`.",
|
|
14887
14890
|
items: {
|
|
14888
14891
|
description: "\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",
|
|
14889
|
-
enum: [
|
|
14892
|
+
enum: [
|
|
14893
|
+
"lock",
|
|
14894
|
+
"thermostat",
|
|
14895
|
+
"noise_sensor",
|
|
14896
|
+
"access_control",
|
|
14897
|
+
"camera"
|
|
14898
|
+
],
|
|
14890
14899
|
type: "string"
|
|
14891
14900
|
},
|
|
14892
14901
|
type: "array"
|
|
@@ -15027,7 +15036,13 @@ var openapi_default = {
|
|
|
15027
15036
|
description: "List of capabilities that were accepted during the account connection process.",
|
|
15028
15037
|
items: {
|
|
15029
15038
|
description: "\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",
|
|
15030
|
-
enum: [
|
|
15039
|
+
enum: [
|
|
15040
|
+
"lock",
|
|
15041
|
+
"thermostat",
|
|
15042
|
+
"noise_sensor",
|
|
15043
|
+
"access_control",
|
|
15044
|
+
"camera"
|
|
15045
|
+
],
|
|
15031
15046
|
type: "string"
|
|
15032
15047
|
},
|
|
15033
15048
|
type: "array"
|
|
@@ -19156,7 +19171,8 @@ var openapi_default = {
|
|
|
19156
19171
|
"keynest",
|
|
19157
19172
|
"korelock",
|
|
19158
19173
|
"dormakaba_ambiance",
|
|
19159
|
-
"ultraloq"
|
|
19174
|
+
"ultraloq",
|
|
19175
|
+
"ring"
|
|
19160
19176
|
],
|
|
19161
19177
|
type: "string"
|
|
19162
19178
|
},
|
|
@@ -19170,7 +19186,8 @@ var openapi_default = {
|
|
|
19170
19186
|
"beta",
|
|
19171
19187
|
"thermostats",
|
|
19172
19188
|
"noise_sensors",
|
|
19173
|
-
"access_control_systems"
|
|
19189
|
+
"access_control_systems",
|
|
19190
|
+
"cameras"
|
|
19174
19191
|
],
|
|
19175
19192
|
type: "string"
|
|
19176
19193
|
},
|
|
@@ -48751,7 +48768,8 @@ var openapi_default = {
|
|
|
48751
48768
|
"lock",
|
|
48752
48769
|
"thermostat",
|
|
48753
48770
|
"noise_sensor",
|
|
48754
|
-
"access_control"
|
|
48771
|
+
"access_control",
|
|
48772
|
+
"camera"
|
|
48755
48773
|
],
|
|
48756
48774
|
type: "string"
|
|
48757
48775
|
},
|
|
@@ -48809,6 +48827,7 @@ var openapi_default = {
|
|
|
48809
48827
|
"korelock",
|
|
48810
48828
|
"dormakaba_ambiance",
|
|
48811
48829
|
"ultraloq",
|
|
48830
|
+
"ring",
|
|
48812
48831
|
"yale_access",
|
|
48813
48832
|
"hid_cm",
|
|
48814
48833
|
"google_nest"
|
|
@@ -48864,6 +48883,7 @@ var openapi_default = {
|
|
|
48864
48883
|
"thermostats",
|
|
48865
48884
|
"noise_sensors",
|
|
48866
48885
|
"access_control_systems",
|
|
48886
|
+
"cameras",
|
|
48867
48887
|
"internal_beta"
|
|
48868
48888
|
],
|
|
48869
48889
|
type: "string"
|
|
@@ -49829,7 +49849,8 @@ var openapi_default = {
|
|
|
49829
49849
|
"lock",
|
|
49830
49850
|
"thermostat",
|
|
49831
49851
|
"noise_sensor",
|
|
49832
|
-
"access_control"
|
|
49852
|
+
"access_control",
|
|
49853
|
+
"camera"
|
|
49833
49854
|
],
|
|
49834
49855
|
type: "string"
|
|
49835
49856
|
},
|
|
@@ -49916,7 +49937,8 @@ var openapi_default = {
|
|
|
49916
49937
|
"lock",
|
|
49917
49938
|
"thermostat",
|
|
49918
49939
|
"noise_sensor",
|
|
49919
|
-
"access_control"
|
|
49940
|
+
"access_control",
|
|
49941
|
+
"camera"
|
|
49920
49942
|
],
|
|
49921
49943
|
type: "string"
|
|
49922
49944
|
},
|
|
@@ -52728,7 +52750,8 @@ var openapi_default = {
|
|
|
52728
52750
|
"sensi",
|
|
52729
52751
|
"smartthings",
|
|
52730
52752
|
"tado",
|
|
52731
|
-
"ultraloq"
|
|
52753
|
+
"ultraloq",
|
|
52754
|
+
"ring"
|
|
52732
52755
|
],
|
|
52733
52756
|
type: "string"
|
|
52734
52757
|
}
|
|
@@ -53213,7 +53236,8 @@ var openapi_default = {
|
|
|
53213
53236
|
"sensi",
|
|
53214
53237
|
"smartthings",
|
|
53215
53238
|
"tado",
|
|
53216
|
-
"ultraloq"
|
|
53239
|
+
"ultraloq",
|
|
53240
|
+
"ring"
|
|
53217
53241
|
],
|
|
53218
53242
|
type: "string"
|
|
53219
53243
|
},
|
|
@@ -53304,7 +53328,8 @@ var openapi_default = {
|
|
|
53304
53328
|
"beta",
|
|
53305
53329
|
"thermostats",
|
|
53306
53330
|
"noise_sensors",
|
|
53307
|
-
"access_control_systems"
|
|
53331
|
+
"access_control_systems",
|
|
53332
|
+
"cameras"
|
|
53308
53333
|
],
|
|
53309
53334
|
type: "string"
|
|
53310
53335
|
}
|
|
@@ -53362,7 +53387,8 @@ var openapi_default = {
|
|
|
53362
53387
|
"beta",
|
|
53363
53388
|
"thermostats",
|
|
53364
53389
|
"noise_sensors",
|
|
53365
|
-
"access_control_systems"
|
|
53390
|
+
"access_control_systems",
|
|
53391
|
+
"cameras"
|
|
53366
53392
|
],
|
|
53367
53393
|
type: "string"
|
|
53368
53394
|
}
|
|
@@ -54565,7 +54591,8 @@ var openapi_default = {
|
|
|
54565
54591
|
"sensi",
|
|
54566
54592
|
"smartthings",
|
|
54567
54593
|
"tado",
|
|
54568
|
-
"ultraloq"
|
|
54594
|
+
"ultraloq",
|
|
54595
|
+
"ring"
|
|
54569
54596
|
],
|
|
54570
54597
|
type: "string"
|
|
54571
54598
|
}
|
|
@@ -55049,7 +55076,8 @@ var openapi_default = {
|
|
|
55049
55076
|
"sensi",
|
|
55050
55077
|
"smartthings",
|
|
55051
55078
|
"tado",
|
|
55052
|
-
"ultraloq"
|
|
55079
|
+
"ultraloq",
|
|
55080
|
+
"ring"
|
|
55053
55081
|
],
|
|
55054
55082
|
type: "string"
|
|
55055
55083
|
},
|