@seamapi/types 1.108.0 → 1.109.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 +40 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +49 -9
- package/dist/devicedb.cjs +5 -16
- package/dist/devicedb.cjs.map +1 -1
- package/dist/devicedb.d.cts +98 -130
- package/lib/seam/connect/openapi.d.ts +40 -0
- package/lib/seam/connect/openapi.js +40 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +9 -9
- package/lib/seam/connect/unstable/models/devices/device-metadata.d.ts +5 -5
- package/lib/seam/connect/unstable/models/devices/device-metadata.js +1 -1
- package/lib/seam/connect/unstable/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +9 -9
- package/lib/seam/devicedb/index.d.ts +2 -2
- package/lib/seam/devicedb/index.js +1 -1
- package/lib/seam/devicedb/index.js.map +1 -1
- package/lib/seam/devicedb/models/device-capability.js.map +1 -0
- package/lib/seam/devicedb/{public-models/device-model-v1.d.ts → models/device-model.d.ts} +19 -19
- package/lib/seam/devicedb/{public-models/device-model-v1.js → models/device-model.js} +1 -1
- package/lib/seam/devicedb/models/device-model.js.map +1 -0
- package/lib/seam/devicedb/models/hardware.js.map +1 -0
- package/lib/seam/devicedb/models/image-reference.js.map +1 -0
- package/lib/seam/devicedb/{public-models → models}/index.d.ts +1 -2
- package/lib/seam/devicedb/{public-models → models}/index.js +1 -2
- package/lib/seam/devicedb/models/index.js.map +1 -0
- package/lib/seam/devicedb/{public-models → models}/manufacturer.d.ts +4 -4
- package/lib/seam/devicedb/models/manufacturer.js.map +1 -0
- package/lib/seam/devicedb/route-specs.d.ts +70 -70
- package/lib/seam/devicedb/route-specs.js +1 -1
- package/lib/seam/devicedb/route-specs.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +40 -4
- package/src/lib/seam/connect/route-types.ts +9 -9
- package/src/lib/seam/connect/unstable/models/devices/device-metadata.ts +1 -1
- package/src/lib/seam/devicedb/index.ts +3 -3
- package/src/lib/seam/devicedb/{public-models/device-model-v1.ts → models/device-model.ts} +3 -3
- package/src/lib/seam/devicedb/{public-models → models}/index.ts +1 -2
- package/src/lib/seam/devicedb/route-specs.ts +1 -1
- package/lib/seam/devicedb/public-models/device-capability.js.map +0 -1
- package/lib/seam/devicedb/public-models/device-model-v0.d.ts +0 -30
- package/lib/seam/devicedb/public-models/device-model-v0.js +0 -12
- package/lib/seam/devicedb/public-models/device-model-v0.js.map +0 -1
- package/lib/seam/devicedb/public-models/device-model-v1.js.map +0 -1
- package/lib/seam/devicedb/public-models/hardware.js.map +0 -1
- package/lib/seam/devicedb/public-models/image-reference.js.map +0 -1
- package/lib/seam/devicedb/public-models/index.js.map +0 -1
- package/lib/seam/devicedb/public-models/manufacturer.js.map +0 -1
- package/src/lib/seam/devicedb/public-models/device-model-v0.ts +0 -14
- /package/lib/seam/devicedb/{public-models → models}/device-capability.d.ts +0 -0
- /package/lib/seam/devicedb/{public-models → models}/device-capability.js +0 -0
- /package/lib/seam/devicedb/{public-models → models}/hardware.d.ts +0 -0
- /package/lib/seam/devicedb/{public-models → models}/hardware.js +0 -0
- /package/lib/seam/devicedb/{public-models → models}/image-reference.d.ts +0 -0
- /package/lib/seam/devicedb/{public-models → models}/image-reference.js +0 -0
- /package/lib/seam/devicedb/{public-models → models}/manufacturer.js +0 -0
- /package/src/lib/seam/devicedb/{public-models → models}/device-capability.ts +0 -0
- /package/src/lib/seam/devicedb/{public-models → models}/hardware.ts +0 -0
- /package/src/lib/seam/devicedb/{public-models → models}/image-reference.ts +0 -0
- /package/src/lib/seam/devicedb/{public-models → models}/manufacturer.ts +0 -0
package/dist/devicedb.d.cts
CHANGED
|
@@ -11,36 +11,6 @@ declare const device_capability_flags: z.ZodObject<{
|
|
|
11
11
|
can_program_online_access_codes?: boolean | undefined;
|
|
12
12
|
}>;
|
|
13
13
|
|
|
14
|
-
declare const device_model_v0: z.ZodObject<{
|
|
15
|
-
main_category: z.ZodString;
|
|
16
|
-
model_name: z.ZodString;
|
|
17
|
-
manufacturer_model_id: z.ZodString;
|
|
18
|
-
connection_type: z.ZodEnum<["wifi", "zwave", "zigbee", "unknown"]>;
|
|
19
|
-
support_level: z.ZodEnum<["live", "beta", "unsupported"]>;
|
|
20
|
-
brand: z.ZodString;
|
|
21
|
-
icon_url: z.ZodString;
|
|
22
|
-
seam_device_model_page_url: z.ZodString;
|
|
23
|
-
}, "strip", z.ZodTypeAny, {
|
|
24
|
-
main_category: string;
|
|
25
|
-
model_name: string;
|
|
26
|
-
manufacturer_model_id: string;
|
|
27
|
-
connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
28
|
-
support_level: "live" | "beta" | "unsupported";
|
|
29
|
-
brand: string;
|
|
30
|
-
icon_url: string;
|
|
31
|
-
seam_device_model_page_url: string;
|
|
32
|
-
}, {
|
|
33
|
-
main_category: string;
|
|
34
|
-
model_name: string;
|
|
35
|
-
manufacturer_model_id: string;
|
|
36
|
-
connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
37
|
-
support_level: "live" | "beta" | "unsupported";
|
|
38
|
-
brand: string;
|
|
39
|
-
icon_url: string;
|
|
40
|
-
seam_device_model_page_url: string;
|
|
41
|
-
}>;
|
|
42
|
-
type DeviceModelV0 = z.infer<typeof device_model_v0>;
|
|
43
|
-
|
|
44
14
|
declare const device_category: z.ZodEnum<["smartlock", "sensor", "thermostat", "relay", "intercom", "accessory"]>;
|
|
45
15
|
type DeviceCategory = z.infer<typeof device_category>;
|
|
46
16
|
declare const device_connection_type: z.ZodEnum<["wifi", "zwave", "zigbee", "unknown"]>;
|
|
@@ -108,7 +78,7 @@ declare const thermostat: z.ZodObject<{
|
|
|
108
78
|
can_program_climate_schedules: boolean;
|
|
109
79
|
};
|
|
110
80
|
}>;
|
|
111
|
-
type
|
|
81
|
+
type ThermostatProperties = z.infer<typeof thermostat>;
|
|
112
82
|
declare const device_model_category_specific_properties: z.ZodDiscriminatedUnion<"main_category", [z.ZodObject<{
|
|
113
83
|
main_category: z.ZodLiteral<"smartlock">;
|
|
114
84
|
physical_properties: z.ZodObject<{
|
|
@@ -379,8 +349,8 @@ declare const base_device_model_v1: z.ZodObject<{
|
|
|
379
349
|
}, "device_model_count">, "strip", z.ZodTypeAny, {
|
|
380
350
|
display_name: string;
|
|
381
351
|
manufacturer_id: string;
|
|
382
|
-
integration: "stable" | "beta" | "
|
|
383
|
-
integration_support_level: "stable" | "beta" | "
|
|
352
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
353
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
384
354
|
is_connect_webview_supported: boolean;
|
|
385
355
|
requires_seam_support_to_add_account: boolean;
|
|
386
356
|
annotations: {
|
|
@@ -395,8 +365,8 @@ declare const base_device_model_v1: z.ZodObject<{
|
|
|
395
365
|
}, {
|
|
396
366
|
display_name: string;
|
|
397
367
|
manufacturer_id: string;
|
|
398
|
-
integration: "stable" | "beta" | "
|
|
399
|
-
integration_support_level: "stable" | "beta" | "
|
|
368
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
369
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
400
370
|
is_connect_webview_supported: boolean;
|
|
401
371
|
requires_seam_support_to_add_account: boolean;
|
|
402
372
|
annotations: {
|
|
@@ -514,8 +484,8 @@ declare const base_device_model_v1: z.ZodObject<{
|
|
|
514
484
|
manufacturer: {
|
|
515
485
|
display_name: string;
|
|
516
486
|
manufacturer_id: string;
|
|
517
|
-
integration: "stable" | "beta" | "
|
|
518
|
-
integration_support_level: "stable" | "beta" | "
|
|
487
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
488
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
519
489
|
is_connect_webview_supported: boolean;
|
|
520
490
|
requires_seam_support_to_add_account: boolean;
|
|
521
491
|
annotations: {
|
|
@@ -563,8 +533,8 @@ declare const base_device_model_v1: z.ZodObject<{
|
|
|
563
533
|
manufacturer: {
|
|
564
534
|
display_name: string;
|
|
565
535
|
manufacturer_id: string;
|
|
566
|
-
integration: "stable" | "beta" | "
|
|
567
|
-
integration_support_level: "stable" | "beta" | "
|
|
536
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
537
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
568
538
|
is_connect_webview_supported: boolean;
|
|
569
539
|
requires_seam_support_to_add_account: boolean;
|
|
570
540
|
annotations: {
|
|
@@ -606,7 +576,7 @@ declare const base_device_model_v1: z.ZodObject<{
|
|
|
606
576
|
power_sources: ("battery" | "hardwired" | "mechanical_harvesting" | "wireless" | "ethernet")[];
|
|
607
577
|
product_url?: string | undefined;
|
|
608
578
|
}>;
|
|
609
|
-
type
|
|
579
|
+
type BaseDeviceModel = z.infer<typeof base_device_model_v1>;
|
|
610
580
|
declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
611
581
|
device_model_id: z.ZodString;
|
|
612
582
|
manufacturer: z.ZodObject<Omit<{
|
|
@@ -643,8 +613,8 @@ declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
643
613
|
}, "device_model_count">, "strip", z.ZodTypeAny, {
|
|
644
614
|
display_name: string;
|
|
645
615
|
manufacturer_id: string;
|
|
646
|
-
integration: "stable" | "beta" | "
|
|
647
|
-
integration_support_level: "stable" | "beta" | "
|
|
616
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
617
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
648
618
|
is_connect_webview_supported: boolean;
|
|
649
619
|
requires_seam_support_to_add_account: boolean;
|
|
650
620
|
annotations: {
|
|
@@ -659,8 +629,8 @@ declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
659
629
|
}, {
|
|
660
630
|
display_name: string;
|
|
661
631
|
manufacturer_id: string;
|
|
662
|
-
integration: "stable" | "beta" | "
|
|
663
|
-
integration_support_level: "stable" | "beta" | "
|
|
632
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
633
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
664
634
|
is_connect_webview_supported: boolean;
|
|
665
635
|
requires_seam_support_to_add_account: boolean;
|
|
666
636
|
annotations: {
|
|
@@ -778,8 +748,8 @@ declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
778
748
|
manufacturer: {
|
|
779
749
|
display_name: string;
|
|
780
750
|
manufacturer_id: string;
|
|
781
|
-
integration: "stable" | "beta" | "
|
|
782
|
-
integration_support_level: "stable" | "beta" | "
|
|
751
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
752
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
783
753
|
is_connect_webview_supported: boolean;
|
|
784
754
|
requires_seam_support_to_add_account: boolean;
|
|
785
755
|
annotations: {
|
|
@@ -827,8 +797,8 @@ declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
827
797
|
manufacturer: {
|
|
828
798
|
display_name: string;
|
|
829
799
|
manufacturer_id: string;
|
|
830
|
-
integration: "stable" | "beta" | "
|
|
831
|
-
integration_support_level: "stable" | "beta" | "
|
|
800
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
801
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
832
802
|
is_connect_webview_supported: boolean;
|
|
833
803
|
requires_seam_support_to_add_account: boolean;
|
|
834
804
|
annotations: {
|
|
@@ -1103,7 +1073,7 @@ declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
1103
1073
|
}, {
|
|
1104
1074
|
main_category: "accessory";
|
|
1105
1075
|
}>]>>;
|
|
1106
|
-
type
|
|
1076
|
+
type DeviceModel = z.infer<typeof device_model_v1>;
|
|
1107
1077
|
|
|
1108
1078
|
declare const image_reference: z.ZodObject<{
|
|
1109
1079
|
url: z.ZodString;
|
|
@@ -1170,8 +1140,8 @@ declare const manufacturer: z.ZodObject<{
|
|
|
1170
1140
|
}, "strip", z.ZodTypeAny, {
|
|
1171
1141
|
display_name: string;
|
|
1172
1142
|
manufacturer_id: string;
|
|
1173
|
-
integration: "stable" | "beta" | "
|
|
1174
|
-
integration_support_level: "stable" | "beta" | "
|
|
1143
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
1144
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
1175
1145
|
is_connect_webview_supported: boolean;
|
|
1176
1146
|
requires_seam_support_to_add_account: boolean;
|
|
1177
1147
|
device_model_count: number;
|
|
@@ -1187,8 +1157,8 @@ declare const manufacturer: z.ZodObject<{
|
|
|
1187
1157
|
}, {
|
|
1188
1158
|
display_name: string;
|
|
1189
1159
|
manufacturer_id: string;
|
|
1190
|
-
integration: "stable" | "beta" | "
|
|
1191
|
-
integration_support_level: "stable" | "beta" | "
|
|
1160
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
1161
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
1192
1162
|
is_connect_webview_supported: boolean;
|
|
1193
1163
|
requires_seam_support_to_add_account: boolean;
|
|
1194
1164
|
device_model_count: number;
|
|
@@ -1204,23 +1174,21 @@ declare const manufacturer: z.ZodObject<{
|
|
|
1204
1174
|
}>;
|
|
1205
1175
|
type Manufacturer = z.infer<typeof manufacturer>;
|
|
1206
1176
|
|
|
1207
|
-
type
|
|
1177
|
+
type index_BaseDeviceModel = BaseDeviceModel;
|
|
1208
1178
|
type index_DeviceCategory = DeviceCategory;
|
|
1209
1179
|
type index_DeviceConnectionType = DeviceConnectionType;
|
|
1210
|
-
type
|
|
1211
|
-
type index_DeviceModelV1 = DeviceModelV1;
|
|
1180
|
+
type index_DeviceModel = DeviceModel;
|
|
1212
1181
|
type index_ImageReference = ImageReference;
|
|
1213
1182
|
type index_Manufacturer = Manufacturer;
|
|
1214
1183
|
type index_ManufacturerAnnotation = ManufacturerAnnotation;
|
|
1215
1184
|
type index_ManufacturerAnnotationCode = ManufacturerAnnotationCode;
|
|
1216
1185
|
type index_ManufacturerIntegrationSupportLevel = ManufacturerIntegrationSupportLevel;
|
|
1217
|
-
type
|
|
1186
|
+
type index_ThermostatProperties = ThermostatProperties;
|
|
1218
1187
|
declare const index_base_device_model_v1: typeof base_device_model_v1;
|
|
1219
1188
|
declare const index_device_capability_flags: typeof device_capability_flags;
|
|
1220
1189
|
declare const index_device_category: typeof device_category;
|
|
1221
1190
|
declare const index_device_connection_type: typeof device_connection_type;
|
|
1222
1191
|
declare const index_device_model_category_specific_properties: typeof device_model_category_specific_properties;
|
|
1223
|
-
declare const index_device_model_v0: typeof device_model_v0;
|
|
1224
1192
|
declare const index_device_model_v1: typeof device_model_v1;
|
|
1225
1193
|
declare const index_image_reference: typeof image_reference;
|
|
1226
1194
|
declare const index_manufacturer: typeof manufacturer;
|
|
@@ -1229,7 +1197,7 @@ declare const index_manufacturer_annotation_code: typeof manufacturer_annotation
|
|
|
1229
1197
|
declare const index_manufacturer_integration_support_level: typeof manufacturer_integration_support_level;
|
|
1230
1198
|
declare const index_thermostat: typeof thermostat;
|
|
1231
1199
|
declare namespace index {
|
|
1232
|
-
export { type
|
|
1200
|
+
export { type index_BaseDeviceModel as BaseDeviceModel, type index_DeviceCategory as DeviceCategory, type index_DeviceConnectionType as DeviceConnectionType, type index_DeviceModel as DeviceModel, type index_ImageReference as ImageReference, type index_Manufacturer as Manufacturer, type index_ManufacturerAnnotation as ManufacturerAnnotation, type index_ManufacturerAnnotationCode as ManufacturerAnnotationCode, type index_ManufacturerIntegrationSupportLevel as ManufacturerIntegrationSupportLevel, type index_ThermostatProperties as ThermostatProperties, index_base_device_model_v1 as base_device_model_v1, index_device_capability_flags as device_capability_flags, index_device_category as device_category, index_device_connection_type as device_connection_type, index_device_model_category_specific_properties as device_model_category_specific_properties, index_device_model_v1 as device_model_v1, index_image_reference as image_reference, index_manufacturer as manufacturer, index_manufacturer_annotation as manufacturer_annotation, index_manufacturer_annotation_code as manufacturer_annotation_code, index_manufacturer_integration_support_level as manufacturer_integration_support_level, index_thermostat as thermostat };
|
|
1233
1201
|
}
|
|
1234
1202
|
|
|
1235
1203
|
declare const routes: {
|
|
@@ -1280,8 +1248,8 @@ declare const routes: {
|
|
|
1280
1248
|
}, "device_model_count">, "strip", z.ZodTypeAny, {
|
|
1281
1249
|
display_name: string;
|
|
1282
1250
|
manufacturer_id: string;
|
|
1283
|
-
integration: "stable" | "beta" | "
|
|
1284
|
-
integration_support_level: "stable" | "beta" | "
|
|
1251
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
1252
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
1285
1253
|
is_connect_webview_supported: boolean;
|
|
1286
1254
|
requires_seam_support_to_add_account: boolean;
|
|
1287
1255
|
annotations: {
|
|
@@ -1296,8 +1264,8 @@ declare const routes: {
|
|
|
1296
1264
|
}, {
|
|
1297
1265
|
display_name: string;
|
|
1298
1266
|
manufacturer_id: string;
|
|
1299
|
-
integration: "stable" | "beta" | "
|
|
1300
|
-
integration_support_level: "stable" | "beta" | "
|
|
1267
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
1268
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
1301
1269
|
is_connect_webview_supported: boolean;
|
|
1302
1270
|
requires_seam_support_to_add_account: boolean;
|
|
1303
1271
|
annotations: {
|
|
@@ -1415,8 +1383,8 @@ declare const routes: {
|
|
|
1415
1383
|
manufacturer: {
|
|
1416
1384
|
display_name: string;
|
|
1417
1385
|
manufacturer_id: string;
|
|
1418
|
-
integration: "stable" | "beta" | "
|
|
1419
|
-
integration_support_level: "stable" | "beta" | "
|
|
1386
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
1387
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
1420
1388
|
is_connect_webview_supported: boolean;
|
|
1421
1389
|
requires_seam_support_to_add_account: boolean;
|
|
1422
1390
|
annotations: {
|
|
@@ -1464,8 +1432,8 @@ declare const routes: {
|
|
|
1464
1432
|
manufacturer: {
|
|
1465
1433
|
display_name: string;
|
|
1466
1434
|
manufacturer_id: string;
|
|
1467
|
-
integration: "stable" | "beta" | "
|
|
1468
|
-
integration_support_level: "stable" | "beta" | "
|
|
1435
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
1436
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
1469
1437
|
is_connect_webview_supported: boolean;
|
|
1470
1438
|
requires_seam_support_to_add_account: boolean;
|
|
1471
1439
|
annotations: {
|
|
@@ -1573,7 +1541,7 @@ declare const routes: {
|
|
|
1573
1541
|
main_category: z.ZodLiteral<"sensor">;
|
|
1574
1542
|
physical_properties: z.ZodObject<{
|
|
1575
1543
|
has_noise_sensor: z.ZodBoolean;
|
|
1576
|
-
has_humidity_sensor: z.ZodBoolean;
|
|
1544
|
+
has_humidity_sensor: z.ZodBoolean; /** @deprecated */
|
|
1577
1545
|
has_temperature_sensor: z.ZodBoolean;
|
|
1578
1546
|
has_occupancy_detection: z.ZodBoolean;
|
|
1579
1547
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1748,8 +1716,8 @@ declare const routes: {
|
|
|
1748
1716
|
manufacturer: {
|
|
1749
1717
|
display_name: string;
|
|
1750
1718
|
manufacturer_id: string;
|
|
1751
|
-
integration: "stable" | "beta" | "
|
|
1752
|
-
integration_support_level: "stable" | "beta" | "
|
|
1719
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
1720
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
1753
1721
|
is_connect_webview_supported: boolean;
|
|
1754
1722
|
requires_seam_support_to_add_account: boolean;
|
|
1755
1723
|
annotations: {
|
|
@@ -1812,8 +1780,8 @@ declare const routes: {
|
|
|
1812
1780
|
manufacturer: {
|
|
1813
1781
|
display_name: string;
|
|
1814
1782
|
manufacturer_id: string;
|
|
1815
|
-
integration: "stable" | "beta" | "
|
|
1816
|
-
integration_support_level: "stable" | "beta" | "
|
|
1783
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
1784
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
1817
1785
|
is_connect_webview_supported: boolean;
|
|
1818
1786
|
requires_seam_support_to_add_account: boolean;
|
|
1819
1787
|
annotations: {
|
|
@@ -1869,8 +1837,8 @@ declare const routes: {
|
|
|
1869
1837
|
manufacturer: {
|
|
1870
1838
|
display_name: string;
|
|
1871
1839
|
manufacturer_id: string;
|
|
1872
|
-
integration: "stable" | "beta" | "
|
|
1873
|
-
integration_support_level: "stable" | "beta" | "
|
|
1840
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
1841
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
1874
1842
|
is_connect_webview_supported: boolean;
|
|
1875
1843
|
requires_seam_support_to_add_account: boolean;
|
|
1876
1844
|
annotations: {
|
|
@@ -1932,8 +1900,8 @@ declare const routes: {
|
|
|
1932
1900
|
manufacturer: {
|
|
1933
1901
|
display_name: string;
|
|
1934
1902
|
manufacturer_id: string;
|
|
1935
|
-
integration: "stable" | "beta" | "
|
|
1936
|
-
integration_support_level: "stable" | "beta" | "
|
|
1903
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
1904
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
1937
1905
|
is_connect_webview_supported: boolean;
|
|
1938
1906
|
requires_seam_support_to_add_account: boolean;
|
|
1939
1907
|
annotations: {
|
|
@@ -1983,8 +1951,8 @@ declare const routes: {
|
|
|
1983
1951
|
manufacturer: {
|
|
1984
1952
|
display_name: string;
|
|
1985
1953
|
manufacturer_id: string;
|
|
1986
|
-
integration: "stable" | "beta" | "
|
|
1987
|
-
integration_support_level: "stable" | "beta" | "
|
|
1954
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
1955
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
1988
1956
|
is_connect_webview_supported: boolean;
|
|
1989
1957
|
requires_seam_support_to_add_account: boolean;
|
|
1990
1958
|
annotations: {
|
|
@@ -2046,8 +2014,8 @@ declare const routes: {
|
|
|
2046
2014
|
manufacturer: {
|
|
2047
2015
|
display_name: string;
|
|
2048
2016
|
manufacturer_id: string;
|
|
2049
|
-
integration: "stable" | "beta" | "
|
|
2050
|
-
integration_support_level: "stable" | "beta" | "
|
|
2017
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2018
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2051
2019
|
is_connect_webview_supported: boolean;
|
|
2052
2020
|
requires_seam_support_to_add_account: boolean;
|
|
2053
2021
|
annotations: {
|
|
@@ -2099,8 +2067,8 @@ declare const routes: {
|
|
|
2099
2067
|
manufacturer: {
|
|
2100
2068
|
display_name: string;
|
|
2101
2069
|
manufacturer_id: string;
|
|
2102
|
-
integration: "stable" | "beta" | "
|
|
2103
|
-
integration_support_level: "stable" | "beta" | "
|
|
2070
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2071
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2104
2072
|
is_connect_webview_supported: boolean;
|
|
2105
2073
|
requires_seam_support_to_add_account: boolean;
|
|
2106
2074
|
annotations: {
|
|
@@ -2163,8 +2131,8 @@ declare const routes: {
|
|
|
2163
2131
|
manufacturer: {
|
|
2164
2132
|
display_name: string;
|
|
2165
2133
|
manufacturer_id: string;
|
|
2166
|
-
integration: "stable" | "beta" | "
|
|
2167
|
-
integration_support_level: "stable" | "beta" | "
|
|
2134
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2135
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2168
2136
|
is_connect_webview_supported: boolean;
|
|
2169
2137
|
requires_seam_support_to_add_account: boolean;
|
|
2170
2138
|
annotations: {
|
|
@@ -2220,8 +2188,8 @@ declare const routes: {
|
|
|
2220
2188
|
manufacturer: {
|
|
2221
2189
|
display_name: string;
|
|
2222
2190
|
manufacturer_id: string;
|
|
2223
|
-
integration: "stable" | "beta" | "
|
|
2224
|
-
integration_support_level: "stable" | "beta" | "
|
|
2191
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2192
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2225
2193
|
is_connect_webview_supported: boolean;
|
|
2226
2194
|
requires_seam_support_to_add_account: boolean;
|
|
2227
2195
|
annotations: {
|
|
@@ -2283,8 +2251,8 @@ declare const routes: {
|
|
|
2283
2251
|
manufacturer: {
|
|
2284
2252
|
display_name: string;
|
|
2285
2253
|
manufacturer_id: string;
|
|
2286
|
-
integration: "stable" | "beta" | "
|
|
2287
|
-
integration_support_level: "stable" | "beta" | "
|
|
2254
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2255
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2288
2256
|
is_connect_webview_supported: boolean;
|
|
2289
2257
|
requires_seam_support_to_add_account: boolean;
|
|
2290
2258
|
annotations: {
|
|
@@ -2334,8 +2302,8 @@ declare const routes: {
|
|
|
2334
2302
|
manufacturer: {
|
|
2335
2303
|
display_name: string;
|
|
2336
2304
|
manufacturer_id: string;
|
|
2337
|
-
integration: "stable" | "beta" | "
|
|
2338
|
-
integration_support_level: "stable" | "beta" | "
|
|
2305
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2306
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2339
2307
|
is_connect_webview_supported: boolean;
|
|
2340
2308
|
requires_seam_support_to_add_account: boolean;
|
|
2341
2309
|
annotations: {
|
|
@@ -2397,8 +2365,8 @@ declare const routes: {
|
|
|
2397
2365
|
manufacturer: {
|
|
2398
2366
|
display_name: string;
|
|
2399
2367
|
manufacturer_id: string;
|
|
2400
|
-
integration: "stable" | "beta" | "
|
|
2401
|
-
integration_support_level: "stable" | "beta" | "
|
|
2368
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2369
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2402
2370
|
is_connect_webview_supported: boolean;
|
|
2403
2371
|
requires_seam_support_to_add_account: boolean;
|
|
2404
2372
|
annotations: {
|
|
@@ -2461,8 +2429,8 @@ declare const routes: {
|
|
|
2461
2429
|
main_category?: "thermostat" | "smartlock" | "sensor" | "relay" | "intercom" | "accessory" | undefined;
|
|
2462
2430
|
manufacturer_id?: string | undefined;
|
|
2463
2431
|
manufacturer_ids?: string[] | undefined;
|
|
2464
|
-
integration_status?: "stable" | "beta" | "
|
|
2465
|
-
integration_support_levels?: ("stable" | "beta" | "
|
|
2432
|
+
integration_status?: "stable" | "beta" | "planned" | "unsupported" | "inquire" | undefined;
|
|
2433
|
+
integration_support_levels?: ("stable" | "beta" | "planned" | "unsupported" | "inquire")[] | undefined;
|
|
2466
2434
|
text_search?: string | undefined;
|
|
2467
2435
|
include_if?: string[] | undefined;
|
|
2468
2436
|
exclude_if?: string[] | undefined;
|
|
@@ -2470,8 +2438,8 @@ declare const routes: {
|
|
|
2470
2438
|
main_category?: "thermostat" | "smartlock" | "sensor" | "relay" | "intercom" | "accessory" | undefined;
|
|
2471
2439
|
manufacturer_id?: string | undefined;
|
|
2472
2440
|
manufacturer_ids?: string[] | undefined;
|
|
2473
|
-
integration_status?: "stable" | "beta" | "
|
|
2474
|
-
integration_support_levels?: ("stable" | "beta" | "
|
|
2441
|
+
integration_status?: "stable" | "beta" | "planned" | "unsupported" | "inquire" | undefined;
|
|
2442
|
+
integration_support_levels?: ("stable" | "beta" | "planned" | "unsupported" | "inquire")[] | undefined;
|
|
2475
2443
|
text_search?: string | undefined;
|
|
2476
2444
|
include_if?: string[] | undefined;
|
|
2477
2445
|
exclude_if?: string[] | undefined;
|
|
@@ -2513,8 +2481,8 @@ declare const routes: {
|
|
|
2513
2481
|
}, "device_model_count">, "strip", z.ZodTypeAny, {
|
|
2514
2482
|
display_name: string;
|
|
2515
2483
|
manufacturer_id: string;
|
|
2516
|
-
integration: "stable" | "beta" | "
|
|
2517
|
-
integration_support_level: "stable" | "beta" | "
|
|
2484
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2485
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2518
2486
|
is_connect_webview_supported: boolean;
|
|
2519
2487
|
requires_seam_support_to_add_account: boolean;
|
|
2520
2488
|
annotations: {
|
|
@@ -2529,8 +2497,8 @@ declare const routes: {
|
|
|
2529
2497
|
}, {
|
|
2530
2498
|
display_name: string;
|
|
2531
2499
|
manufacturer_id: string;
|
|
2532
|
-
integration: "stable" | "beta" | "
|
|
2533
|
-
integration_support_level: "stable" | "beta" | "
|
|
2500
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2501
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2534
2502
|
is_connect_webview_supported: boolean;
|
|
2535
2503
|
requires_seam_support_to_add_account: boolean;
|
|
2536
2504
|
annotations: {
|
|
@@ -2648,8 +2616,8 @@ declare const routes: {
|
|
|
2648
2616
|
manufacturer: {
|
|
2649
2617
|
display_name: string;
|
|
2650
2618
|
manufacturer_id: string;
|
|
2651
|
-
integration: "stable" | "beta" | "
|
|
2652
|
-
integration_support_level: "stable" | "beta" | "
|
|
2619
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2620
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2653
2621
|
is_connect_webview_supported: boolean;
|
|
2654
2622
|
requires_seam_support_to_add_account: boolean;
|
|
2655
2623
|
annotations: {
|
|
@@ -2697,8 +2665,8 @@ declare const routes: {
|
|
|
2697
2665
|
manufacturer: {
|
|
2698
2666
|
display_name: string;
|
|
2699
2667
|
manufacturer_id: string;
|
|
2700
|
-
integration: "stable" | "beta" | "
|
|
2701
|
-
integration_support_level: "stable" | "beta" | "
|
|
2668
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2669
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2702
2670
|
is_connect_webview_supported: boolean;
|
|
2703
2671
|
requires_seam_support_to_add_account: boolean;
|
|
2704
2672
|
annotations: {
|
|
@@ -2806,7 +2774,7 @@ declare const routes: {
|
|
|
2806
2774
|
main_category: z.ZodLiteral<"sensor">;
|
|
2807
2775
|
physical_properties: z.ZodObject<{
|
|
2808
2776
|
has_noise_sensor: z.ZodBoolean;
|
|
2809
|
-
has_humidity_sensor: z.ZodBoolean;
|
|
2777
|
+
has_humidity_sensor: z.ZodBoolean; /** @deprecated */
|
|
2810
2778
|
has_temperature_sensor: z.ZodBoolean;
|
|
2811
2779
|
has_occupancy_detection: z.ZodBoolean;
|
|
2812
2780
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2981,8 +2949,8 @@ declare const routes: {
|
|
|
2981
2949
|
manufacturer: {
|
|
2982
2950
|
display_name: string;
|
|
2983
2951
|
manufacturer_id: string;
|
|
2984
|
-
integration: "stable" | "beta" | "
|
|
2985
|
-
integration_support_level: "stable" | "beta" | "
|
|
2952
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2953
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2986
2954
|
is_connect_webview_supported: boolean;
|
|
2987
2955
|
requires_seam_support_to_add_account: boolean;
|
|
2988
2956
|
annotations: {
|
|
@@ -3087,8 +3055,8 @@ declare const routes: {
|
|
|
3087
3055
|
manufacturer: {
|
|
3088
3056
|
display_name: string;
|
|
3089
3057
|
manufacturer_id: string;
|
|
3090
|
-
integration: "stable" | "beta" | "
|
|
3091
|
-
integration_support_level: "stable" | "beta" | "
|
|
3058
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3059
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3092
3060
|
is_connect_webview_supported: boolean;
|
|
3093
3061
|
requires_seam_support_to_add_account: boolean;
|
|
3094
3062
|
annotations: {
|
|
@@ -3232,8 +3200,8 @@ declare const routes: {
|
|
|
3232
3200
|
}, "strip", z.ZodTypeAny, {
|
|
3233
3201
|
display_name: string;
|
|
3234
3202
|
manufacturer_id: string;
|
|
3235
|
-
integration: "stable" | "beta" | "
|
|
3236
|
-
integration_support_level: "stable" | "beta" | "
|
|
3203
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3204
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3237
3205
|
is_connect_webview_supported: boolean;
|
|
3238
3206
|
requires_seam_support_to_add_account: boolean;
|
|
3239
3207
|
device_model_count: number;
|
|
@@ -3249,8 +3217,8 @@ declare const routes: {
|
|
|
3249
3217
|
}, {
|
|
3250
3218
|
display_name: string;
|
|
3251
3219
|
manufacturer_id: string;
|
|
3252
|
-
integration: "stable" | "beta" | "
|
|
3253
|
-
integration_support_level: "stable" | "beta" | "
|
|
3220
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3221
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3254
3222
|
is_connect_webview_supported: boolean;
|
|
3255
3223
|
requires_seam_support_to_add_account: boolean;
|
|
3256
3224
|
device_model_count: number;
|
|
@@ -3268,8 +3236,8 @@ declare const routes: {
|
|
|
3268
3236
|
manufacturer: {
|
|
3269
3237
|
display_name: string;
|
|
3270
3238
|
manufacturer_id: string;
|
|
3271
|
-
integration: "stable" | "beta" | "
|
|
3272
|
-
integration_support_level: "stable" | "beta" | "
|
|
3239
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3240
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3273
3241
|
is_connect_webview_supported: boolean;
|
|
3274
3242
|
requires_seam_support_to_add_account: boolean;
|
|
3275
3243
|
device_model_count: number;
|
|
@@ -3287,8 +3255,8 @@ declare const routes: {
|
|
|
3287
3255
|
manufacturer: {
|
|
3288
3256
|
display_name: string;
|
|
3289
3257
|
manufacturer_id: string;
|
|
3290
|
-
integration: "stable" | "beta" | "
|
|
3291
|
-
integration_support_level: "stable" | "beta" | "
|
|
3258
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3259
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3292
3260
|
is_connect_webview_supported: boolean;
|
|
3293
3261
|
requires_seam_support_to_add_account: boolean;
|
|
3294
3262
|
device_model_count: number;
|
|
@@ -3313,12 +3281,12 @@ declare const routes: {
|
|
|
3313
3281
|
integration_support_levels: z.ZodOptional<z.ZodArray<z.ZodEnum<["stable", "beta", "planned", "unsupported", "inquire"]>, "many">>;
|
|
3314
3282
|
liqe_query: z.ZodOptional<z.ZodString>;
|
|
3315
3283
|
}, "strip", z.ZodTypeAny, {
|
|
3316
|
-
integration_status?: "stable" | "beta" | "
|
|
3317
|
-
integration_support_levels?: ("stable" | "beta" | "
|
|
3284
|
+
integration_status?: "stable" | "beta" | "planned" | "unsupported" | "inquire" | undefined;
|
|
3285
|
+
integration_support_levels?: ("stable" | "beta" | "planned" | "unsupported" | "inquire")[] | undefined;
|
|
3318
3286
|
liqe_query?: string | undefined;
|
|
3319
3287
|
}, {
|
|
3320
|
-
integration_status?: "stable" | "beta" | "
|
|
3321
|
-
integration_support_levels?: ("stable" | "beta" | "
|
|
3288
|
+
integration_status?: "stable" | "beta" | "planned" | "unsupported" | "inquire" | undefined;
|
|
3289
|
+
integration_support_levels?: ("stable" | "beta" | "planned" | "unsupported" | "inquire")[] | undefined;
|
|
3322
3290
|
liqe_query?: string | undefined;
|
|
3323
3291
|
}>;
|
|
3324
3292
|
readonly jsonResponse: z.ZodObject<{
|
|
@@ -3356,8 +3324,8 @@ declare const routes: {
|
|
|
3356
3324
|
}, "strip", z.ZodTypeAny, {
|
|
3357
3325
|
display_name: string;
|
|
3358
3326
|
manufacturer_id: string;
|
|
3359
|
-
integration: "stable" | "beta" | "
|
|
3360
|
-
integration_support_level: "stable" | "beta" | "
|
|
3327
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3328
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3361
3329
|
is_connect_webview_supported: boolean;
|
|
3362
3330
|
requires_seam_support_to_add_account: boolean;
|
|
3363
3331
|
device_model_count: number;
|
|
@@ -3373,8 +3341,8 @@ declare const routes: {
|
|
|
3373
3341
|
}, {
|
|
3374
3342
|
display_name: string;
|
|
3375
3343
|
manufacturer_id: string;
|
|
3376
|
-
integration: "stable" | "beta" | "
|
|
3377
|
-
integration_support_level: "stable" | "beta" | "
|
|
3344
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3345
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3378
3346
|
is_connect_webview_supported: boolean;
|
|
3379
3347
|
requires_seam_support_to_add_account: boolean;
|
|
3380
3348
|
device_model_count: number;
|
|
@@ -3392,8 +3360,8 @@ declare const routes: {
|
|
|
3392
3360
|
manufacturers: {
|
|
3393
3361
|
display_name: string;
|
|
3394
3362
|
manufacturer_id: string;
|
|
3395
|
-
integration: "stable" | "beta" | "
|
|
3396
|
-
integration_support_level: "stable" | "beta" | "
|
|
3363
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3364
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3397
3365
|
is_connect_webview_supported: boolean;
|
|
3398
3366
|
requires_seam_support_to_add_account: boolean;
|
|
3399
3367
|
device_model_count: number;
|
|
@@ -3411,8 +3379,8 @@ declare const routes: {
|
|
|
3411
3379
|
manufacturers: {
|
|
3412
3380
|
display_name: string;
|
|
3413
3381
|
manufacturer_id: string;
|
|
3414
|
-
integration: "stable" | "beta" | "
|
|
3415
|
-
integration_support_level: "stable" | "beta" | "
|
|
3382
|
+
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3383
|
+
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3416
3384
|
is_connect_webview_supported: boolean;
|
|
3417
3385
|
requires_seam_support_to_add_account: boolean;
|
|
3418
3386
|
device_model_count: number;
|
|
@@ -3739,4 +3707,4 @@ type RouteResponse<Path extends keyof Routes> = Routes[Path]['jsonResponse'];
|
|
|
3739
3707
|
type RouteRequestBody<Path extends keyof Routes> = Routes[Path]['jsonBody'] & Routes[Path]['commonParams'];
|
|
3740
3708
|
type RouteRequestParams<Path extends keyof Routes> = Routes[Path]['queryParams'] & Routes[Path]['commonParams'];
|
|
3741
3709
|
|
|
3742
|
-
export { type DeviceCategory, type DeviceConnectionType, type
|
|
3710
|
+
export { type DeviceCategory, type DeviceConnectionType, type DeviceModel, type ImageReference, type Manufacturer, type ManufacturerAnnotation, type ManufacturerAnnotationCode, type ManufacturerIntegrationSupportLevel, type RouteRequestBody, type RouteRequestParams, type RouteResponse, type Routes, routes, index as schemas };
|