@seamapi/types 1.157.2 → 1.158.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/devicedb.cjs +12 -1
- package/dist/devicedb.cjs.map +1 -1
- package/dist/devicedb.d.cts +587 -22
- package/lib/seam/devicedb/models/device-model.d.ts +110 -0
- package/lib/seam/devicedb/models/manufacturer.d.ts +33 -0
- package/lib/seam/devicedb/models/manufacturer.js +11 -0
- package/lib/seam/devicedb/models/manufacturer.js.map +1 -1
- package/lib/seam/devicedb/route-specs.d.ts +378 -0
- package/lib/seam/devicedb/route-types.d.ts +44 -0
- package/package.json +1 -1
- package/src/lib/seam/devicedb/models/manufacturer.ts +11 -0
- package/src/lib/seam/devicedb/route-types.ts +44 -0
package/dist/devicedb.d.cts
CHANGED
|
@@ -358,6 +358,17 @@ declare const base_device_model_v1: z.ZodObject<{
|
|
|
358
358
|
message: string;
|
|
359
359
|
annotation_code: "subscription_required";
|
|
360
360
|
}>, "many">;
|
|
361
|
+
website: z.ZodOptional<z.ZodString>;
|
|
362
|
+
legal_name: z.ZodOptional<z.ZodString>;
|
|
363
|
+
parent_organization: z.ZodOptional<z.ZodString>;
|
|
364
|
+
headquarters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
365
|
+
countries_of_origin: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
366
|
+
founding_year: z.ZodOptional<z.ZodString>;
|
|
367
|
+
us_customer_support_tel: z.ZodOptional<z.ZodString>;
|
|
368
|
+
us_customer_support_email: z.ZodOptional<z.ZodString>;
|
|
369
|
+
us_customer_support_contact_url: z.ZodOptional<z.ZodString>;
|
|
370
|
+
seam_api_guide: z.ZodOptional<z.ZodString>;
|
|
371
|
+
description: z.ZodOptional<z.ZodString>;
|
|
361
372
|
}, "device_model_count">, "strip", z.ZodTypeAny, {
|
|
362
373
|
display_name: string;
|
|
363
374
|
manufacturer_id: string;
|
|
@@ -374,6 +385,17 @@ declare const base_device_model_v1: z.ZodObject<{
|
|
|
374
385
|
width: number;
|
|
375
386
|
height: number;
|
|
376
387
|
} | undefined;
|
|
388
|
+
website?: string | undefined;
|
|
389
|
+
legal_name?: string | undefined;
|
|
390
|
+
parent_organization?: string | undefined;
|
|
391
|
+
headquarters?: string[] | undefined;
|
|
392
|
+
countries_of_origin?: string[] | undefined;
|
|
393
|
+
founding_year?: string | undefined;
|
|
394
|
+
us_customer_support_tel?: string | undefined;
|
|
395
|
+
us_customer_support_email?: string | undefined;
|
|
396
|
+
us_customer_support_contact_url?: string | undefined;
|
|
397
|
+
seam_api_guide?: string | undefined;
|
|
398
|
+
description?: string | undefined;
|
|
377
399
|
}, {
|
|
378
400
|
display_name: string;
|
|
379
401
|
manufacturer_id: string;
|
|
@@ -390,6 +412,17 @@ declare const base_device_model_v1: z.ZodObject<{
|
|
|
390
412
|
width: number;
|
|
391
413
|
height: number;
|
|
392
414
|
} | undefined;
|
|
415
|
+
website?: string | undefined;
|
|
416
|
+
legal_name?: string | undefined;
|
|
417
|
+
parent_organization?: string | undefined;
|
|
418
|
+
headquarters?: string[] | undefined;
|
|
419
|
+
countries_of_origin?: string[] | undefined;
|
|
420
|
+
founding_year?: string | undefined;
|
|
421
|
+
us_customer_support_tel?: string | undefined;
|
|
422
|
+
us_customer_support_email?: string | undefined;
|
|
423
|
+
us_customer_support_contact_url?: string | undefined;
|
|
424
|
+
seam_api_guide?: string | undefined;
|
|
425
|
+
description?: string | undefined;
|
|
393
426
|
}>;
|
|
394
427
|
is_device_supported: z.ZodBoolean;
|
|
395
428
|
display_name: z.ZodString;
|
|
@@ -491,6 +524,7 @@ declare const base_device_model_v1: z.ZodObject<{
|
|
|
491
524
|
power_sources: z.ZodArray<z.ZodEnum<["battery", "hardwired", "mechanical_harvesting", "wireless", "ethernet"]>, "many">;
|
|
492
525
|
}, "strip", z.ZodTypeAny, {
|
|
493
526
|
display_name: string;
|
|
527
|
+
description: string;
|
|
494
528
|
device_model_id: string;
|
|
495
529
|
manufacturer: {
|
|
496
530
|
display_name: string;
|
|
@@ -508,9 +542,19 @@ declare const base_device_model_v1: z.ZodObject<{
|
|
|
508
542
|
width: number;
|
|
509
543
|
height: number;
|
|
510
544
|
} | undefined;
|
|
545
|
+
website?: string | undefined;
|
|
546
|
+
legal_name?: string | undefined;
|
|
547
|
+
parent_organization?: string | undefined;
|
|
548
|
+
headquarters?: string[] | undefined;
|
|
549
|
+
countries_of_origin?: string[] | undefined;
|
|
550
|
+
founding_year?: string | undefined;
|
|
551
|
+
us_customer_support_tel?: string | undefined;
|
|
552
|
+
us_customer_support_email?: string | undefined;
|
|
553
|
+
us_customer_support_contact_url?: string | undefined;
|
|
554
|
+
seam_api_guide?: string | undefined;
|
|
555
|
+
description?: string | undefined;
|
|
511
556
|
};
|
|
512
557
|
is_device_supported: boolean;
|
|
513
|
-
description: string;
|
|
514
558
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
515
559
|
hardware: {
|
|
516
560
|
has_physical_key?: boolean | undefined;
|
|
@@ -540,6 +584,7 @@ declare const base_device_model_v1: z.ZodObject<{
|
|
|
540
584
|
product_url?: string | undefined;
|
|
541
585
|
}, {
|
|
542
586
|
display_name: string;
|
|
587
|
+
description: string;
|
|
543
588
|
device_model_id: string;
|
|
544
589
|
manufacturer: {
|
|
545
590
|
display_name: string;
|
|
@@ -557,9 +602,19 @@ declare const base_device_model_v1: z.ZodObject<{
|
|
|
557
602
|
width: number;
|
|
558
603
|
height: number;
|
|
559
604
|
} | undefined;
|
|
605
|
+
website?: string | undefined;
|
|
606
|
+
legal_name?: string | undefined;
|
|
607
|
+
parent_organization?: string | undefined;
|
|
608
|
+
headquarters?: string[] | undefined;
|
|
609
|
+
countries_of_origin?: string[] | undefined;
|
|
610
|
+
founding_year?: string | undefined;
|
|
611
|
+
us_customer_support_tel?: string | undefined;
|
|
612
|
+
us_customer_support_email?: string | undefined;
|
|
613
|
+
us_customer_support_contact_url?: string | undefined;
|
|
614
|
+
seam_api_guide?: string | undefined;
|
|
615
|
+
description?: string | undefined;
|
|
560
616
|
};
|
|
561
617
|
is_device_supported: boolean;
|
|
562
|
-
description: string;
|
|
563
618
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
564
619
|
hardware: {
|
|
565
620
|
has_physical_key?: boolean | undefined;
|
|
@@ -622,6 +677,17 @@ declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
622
677
|
message: string;
|
|
623
678
|
annotation_code: "subscription_required";
|
|
624
679
|
}>, "many">;
|
|
680
|
+
website: z.ZodOptional<z.ZodString>;
|
|
681
|
+
legal_name: z.ZodOptional<z.ZodString>;
|
|
682
|
+
parent_organization: z.ZodOptional<z.ZodString>;
|
|
683
|
+
headquarters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
684
|
+
countries_of_origin: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
685
|
+
founding_year: z.ZodOptional<z.ZodString>;
|
|
686
|
+
us_customer_support_tel: z.ZodOptional<z.ZodString>;
|
|
687
|
+
us_customer_support_email: z.ZodOptional<z.ZodString>;
|
|
688
|
+
us_customer_support_contact_url: z.ZodOptional<z.ZodString>;
|
|
689
|
+
seam_api_guide: z.ZodOptional<z.ZodString>;
|
|
690
|
+
description: z.ZodOptional<z.ZodString>;
|
|
625
691
|
}, "device_model_count">, "strip", z.ZodTypeAny, {
|
|
626
692
|
display_name: string;
|
|
627
693
|
manufacturer_id: string;
|
|
@@ -638,6 +704,17 @@ declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
638
704
|
width: number;
|
|
639
705
|
height: number;
|
|
640
706
|
} | undefined;
|
|
707
|
+
website?: string | undefined;
|
|
708
|
+
legal_name?: string | undefined;
|
|
709
|
+
parent_organization?: string | undefined;
|
|
710
|
+
headquarters?: string[] | undefined;
|
|
711
|
+
countries_of_origin?: string[] | undefined;
|
|
712
|
+
founding_year?: string | undefined;
|
|
713
|
+
us_customer_support_tel?: string | undefined;
|
|
714
|
+
us_customer_support_email?: string | undefined;
|
|
715
|
+
us_customer_support_contact_url?: string | undefined;
|
|
716
|
+
seam_api_guide?: string | undefined;
|
|
717
|
+
description?: string | undefined;
|
|
641
718
|
}, {
|
|
642
719
|
display_name: string;
|
|
643
720
|
manufacturer_id: string;
|
|
@@ -654,6 +731,17 @@ declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
654
731
|
width: number;
|
|
655
732
|
height: number;
|
|
656
733
|
} | undefined;
|
|
734
|
+
website?: string | undefined;
|
|
735
|
+
legal_name?: string | undefined;
|
|
736
|
+
parent_organization?: string | undefined;
|
|
737
|
+
headquarters?: string[] | undefined;
|
|
738
|
+
countries_of_origin?: string[] | undefined;
|
|
739
|
+
founding_year?: string | undefined;
|
|
740
|
+
us_customer_support_tel?: string | undefined;
|
|
741
|
+
us_customer_support_email?: string | undefined;
|
|
742
|
+
us_customer_support_contact_url?: string | undefined;
|
|
743
|
+
seam_api_guide?: string | undefined;
|
|
744
|
+
description?: string | undefined;
|
|
657
745
|
}>;
|
|
658
746
|
is_device_supported: z.ZodBoolean;
|
|
659
747
|
display_name: z.ZodString;
|
|
@@ -755,6 +843,7 @@ declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
755
843
|
power_sources: z.ZodArray<z.ZodEnum<["battery", "hardwired", "mechanical_harvesting", "wireless", "ethernet"]>, "many">;
|
|
756
844
|
}, "strip", z.ZodTypeAny, {
|
|
757
845
|
display_name: string;
|
|
846
|
+
description: string;
|
|
758
847
|
device_model_id: string;
|
|
759
848
|
manufacturer: {
|
|
760
849
|
display_name: string;
|
|
@@ -772,9 +861,19 @@ declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
772
861
|
width: number;
|
|
773
862
|
height: number;
|
|
774
863
|
} | undefined;
|
|
864
|
+
website?: string | undefined;
|
|
865
|
+
legal_name?: string | undefined;
|
|
866
|
+
parent_organization?: string | undefined;
|
|
867
|
+
headquarters?: string[] | undefined;
|
|
868
|
+
countries_of_origin?: string[] | undefined;
|
|
869
|
+
founding_year?: string | undefined;
|
|
870
|
+
us_customer_support_tel?: string | undefined;
|
|
871
|
+
us_customer_support_email?: string | undefined;
|
|
872
|
+
us_customer_support_contact_url?: string | undefined;
|
|
873
|
+
seam_api_guide?: string | undefined;
|
|
874
|
+
description?: string | undefined;
|
|
775
875
|
};
|
|
776
876
|
is_device_supported: boolean;
|
|
777
|
-
description: string;
|
|
778
877
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
779
878
|
hardware: {
|
|
780
879
|
has_physical_key?: boolean | undefined;
|
|
@@ -804,6 +903,7 @@ declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
804
903
|
product_url?: string | undefined;
|
|
805
904
|
}, {
|
|
806
905
|
display_name: string;
|
|
906
|
+
description: string;
|
|
807
907
|
device_model_id: string;
|
|
808
908
|
manufacturer: {
|
|
809
909
|
display_name: string;
|
|
@@ -821,9 +921,19 @@ declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
821
921
|
width: number;
|
|
822
922
|
height: number;
|
|
823
923
|
} | undefined;
|
|
924
|
+
website?: string | undefined;
|
|
925
|
+
legal_name?: string | undefined;
|
|
926
|
+
parent_organization?: string | undefined;
|
|
927
|
+
headquarters?: string[] | undefined;
|
|
928
|
+
countries_of_origin?: string[] | undefined;
|
|
929
|
+
founding_year?: string | undefined;
|
|
930
|
+
us_customer_support_tel?: string | undefined;
|
|
931
|
+
us_customer_support_email?: string | undefined;
|
|
932
|
+
us_customer_support_contact_url?: string | undefined;
|
|
933
|
+
seam_api_guide?: string | undefined;
|
|
934
|
+
description?: string | undefined;
|
|
824
935
|
};
|
|
825
936
|
is_device_supported: boolean;
|
|
826
|
-
description: string;
|
|
827
937
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
828
938
|
hardware: {
|
|
829
939
|
has_physical_key?: boolean | undefined;
|
|
@@ -1155,6 +1265,17 @@ declare const manufacturer: z.ZodObject<{
|
|
|
1155
1265
|
message: string;
|
|
1156
1266
|
annotation_code: "subscription_required";
|
|
1157
1267
|
}>, "many">;
|
|
1268
|
+
website: z.ZodOptional<z.ZodString>;
|
|
1269
|
+
legal_name: z.ZodOptional<z.ZodString>;
|
|
1270
|
+
parent_organization: z.ZodOptional<z.ZodString>;
|
|
1271
|
+
headquarters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1272
|
+
countries_of_origin: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1273
|
+
founding_year: z.ZodOptional<z.ZodString>;
|
|
1274
|
+
us_customer_support_tel: z.ZodOptional<z.ZodString>;
|
|
1275
|
+
us_customer_support_email: z.ZodOptional<z.ZodString>;
|
|
1276
|
+
us_customer_support_contact_url: z.ZodOptional<z.ZodString>;
|
|
1277
|
+
seam_api_guide: z.ZodOptional<z.ZodString>;
|
|
1278
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1158
1279
|
}, "strip", z.ZodTypeAny, {
|
|
1159
1280
|
display_name: string;
|
|
1160
1281
|
manufacturer_id: string;
|
|
@@ -1172,6 +1293,17 @@ declare const manufacturer: z.ZodObject<{
|
|
|
1172
1293
|
width: number;
|
|
1173
1294
|
height: number;
|
|
1174
1295
|
} | undefined;
|
|
1296
|
+
website?: string | undefined;
|
|
1297
|
+
legal_name?: string | undefined;
|
|
1298
|
+
parent_organization?: string | undefined;
|
|
1299
|
+
headquarters?: string[] | undefined;
|
|
1300
|
+
countries_of_origin?: string[] | undefined;
|
|
1301
|
+
founding_year?: string | undefined;
|
|
1302
|
+
us_customer_support_tel?: string | undefined;
|
|
1303
|
+
us_customer_support_email?: string | undefined;
|
|
1304
|
+
us_customer_support_contact_url?: string | undefined;
|
|
1305
|
+
seam_api_guide?: string | undefined;
|
|
1306
|
+
description?: string | undefined;
|
|
1175
1307
|
}, {
|
|
1176
1308
|
display_name: string;
|
|
1177
1309
|
manufacturer_id: string;
|
|
@@ -1189,6 +1321,17 @@ declare const manufacturer: z.ZodObject<{
|
|
|
1189
1321
|
width: number;
|
|
1190
1322
|
height: number;
|
|
1191
1323
|
} | undefined;
|
|
1324
|
+
website?: string | undefined;
|
|
1325
|
+
legal_name?: string | undefined;
|
|
1326
|
+
parent_organization?: string | undefined;
|
|
1327
|
+
headquarters?: string[] | undefined;
|
|
1328
|
+
countries_of_origin?: string[] | undefined;
|
|
1329
|
+
founding_year?: string | undefined;
|
|
1330
|
+
us_customer_support_tel?: string | undefined;
|
|
1331
|
+
us_customer_support_email?: string | undefined;
|
|
1332
|
+
us_customer_support_contact_url?: string | undefined;
|
|
1333
|
+
seam_api_guide?: string | undefined;
|
|
1334
|
+
description?: string | undefined;
|
|
1192
1335
|
}>;
|
|
1193
1336
|
type Manufacturer = z.infer<typeof manufacturer>;
|
|
1194
1337
|
|
|
@@ -1263,6 +1406,18 @@ declare const routes: {
|
|
|
1263
1406
|
message: string;
|
|
1264
1407
|
annotation_code: "subscription_required";
|
|
1265
1408
|
}>, "many">;
|
|
1409
|
+
website: z.ZodOptional<z.ZodString>;
|
|
1410
|
+
legal_name: z.ZodOptional<z.ZodString>;
|
|
1411
|
+
parent_organization: z.ZodOptional<z.ZodString>;
|
|
1412
|
+
headquarters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1413
|
+
countries_of_origin: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1414
|
+
founding_year: z.ZodOptional<z.ZodString>;
|
|
1415
|
+
us_customer_support_tel: z.ZodOptional<z.ZodString>;
|
|
1416
|
+
us_customer_support_email: z.ZodOptional<z.ZodString>;
|
|
1417
|
+
/** @deprecated */
|
|
1418
|
+
us_customer_support_contact_url: z.ZodOptional<z.ZodString>;
|
|
1419
|
+
seam_api_guide: z.ZodOptional<z.ZodString>;
|
|
1420
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1266
1421
|
}, "device_model_count">, "strip", z.ZodTypeAny, {
|
|
1267
1422
|
display_name: string;
|
|
1268
1423
|
manufacturer_id: string;
|
|
@@ -1279,6 +1434,17 @@ declare const routes: {
|
|
|
1279
1434
|
width: number;
|
|
1280
1435
|
height: number;
|
|
1281
1436
|
} | undefined;
|
|
1437
|
+
website?: string | undefined;
|
|
1438
|
+
legal_name?: string | undefined;
|
|
1439
|
+
parent_organization?: string | undefined;
|
|
1440
|
+
headquarters?: string[] | undefined;
|
|
1441
|
+
countries_of_origin?: string[] | undefined;
|
|
1442
|
+
founding_year?: string | undefined;
|
|
1443
|
+
us_customer_support_tel?: string | undefined;
|
|
1444
|
+
us_customer_support_email?: string | undefined;
|
|
1445
|
+
us_customer_support_contact_url?: string | undefined;
|
|
1446
|
+
seam_api_guide?: string | undefined;
|
|
1447
|
+
description?: string | undefined;
|
|
1282
1448
|
}, {
|
|
1283
1449
|
display_name: string;
|
|
1284
1450
|
manufacturer_id: string;
|
|
@@ -1295,6 +1461,17 @@ declare const routes: {
|
|
|
1295
1461
|
width: number;
|
|
1296
1462
|
height: number;
|
|
1297
1463
|
} | undefined;
|
|
1464
|
+
website?: string | undefined;
|
|
1465
|
+
legal_name?: string | undefined;
|
|
1466
|
+
parent_organization?: string | undefined;
|
|
1467
|
+
headquarters?: string[] | undefined;
|
|
1468
|
+
countries_of_origin?: string[] | undefined;
|
|
1469
|
+
founding_year?: string | undefined;
|
|
1470
|
+
us_customer_support_tel?: string | undefined;
|
|
1471
|
+
us_customer_support_email?: string | undefined;
|
|
1472
|
+
us_customer_support_contact_url?: string | undefined;
|
|
1473
|
+
seam_api_guide?: string | undefined;
|
|
1474
|
+
description?: string | undefined;
|
|
1298
1475
|
}>;
|
|
1299
1476
|
is_device_supported: z.ZodBoolean;
|
|
1300
1477
|
display_name: z.ZodString;
|
|
@@ -1396,6 +1573,7 @@ declare const routes: {
|
|
|
1396
1573
|
power_sources: z.ZodArray<z.ZodEnum<["battery", "hardwired", "mechanical_harvesting", "wireless", "ethernet"]>, "many">;
|
|
1397
1574
|
}, "strip", z.ZodTypeAny, {
|
|
1398
1575
|
display_name: string;
|
|
1576
|
+
description: string;
|
|
1399
1577
|
device_model_id: string;
|
|
1400
1578
|
manufacturer: {
|
|
1401
1579
|
display_name: string;
|
|
@@ -1413,9 +1591,19 @@ declare const routes: {
|
|
|
1413
1591
|
width: number;
|
|
1414
1592
|
height: number;
|
|
1415
1593
|
} | undefined;
|
|
1594
|
+
website?: string | undefined;
|
|
1595
|
+
legal_name?: string | undefined;
|
|
1596
|
+
parent_organization?: string | undefined;
|
|
1597
|
+
headquarters?: string[] | undefined;
|
|
1598
|
+
countries_of_origin?: string[] | undefined;
|
|
1599
|
+
founding_year?: string | undefined;
|
|
1600
|
+
us_customer_support_tel?: string | undefined;
|
|
1601
|
+
us_customer_support_email?: string | undefined;
|
|
1602
|
+
us_customer_support_contact_url?: string | undefined;
|
|
1603
|
+
seam_api_guide?: string | undefined;
|
|
1604
|
+
description?: string | undefined;
|
|
1416
1605
|
};
|
|
1417
1606
|
is_device_supported: boolean;
|
|
1418
|
-
description: string;
|
|
1419
1607
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
1420
1608
|
hardware: {
|
|
1421
1609
|
has_physical_key?: boolean | undefined;
|
|
@@ -1445,6 +1633,7 @@ declare const routes: {
|
|
|
1445
1633
|
product_url?: string | undefined;
|
|
1446
1634
|
}, {
|
|
1447
1635
|
display_name: string;
|
|
1636
|
+
description: string;
|
|
1448
1637
|
device_model_id: string;
|
|
1449
1638
|
manufacturer: {
|
|
1450
1639
|
display_name: string;
|
|
@@ -1462,9 +1651,19 @@ declare const routes: {
|
|
|
1462
1651
|
width: number;
|
|
1463
1652
|
height: number;
|
|
1464
1653
|
} | undefined;
|
|
1654
|
+
website?: string | undefined;
|
|
1655
|
+
legal_name?: string | undefined;
|
|
1656
|
+
parent_organization?: string | undefined;
|
|
1657
|
+
headquarters?: string[] | undefined;
|
|
1658
|
+
countries_of_origin?: string[] | undefined;
|
|
1659
|
+
founding_year?: string | undefined;
|
|
1660
|
+
us_customer_support_tel?: string | undefined;
|
|
1661
|
+
us_customer_support_email?: string | undefined;
|
|
1662
|
+
us_customer_support_contact_url?: string | undefined;
|
|
1663
|
+
seam_api_guide?: string | undefined;
|
|
1664
|
+
description?: string | undefined;
|
|
1465
1665
|
};
|
|
1466
1666
|
is_device_supported: boolean;
|
|
1467
|
-
description: string;
|
|
1468
1667
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
1469
1668
|
hardware: {
|
|
1470
1669
|
has_physical_key?: boolean | undefined;
|
|
@@ -1735,6 +1934,7 @@ declare const routes: {
|
|
|
1735
1934
|
}, "strip", z.ZodTypeAny, {
|
|
1736
1935
|
device_model: ({
|
|
1737
1936
|
display_name: string;
|
|
1937
|
+
description: string;
|
|
1738
1938
|
device_model_id: string;
|
|
1739
1939
|
manufacturer: {
|
|
1740
1940
|
display_name: string;
|
|
@@ -1752,9 +1952,19 @@ declare const routes: {
|
|
|
1752
1952
|
width: number;
|
|
1753
1953
|
height: number;
|
|
1754
1954
|
} | undefined;
|
|
1955
|
+
website?: string | undefined;
|
|
1956
|
+
legal_name?: string | undefined;
|
|
1957
|
+
parent_organization?: string | undefined;
|
|
1958
|
+
headquarters?: string[] | undefined;
|
|
1959
|
+
countries_of_origin?: string[] | undefined;
|
|
1960
|
+
founding_year?: string | undefined;
|
|
1961
|
+
us_customer_support_tel?: string | undefined;
|
|
1962
|
+
us_customer_support_email?: string | undefined;
|
|
1963
|
+
us_customer_support_contact_url?: string | undefined;
|
|
1964
|
+
seam_api_guide?: string | undefined;
|
|
1965
|
+
description?: string | undefined;
|
|
1755
1966
|
};
|
|
1756
1967
|
is_device_supported: boolean;
|
|
1757
|
-
description: string;
|
|
1758
1968
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
1759
1969
|
hardware: {
|
|
1760
1970
|
has_physical_key?: boolean | undefined;
|
|
@@ -1801,6 +2011,7 @@ declare const routes: {
|
|
|
1801
2011
|
can_program_online_access_codes?: true | undefined;
|
|
1802
2012
|
}) | ({
|
|
1803
2013
|
display_name: string;
|
|
2014
|
+
description: string;
|
|
1804
2015
|
device_model_id: string;
|
|
1805
2016
|
manufacturer: {
|
|
1806
2017
|
display_name: string;
|
|
@@ -1818,9 +2029,19 @@ declare const routes: {
|
|
|
1818
2029
|
width: number;
|
|
1819
2030
|
height: number;
|
|
1820
2031
|
} | undefined;
|
|
2032
|
+
website?: string | undefined;
|
|
2033
|
+
legal_name?: string | undefined;
|
|
2034
|
+
parent_organization?: string | undefined;
|
|
2035
|
+
headquarters?: string[] | undefined;
|
|
2036
|
+
countries_of_origin?: string[] | undefined;
|
|
2037
|
+
founding_year?: string | undefined;
|
|
2038
|
+
us_customer_support_tel?: string | undefined;
|
|
2039
|
+
us_customer_support_email?: string | undefined;
|
|
2040
|
+
us_customer_support_contact_url?: string | undefined;
|
|
2041
|
+
seam_api_guide?: string | undefined;
|
|
2042
|
+
description?: string | undefined;
|
|
1821
2043
|
};
|
|
1822
2044
|
is_device_supported: boolean;
|
|
1823
|
-
description: string;
|
|
1824
2045
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
1825
2046
|
hardware: {
|
|
1826
2047
|
has_physical_key?: boolean | undefined;
|
|
@@ -1858,6 +2079,7 @@ declare const routes: {
|
|
|
1858
2079
|
};
|
|
1859
2080
|
}) | ({
|
|
1860
2081
|
display_name: string;
|
|
2082
|
+
description: string;
|
|
1861
2083
|
device_model_id: string;
|
|
1862
2084
|
manufacturer: {
|
|
1863
2085
|
display_name: string;
|
|
@@ -1875,9 +2097,19 @@ declare const routes: {
|
|
|
1875
2097
|
width: number;
|
|
1876
2098
|
height: number;
|
|
1877
2099
|
} | undefined;
|
|
2100
|
+
website?: string | undefined;
|
|
2101
|
+
legal_name?: string | undefined;
|
|
2102
|
+
parent_organization?: string | undefined;
|
|
2103
|
+
headquarters?: string[] | undefined;
|
|
2104
|
+
countries_of_origin?: string[] | undefined;
|
|
2105
|
+
founding_year?: string | undefined;
|
|
2106
|
+
us_customer_support_tel?: string | undefined;
|
|
2107
|
+
us_customer_support_email?: string | undefined;
|
|
2108
|
+
us_customer_support_contact_url?: string | undefined;
|
|
2109
|
+
seam_api_guide?: string | undefined;
|
|
2110
|
+
description?: string | undefined;
|
|
1878
2111
|
};
|
|
1879
2112
|
is_device_supported: boolean;
|
|
1880
|
-
description: string;
|
|
1881
2113
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
1882
2114
|
hardware: {
|
|
1883
2115
|
has_physical_key?: boolean | undefined;
|
|
@@ -1921,6 +2153,7 @@ declare const routes: {
|
|
|
1921
2153
|
};
|
|
1922
2154
|
}) | ({
|
|
1923
2155
|
display_name: string;
|
|
2156
|
+
description: string;
|
|
1924
2157
|
device_model_id: string;
|
|
1925
2158
|
manufacturer: {
|
|
1926
2159
|
display_name: string;
|
|
@@ -1938,9 +2171,19 @@ declare const routes: {
|
|
|
1938
2171
|
width: number;
|
|
1939
2172
|
height: number;
|
|
1940
2173
|
} | undefined;
|
|
2174
|
+
website?: string | undefined;
|
|
2175
|
+
legal_name?: string | undefined;
|
|
2176
|
+
parent_organization?: string | undefined;
|
|
2177
|
+
headquarters?: string[] | undefined;
|
|
2178
|
+
countries_of_origin?: string[] | undefined;
|
|
2179
|
+
founding_year?: string | undefined;
|
|
2180
|
+
us_customer_support_tel?: string | undefined;
|
|
2181
|
+
us_customer_support_email?: string | undefined;
|
|
2182
|
+
us_customer_support_contact_url?: string | undefined;
|
|
2183
|
+
seam_api_guide?: string | undefined;
|
|
2184
|
+
description?: string | undefined;
|
|
1941
2185
|
};
|
|
1942
2186
|
is_device_supported: boolean;
|
|
1943
|
-
description: string;
|
|
1944
2187
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
1945
2188
|
hardware: {
|
|
1946
2189
|
has_physical_key?: boolean | undefined;
|
|
@@ -1972,6 +2215,7 @@ declare const routes: {
|
|
|
1972
2215
|
main_category: "relay";
|
|
1973
2216
|
}) | ({
|
|
1974
2217
|
display_name: string;
|
|
2218
|
+
description: string;
|
|
1975
2219
|
device_model_id: string;
|
|
1976
2220
|
manufacturer: {
|
|
1977
2221
|
display_name: string;
|
|
@@ -1989,9 +2233,19 @@ declare const routes: {
|
|
|
1989
2233
|
width: number;
|
|
1990
2234
|
height: number;
|
|
1991
2235
|
} | undefined;
|
|
2236
|
+
website?: string | undefined;
|
|
2237
|
+
legal_name?: string | undefined;
|
|
2238
|
+
parent_organization?: string | undefined;
|
|
2239
|
+
headquarters?: string[] | undefined;
|
|
2240
|
+
countries_of_origin?: string[] | undefined;
|
|
2241
|
+
founding_year?: string | undefined;
|
|
2242
|
+
us_customer_support_tel?: string | undefined;
|
|
2243
|
+
us_customer_support_email?: string | undefined;
|
|
2244
|
+
us_customer_support_contact_url?: string | undefined;
|
|
2245
|
+
seam_api_guide?: string | undefined;
|
|
2246
|
+
description?: string | undefined;
|
|
1992
2247
|
};
|
|
1993
2248
|
is_device_supported: boolean;
|
|
1994
|
-
description: string;
|
|
1995
2249
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
1996
2250
|
hardware: {
|
|
1997
2251
|
has_physical_key?: boolean | undefined;
|
|
@@ -2035,6 +2289,7 @@ declare const routes: {
|
|
|
2035
2289
|
};
|
|
2036
2290
|
}) | ({
|
|
2037
2291
|
display_name: string;
|
|
2292
|
+
description: string;
|
|
2038
2293
|
device_model_id: string;
|
|
2039
2294
|
manufacturer: {
|
|
2040
2295
|
display_name: string;
|
|
@@ -2052,9 +2307,19 @@ declare const routes: {
|
|
|
2052
2307
|
width: number;
|
|
2053
2308
|
height: number;
|
|
2054
2309
|
} | undefined;
|
|
2310
|
+
website?: string | undefined;
|
|
2311
|
+
legal_name?: string | undefined;
|
|
2312
|
+
parent_organization?: string | undefined;
|
|
2313
|
+
headquarters?: string[] | undefined;
|
|
2314
|
+
countries_of_origin?: string[] | undefined;
|
|
2315
|
+
founding_year?: string | undefined;
|
|
2316
|
+
us_customer_support_tel?: string | undefined;
|
|
2317
|
+
us_customer_support_email?: string | undefined;
|
|
2318
|
+
us_customer_support_contact_url?: string | undefined;
|
|
2319
|
+
seam_api_guide?: string | undefined;
|
|
2320
|
+
description?: string | undefined;
|
|
2055
2321
|
};
|
|
2056
2322
|
is_device_supported: boolean;
|
|
2057
|
-
description: string;
|
|
2058
2323
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
2059
2324
|
hardware: {
|
|
2060
2325
|
has_physical_key?: boolean | undefined;
|
|
@@ -2088,6 +2353,7 @@ declare const routes: {
|
|
|
2088
2353
|
}, {
|
|
2089
2354
|
device_model: ({
|
|
2090
2355
|
display_name: string;
|
|
2356
|
+
description: string;
|
|
2091
2357
|
device_model_id: string;
|
|
2092
2358
|
manufacturer: {
|
|
2093
2359
|
display_name: string;
|
|
@@ -2105,9 +2371,19 @@ declare const routes: {
|
|
|
2105
2371
|
width: number;
|
|
2106
2372
|
height: number;
|
|
2107
2373
|
} | undefined;
|
|
2374
|
+
website?: string | undefined;
|
|
2375
|
+
legal_name?: string | undefined;
|
|
2376
|
+
parent_organization?: string | undefined;
|
|
2377
|
+
headquarters?: string[] | undefined;
|
|
2378
|
+
countries_of_origin?: string[] | undefined;
|
|
2379
|
+
founding_year?: string | undefined;
|
|
2380
|
+
us_customer_support_tel?: string | undefined;
|
|
2381
|
+
us_customer_support_email?: string | undefined;
|
|
2382
|
+
us_customer_support_contact_url?: string | undefined;
|
|
2383
|
+
seam_api_guide?: string | undefined;
|
|
2384
|
+
description?: string | undefined;
|
|
2108
2385
|
};
|
|
2109
2386
|
is_device_supported: boolean;
|
|
2110
|
-
description: string;
|
|
2111
2387
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
2112
2388
|
hardware: {
|
|
2113
2389
|
has_physical_key?: boolean | undefined;
|
|
@@ -2154,6 +2430,7 @@ declare const routes: {
|
|
|
2154
2430
|
can_program_online_access_codes?: true | undefined;
|
|
2155
2431
|
}) | ({
|
|
2156
2432
|
display_name: string;
|
|
2433
|
+
description: string;
|
|
2157
2434
|
device_model_id: string;
|
|
2158
2435
|
manufacturer: {
|
|
2159
2436
|
display_name: string;
|
|
@@ -2171,9 +2448,19 @@ declare const routes: {
|
|
|
2171
2448
|
width: number;
|
|
2172
2449
|
height: number;
|
|
2173
2450
|
} | undefined;
|
|
2451
|
+
website?: string | undefined;
|
|
2452
|
+
legal_name?: string | undefined;
|
|
2453
|
+
parent_organization?: string | undefined;
|
|
2454
|
+
headquarters?: string[] | undefined;
|
|
2455
|
+
countries_of_origin?: string[] | undefined;
|
|
2456
|
+
founding_year?: string | undefined;
|
|
2457
|
+
us_customer_support_tel?: string | undefined;
|
|
2458
|
+
us_customer_support_email?: string | undefined;
|
|
2459
|
+
us_customer_support_contact_url?: string | undefined;
|
|
2460
|
+
seam_api_guide?: string | undefined;
|
|
2461
|
+
description?: string | undefined;
|
|
2174
2462
|
};
|
|
2175
2463
|
is_device_supported: boolean;
|
|
2176
|
-
description: string;
|
|
2177
2464
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
2178
2465
|
hardware: {
|
|
2179
2466
|
has_physical_key?: boolean | undefined;
|
|
@@ -2211,6 +2498,7 @@ declare const routes: {
|
|
|
2211
2498
|
};
|
|
2212
2499
|
}) | ({
|
|
2213
2500
|
display_name: string;
|
|
2501
|
+
description: string;
|
|
2214
2502
|
device_model_id: string;
|
|
2215
2503
|
manufacturer: {
|
|
2216
2504
|
display_name: string;
|
|
@@ -2228,9 +2516,19 @@ declare const routes: {
|
|
|
2228
2516
|
width: number;
|
|
2229
2517
|
height: number;
|
|
2230
2518
|
} | undefined;
|
|
2519
|
+
website?: string | undefined;
|
|
2520
|
+
legal_name?: string | undefined;
|
|
2521
|
+
parent_organization?: string | undefined;
|
|
2522
|
+
headquarters?: string[] | undefined;
|
|
2523
|
+
countries_of_origin?: string[] | undefined;
|
|
2524
|
+
founding_year?: string | undefined;
|
|
2525
|
+
us_customer_support_tel?: string | undefined;
|
|
2526
|
+
us_customer_support_email?: string | undefined;
|
|
2527
|
+
us_customer_support_contact_url?: string | undefined;
|
|
2528
|
+
seam_api_guide?: string | undefined;
|
|
2529
|
+
description?: string | undefined;
|
|
2231
2530
|
};
|
|
2232
2531
|
is_device_supported: boolean;
|
|
2233
|
-
description: string;
|
|
2234
2532
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
2235
2533
|
hardware: {
|
|
2236
2534
|
has_physical_key?: boolean | undefined;
|
|
@@ -2274,6 +2572,7 @@ declare const routes: {
|
|
|
2274
2572
|
};
|
|
2275
2573
|
}) | ({
|
|
2276
2574
|
display_name: string;
|
|
2575
|
+
description: string;
|
|
2277
2576
|
device_model_id: string;
|
|
2278
2577
|
manufacturer: {
|
|
2279
2578
|
display_name: string;
|
|
@@ -2291,9 +2590,19 @@ declare const routes: {
|
|
|
2291
2590
|
width: number;
|
|
2292
2591
|
height: number;
|
|
2293
2592
|
} | undefined;
|
|
2593
|
+
website?: string | undefined;
|
|
2594
|
+
legal_name?: string | undefined;
|
|
2595
|
+
parent_organization?: string | undefined;
|
|
2596
|
+
headquarters?: string[] | undefined;
|
|
2597
|
+
countries_of_origin?: string[] | undefined;
|
|
2598
|
+
founding_year?: string | undefined;
|
|
2599
|
+
us_customer_support_tel?: string | undefined;
|
|
2600
|
+
us_customer_support_email?: string | undefined;
|
|
2601
|
+
us_customer_support_contact_url?: string | undefined;
|
|
2602
|
+
seam_api_guide?: string | undefined;
|
|
2603
|
+
description?: string | undefined;
|
|
2294
2604
|
};
|
|
2295
2605
|
is_device_supported: boolean;
|
|
2296
|
-
description: string;
|
|
2297
2606
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
2298
2607
|
hardware: {
|
|
2299
2608
|
has_physical_key?: boolean | undefined;
|
|
@@ -2325,6 +2634,7 @@ declare const routes: {
|
|
|
2325
2634
|
main_category: "relay";
|
|
2326
2635
|
}) | ({
|
|
2327
2636
|
display_name: string;
|
|
2637
|
+
description: string;
|
|
2328
2638
|
device_model_id: string;
|
|
2329
2639
|
manufacturer: {
|
|
2330
2640
|
display_name: string;
|
|
@@ -2342,9 +2652,19 @@ declare const routes: {
|
|
|
2342
2652
|
width: number;
|
|
2343
2653
|
height: number;
|
|
2344
2654
|
} | undefined;
|
|
2655
|
+
website?: string | undefined;
|
|
2656
|
+
legal_name?: string | undefined;
|
|
2657
|
+
parent_organization?: string | undefined;
|
|
2658
|
+
headquarters?: string[] | undefined;
|
|
2659
|
+
countries_of_origin?: string[] | undefined;
|
|
2660
|
+
founding_year?: string | undefined;
|
|
2661
|
+
us_customer_support_tel?: string | undefined;
|
|
2662
|
+
us_customer_support_email?: string | undefined;
|
|
2663
|
+
us_customer_support_contact_url?: string | undefined;
|
|
2664
|
+
seam_api_guide?: string | undefined;
|
|
2665
|
+
description?: string | undefined;
|
|
2345
2666
|
};
|
|
2346
2667
|
is_device_supported: boolean;
|
|
2347
|
-
description: string;
|
|
2348
2668
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
2349
2669
|
hardware: {
|
|
2350
2670
|
has_physical_key?: boolean | undefined;
|
|
@@ -2388,6 +2708,7 @@ declare const routes: {
|
|
|
2388
2708
|
};
|
|
2389
2709
|
}) | ({
|
|
2390
2710
|
display_name: string;
|
|
2711
|
+
description: string;
|
|
2391
2712
|
device_model_id: string;
|
|
2392
2713
|
manufacturer: {
|
|
2393
2714
|
display_name: string;
|
|
@@ -2405,9 +2726,19 @@ declare const routes: {
|
|
|
2405
2726
|
width: number;
|
|
2406
2727
|
height: number;
|
|
2407
2728
|
} | undefined;
|
|
2729
|
+
website?: string | undefined;
|
|
2730
|
+
legal_name?: string | undefined;
|
|
2731
|
+
parent_organization?: string | undefined;
|
|
2732
|
+
headquarters?: string[] | undefined;
|
|
2733
|
+
countries_of_origin?: string[] | undefined;
|
|
2734
|
+
founding_year?: string | undefined;
|
|
2735
|
+
us_customer_support_tel?: string | undefined;
|
|
2736
|
+
us_customer_support_email?: string | undefined;
|
|
2737
|
+
us_customer_support_contact_url?: string | undefined;
|
|
2738
|
+
seam_api_guide?: string | undefined;
|
|
2739
|
+
description?: string | undefined;
|
|
2408
2740
|
};
|
|
2409
2741
|
is_device_supported: boolean;
|
|
2410
|
-
description: string;
|
|
2411
2742
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
2412
2743
|
hardware: {
|
|
2413
2744
|
has_physical_key?: boolean | undefined;
|
|
@@ -2506,6 +2837,18 @@ declare const routes: {
|
|
|
2506
2837
|
message: string;
|
|
2507
2838
|
annotation_code: "subscription_required";
|
|
2508
2839
|
}>, "many">;
|
|
2840
|
+
website: z.ZodOptional<z.ZodString>;
|
|
2841
|
+
legal_name: z.ZodOptional<z.ZodString>;
|
|
2842
|
+
parent_organization: z.ZodOptional<z.ZodString>;
|
|
2843
|
+
headquarters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2844
|
+
countries_of_origin: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2845
|
+
founding_year: z.ZodOptional<z.ZodString>;
|
|
2846
|
+
us_customer_support_tel: z.ZodOptional<z.ZodString>;
|
|
2847
|
+
us_customer_support_email: z.ZodOptional<z.ZodString>;
|
|
2848
|
+
/** @deprecated */
|
|
2849
|
+
us_customer_support_contact_url: z.ZodOptional<z.ZodString>;
|
|
2850
|
+
seam_api_guide: z.ZodOptional<z.ZodString>;
|
|
2851
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2509
2852
|
}, "device_model_count">, "strip", z.ZodTypeAny, {
|
|
2510
2853
|
display_name: string;
|
|
2511
2854
|
manufacturer_id: string;
|
|
@@ -2522,6 +2865,17 @@ declare const routes: {
|
|
|
2522
2865
|
width: number;
|
|
2523
2866
|
height: number;
|
|
2524
2867
|
} | undefined;
|
|
2868
|
+
website?: string | undefined;
|
|
2869
|
+
legal_name?: string | undefined;
|
|
2870
|
+
parent_organization?: string | undefined;
|
|
2871
|
+
headquarters?: string[] | undefined;
|
|
2872
|
+
countries_of_origin?: string[] | undefined;
|
|
2873
|
+
founding_year?: string | undefined;
|
|
2874
|
+
us_customer_support_tel?: string | undefined;
|
|
2875
|
+
us_customer_support_email?: string | undefined;
|
|
2876
|
+
us_customer_support_contact_url?: string | undefined;
|
|
2877
|
+
seam_api_guide?: string | undefined;
|
|
2878
|
+
description?: string | undefined;
|
|
2525
2879
|
}, {
|
|
2526
2880
|
display_name: string;
|
|
2527
2881
|
manufacturer_id: string;
|
|
@@ -2538,6 +2892,17 @@ declare const routes: {
|
|
|
2538
2892
|
width: number;
|
|
2539
2893
|
height: number;
|
|
2540
2894
|
} | undefined;
|
|
2895
|
+
website?: string | undefined;
|
|
2896
|
+
legal_name?: string | undefined;
|
|
2897
|
+
parent_organization?: string | undefined;
|
|
2898
|
+
headquarters?: string[] | undefined;
|
|
2899
|
+
countries_of_origin?: string[] | undefined;
|
|
2900
|
+
founding_year?: string | undefined;
|
|
2901
|
+
us_customer_support_tel?: string | undefined;
|
|
2902
|
+
us_customer_support_email?: string | undefined;
|
|
2903
|
+
us_customer_support_contact_url?: string | undefined;
|
|
2904
|
+
seam_api_guide?: string | undefined;
|
|
2905
|
+
description?: string | undefined;
|
|
2541
2906
|
}>;
|
|
2542
2907
|
is_device_supported: z.ZodBoolean;
|
|
2543
2908
|
display_name: z.ZodString;
|
|
@@ -2639,6 +3004,7 @@ declare const routes: {
|
|
|
2639
3004
|
power_sources: z.ZodArray<z.ZodEnum<["battery", "hardwired", "mechanical_harvesting", "wireless", "ethernet"]>, "many">;
|
|
2640
3005
|
}, "strip", z.ZodTypeAny, {
|
|
2641
3006
|
display_name: string;
|
|
3007
|
+
description: string;
|
|
2642
3008
|
device_model_id: string;
|
|
2643
3009
|
manufacturer: {
|
|
2644
3010
|
display_name: string;
|
|
@@ -2656,9 +3022,19 @@ declare const routes: {
|
|
|
2656
3022
|
width: number;
|
|
2657
3023
|
height: number;
|
|
2658
3024
|
} | undefined;
|
|
3025
|
+
website?: string | undefined;
|
|
3026
|
+
legal_name?: string | undefined;
|
|
3027
|
+
parent_organization?: string | undefined;
|
|
3028
|
+
headquarters?: string[] | undefined;
|
|
3029
|
+
countries_of_origin?: string[] | undefined;
|
|
3030
|
+
founding_year?: string | undefined;
|
|
3031
|
+
us_customer_support_tel?: string | undefined;
|
|
3032
|
+
us_customer_support_email?: string | undefined;
|
|
3033
|
+
us_customer_support_contact_url?: string | undefined;
|
|
3034
|
+
seam_api_guide?: string | undefined;
|
|
3035
|
+
description?: string | undefined;
|
|
2659
3036
|
};
|
|
2660
3037
|
is_device_supported: boolean;
|
|
2661
|
-
description: string;
|
|
2662
3038
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
2663
3039
|
hardware: {
|
|
2664
3040
|
has_physical_key?: boolean | undefined;
|
|
@@ -2688,6 +3064,7 @@ declare const routes: {
|
|
|
2688
3064
|
product_url?: string | undefined;
|
|
2689
3065
|
}, {
|
|
2690
3066
|
display_name: string;
|
|
3067
|
+
description: string;
|
|
2691
3068
|
device_model_id: string;
|
|
2692
3069
|
manufacturer: {
|
|
2693
3070
|
display_name: string;
|
|
@@ -2705,9 +3082,19 @@ declare const routes: {
|
|
|
2705
3082
|
width: number;
|
|
2706
3083
|
height: number;
|
|
2707
3084
|
} | undefined;
|
|
3085
|
+
website?: string | undefined;
|
|
3086
|
+
legal_name?: string | undefined;
|
|
3087
|
+
parent_organization?: string | undefined;
|
|
3088
|
+
headquarters?: string[] | undefined;
|
|
3089
|
+
countries_of_origin?: string[] | undefined;
|
|
3090
|
+
founding_year?: string | undefined;
|
|
3091
|
+
us_customer_support_tel?: string | undefined;
|
|
3092
|
+
us_customer_support_email?: string | undefined;
|
|
3093
|
+
us_customer_support_contact_url?: string | undefined;
|
|
3094
|
+
seam_api_guide?: string | undefined;
|
|
3095
|
+
description?: string | undefined;
|
|
2708
3096
|
};
|
|
2709
3097
|
is_device_supported: boolean;
|
|
2710
|
-
description: string;
|
|
2711
3098
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
2712
3099
|
hardware: {
|
|
2713
3100
|
has_physical_key?: boolean | undefined;
|
|
@@ -2978,6 +3365,7 @@ declare const routes: {
|
|
|
2978
3365
|
}, "strip", z.ZodTypeAny, {
|
|
2979
3366
|
device_models: ({
|
|
2980
3367
|
display_name: string;
|
|
3368
|
+
description: string;
|
|
2981
3369
|
device_model_id: string;
|
|
2982
3370
|
manufacturer: {
|
|
2983
3371
|
display_name: string;
|
|
@@ -2995,9 +3383,19 @@ declare const routes: {
|
|
|
2995
3383
|
width: number;
|
|
2996
3384
|
height: number;
|
|
2997
3385
|
} | undefined;
|
|
3386
|
+
website?: string | undefined;
|
|
3387
|
+
legal_name?: string | undefined;
|
|
3388
|
+
parent_organization?: string | undefined;
|
|
3389
|
+
headquarters?: string[] | undefined;
|
|
3390
|
+
countries_of_origin?: string[] | undefined;
|
|
3391
|
+
founding_year?: string | undefined;
|
|
3392
|
+
us_customer_support_tel?: string | undefined;
|
|
3393
|
+
us_customer_support_email?: string | undefined;
|
|
3394
|
+
us_customer_support_contact_url?: string | undefined;
|
|
3395
|
+
seam_api_guide?: string | undefined;
|
|
3396
|
+
description?: string | undefined;
|
|
2998
3397
|
};
|
|
2999
3398
|
is_device_supported: boolean;
|
|
3000
|
-
description: string;
|
|
3001
3399
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
3002
3400
|
hardware: {
|
|
3003
3401
|
has_physical_key?: boolean | undefined;
|
|
@@ -3086,6 +3484,7 @@ declare const routes: {
|
|
|
3086
3484
|
}, {
|
|
3087
3485
|
device_models: ({
|
|
3088
3486
|
display_name: string;
|
|
3487
|
+
description: string;
|
|
3089
3488
|
device_model_id: string;
|
|
3090
3489
|
manufacturer: {
|
|
3091
3490
|
display_name: string;
|
|
@@ -3103,9 +3502,19 @@ declare const routes: {
|
|
|
3103
3502
|
width: number;
|
|
3104
3503
|
height: number;
|
|
3105
3504
|
} | undefined;
|
|
3505
|
+
website?: string | undefined;
|
|
3506
|
+
legal_name?: string | undefined;
|
|
3507
|
+
parent_organization?: string | undefined;
|
|
3508
|
+
headquarters?: string[] | undefined;
|
|
3509
|
+
countries_of_origin?: string[] | undefined;
|
|
3510
|
+
founding_year?: string | undefined;
|
|
3511
|
+
us_customer_support_tel?: string | undefined;
|
|
3512
|
+
us_customer_support_email?: string | undefined;
|
|
3513
|
+
us_customer_support_contact_url?: string | undefined;
|
|
3514
|
+
seam_api_guide?: string | undefined;
|
|
3515
|
+
description?: string | undefined;
|
|
3106
3516
|
};
|
|
3107
3517
|
is_device_supported: boolean;
|
|
3108
|
-
description: string;
|
|
3109
3518
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
3110
3519
|
hardware: {
|
|
3111
3520
|
has_physical_key?: boolean | undefined;
|
|
@@ -3235,6 +3644,18 @@ declare const routes: {
|
|
|
3235
3644
|
message: string;
|
|
3236
3645
|
annotation_code: "subscription_required";
|
|
3237
3646
|
}>, "many">;
|
|
3647
|
+
website: z.ZodOptional<z.ZodString>;
|
|
3648
|
+
legal_name: z.ZodOptional<z.ZodString>;
|
|
3649
|
+
parent_organization: z.ZodOptional<z.ZodString>;
|
|
3650
|
+
headquarters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3651
|
+
countries_of_origin: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3652
|
+
founding_year: z.ZodOptional<z.ZodString>;
|
|
3653
|
+
us_customer_support_tel: z.ZodOptional<z.ZodString>;
|
|
3654
|
+
us_customer_support_email: z.ZodOptional<z.ZodString>;
|
|
3655
|
+
/** @deprecated */
|
|
3656
|
+
us_customer_support_contact_url: z.ZodOptional<z.ZodString>;
|
|
3657
|
+
seam_api_guide: z.ZodOptional<z.ZodString>;
|
|
3658
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3238
3659
|
}, "strip", z.ZodTypeAny, {
|
|
3239
3660
|
display_name: string;
|
|
3240
3661
|
manufacturer_id: string;
|
|
@@ -3252,6 +3673,17 @@ declare const routes: {
|
|
|
3252
3673
|
width: number;
|
|
3253
3674
|
height: number;
|
|
3254
3675
|
} | undefined;
|
|
3676
|
+
website?: string | undefined;
|
|
3677
|
+
legal_name?: string | undefined;
|
|
3678
|
+
parent_organization?: string | undefined;
|
|
3679
|
+
headquarters?: string[] | undefined;
|
|
3680
|
+
countries_of_origin?: string[] | undefined;
|
|
3681
|
+
founding_year?: string | undefined;
|
|
3682
|
+
us_customer_support_tel?: string | undefined;
|
|
3683
|
+
us_customer_support_email?: string | undefined;
|
|
3684
|
+
us_customer_support_contact_url?: string | undefined;
|
|
3685
|
+
seam_api_guide?: string | undefined;
|
|
3686
|
+
description?: string | undefined;
|
|
3255
3687
|
}, {
|
|
3256
3688
|
display_name: string;
|
|
3257
3689
|
manufacturer_id: string;
|
|
@@ -3269,6 +3701,17 @@ declare const routes: {
|
|
|
3269
3701
|
width: number;
|
|
3270
3702
|
height: number;
|
|
3271
3703
|
} | undefined;
|
|
3704
|
+
website?: string | undefined;
|
|
3705
|
+
legal_name?: string | undefined;
|
|
3706
|
+
parent_organization?: string | undefined;
|
|
3707
|
+
headquarters?: string[] | undefined;
|
|
3708
|
+
countries_of_origin?: string[] | undefined;
|
|
3709
|
+
founding_year?: string | undefined;
|
|
3710
|
+
us_customer_support_tel?: string | undefined;
|
|
3711
|
+
us_customer_support_email?: string | undefined;
|
|
3712
|
+
us_customer_support_contact_url?: string | undefined;
|
|
3713
|
+
seam_api_guide?: string | undefined;
|
|
3714
|
+
description?: string | undefined;
|
|
3272
3715
|
}>;
|
|
3273
3716
|
}, "strip", z.ZodTypeAny, {
|
|
3274
3717
|
manufacturer: {
|
|
@@ -3288,6 +3731,17 @@ declare const routes: {
|
|
|
3288
3731
|
width: number;
|
|
3289
3732
|
height: number;
|
|
3290
3733
|
} | undefined;
|
|
3734
|
+
website?: string | undefined;
|
|
3735
|
+
legal_name?: string | undefined;
|
|
3736
|
+
parent_organization?: string | undefined;
|
|
3737
|
+
headquarters?: string[] | undefined;
|
|
3738
|
+
countries_of_origin?: string[] | undefined;
|
|
3739
|
+
founding_year?: string | undefined;
|
|
3740
|
+
us_customer_support_tel?: string | undefined;
|
|
3741
|
+
us_customer_support_email?: string | undefined;
|
|
3742
|
+
us_customer_support_contact_url?: string | undefined;
|
|
3743
|
+
seam_api_guide?: string | undefined;
|
|
3744
|
+
description?: string | undefined;
|
|
3291
3745
|
};
|
|
3292
3746
|
}, {
|
|
3293
3747
|
manufacturer: {
|
|
@@ -3307,6 +3761,17 @@ declare const routes: {
|
|
|
3307
3761
|
width: number;
|
|
3308
3762
|
height: number;
|
|
3309
3763
|
} | undefined;
|
|
3764
|
+
website?: string | undefined;
|
|
3765
|
+
legal_name?: string | undefined;
|
|
3766
|
+
parent_organization?: string | undefined;
|
|
3767
|
+
headquarters?: string[] | undefined;
|
|
3768
|
+
countries_of_origin?: string[] | undefined;
|
|
3769
|
+
founding_year?: string | undefined;
|
|
3770
|
+
us_customer_support_tel?: string | undefined;
|
|
3771
|
+
us_customer_support_email?: string | undefined;
|
|
3772
|
+
us_customer_support_contact_url?: string | undefined;
|
|
3773
|
+
seam_api_guide?: string | undefined;
|
|
3774
|
+
description?: string | undefined;
|
|
3310
3775
|
};
|
|
3311
3776
|
}>;
|
|
3312
3777
|
};
|
|
@@ -3359,6 +3824,18 @@ declare const routes: {
|
|
|
3359
3824
|
message: string;
|
|
3360
3825
|
annotation_code: "subscription_required";
|
|
3361
3826
|
}>, "many">;
|
|
3827
|
+
website: z.ZodOptional<z.ZodString>;
|
|
3828
|
+
legal_name: z.ZodOptional<z.ZodString>;
|
|
3829
|
+
parent_organization: z.ZodOptional<z.ZodString>;
|
|
3830
|
+
headquarters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3831
|
+
countries_of_origin: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3832
|
+
founding_year: z.ZodOptional<z.ZodString>;
|
|
3833
|
+
us_customer_support_tel: z.ZodOptional<z.ZodString>;
|
|
3834
|
+
us_customer_support_email: z.ZodOptional<z.ZodString>;
|
|
3835
|
+
/** @deprecated */
|
|
3836
|
+
us_customer_support_contact_url: z.ZodOptional<z.ZodString>;
|
|
3837
|
+
seam_api_guide: z.ZodOptional<z.ZodString>;
|
|
3838
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3362
3839
|
}, "strip", z.ZodTypeAny, {
|
|
3363
3840
|
display_name: string;
|
|
3364
3841
|
manufacturer_id: string;
|
|
@@ -3376,6 +3853,17 @@ declare const routes: {
|
|
|
3376
3853
|
width: number;
|
|
3377
3854
|
height: number;
|
|
3378
3855
|
} | undefined;
|
|
3856
|
+
website?: string | undefined;
|
|
3857
|
+
legal_name?: string | undefined;
|
|
3858
|
+
parent_organization?: string | undefined;
|
|
3859
|
+
headquarters?: string[] | undefined;
|
|
3860
|
+
countries_of_origin?: string[] | undefined;
|
|
3861
|
+
founding_year?: string | undefined;
|
|
3862
|
+
us_customer_support_tel?: string | undefined;
|
|
3863
|
+
us_customer_support_email?: string | undefined;
|
|
3864
|
+
us_customer_support_contact_url?: string | undefined;
|
|
3865
|
+
seam_api_guide?: string | undefined;
|
|
3866
|
+
description?: string | undefined;
|
|
3379
3867
|
}, {
|
|
3380
3868
|
display_name: string;
|
|
3381
3869
|
manufacturer_id: string;
|
|
@@ -3393,6 +3881,17 @@ declare const routes: {
|
|
|
3393
3881
|
width: number;
|
|
3394
3882
|
height: number;
|
|
3395
3883
|
} | undefined;
|
|
3884
|
+
website?: string | undefined;
|
|
3885
|
+
legal_name?: string | undefined;
|
|
3886
|
+
parent_organization?: string | undefined;
|
|
3887
|
+
headquarters?: string[] | undefined;
|
|
3888
|
+
countries_of_origin?: string[] | undefined;
|
|
3889
|
+
founding_year?: string | undefined;
|
|
3890
|
+
us_customer_support_tel?: string | undefined;
|
|
3891
|
+
us_customer_support_email?: string | undefined;
|
|
3892
|
+
us_customer_support_contact_url?: string | undefined;
|
|
3893
|
+
seam_api_guide?: string | undefined;
|
|
3894
|
+
description?: string | undefined;
|
|
3396
3895
|
}>, "many">;
|
|
3397
3896
|
}, "strip", z.ZodTypeAny, {
|
|
3398
3897
|
manufacturers: {
|
|
@@ -3412,6 +3911,17 @@ declare const routes: {
|
|
|
3412
3911
|
width: number;
|
|
3413
3912
|
height: number;
|
|
3414
3913
|
} | undefined;
|
|
3914
|
+
website?: string | undefined;
|
|
3915
|
+
legal_name?: string | undefined;
|
|
3916
|
+
parent_organization?: string | undefined;
|
|
3917
|
+
headquarters?: string[] | undefined;
|
|
3918
|
+
countries_of_origin?: string[] | undefined;
|
|
3919
|
+
founding_year?: string | undefined;
|
|
3920
|
+
us_customer_support_tel?: string | undefined;
|
|
3921
|
+
us_customer_support_email?: string | undefined;
|
|
3922
|
+
us_customer_support_contact_url?: string | undefined;
|
|
3923
|
+
seam_api_guide?: string | undefined;
|
|
3924
|
+
description?: string | undefined;
|
|
3415
3925
|
}[];
|
|
3416
3926
|
}, {
|
|
3417
3927
|
manufacturers: {
|
|
@@ -3431,6 +3941,17 @@ declare const routes: {
|
|
|
3431
3941
|
width: number;
|
|
3432
3942
|
height: number;
|
|
3433
3943
|
} | undefined;
|
|
3944
|
+
website?: string | undefined;
|
|
3945
|
+
legal_name?: string | undefined;
|
|
3946
|
+
parent_organization?: string | undefined;
|
|
3947
|
+
headquarters?: string[] | undefined;
|
|
3948
|
+
countries_of_origin?: string[] | undefined;
|
|
3949
|
+
founding_year?: string | undefined;
|
|
3950
|
+
us_customer_support_tel?: string | undefined;
|
|
3951
|
+
us_customer_support_email?: string | undefined;
|
|
3952
|
+
us_customer_support_contact_url?: string | undefined;
|
|
3953
|
+
seam_api_guide?: string | undefined;
|
|
3954
|
+
description?: string | undefined;
|
|
3434
3955
|
}[];
|
|
3435
3956
|
}>;
|
|
3436
3957
|
};
|
|
@@ -3465,6 +3986,17 @@ interface Routes {
|
|
|
3465
3986
|
annotation_code: 'subscription_required';
|
|
3466
3987
|
message: string;
|
|
3467
3988
|
}>;
|
|
3989
|
+
website?: string | undefined;
|
|
3990
|
+
legal_name?: string | undefined;
|
|
3991
|
+
parent_organization?: string | undefined;
|
|
3992
|
+
headquarters?: string[] | undefined;
|
|
3993
|
+
countries_of_origin?: string[] | undefined;
|
|
3994
|
+
founding_year?: string | undefined;
|
|
3995
|
+
us_customer_support_tel?: string | undefined;
|
|
3996
|
+
us_customer_support_email?: string | undefined;
|
|
3997
|
+
us_customer_support_contact_url?: string | undefined;
|
|
3998
|
+
seam_api_guide?: string | undefined;
|
|
3999
|
+
description?: string | undefined;
|
|
3468
4000
|
};
|
|
3469
4001
|
is_device_supported: boolean;
|
|
3470
4002
|
display_name: string;
|
|
@@ -3591,6 +4123,17 @@ interface Routes {
|
|
|
3591
4123
|
annotation_code: 'subscription_required';
|
|
3592
4124
|
message: string;
|
|
3593
4125
|
}>;
|
|
4126
|
+
website?: string | undefined;
|
|
4127
|
+
legal_name?: string | undefined;
|
|
4128
|
+
parent_organization?: string | undefined;
|
|
4129
|
+
headquarters?: string[] | undefined;
|
|
4130
|
+
countries_of_origin?: string[] | undefined;
|
|
4131
|
+
founding_year?: string | undefined;
|
|
4132
|
+
us_customer_support_tel?: string | undefined;
|
|
4133
|
+
us_customer_support_email?: string | undefined;
|
|
4134
|
+
us_customer_support_contact_url?: string | undefined;
|
|
4135
|
+
seam_api_guide?: string | undefined;
|
|
4136
|
+
description?: string | undefined;
|
|
3594
4137
|
};
|
|
3595
4138
|
is_device_supported: boolean;
|
|
3596
4139
|
display_name: string;
|
|
@@ -3709,6 +4252,17 @@ interface Routes {
|
|
|
3709
4252
|
annotation_code: 'subscription_required';
|
|
3710
4253
|
message: string;
|
|
3711
4254
|
}>;
|
|
4255
|
+
website?: string | undefined;
|
|
4256
|
+
legal_name?: string | undefined;
|
|
4257
|
+
parent_organization?: string | undefined;
|
|
4258
|
+
headquarters?: string[] | undefined;
|
|
4259
|
+
countries_of_origin?: string[] | undefined;
|
|
4260
|
+
founding_year?: string | undefined;
|
|
4261
|
+
us_customer_support_tel?: string | undefined;
|
|
4262
|
+
us_customer_support_email?: string | undefined;
|
|
4263
|
+
us_customer_support_contact_url?: string | undefined;
|
|
4264
|
+
seam_api_guide?: string | undefined;
|
|
4265
|
+
description?: string | undefined;
|
|
3712
4266
|
};
|
|
3713
4267
|
};
|
|
3714
4268
|
};
|
|
@@ -3741,6 +4295,17 @@ interface Routes {
|
|
|
3741
4295
|
annotation_code: 'subscription_required';
|
|
3742
4296
|
message: string;
|
|
3743
4297
|
}>;
|
|
4298
|
+
website?: string | undefined;
|
|
4299
|
+
legal_name?: string | undefined;
|
|
4300
|
+
parent_organization?: string | undefined;
|
|
4301
|
+
headquarters?: string[] | undefined;
|
|
4302
|
+
countries_of_origin?: string[] | undefined;
|
|
4303
|
+
founding_year?: string | undefined;
|
|
4304
|
+
us_customer_support_tel?: string | undefined;
|
|
4305
|
+
us_customer_support_email?: string | undefined;
|
|
4306
|
+
us_customer_support_contact_url?: string | undefined;
|
|
4307
|
+
seam_api_guide?: string | undefined;
|
|
4308
|
+
description?: string | undefined;
|
|
3744
4309
|
}>;
|
|
3745
4310
|
};
|
|
3746
4311
|
};
|