@seamapi/types 1.157.2 → 1.159.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 +1 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +6 -0
- package/dist/devicedb.cjs +12 -1
- package/dist/devicedb.cjs.map +1 -1
- package/dist/devicedb.d.cts +587 -22
- package/lib/seam/connect/models/acs/acs_system_capability_flags.d.ts +3 -0
- package/lib/seam/connect/models/acs/acs_system_capability_flags.js +1 -0
- package/lib/seam/connect/models/acs/acs_system_capability_flags.js.map +1 -1
- package/lib/seam/connect/models/acs/system.d.ts +3 -0
- package/lib/seam/connect/openapi.d.ts +3 -0
- package/lib/seam/connect/openapi.js +1 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +3 -0
- 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/connect/models/acs/acs_system_capability_flags.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +1 -0
- package/src/lib/seam/connect/route-types.ts +3 -0
- package/src/lib/seam/devicedb/models/manufacturer.ts +11 -0
- package/src/lib/seam/devicedb/route-types.ts +44 -0
|
@@ -44,6 +44,18 @@ export declare const routes: {
|
|
|
44
44
|
message: string;
|
|
45
45
|
annotation_code: "subscription_required";
|
|
46
46
|
}>, "many">;
|
|
47
|
+
website: z.ZodOptional<z.ZodString>;
|
|
48
|
+
legal_name: z.ZodOptional<z.ZodString>;
|
|
49
|
+
parent_organization: z.ZodOptional<z.ZodString>;
|
|
50
|
+
headquarters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
51
|
+
countries_of_origin: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
52
|
+
founding_year: z.ZodOptional<z.ZodString>;
|
|
53
|
+
us_customer_support_tel: z.ZodOptional<z.ZodString>;
|
|
54
|
+
us_customer_support_email: z.ZodOptional<z.ZodString>;
|
|
55
|
+
/** @deprecated */
|
|
56
|
+
us_customer_support_contact_url: z.ZodOptional<z.ZodString>;
|
|
57
|
+
seam_api_guide: z.ZodOptional<z.ZodString>;
|
|
58
|
+
description: z.ZodOptional<z.ZodString>;
|
|
47
59
|
}, "device_model_count">, "strip", z.ZodTypeAny, {
|
|
48
60
|
display_name: string;
|
|
49
61
|
manufacturer_id: string;
|
|
@@ -55,11 +67,22 @@ export declare const routes: {
|
|
|
55
67
|
message: string;
|
|
56
68
|
annotation_code: "subscription_required";
|
|
57
69
|
}[];
|
|
70
|
+
description?: string | undefined;
|
|
58
71
|
logo?: {
|
|
59
72
|
height: number;
|
|
60
73
|
width: number;
|
|
61
74
|
url: string;
|
|
62
75
|
} | undefined;
|
|
76
|
+
website?: string | undefined;
|
|
77
|
+
legal_name?: string | undefined;
|
|
78
|
+
parent_organization?: string | undefined;
|
|
79
|
+
headquarters?: string[] | undefined;
|
|
80
|
+
countries_of_origin?: string[] | undefined;
|
|
81
|
+
founding_year?: string | undefined;
|
|
82
|
+
us_customer_support_tel?: string | undefined;
|
|
83
|
+
us_customer_support_email?: string | undefined;
|
|
84
|
+
us_customer_support_contact_url?: string | undefined;
|
|
85
|
+
seam_api_guide?: string | undefined;
|
|
63
86
|
}, {
|
|
64
87
|
display_name: string;
|
|
65
88
|
manufacturer_id: string;
|
|
@@ -71,11 +94,22 @@ export declare const routes: {
|
|
|
71
94
|
message: string;
|
|
72
95
|
annotation_code: "subscription_required";
|
|
73
96
|
}[];
|
|
97
|
+
description?: string | undefined;
|
|
74
98
|
logo?: {
|
|
75
99
|
height: number;
|
|
76
100
|
width: number;
|
|
77
101
|
url: string;
|
|
78
102
|
} | undefined;
|
|
103
|
+
website?: string | undefined;
|
|
104
|
+
legal_name?: string | undefined;
|
|
105
|
+
parent_organization?: string | undefined;
|
|
106
|
+
headquarters?: string[] | undefined;
|
|
107
|
+
countries_of_origin?: string[] | undefined;
|
|
108
|
+
founding_year?: string | undefined;
|
|
109
|
+
us_customer_support_tel?: string | undefined;
|
|
110
|
+
us_customer_support_email?: string | undefined;
|
|
111
|
+
us_customer_support_contact_url?: string | undefined;
|
|
112
|
+
seam_api_guide?: string | undefined;
|
|
79
113
|
}>;
|
|
80
114
|
is_device_supported: z.ZodBoolean;
|
|
81
115
|
display_name: z.ZodString;
|
|
@@ -190,11 +224,22 @@ export declare const routes: {
|
|
|
190
224
|
message: string;
|
|
191
225
|
annotation_code: "subscription_required";
|
|
192
226
|
}[];
|
|
227
|
+
description?: string | undefined;
|
|
193
228
|
logo?: {
|
|
194
229
|
height: number;
|
|
195
230
|
width: number;
|
|
196
231
|
url: string;
|
|
197
232
|
} | undefined;
|
|
233
|
+
website?: string | undefined;
|
|
234
|
+
legal_name?: string | undefined;
|
|
235
|
+
parent_organization?: string | undefined;
|
|
236
|
+
headquarters?: string[] | undefined;
|
|
237
|
+
countries_of_origin?: string[] | undefined;
|
|
238
|
+
founding_year?: string | undefined;
|
|
239
|
+
us_customer_support_tel?: string | undefined;
|
|
240
|
+
us_customer_support_email?: string | undefined;
|
|
241
|
+
us_customer_support_contact_url?: string | undefined;
|
|
242
|
+
seam_api_guide?: string | undefined;
|
|
198
243
|
};
|
|
199
244
|
is_device_supported: boolean;
|
|
200
245
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
@@ -239,11 +284,22 @@ export declare const routes: {
|
|
|
239
284
|
message: string;
|
|
240
285
|
annotation_code: "subscription_required";
|
|
241
286
|
}[];
|
|
287
|
+
description?: string | undefined;
|
|
242
288
|
logo?: {
|
|
243
289
|
height: number;
|
|
244
290
|
width: number;
|
|
245
291
|
url: string;
|
|
246
292
|
} | undefined;
|
|
293
|
+
website?: string | undefined;
|
|
294
|
+
legal_name?: string | undefined;
|
|
295
|
+
parent_organization?: string | undefined;
|
|
296
|
+
headquarters?: string[] | undefined;
|
|
297
|
+
countries_of_origin?: string[] | undefined;
|
|
298
|
+
founding_year?: string | undefined;
|
|
299
|
+
us_customer_support_tel?: string | undefined;
|
|
300
|
+
us_customer_support_email?: string | undefined;
|
|
301
|
+
us_customer_support_contact_url?: string | undefined;
|
|
302
|
+
seam_api_guide?: string | undefined;
|
|
247
303
|
};
|
|
248
304
|
is_device_supported: boolean;
|
|
249
305
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
@@ -529,11 +585,22 @@ export declare const routes: {
|
|
|
529
585
|
message: string;
|
|
530
586
|
annotation_code: "subscription_required";
|
|
531
587
|
}[];
|
|
588
|
+
description?: string | undefined;
|
|
532
589
|
logo?: {
|
|
533
590
|
height: number;
|
|
534
591
|
width: number;
|
|
535
592
|
url: string;
|
|
536
593
|
} | undefined;
|
|
594
|
+
website?: string | undefined;
|
|
595
|
+
legal_name?: string | undefined;
|
|
596
|
+
parent_organization?: string | undefined;
|
|
597
|
+
headquarters?: string[] | undefined;
|
|
598
|
+
countries_of_origin?: string[] | undefined;
|
|
599
|
+
founding_year?: string | undefined;
|
|
600
|
+
us_customer_support_tel?: string | undefined;
|
|
601
|
+
us_customer_support_email?: string | undefined;
|
|
602
|
+
us_customer_support_contact_url?: string | undefined;
|
|
603
|
+
seam_api_guide?: string | undefined;
|
|
537
604
|
};
|
|
538
605
|
is_device_supported: boolean;
|
|
539
606
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
@@ -595,11 +662,22 @@ export declare const routes: {
|
|
|
595
662
|
message: string;
|
|
596
663
|
annotation_code: "subscription_required";
|
|
597
664
|
}[];
|
|
665
|
+
description?: string | undefined;
|
|
598
666
|
logo?: {
|
|
599
667
|
height: number;
|
|
600
668
|
width: number;
|
|
601
669
|
url: string;
|
|
602
670
|
} | undefined;
|
|
671
|
+
website?: string | undefined;
|
|
672
|
+
legal_name?: string | undefined;
|
|
673
|
+
parent_organization?: string | undefined;
|
|
674
|
+
headquarters?: string[] | undefined;
|
|
675
|
+
countries_of_origin?: string[] | undefined;
|
|
676
|
+
founding_year?: string | undefined;
|
|
677
|
+
us_customer_support_tel?: string | undefined;
|
|
678
|
+
us_customer_support_email?: string | undefined;
|
|
679
|
+
us_customer_support_contact_url?: string | undefined;
|
|
680
|
+
seam_api_guide?: string | undefined;
|
|
603
681
|
};
|
|
604
682
|
is_device_supported: boolean;
|
|
605
683
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
@@ -652,11 +730,22 @@ export declare const routes: {
|
|
|
652
730
|
message: string;
|
|
653
731
|
annotation_code: "subscription_required";
|
|
654
732
|
}[];
|
|
733
|
+
description?: string | undefined;
|
|
655
734
|
logo?: {
|
|
656
735
|
height: number;
|
|
657
736
|
width: number;
|
|
658
737
|
url: string;
|
|
659
738
|
} | undefined;
|
|
739
|
+
website?: string | undefined;
|
|
740
|
+
legal_name?: string | undefined;
|
|
741
|
+
parent_organization?: string | undefined;
|
|
742
|
+
headquarters?: string[] | undefined;
|
|
743
|
+
countries_of_origin?: string[] | undefined;
|
|
744
|
+
founding_year?: string | undefined;
|
|
745
|
+
us_customer_support_tel?: string | undefined;
|
|
746
|
+
us_customer_support_email?: string | undefined;
|
|
747
|
+
us_customer_support_contact_url?: string | undefined;
|
|
748
|
+
seam_api_guide?: string | undefined;
|
|
660
749
|
};
|
|
661
750
|
is_device_supported: boolean;
|
|
662
751
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
@@ -715,11 +804,22 @@ export declare const routes: {
|
|
|
715
804
|
message: string;
|
|
716
805
|
annotation_code: "subscription_required";
|
|
717
806
|
}[];
|
|
807
|
+
description?: string | undefined;
|
|
718
808
|
logo?: {
|
|
719
809
|
height: number;
|
|
720
810
|
width: number;
|
|
721
811
|
url: string;
|
|
722
812
|
} | undefined;
|
|
813
|
+
website?: string | undefined;
|
|
814
|
+
legal_name?: string | undefined;
|
|
815
|
+
parent_organization?: string | undefined;
|
|
816
|
+
headquarters?: string[] | undefined;
|
|
817
|
+
countries_of_origin?: string[] | undefined;
|
|
818
|
+
founding_year?: string | undefined;
|
|
819
|
+
us_customer_support_tel?: string | undefined;
|
|
820
|
+
us_customer_support_email?: string | undefined;
|
|
821
|
+
us_customer_support_contact_url?: string | undefined;
|
|
822
|
+
seam_api_guide?: string | undefined;
|
|
723
823
|
};
|
|
724
824
|
is_device_supported: boolean;
|
|
725
825
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
@@ -766,11 +866,22 @@ export declare const routes: {
|
|
|
766
866
|
message: string;
|
|
767
867
|
annotation_code: "subscription_required";
|
|
768
868
|
}[];
|
|
869
|
+
description?: string | undefined;
|
|
769
870
|
logo?: {
|
|
770
871
|
height: number;
|
|
771
872
|
width: number;
|
|
772
873
|
url: string;
|
|
773
874
|
} | undefined;
|
|
875
|
+
website?: string | undefined;
|
|
876
|
+
legal_name?: string | undefined;
|
|
877
|
+
parent_organization?: string | undefined;
|
|
878
|
+
headquarters?: string[] | undefined;
|
|
879
|
+
countries_of_origin?: string[] | undefined;
|
|
880
|
+
founding_year?: string | undefined;
|
|
881
|
+
us_customer_support_tel?: string | undefined;
|
|
882
|
+
us_customer_support_email?: string | undefined;
|
|
883
|
+
us_customer_support_contact_url?: string | undefined;
|
|
884
|
+
seam_api_guide?: string | undefined;
|
|
774
885
|
};
|
|
775
886
|
is_device_supported: boolean;
|
|
776
887
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
@@ -829,11 +940,22 @@ export declare const routes: {
|
|
|
829
940
|
message: string;
|
|
830
941
|
annotation_code: "subscription_required";
|
|
831
942
|
}[];
|
|
943
|
+
description?: string | undefined;
|
|
832
944
|
logo?: {
|
|
833
945
|
height: number;
|
|
834
946
|
width: number;
|
|
835
947
|
url: string;
|
|
836
948
|
} | undefined;
|
|
949
|
+
website?: string | undefined;
|
|
950
|
+
legal_name?: string | undefined;
|
|
951
|
+
parent_organization?: string | undefined;
|
|
952
|
+
headquarters?: string[] | undefined;
|
|
953
|
+
countries_of_origin?: string[] | undefined;
|
|
954
|
+
founding_year?: string | undefined;
|
|
955
|
+
us_customer_support_tel?: string | undefined;
|
|
956
|
+
us_customer_support_email?: string | undefined;
|
|
957
|
+
us_customer_support_contact_url?: string | undefined;
|
|
958
|
+
seam_api_guide?: string | undefined;
|
|
837
959
|
};
|
|
838
960
|
is_device_supported: boolean;
|
|
839
961
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
@@ -882,11 +1004,22 @@ export declare const routes: {
|
|
|
882
1004
|
message: string;
|
|
883
1005
|
annotation_code: "subscription_required";
|
|
884
1006
|
}[];
|
|
1007
|
+
description?: string | undefined;
|
|
885
1008
|
logo?: {
|
|
886
1009
|
height: number;
|
|
887
1010
|
width: number;
|
|
888
1011
|
url: string;
|
|
889
1012
|
} | undefined;
|
|
1013
|
+
website?: string | undefined;
|
|
1014
|
+
legal_name?: string | undefined;
|
|
1015
|
+
parent_organization?: string | undefined;
|
|
1016
|
+
headquarters?: string[] | undefined;
|
|
1017
|
+
countries_of_origin?: string[] | undefined;
|
|
1018
|
+
founding_year?: string | undefined;
|
|
1019
|
+
us_customer_support_tel?: string | undefined;
|
|
1020
|
+
us_customer_support_email?: string | undefined;
|
|
1021
|
+
us_customer_support_contact_url?: string | undefined;
|
|
1022
|
+
seam_api_guide?: string | undefined;
|
|
890
1023
|
};
|
|
891
1024
|
is_device_supported: boolean;
|
|
892
1025
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
@@ -948,11 +1081,22 @@ export declare const routes: {
|
|
|
948
1081
|
message: string;
|
|
949
1082
|
annotation_code: "subscription_required";
|
|
950
1083
|
}[];
|
|
1084
|
+
description?: string | undefined;
|
|
951
1085
|
logo?: {
|
|
952
1086
|
height: number;
|
|
953
1087
|
width: number;
|
|
954
1088
|
url: string;
|
|
955
1089
|
} | undefined;
|
|
1090
|
+
website?: string | undefined;
|
|
1091
|
+
legal_name?: string | undefined;
|
|
1092
|
+
parent_organization?: string | undefined;
|
|
1093
|
+
headquarters?: string[] | undefined;
|
|
1094
|
+
countries_of_origin?: string[] | undefined;
|
|
1095
|
+
founding_year?: string | undefined;
|
|
1096
|
+
us_customer_support_tel?: string | undefined;
|
|
1097
|
+
us_customer_support_email?: string | undefined;
|
|
1098
|
+
us_customer_support_contact_url?: string | undefined;
|
|
1099
|
+
seam_api_guide?: string | undefined;
|
|
956
1100
|
};
|
|
957
1101
|
is_device_supported: boolean;
|
|
958
1102
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
@@ -1005,11 +1149,22 @@ export declare const routes: {
|
|
|
1005
1149
|
message: string;
|
|
1006
1150
|
annotation_code: "subscription_required";
|
|
1007
1151
|
}[];
|
|
1152
|
+
description?: string | undefined;
|
|
1008
1153
|
logo?: {
|
|
1009
1154
|
height: number;
|
|
1010
1155
|
width: number;
|
|
1011
1156
|
url: string;
|
|
1012
1157
|
} | undefined;
|
|
1158
|
+
website?: string | undefined;
|
|
1159
|
+
legal_name?: string | undefined;
|
|
1160
|
+
parent_organization?: string | undefined;
|
|
1161
|
+
headquarters?: string[] | undefined;
|
|
1162
|
+
countries_of_origin?: string[] | undefined;
|
|
1163
|
+
founding_year?: string | undefined;
|
|
1164
|
+
us_customer_support_tel?: string | undefined;
|
|
1165
|
+
us_customer_support_email?: string | undefined;
|
|
1166
|
+
us_customer_support_contact_url?: string | undefined;
|
|
1167
|
+
seam_api_guide?: string | undefined;
|
|
1013
1168
|
};
|
|
1014
1169
|
is_device_supported: boolean;
|
|
1015
1170
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
@@ -1068,11 +1223,22 @@ export declare const routes: {
|
|
|
1068
1223
|
message: string;
|
|
1069
1224
|
annotation_code: "subscription_required";
|
|
1070
1225
|
}[];
|
|
1226
|
+
description?: string | undefined;
|
|
1071
1227
|
logo?: {
|
|
1072
1228
|
height: number;
|
|
1073
1229
|
width: number;
|
|
1074
1230
|
url: string;
|
|
1075
1231
|
} | undefined;
|
|
1232
|
+
website?: string | undefined;
|
|
1233
|
+
legal_name?: string | undefined;
|
|
1234
|
+
parent_organization?: string | undefined;
|
|
1235
|
+
headquarters?: string[] | undefined;
|
|
1236
|
+
countries_of_origin?: string[] | undefined;
|
|
1237
|
+
founding_year?: string | undefined;
|
|
1238
|
+
us_customer_support_tel?: string | undefined;
|
|
1239
|
+
us_customer_support_email?: string | undefined;
|
|
1240
|
+
us_customer_support_contact_url?: string | undefined;
|
|
1241
|
+
seam_api_guide?: string | undefined;
|
|
1076
1242
|
};
|
|
1077
1243
|
is_device_supported: boolean;
|
|
1078
1244
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
@@ -1119,11 +1285,22 @@ export declare const routes: {
|
|
|
1119
1285
|
message: string;
|
|
1120
1286
|
annotation_code: "subscription_required";
|
|
1121
1287
|
}[];
|
|
1288
|
+
description?: string | undefined;
|
|
1122
1289
|
logo?: {
|
|
1123
1290
|
height: number;
|
|
1124
1291
|
width: number;
|
|
1125
1292
|
url: string;
|
|
1126
1293
|
} | undefined;
|
|
1294
|
+
website?: string | undefined;
|
|
1295
|
+
legal_name?: string | undefined;
|
|
1296
|
+
parent_organization?: string | undefined;
|
|
1297
|
+
headquarters?: string[] | undefined;
|
|
1298
|
+
countries_of_origin?: string[] | undefined;
|
|
1299
|
+
founding_year?: string | undefined;
|
|
1300
|
+
us_customer_support_tel?: string | undefined;
|
|
1301
|
+
us_customer_support_email?: string | undefined;
|
|
1302
|
+
us_customer_support_contact_url?: string | undefined;
|
|
1303
|
+
seam_api_guide?: string | undefined;
|
|
1127
1304
|
};
|
|
1128
1305
|
is_device_supported: boolean;
|
|
1129
1306
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
@@ -1182,11 +1359,22 @@ export declare const routes: {
|
|
|
1182
1359
|
message: string;
|
|
1183
1360
|
annotation_code: "subscription_required";
|
|
1184
1361
|
}[];
|
|
1362
|
+
description?: string | undefined;
|
|
1185
1363
|
logo?: {
|
|
1186
1364
|
height: number;
|
|
1187
1365
|
width: number;
|
|
1188
1366
|
url: string;
|
|
1189
1367
|
} | undefined;
|
|
1368
|
+
website?: string | undefined;
|
|
1369
|
+
legal_name?: string | undefined;
|
|
1370
|
+
parent_organization?: string | undefined;
|
|
1371
|
+
headquarters?: string[] | undefined;
|
|
1372
|
+
countries_of_origin?: string[] | undefined;
|
|
1373
|
+
founding_year?: string | undefined;
|
|
1374
|
+
us_customer_support_tel?: string | undefined;
|
|
1375
|
+
us_customer_support_email?: string | undefined;
|
|
1376
|
+
us_customer_support_contact_url?: string | undefined;
|
|
1377
|
+
seam_api_guide?: string | undefined;
|
|
1190
1378
|
};
|
|
1191
1379
|
is_device_supported: boolean;
|
|
1192
1380
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
@@ -1287,6 +1475,18 @@ export declare const routes: {
|
|
|
1287
1475
|
message: string;
|
|
1288
1476
|
annotation_code: "subscription_required";
|
|
1289
1477
|
}>, "many">;
|
|
1478
|
+
website: z.ZodOptional<z.ZodString>;
|
|
1479
|
+
legal_name: z.ZodOptional<z.ZodString>;
|
|
1480
|
+
parent_organization: z.ZodOptional<z.ZodString>;
|
|
1481
|
+
headquarters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1482
|
+
countries_of_origin: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1483
|
+
founding_year: z.ZodOptional<z.ZodString>;
|
|
1484
|
+
us_customer_support_tel: z.ZodOptional<z.ZodString>;
|
|
1485
|
+
us_customer_support_email: z.ZodOptional<z.ZodString>;
|
|
1486
|
+
/** @deprecated */
|
|
1487
|
+
us_customer_support_contact_url: z.ZodOptional<z.ZodString>;
|
|
1488
|
+
seam_api_guide: z.ZodOptional<z.ZodString>;
|
|
1489
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1290
1490
|
}, "device_model_count">, "strip", z.ZodTypeAny, {
|
|
1291
1491
|
display_name: string;
|
|
1292
1492
|
manufacturer_id: string;
|
|
@@ -1298,11 +1498,22 @@ export declare const routes: {
|
|
|
1298
1498
|
message: string;
|
|
1299
1499
|
annotation_code: "subscription_required";
|
|
1300
1500
|
}[];
|
|
1501
|
+
description?: string | undefined;
|
|
1301
1502
|
logo?: {
|
|
1302
1503
|
height: number;
|
|
1303
1504
|
width: number;
|
|
1304
1505
|
url: string;
|
|
1305
1506
|
} | undefined;
|
|
1507
|
+
website?: string | undefined;
|
|
1508
|
+
legal_name?: string | undefined;
|
|
1509
|
+
parent_organization?: string | undefined;
|
|
1510
|
+
headquarters?: string[] | undefined;
|
|
1511
|
+
countries_of_origin?: string[] | undefined;
|
|
1512
|
+
founding_year?: string | undefined;
|
|
1513
|
+
us_customer_support_tel?: string | undefined;
|
|
1514
|
+
us_customer_support_email?: string | undefined;
|
|
1515
|
+
us_customer_support_contact_url?: string | undefined;
|
|
1516
|
+
seam_api_guide?: string | undefined;
|
|
1306
1517
|
}, {
|
|
1307
1518
|
display_name: string;
|
|
1308
1519
|
manufacturer_id: string;
|
|
@@ -1314,11 +1525,22 @@ export declare const routes: {
|
|
|
1314
1525
|
message: string;
|
|
1315
1526
|
annotation_code: "subscription_required";
|
|
1316
1527
|
}[];
|
|
1528
|
+
description?: string | undefined;
|
|
1317
1529
|
logo?: {
|
|
1318
1530
|
height: number;
|
|
1319
1531
|
width: number;
|
|
1320
1532
|
url: string;
|
|
1321
1533
|
} | undefined;
|
|
1534
|
+
website?: string | undefined;
|
|
1535
|
+
legal_name?: string | undefined;
|
|
1536
|
+
parent_organization?: string | undefined;
|
|
1537
|
+
headquarters?: string[] | undefined;
|
|
1538
|
+
countries_of_origin?: string[] | undefined;
|
|
1539
|
+
founding_year?: string | undefined;
|
|
1540
|
+
us_customer_support_tel?: string | undefined;
|
|
1541
|
+
us_customer_support_email?: string | undefined;
|
|
1542
|
+
us_customer_support_contact_url?: string | undefined;
|
|
1543
|
+
seam_api_guide?: string | undefined;
|
|
1322
1544
|
}>;
|
|
1323
1545
|
is_device_supported: z.ZodBoolean;
|
|
1324
1546
|
display_name: z.ZodString;
|
|
@@ -1433,11 +1655,22 @@ export declare const routes: {
|
|
|
1433
1655
|
message: string;
|
|
1434
1656
|
annotation_code: "subscription_required";
|
|
1435
1657
|
}[];
|
|
1658
|
+
description?: string | undefined;
|
|
1436
1659
|
logo?: {
|
|
1437
1660
|
height: number;
|
|
1438
1661
|
width: number;
|
|
1439
1662
|
url: string;
|
|
1440
1663
|
} | undefined;
|
|
1664
|
+
website?: string | undefined;
|
|
1665
|
+
legal_name?: string | undefined;
|
|
1666
|
+
parent_organization?: string | undefined;
|
|
1667
|
+
headquarters?: string[] | undefined;
|
|
1668
|
+
countries_of_origin?: string[] | undefined;
|
|
1669
|
+
founding_year?: string | undefined;
|
|
1670
|
+
us_customer_support_tel?: string | undefined;
|
|
1671
|
+
us_customer_support_email?: string | undefined;
|
|
1672
|
+
us_customer_support_contact_url?: string | undefined;
|
|
1673
|
+
seam_api_guide?: string | undefined;
|
|
1441
1674
|
};
|
|
1442
1675
|
is_device_supported: boolean;
|
|
1443
1676
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
@@ -1482,11 +1715,22 @@ export declare const routes: {
|
|
|
1482
1715
|
message: string;
|
|
1483
1716
|
annotation_code: "subscription_required";
|
|
1484
1717
|
}[];
|
|
1718
|
+
description?: string | undefined;
|
|
1485
1719
|
logo?: {
|
|
1486
1720
|
height: number;
|
|
1487
1721
|
width: number;
|
|
1488
1722
|
url: string;
|
|
1489
1723
|
} | undefined;
|
|
1724
|
+
website?: string | undefined;
|
|
1725
|
+
legal_name?: string | undefined;
|
|
1726
|
+
parent_organization?: string | undefined;
|
|
1727
|
+
headquarters?: string[] | undefined;
|
|
1728
|
+
countries_of_origin?: string[] | undefined;
|
|
1729
|
+
founding_year?: string | undefined;
|
|
1730
|
+
us_customer_support_tel?: string | undefined;
|
|
1731
|
+
us_customer_support_email?: string | undefined;
|
|
1732
|
+
us_customer_support_contact_url?: string | undefined;
|
|
1733
|
+
seam_api_guide?: string | undefined;
|
|
1490
1734
|
};
|
|
1491
1735
|
is_device_supported: boolean;
|
|
1492
1736
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
@@ -1772,11 +2016,22 @@ export declare const routes: {
|
|
|
1772
2016
|
message: string;
|
|
1773
2017
|
annotation_code: "subscription_required";
|
|
1774
2018
|
}[];
|
|
2019
|
+
description?: string | undefined;
|
|
1775
2020
|
logo?: {
|
|
1776
2021
|
height: number;
|
|
1777
2022
|
width: number;
|
|
1778
2023
|
url: string;
|
|
1779
2024
|
} | undefined;
|
|
2025
|
+
website?: string | undefined;
|
|
2026
|
+
legal_name?: string | undefined;
|
|
2027
|
+
parent_organization?: string | undefined;
|
|
2028
|
+
headquarters?: string[] | undefined;
|
|
2029
|
+
countries_of_origin?: string[] | undefined;
|
|
2030
|
+
founding_year?: string | undefined;
|
|
2031
|
+
us_customer_support_tel?: string | undefined;
|
|
2032
|
+
us_customer_support_email?: string | undefined;
|
|
2033
|
+
us_customer_support_contact_url?: string | undefined;
|
|
2034
|
+
seam_api_guide?: string | undefined;
|
|
1780
2035
|
};
|
|
1781
2036
|
is_device_supported: boolean;
|
|
1782
2037
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
@@ -1880,11 +2135,22 @@ export declare const routes: {
|
|
|
1880
2135
|
message: string;
|
|
1881
2136
|
annotation_code: "subscription_required";
|
|
1882
2137
|
}[];
|
|
2138
|
+
description?: string | undefined;
|
|
1883
2139
|
logo?: {
|
|
1884
2140
|
height: number;
|
|
1885
2141
|
width: number;
|
|
1886
2142
|
url: string;
|
|
1887
2143
|
} | undefined;
|
|
2144
|
+
website?: string | undefined;
|
|
2145
|
+
legal_name?: string | undefined;
|
|
2146
|
+
parent_organization?: string | undefined;
|
|
2147
|
+
headquarters?: string[] | undefined;
|
|
2148
|
+
countries_of_origin?: string[] | undefined;
|
|
2149
|
+
founding_year?: string | undefined;
|
|
2150
|
+
us_customer_support_tel?: string | undefined;
|
|
2151
|
+
us_customer_support_email?: string | undefined;
|
|
2152
|
+
us_customer_support_contact_url?: string | undefined;
|
|
2153
|
+
seam_api_guide?: string | undefined;
|
|
1888
2154
|
};
|
|
1889
2155
|
is_device_supported: boolean;
|
|
1890
2156
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
@@ -2016,6 +2282,18 @@ export declare const routes: {
|
|
|
2016
2282
|
message: string;
|
|
2017
2283
|
annotation_code: "subscription_required";
|
|
2018
2284
|
}>, "many">;
|
|
2285
|
+
website: z.ZodOptional<z.ZodString>;
|
|
2286
|
+
legal_name: z.ZodOptional<z.ZodString>;
|
|
2287
|
+
parent_organization: z.ZodOptional<z.ZodString>;
|
|
2288
|
+
headquarters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2289
|
+
countries_of_origin: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2290
|
+
founding_year: z.ZodOptional<z.ZodString>;
|
|
2291
|
+
us_customer_support_tel: z.ZodOptional<z.ZodString>;
|
|
2292
|
+
us_customer_support_email: z.ZodOptional<z.ZodString>;
|
|
2293
|
+
/** @deprecated */
|
|
2294
|
+
us_customer_support_contact_url: z.ZodOptional<z.ZodString>;
|
|
2295
|
+
seam_api_guide: z.ZodOptional<z.ZodString>;
|
|
2296
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2019
2297
|
}, "strip", z.ZodTypeAny, {
|
|
2020
2298
|
display_name: string;
|
|
2021
2299
|
manufacturer_id: string;
|
|
@@ -2033,6 +2311,17 @@ export declare const routes: {
|
|
|
2033
2311
|
width: number;
|
|
2034
2312
|
url: string;
|
|
2035
2313
|
} | undefined;
|
|
2314
|
+
website?: string | undefined;
|
|
2315
|
+
legal_name?: string | undefined;
|
|
2316
|
+
parent_organization?: string | undefined;
|
|
2317
|
+
headquarters?: string[] | undefined;
|
|
2318
|
+
countries_of_origin?: string[] | undefined;
|
|
2319
|
+
founding_year?: string | undefined;
|
|
2320
|
+
us_customer_support_tel?: string | undefined;
|
|
2321
|
+
us_customer_support_email?: string | undefined;
|
|
2322
|
+
us_customer_support_contact_url?: string | undefined;
|
|
2323
|
+
seam_api_guide?: string | undefined;
|
|
2324
|
+
description?: string | undefined;
|
|
2036
2325
|
}, {
|
|
2037
2326
|
display_name: string;
|
|
2038
2327
|
manufacturer_id: string;
|
|
@@ -2050,6 +2339,17 @@ export declare const routes: {
|
|
|
2050
2339
|
width: number;
|
|
2051
2340
|
url: string;
|
|
2052
2341
|
} | undefined;
|
|
2342
|
+
website?: string | undefined;
|
|
2343
|
+
legal_name?: string | undefined;
|
|
2344
|
+
parent_organization?: string | undefined;
|
|
2345
|
+
headquarters?: string[] | undefined;
|
|
2346
|
+
countries_of_origin?: string[] | undefined;
|
|
2347
|
+
founding_year?: string | undefined;
|
|
2348
|
+
us_customer_support_tel?: string | undefined;
|
|
2349
|
+
us_customer_support_email?: string | undefined;
|
|
2350
|
+
us_customer_support_contact_url?: string | undefined;
|
|
2351
|
+
seam_api_guide?: string | undefined;
|
|
2352
|
+
description?: string | undefined;
|
|
2053
2353
|
}>;
|
|
2054
2354
|
}, "strip", z.ZodTypeAny, {
|
|
2055
2355
|
manufacturer: {
|
|
@@ -2069,6 +2369,17 @@ export declare const routes: {
|
|
|
2069
2369
|
width: number;
|
|
2070
2370
|
url: string;
|
|
2071
2371
|
} | undefined;
|
|
2372
|
+
website?: string | undefined;
|
|
2373
|
+
legal_name?: string | undefined;
|
|
2374
|
+
parent_organization?: string | undefined;
|
|
2375
|
+
headquarters?: string[] | undefined;
|
|
2376
|
+
countries_of_origin?: string[] | undefined;
|
|
2377
|
+
founding_year?: string | undefined;
|
|
2378
|
+
us_customer_support_tel?: string | undefined;
|
|
2379
|
+
us_customer_support_email?: string | undefined;
|
|
2380
|
+
us_customer_support_contact_url?: string | undefined;
|
|
2381
|
+
seam_api_guide?: string | undefined;
|
|
2382
|
+
description?: string | undefined;
|
|
2072
2383
|
};
|
|
2073
2384
|
}, {
|
|
2074
2385
|
manufacturer: {
|
|
@@ -2088,6 +2399,17 @@ export declare const routes: {
|
|
|
2088
2399
|
width: number;
|
|
2089
2400
|
url: string;
|
|
2090
2401
|
} | undefined;
|
|
2402
|
+
website?: string | undefined;
|
|
2403
|
+
legal_name?: string | undefined;
|
|
2404
|
+
parent_organization?: string | undefined;
|
|
2405
|
+
headquarters?: string[] | undefined;
|
|
2406
|
+
countries_of_origin?: string[] | undefined;
|
|
2407
|
+
founding_year?: string | undefined;
|
|
2408
|
+
us_customer_support_tel?: string | undefined;
|
|
2409
|
+
us_customer_support_email?: string | undefined;
|
|
2410
|
+
us_customer_support_contact_url?: string | undefined;
|
|
2411
|
+
seam_api_guide?: string | undefined;
|
|
2412
|
+
description?: string | undefined;
|
|
2091
2413
|
};
|
|
2092
2414
|
}>;
|
|
2093
2415
|
};
|
|
@@ -2140,6 +2462,18 @@ export declare const routes: {
|
|
|
2140
2462
|
message: string;
|
|
2141
2463
|
annotation_code: "subscription_required";
|
|
2142
2464
|
}>, "many">;
|
|
2465
|
+
website: z.ZodOptional<z.ZodString>;
|
|
2466
|
+
legal_name: z.ZodOptional<z.ZodString>;
|
|
2467
|
+
parent_organization: z.ZodOptional<z.ZodString>;
|
|
2468
|
+
headquarters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2469
|
+
countries_of_origin: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2470
|
+
founding_year: z.ZodOptional<z.ZodString>;
|
|
2471
|
+
us_customer_support_tel: z.ZodOptional<z.ZodString>;
|
|
2472
|
+
us_customer_support_email: z.ZodOptional<z.ZodString>;
|
|
2473
|
+
/** @deprecated */
|
|
2474
|
+
us_customer_support_contact_url: z.ZodOptional<z.ZodString>;
|
|
2475
|
+
seam_api_guide: z.ZodOptional<z.ZodString>;
|
|
2476
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2143
2477
|
}, "strip", z.ZodTypeAny, {
|
|
2144
2478
|
display_name: string;
|
|
2145
2479
|
manufacturer_id: string;
|
|
@@ -2157,6 +2491,17 @@ export declare const routes: {
|
|
|
2157
2491
|
width: number;
|
|
2158
2492
|
url: string;
|
|
2159
2493
|
} | undefined;
|
|
2494
|
+
website?: string | undefined;
|
|
2495
|
+
legal_name?: string | undefined;
|
|
2496
|
+
parent_organization?: string | undefined;
|
|
2497
|
+
headquarters?: string[] | undefined;
|
|
2498
|
+
countries_of_origin?: string[] | undefined;
|
|
2499
|
+
founding_year?: string | undefined;
|
|
2500
|
+
us_customer_support_tel?: string | undefined;
|
|
2501
|
+
us_customer_support_email?: string | undefined;
|
|
2502
|
+
us_customer_support_contact_url?: string | undefined;
|
|
2503
|
+
seam_api_guide?: string | undefined;
|
|
2504
|
+
description?: string | undefined;
|
|
2160
2505
|
}, {
|
|
2161
2506
|
display_name: string;
|
|
2162
2507
|
manufacturer_id: string;
|
|
@@ -2174,6 +2519,17 @@ export declare const routes: {
|
|
|
2174
2519
|
width: number;
|
|
2175
2520
|
url: string;
|
|
2176
2521
|
} | undefined;
|
|
2522
|
+
website?: string | undefined;
|
|
2523
|
+
legal_name?: string | undefined;
|
|
2524
|
+
parent_organization?: string | undefined;
|
|
2525
|
+
headquarters?: string[] | undefined;
|
|
2526
|
+
countries_of_origin?: string[] | undefined;
|
|
2527
|
+
founding_year?: string | undefined;
|
|
2528
|
+
us_customer_support_tel?: string | undefined;
|
|
2529
|
+
us_customer_support_email?: string | undefined;
|
|
2530
|
+
us_customer_support_contact_url?: string | undefined;
|
|
2531
|
+
seam_api_guide?: string | undefined;
|
|
2532
|
+
description?: string | undefined;
|
|
2177
2533
|
}>, "many">;
|
|
2178
2534
|
}, "strip", z.ZodTypeAny, {
|
|
2179
2535
|
manufacturers: {
|
|
@@ -2193,6 +2549,17 @@ export declare const routes: {
|
|
|
2193
2549
|
width: number;
|
|
2194
2550
|
url: string;
|
|
2195
2551
|
} | undefined;
|
|
2552
|
+
website?: string | undefined;
|
|
2553
|
+
legal_name?: string | undefined;
|
|
2554
|
+
parent_organization?: string | undefined;
|
|
2555
|
+
headquarters?: string[] | undefined;
|
|
2556
|
+
countries_of_origin?: string[] | undefined;
|
|
2557
|
+
founding_year?: string | undefined;
|
|
2558
|
+
us_customer_support_tel?: string | undefined;
|
|
2559
|
+
us_customer_support_email?: string | undefined;
|
|
2560
|
+
us_customer_support_contact_url?: string | undefined;
|
|
2561
|
+
seam_api_guide?: string | undefined;
|
|
2562
|
+
description?: string | undefined;
|
|
2196
2563
|
}[];
|
|
2197
2564
|
}, {
|
|
2198
2565
|
manufacturers: {
|
|
@@ -2212,6 +2579,17 @@ export declare const routes: {
|
|
|
2212
2579
|
width: number;
|
|
2213
2580
|
url: string;
|
|
2214
2581
|
} | undefined;
|
|
2582
|
+
website?: string | undefined;
|
|
2583
|
+
legal_name?: string | undefined;
|
|
2584
|
+
parent_organization?: string | undefined;
|
|
2585
|
+
headquarters?: string[] | undefined;
|
|
2586
|
+
countries_of_origin?: string[] | undefined;
|
|
2587
|
+
founding_year?: string | undefined;
|
|
2588
|
+
us_customer_support_tel?: string | undefined;
|
|
2589
|
+
us_customer_support_email?: string | undefined;
|
|
2590
|
+
us_customer_support_contact_url?: string | undefined;
|
|
2591
|
+
seam_api_guide?: string | undefined;
|
|
2592
|
+
description?: string | undefined;
|
|
2215
2593
|
}[];
|
|
2216
2594
|
}>;
|
|
2217
2595
|
};
|