@seamapi/types 1.1003.0 → 1.1005.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.
Files changed (52) hide show
  1. package/lib/seam/connect/models/access-grants/access-method.d.ts +6 -0
  2. package/lib/seam/connect/models/access-grants/access-method.js +3 -0
  3. package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
  4. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +5 -0
  5. package/lib/seam/connect/models/action-attempts/assign-credential.d.ts +5 -0
  6. package/lib/seam/connect/openapi.js +15 -0
  7. package/lib/seam/connect/openapi.js.map +1 -1
  8. package/lib/seam/connect/route-types.d.ts +82 -0
  9. package/package.json +4 -11
  10. package/src/lib/seam/connect/models/access-grants/access-method.ts +5 -0
  11. package/src/lib/seam/connect/openapi.ts +18 -0
  12. package/src/lib/seam/connect/route-types.ts +82 -0
  13. package/devicedb.d.ts +0 -1
  14. package/devicedb.js +0 -2
  15. package/devicedb.js.map +0 -1
  16. package/lib/seam/devicedb/index.d.ts +0 -5
  17. package/lib/seam/devicedb/index.js +0 -5
  18. package/lib/seam/devicedb/index.js.map +0 -1
  19. package/lib/seam/devicedb/models/device-capability.d.ts +0 -57
  20. package/lib/seam/devicedb/models/device-capability.js +0 -27
  21. package/lib/seam/devicedb/models/device-capability.js.map +0 -1
  22. package/lib/seam/devicedb/models/device-model.d.ts +0 -1247
  23. package/lib/seam/devicedb/models/device-model.js +0 -136
  24. package/lib/seam/devicedb/models/device-model.js.map +0 -1
  25. package/lib/seam/devicedb/models/hardware.d.ts +0 -8
  26. package/lib/seam/devicedb/models/hardware.js +0 -7
  27. package/lib/seam/devicedb/models/hardware.js.map +0 -1
  28. package/lib/seam/devicedb/models/image-reference.d.ts +0 -15
  29. package/lib/seam/devicedb/models/image-reference.js +0 -7
  30. package/lib/seam/devicedb/models/image-reference.js.map +0 -1
  31. package/lib/seam/devicedb/models/index.d.ts +0 -4
  32. package/lib/seam/devicedb/models/index.js +0 -5
  33. package/lib/seam/devicedb/models/index.js.map +0 -1
  34. package/lib/seam/devicedb/models/manufacturer.d.ts +0 -117
  35. package/lib/seam/devicedb/models/manufacturer.js +0 -38
  36. package/lib/seam/devicedb/models/manufacturer.js.map +0 -1
  37. package/lib/seam/devicedb/route-specs.d.ts +0 -2052
  38. package/lib/seam/devicedb/route-specs.js +0 -61
  39. package/lib/seam/devicedb/route-specs.js.map +0 -1
  40. package/lib/seam/devicedb/route-types.d.ts +0 -364
  41. package/lib/seam/devicedb/route-types.js +0 -2
  42. package/lib/seam/devicedb/route-types.js.map +0 -1
  43. package/src/devicedb.ts +0 -1
  44. package/src/lib/seam/devicedb/index.ts +0 -16
  45. package/src/lib/seam/devicedb/models/device-capability.ts +0 -32
  46. package/src/lib/seam/devicedb/models/device-model.ts +0 -166
  47. package/src/lib/seam/devicedb/models/hardware.ts +0 -7
  48. package/src/lib/seam/devicedb/models/image-reference.ts +0 -9
  49. package/src/lib/seam/devicedb/models/index.ts +0 -4
  50. package/src/lib/seam/devicedb/models/manufacturer.ts +0 -54
  51. package/src/lib/seam/devicedb/route-specs.ts +0 -63
  52. package/src/lib/seam/devicedb/route-types.ts +0 -450
@@ -1,2052 +0,0 @@
1
- import { z } from 'zod';
2
- export declare const routes: {
3
- readonly '/api/v1/device_models/get': {
4
- readonly auth: "publishable_key";
5
- readonly methods: readonly ["GET", "OPTIONS"];
6
- readonly queryParams: z.ZodObject<{
7
- device_model_id: z.ZodString;
8
- }, "strip", z.ZodTypeAny, {
9
- device_model_id: string;
10
- }, {
11
- device_model_id: string;
12
- }>;
13
- readonly jsonResponse: z.ZodObject<{
14
- device_model: z.ZodIntersection<z.ZodObject<{
15
- device_model_id: z.ZodString;
16
- manufacturer: z.ZodObject<Omit<{
17
- manufacturer_id: z.ZodString;
18
- display_name: z.ZodString;
19
- logo: z.ZodOptional<z.ZodObject<{
20
- url: z.ZodString;
21
- width: z.ZodNumber;
22
- height: z.ZodNumber;
23
- }, "strip", z.ZodTypeAny, {
24
- url: string;
25
- width: number;
26
- height: number;
27
- }, {
28
- url: string;
29
- width: number;
30
- height: number;
31
- }>>;
32
- integration: z.ZodEnum<["stable", "beta", "planned", "unsupported", "inquire"]>;
33
- integration_support_level: z.ZodEnum<["stable", "beta", "planned", "unsupported", "inquire"]>;
34
- is_connect_webview_supported: z.ZodBoolean;
35
- requires_seam_support_to_add_account: z.ZodBoolean;
36
- device_model_count: z.ZodNumber;
37
- annotations: z.ZodArray<z.ZodObject<{
38
- annotation_code: z.ZodEnum<["subscription_required"]>;
39
- message: z.ZodString;
40
- }, "strip", z.ZodTypeAny, {
41
- message: string;
42
- annotation_code: "subscription_required";
43
- }, {
44
- message: string;
45
- annotation_code: "subscription_required";
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
- us_customer_support_contact_url: z.ZodOptional<z.ZodString>;
56
- seam_api_guide: z.ZodOptional<z.ZodString>;
57
- description: z.ZodOptional<z.ZodString>;
58
- }, "device_model_count">, "strip", z.ZodTypeAny, {
59
- display_name: string;
60
- manufacturer_id: string;
61
- integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
62
- integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
63
- is_connect_webview_supported: boolean;
64
- requires_seam_support_to_add_account: boolean;
65
- annotations: {
66
- message: string;
67
- annotation_code: "subscription_required";
68
- }[];
69
- description?: string | undefined;
70
- logo?: {
71
- url: string;
72
- width: number;
73
- height: number;
74
- } | undefined;
75
- website?: string | undefined;
76
- legal_name?: string | undefined;
77
- parent_organization?: string | undefined;
78
- headquarters?: string[] | undefined;
79
- countries_of_origin?: string[] | undefined;
80
- founding_year?: string | undefined;
81
- us_customer_support_tel?: string | undefined;
82
- us_customer_support_email?: string | undefined;
83
- us_customer_support_contact_url?: string | undefined;
84
- seam_api_guide?: string | undefined;
85
- }, {
86
- display_name: string;
87
- manufacturer_id: string;
88
- integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
89
- integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
90
- is_connect_webview_supported: boolean;
91
- requires_seam_support_to_add_account: boolean;
92
- annotations: {
93
- message: string;
94
- annotation_code: "subscription_required";
95
- }[];
96
- description?: string | undefined;
97
- logo?: {
98
- url: string;
99
- width: number;
100
- height: number;
101
- } | undefined;
102
- website?: string | undefined;
103
- legal_name?: string | undefined;
104
- parent_organization?: string | undefined;
105
- headquarters?: string[] | undefined;
106
- countries_of_origin?: string[] | undefined;
107
- founding_year?: string | undefined;
108
- us_customer_support_tel?: string | undefined;
109
- us_customer_support_email?: string | undefined;
110
- us_customer_support_contact_url?: string | undefined;
111
- seam_api_guide?: string | undefined;
112
- }>;
113
- is_device_supported: z.ZodBoolean;
114
- display_name: z.ZodString;
115
- description: z.ZodString;
116
- product_url: z.ZodOptional<z.ZodString>;
117
- main_connection_type: z.ZodEnum<["wifi", "zwave", "zigbee", "unknown"]>;
118
- hardware: z.ZodObject<{
119
- has_physical_key: z.ZodOptional<z.ZodBoolean>;
120
- }, "strip", z.ZodTypeAny, {
121
- has_physical_key?: boolean | undefined;
122
- }, {
123
- has_physical_key?: boolean | undefined;
124
- }>;
125
- aesthetic_variants: z.ZodArray<z.ZodObject<{
126
- slug: z.ZodString;
127
- display_name: z.ZodString;
128
- primary_color_hex: z.ZodOptional<z.ZodString>;
129
- manufacturer_sku: z.ZodOptional<z.ZodString>;
130
- front_image: z.ZodOptional<z.ZodObject<{
131
- url: z.ZodString;
132
- width: z.ZodNumber;
133
- height: z.ZodNumber;
134
- }, "strip", z.ZodTypeAny, {
135
- url: string;
136
- width: number;
137
- height: number;
138
- }, {
139
- url: string;
140
- width: number;
141
- height: number;
142
- }>>;
143
- back_image: z.ZodOptional<z.ZodObject<{
144
- url: z.ZodString;
145
- width: z.ZodNumber;
146
- height: z.ZodNumber;
147
- }, "strip", z.ZodTypeAny, {
148
- url: string;
149
- width: number;
150
- height: number;
151
- }, {
152
- url: string;
153
- width: number;
154
- height: number;
155
- }>>;
156
- images: z.ZodArray<z.ZodObject<{
157
- url: z.ZodString;
158
- width: z.ZodNumber;
159
- height: z.ZodNumber;
160
- }, "strip", z.ZodTypeAny, {
161
- url: string;
162
- width: number;
163
- height: number;
164
- }, {
165
- url: string;
166
- width: number;
167
- height: number;
168
- }>, "many">;
169
- }, "strip", z.ZodTypeAny, {
170
- display_name: string;
171
- slug: string;
172
- images: {
173
- url: string;
174
- width: number;
175
- height: number;
176
- }[];
177
- primary_color_hex?: string | undefined;
178
- manufacturer_sku?: string | undefined;
179
- front_image?: {
180
- url: string;
181
- width: number;
182
- height: number;
183
- } | undefined;
184
- back_image?: {
185
- url: string;
186
- width: number;
187
- height: number;
188
- } | undefined;
189
- }, {
190
- display_name: string;
191
- slug: string;
192
- images: {
193
- url: string;
194
- width: number;
195
- height: number;
196
- }[];
197
- primary_color_hex?: string | undefined;
198
- manufacturer_sku?: string | undefined;
199
- front_image?: {
200
- url: string;
201
- width: number;
202
- height: number;
203
- } | undefined;
204
- back_image?: {
205
- url: string;
206
- width: number;
207
- height: number;
208
- } | undefined;
209
- }>, "many">;
210
- power_sources: z.ZodArray<z.ZodEnum<["battery", "hardwired", "mechanical_harvesting", "wireless", "ethernet"]>, "many">;
211
- }, "strip", z.ZodTypeAny, {
212
- display_name: string;
213
- description: string;
214
- manufacturer: {
215
- display_name: string;
216
- manufacturer_id: string;
217
- integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
218
- integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
219
- is_connect_webview_supported: boolean;
220
- requires_seam_support_to_add_account: boolean;
221
- annotations: {
222
- message: string;
223
- annotation_code: "subscription_required";
224
- }[];
225
- description?: string | undefined;
226
- logo?: {
227
- url: string;
228
- width: number;
229
- height: number;
230
- } | undefined;
231
- website?: string | undefined;
232
- legal_name?: string | undefined;
233
- parent_organization?: string | undefined;
234
- headquarters?: string[] | undefined;
235
- countries_of_origin?: string[] | undefined;
236
- founding_year?: string | undefined;
237
- us_customer_support_tel?: string | undefined;
238
- us_customer_support_email?: string | undefined;
239
- us_customer_support_contact_url?: string | undefined;
240
- seam_api_guide?: string | undefined;
241
- };
242
- hardware: {
243
- has_physical_key?: boolean | undefined;
244
- };
245
- device_model_id: string;
246
- is_device_supported: boolean;
247
- main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
248
- aesthetic_variants: {
249
- display_name: string;
250
- slug: string;
251
- images: {
252
- url: string;
253
- width: number;
254
- height: number;
255
- }[];
256
- primary_color_hex?: string | undefined;
257
- manufacturer_sku?: string | undefined;
258
- front_image?: {
259
- url: string;
260
- width: number;
261
- height: number;
262
- } | undefined;
263
- back_image?: {
264
- url: string;
265
- width: number;
266
- height: number;
267
- } | undefined;
268
- }[];
269
- power_sources: ("battery" | "hardwired" | "mechanical_harvesting" | "wireless" | "ethernet")[];
270
- product_url?: string | undefined;
271
- }, {
272
- display_name: string;
273
- description: string;
274
- manufacturer: {
275
- display_name: string;
276
- manufacturer_id: string;
277
- integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
278
- integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
279
- is_connect_webview_supported: boolean;
280
- requires_seam_support_to_add_account: boolean;
281
- annotations: {
282
- message: string;
283
- annotation_code: "subscription_required";
284
- }[];
285
- description?: string | undefined;
286
- logo?: {
287
- url: string;
288
- width: number;
289
- height: number;
290
- } | undefined;
291
- website?: string | undefined;
292
- legal_name?: string | undefined;
293
- parent_organization?: string | undefined;
294
- headquarters?: string[] | undefined;
295
- countries_of_origin?: string[] | undefined;
296
- founding_year?: string | undefined;
297
- us_customer_support_tel?: string | undefined;
298
- us_customer_support_email?: string | undefined;
299
- us_customer_support_contact_url?: string | undefined;
300
- seam_api_guide?: string | undefined;
301
- };
302
- hardware: {
303
- has_physical_key?: boolean | undefined;
304
- };
305
- device_model_id: string;
306
- is_device_supported: boolean;
307
- main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
308
- aesthetic_variants: {
309
- display_name: string;
310
- slug: string;
311
- images: {
312
- url: string;
313
- width: number;
314
- height: number;
315
- }[];
316
- primary_color_hex?: string | undefined;
317
- manufacturer_sku?: string | undefined;
318
- front_image?: {
319
- url: string;
320
- width: number;
321
- height: number;
322
- } | undefined;
323
- back_image?: {
324
- url: string;
325
- width: number;
326
- height: number;
327
- } | undefined;
328
- }[];
329
- power_sources: ("battery" | "hardwired" | "mechanical_harvesting" | "wireless" | "ethernet")[];
330
- product_url?: string | undefined;
331
- }>, z.ZodDiscriminatedUnion<"main_category", [z.ZodObject<{
332
- main_category: z.ZodLiteral<"smartlock">;
333
- physical_properties: z.ZodObject<{
334
- lock_type: z.ZodEnum<["deadbolt", "lever", "mortise", "lockbox", "cylinder", "padlock", "locker", "unknown"]>;
335
- has_physical_key: z.ZodBoolean;
336
- has_camera: z.ZodBoolean;
337
- }, "strip", z.ZodTypeAny, {
338
- lock_type: "unknown" | "deadbolt" | "lever" | "mortise" | "lockbox" | "cylinder" | "padlock" | "locker";
339
- has_physical_key: boolean;
340
- has_camera: boolean;
341
- }, {
342
- lock_type: "unknown" | "deadbolt" | "lever" | "mortise" | "lockbox" | "cylinder" | "padlock" | "locker";
343
- has_physical_key: boolean;
344
- has_camera: boolean;
345
- }>;
346
- software_features: z.ZodObject<{
347
- can_remotely_unlock: z.ZodBoolean;
348
- can_program_access_codes: z.ZodBoolean;
349
- can_program_access_schedules: z.ZodBoolean;
350
- can_program_access_codes_offline: z.ZodBoolean;
351
- }, "strip", z.ZodTypeAny, {
352
- can_remotely_unlock: boolean;
353
- can_program_access_codes: boolean;
354
- can_program_access_schedules: boolean;
355
- can_program_access_codes_offline: boolean;
356
- }, {
357
- can_remotely_unlock: boolean;
358
- can_program_access_codes: boolean;
359
- can_program_access_schedules: boolean;
360
- can_program_access_codes_offline: boolean;
361
- }>;
362
- } & Pick<{
363
- can_remotely_unlock: z.ZodOptional<z.ZodLiteral<true>>;
364
- can_remotely_lock: z.ZodOptional<z.ZodLiteral<true>>;
365
- can_program_offline_access_codes: z.ZodOptional<z.ZodLiteral<true>>;
366
- can_program_online_access_codes: z.ZodOptional<z.ZodLiteral<true>>;
367
- can_hvac_heat: z.ZodOptional<z.ZodLiteral<true>>;
368
- can_hvac_cool: z.ZodOptional<z.ZodLiteral<true>>;
369
- can_hvac_heat_cool: z.ZodOptional<z.ZodLiteral<true>>;
370
- can_turn_off_hvac: z.ZodOptional<z.ZodLiteral<true>>;
371
- }, "can_remotely_unlock" | "can_remotely_lock" | "can_program_offline_access_codes" | "can_program_online_access_codes">, "strip", z.ZodTypeAny, {
372
- main_category: "smartlock";
373
- physical_properties: {
374
- lock_type: "unknown" | "deadbolt" | "lever" | "mortise" | "lockbox" | "cylinder" | "padlock" | "locker";
375
- has_physical_key: boolean;
376
- has_camera: boolean;
377
- };
378
- software_features: {
379
- can_remotely_unlock: boolean;
380
- can_program_access_codes: boolean;
381
- can_program_access_schedules: boolean;
382
- can_program_access_codes_offline: boolean;
383
- };
384
- can_remotely_unlock?: true | undefined;
385
- can_remotely_lock?: true | undefined;
386
- can_program_offline_access_codes?: true | undefined;
387
- can_program_online_access_codes?: true | undefined;
388
- }, {
389
- main_category: "smartlock";
390
- physical_properties: {
391
- lock_type: "unknown" | "deadbolt" | "lever" | "mortise" | "lockbox" | "cylinder" | "padlock" | "locker";
392
- has_physical_key: boolean;
393
- has_camera: boolean;
394
- };
395
- software_features: {
396
- can_remotely_unlock: boolean;
397
- can_program_access_codes: boolean;
398
- can_program_access_schedules: boolean;
399
- can_program_access_codes_offline: boolean;
400
- };
401
- can_remotely_unlock?: true | undefined;
402
- can_remotely_lock?: true | undefined;
403
- can_program_offline_access_codes?: true | undefined;
404
- can_program_online_access_codes?: true | undefined;
405
- }>, z.ZodObject<{
406
- main_category: z.ZodLiteral<"sensor">;
407
- physical_properties: z.ZodObject<{
408
- has_noise_sensor: z.ZodBoolean;
409
- has_humidity_sensor: z.ZodBoolean;
410
- has_temperature_sensor: z.ZodBoolean;
411
- has_occupancy_detection: z.ZodBoolean;
412
- }, "strip", z.ZodTypeAny, {
413
- has_noise_sensor: boolean;
414
- has_humidity_sensor: boolean;
415
- has_temperature_sensor: boolean;
416
- has_occupancy_detection: boolean;
417
- }, {
418
- has_noise_sensor: boolean;
419
- has_humidity_sensor: boolean;
420
- has_temperature_sensor: boolean;
421
- has_occupancy_detection: boolean;
422
- }>;
423
- }, "strip", z.ZodTypeAny, {
424
- main_category: "sensor";
425
- physical_properties: {
426
- has_noise_sensor: boolean;
427
- has_humidity_sensor: boolean;
428
- has_temperature_sensor: boolean;
429
- has_occupancy_detection: boolean;
430
- };
431
- }, {
432
- main_category: "sensor";
433
- physical_properties: {
434
- has_noise_sensor: boolean;
435
- has_humidity_sensor: boolean;
436
- has_temperature_sensor: boolean;
437
- has_occupancy_detection: boolean;
438
- };
439
- }>, z.ZodObject<{
440
- main_category: z.ZodLiteral<"thermostat">;
441
- physical_properties: z.ZodObject<{
442
- available_modes: z.ZodArray<z.ZodEnum<["heat", "cool", "fan", "eco"]>, "many">;
443
- is_heat_pump_compatible: z.ZodBoolean;
444
- has_occupancy_detection: z.ZodBoolean;
445
- supports_demand_response: z.ZodBoolean;
446
- has_humidity_sensor: z.ZodBoolean;
447
- has_temperature_sensor: z.ZodBoolean;
448
- supports_emergency_heating_mode: z.ZodBoolean;
449
- }, "strip", z.ZodTypeAny, {
450
- has_humidity_sensor: boolean;
451
- has_temperature_sensor: boolean;
452
- has_occupancy_detection: boolean;
453
- available_modes: ("heat" | "cool" | "eco" | "fan")[];
454
- is_heat_pump_compatible: boolean;
455
- supports_demand_response: boolean;
456
- supports_emergency_heating_mode: boolean;
457
- }, {
458
- has_humidity_sensor: boolean;
459
- has_temperature_sensor: boolean;
460
- has_occupancy_detection: boolean;
461
- available_modes: ("heat" | "cool" | "eco" | "fan")[];
462
- is_heat_pump_compatible: boolean;
463
- supports_demand_response: boolean;
464
- supports_emergency_heating_mode: boolean;
465
- }>;
466
- software_features: z.ZodObject<{
467
- can_program_climate_schedules: z.ZodBoolean;
468
- }, "strip", z.ZodTypeAny, {
469
- can_program_climate_schedules: boolean;
470
- }, {
471
- can_program_climate_schedules: boolean;
472
- }>;
473
- } & Pick<{
474
- can_remotely_unlock: z.ZodOptional<z.ZodLiteral<true>>;
475
- can_remotely_lock: z.ZodOptional<z.ZodLiteral<true>>;
476
- can_program_offline_access_codes: z.ZodOptional<z.ZodLiteral<true>>;
477
- can_program_online_access_codes: z.ZodOptional<z.ZodLiteral<true>>;
478
- can_hvac_heat: z.ZodOptional<z.ZodLiteral<true>>;
479
- can_hvac_cool: z.ZodOptional<z.ZodLiteral<true>>;
480
- can_hvac_heat_cool: z.ZodOptional<z.ZodLiteral<true>>;
481
- can_turn_off_hvac: z.ZodOptional<z.ZodLiteral<true>>;
482
- }, "can_hvac_heat" | "can_hvac_cool" | "can_hvac_heat_cool" | "can_turn_off_hvac">, "strip", z.ZodTypeAny, {
483
- main_category: "thermostat";
484
- physical_properties: {
485
- has_humidity_sensor: boolean;
486
- has_temperature_sensor: boolean;
487
- has_occupancy_detection: boolean;
488
- available_modes: ("heat" | "cool" | "eco" | "fan")[];
489
- is_heat_pump_compatible: boolean;
490
- supports_demand_response: boolean;
491
- supports_emergency_heating_mode: boolean;
492
- };
493
- software_features: {
494
- can_program_climate_schedules: boolean;
495
- };
496
- can_hvac_heat?: true | undefined;
497
- can_hvac_cool?: true | undefined;
498
- can_hvac_heat_cool?: true | undefined;
499
- can_turn_off_hvac?: true | undefined;
500
- }, {
501
- main_category: "thermostat";
502
- physical_properties: {
503
- has_humidity_sensor: boolean;
504
- has_temperature_sensor: boolean;
505
- has_occupancy_detection: boolean;
506
- available_modes: ("heat" | "cool" | "eco" | "fan")[];
507
- is_heat_pump_compatible: boolean;
508
- supports_demand_response: boolean;
509
- supports_emergency_heating_mode: boolean;
510
- };
511
- software_features: {
512
- can_program_climate_schedules: boolean;
513
- };
514
- can_hvac_heat?: true | undefined;
515
- can_hvac_cool?: true | undefined;
516
- can_hvac_heat_cool?: true | undefined;
517
- can_turn_off_hvac?: true | undefined;
518
- }>, z.ZodObject<{
519
- main_category: z.ZodLiteral<"relay">;
520
- }, "strip", z.ZodTypeAny, {
521
- main_category: "relay";
522
- }, {
523
- main_category: "relay";
524
- }>, z.ZodObject<{
525
- main_category: z.ZodLiteral<"intercom">;
526
- physical_properties: z.ZodObject<{
527
- has_camera: z.ZodBoolean;
528
- has_rfid_reader: z.ZodDefault<z.ZodBoolean>;
529
- has_nfc_reader: z.ZodDefault<z.ZodBoolean>;
530
- has_wiegand_interface: z.ZodDefault<z.ZodBoolean>;
531
- }, "strip", z.ZodTypeAny, {
532
- has_camera: boolean;
533
- has_rfid_reader: boolean;
534
- has_nfc_reader: boolean;
535
- has_wiegand_interface: boolean;
536
- }, {
537
- has_camera: boolean;
538
- has_rfid_reader?: boolean | undefined;
539
- has_nfc_reader?: boolean | undefined;
540
- has_wiegand_interface?: boolean | undefined;
541
- }>;
542
- software_features: z.ZodObject<{
543
- can_remotely_unlock: z.ZodBoolean;
544
- can_program_access_codes: z.ZodBoolean;
545
- can_unlock_with_face_recognition: z.ZodDefault<z.ZodBoolean>;
546
- supports_onvif: z.ZodDefault<z.ZodBoolean>;
547
- }, "strip", z.ZodTypeAny, {
548
- can_remotely_unlock: boolean;
549
- can_program_access_codes: boolean;
550
- can_unlock_with_face_recognition: boolean;
551
- supports_onvif: boolean;
552
- }, {
553
- can_remotely_unlock: boolean;
554
- can_program_access_codes: boolean;
555
- can_unlock_with_face_recognition?: boolean | undefined;
556
- supports_onvif?: boolean | undefined;
557
- }>;
558
- }, "strip", z.ZodTypeAny, {
559
- main_category: "intercom";
560
- physical_properties: {
561
- has_camera: boolean;
562
- has_rfid_reader: boolean;
563
- has_nfc_reader: boolean;
564
- has_wiegand_interface: boolean;
565
- };
566
- software_features: {
567
- can_remotely_unlock: boolean;
568
- can_program_access_codes: boolean;
569
- can_unlock_with_face_recognition: boolean;
570
- supports_onvif: boolean;
571
- };
572
- }, {
573
- main_category: "intercom";
574
- physical_properties: {
575
- has_camera: boolean;
576
- has_rfid_reader?: boolean | undefined;
577
- has_nfc_reader?: boolean | undefined;
578
- has_wiegand_interface?: boolean | undefined;
579
- };
580
- software_features: {
581
- can_remotely_unlock: boolean;
582
- can_program_access_codes: boolean;
583
- can_unlock_with_face_recognition?: boolean | undefined;
584
- supports_onvif?: boolean | undefined;
585
- };
586
- }>, z.ZodObject<{
587
- main_category: z.ZodLiteral<"accessory">;
588
- }, "strip", z.ZodTypeAny, {
589
- main_category: "accessory";
590
- }, {
591
- main_category: "accessory";
592
- }>]>>;
593
- }, "strip", z.ZodTypeAny, {
594
- device_model: {
595
- display_name: string;
596
- description: string;
597
- manufacturer: {
598
- display_name: string;
599
- manufacturer_id: string;
600
- integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
601
- integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
602
- is_connect_webview_supported: boolean;
603
- requires_seam_support_to_add_account: boolean;
604
- annotations: {
605
- message: string;
606
- annotation_code: "subscription_required";
607
- }[];
608
- description?: string | undefined;
609
- logo?: {
610
- url: string;
611
- width: number;
612
- height: number;
613
- } | undefined;
614
- website?: string | undefined;
615
- legal_name?: string | undefined;
616
- parent_organization?: string | undefined;
617
- headquarters?: string[] | undefined;
618
- countries_of_origin?: string[] | undefined;
619
- founding_year?: string | undefined;
620
- us_customer_support_tel?: string | undefined;
621
- us_customer_support_email?: string | undefined;
622
- us_customer_support_contact_url?: string | undefined;
623
- seam_api_guide?: string | undefined;
624
- };
625
- hardware: {
626
- has_physical_key?: boolean | undefined;
627
- };
628
- device_model_id: string;
629
- is_device_supported: boolean;
630
- main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
631
- aesthetic_variants: {
632
- display_name: string;
633
- slug: string;
634
- images: {
635
- url: string;
636
- width: number;
637
- height: number;
638
- }[];
639
- primary_color_hex?: string | undefined;
640
- manufacturer_sku?: string | undefined;
641
- front_image?: {
642
- url: string;
643
- width: number;
644
- height: number;
645
- } | undefined;
646
- back_image?: {
647
- url: string;
648
- width: number;
649
- height: number;
650
- } | undefined;
651
- }[];
652
- power_sources: ("battery" | "hardwired" | "mechanical_harvesting" | "wireless" | "ethernet")[];
653
- product_url?: string | undefined;
654
- } & ({
655
- main_category: "smartlock";
656
- physical_properties: {
657
- lock_type: "unknown" | "deadbolt" | "lever" | "mortise" | "lockbox" | "cylinder" | "padlock" | "locker";
658
- has_physical_key: boolean;
659
- has_camera: boolean;
660
- };
661
- software_features: {
662
- can_remotely_unlock: boolean;
663
- can_program_access_codes: boolean;
664
- can_program_access_schedules: boolean;
665
- can_program_access_codes_offline: boolean;
666
- };
667
- can_remotely_unlock?: true | undefined;
668
- can_remotely_lock?: true | undefined;
669
- can_program_offline_access_codes?: true | undefined;
670
- can_program_online_access_codes?: true | undefined;
671
- } | {
672
- main_category: "sensor";
673
- physical_properties: {
674
- has_noise_sensor: boolean;
675
- has_humidity_sensor: boolean;
676
- has_temperature_sensor: boolean;
677
- has_occupancy_detection: boolean;
678
- };
679
- } | {
680
- main_category: "thermostat";
681
- physical_properties: {
682
- has_humidity_sensor: boolean;
683
- has_temperature_sensor: boolean;
684
- has_occupancy_detection: boolean;
685
- available_modes: ("heat" | "cool" | "eco" | "fan")[];
686
- is_heat_pump_compatible: boolean;
687
- supports_demand_response: boolean;
688
- supports_emergency_heating_mode: boolean;
689
- };
690
- software_features: {
691
- can_program_climate_schedules: boolean;
692
- };
693
- can_hvac_heat?: true | undefined;
694
- can_hvac_cool?: true | undefined;
695
- can_hvac_heat_cool?: true | undefined;
696
- can_turn_off_hvac?: true | undefined;
697
- } | {
698
- main_category: "relay";
699
- } | {
700
- main_category: "intercom";
701
- physical_properties: {
702
- has_camera: boolean;
703
- has_rfid_reader: boolean;
704
- has_nfc_reader: boolean;
705
- has_wiegand_interface: boolean;
706
- };
707
- software_features: {
708
- can_remotely_unlock: boolean;
709
- can_program_access_codes: boolean;
710
- can_unlock_with_face_recognition: boolean;
711
- supports_onvif: boolean;
712
- };
713
- } | {
714
- main_category: "accessory";
715
- });
716
- }, {
717
- device_model: {
718
- display_name: string;
719
- description: string;
720
- manufacturer: {
721
- display_name: string;
722
- manufacturer_id: string;
723
- integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
724
- integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
725
- is_connect_webview_supported: boolean;
726
- requires_seam_support_to_add_account: boolean;
727
- annotations: {
728
- message: string;
729
- annotation_code: "subscription_required";
730
- }[];
731
- description?: string | undefined;
732
- logo?: {
733
- url: string;
734
- width: number;
735
- height: number;
736
- } | undefined;
737
- website?: string | undefined;
738
- legal_name?: string | undefined;
739
- parent_organization?: string | undefined;
740
- headquarters?: string[] | undefined;
741
- countries_of_origin?: string[] | undefined;
742
- founding_year?: string | undefined;
743
- us_customer_support_tel?: string | undefined;
744
- us_customer_support_email?: string | undefined;
745
- us_customer_support_contact_url?: string | undefined;
746
- seam_api_guide?: string | undefined;
747
- };
748
- hardware: {
749
- has_physical_key?: boolean | undefined;
750
- };
751
- device_model_id: string;
752
- is_device_supported: boolean;
753
- main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
754
- aesthetic_variants: {
755
- display_name: string;
756
- slug: string;
757
- images: {
758
- url: string;
759
- width: number;
760
- height: number;
761
- }[];
762
- primary_color_hex?: string | undefined;
763
- manufacturer_sku?: string | undefined;
764
- front_image?: {
765
- url: string;
766
- width: number;
767
- height: number;
768
- } | undefined;
769
- back_image?: {
770
- url: string;
771
- width: number;
772
- height: number;
773
- } | undefined;
774
- }[];
775
- power_sources: ("battery" | "hardwired" | "mechanical_harvesting" | "wireless" | "ethernet")[];
776
- product_url?: string | undefined;
777
- } & ({
778
- main_category: "smartlock";
779
- physical_properties: {
780
- lock_type: "unknown" | "deadbolt" | "lever" | "mortise" | "lockbox" | "cylinder" | "padlock" | "locker";
781
- has_physical_key: boolean;
782
- has_camera: boolean;
783
- };
784
- software_features: {
785
- can_remotely_unlock: boolean;
786
- can_program_access_codes: boolean;
787
- can_program_access_schedules: boolean;
788
- can_program_access_codes_offline: boolean;
789
- };
790
- can_remotely_unlock?: true | undefined;
791
- can_remotely_lock?: true | undefined;
792
- can_program_offline_access_codes?: true | undefined;
793
- can_program_online_access_codes?: true | undefined;
794
- } | {
795
- main_category: "sensor";
796
- physical_properties: {
797
- has_noise_sensor: boolean;
798
- has_humidity_sensor: boolean;
799
- has_temperature_sensor: boolean;
800
- has_occupancy_detection: boolean;
801
- };
802
- } | {
803
- main_category: "thermostat";
804
- physical_properties: {
805
- has_humidity_sensor: boolean;
806
- has_temperature_sensor: boolean;
807
- has_occupancy_detection: boolean;
808
- available_modes: ("heat" | "cool" | "eco" | "fan")[];
809
- is_heat_pump_compatible: boolean;
810
- supports_demand_response: boolean;
811
- supports_emergency_heating_mode: boolean;
812
- };
813
- software_features: {
814
- can_program_climate_schedules: boolean;
815
- };
816
- can_hvac_heat?: true | undefined;
817
- can_hvac_cool?: true | undefined;
818
- can_hvac_heat_cool?: true | undefined;
819
- can_turn_off_hvac?: true | undefined;
820
- } | {
821
- main_category: "relay";
822
- } | {
823
- main_category: "intercom";
824
- physical_properties: {
825
- has_camera: boolean;
826
- has_rfid_reader?: boolean | undefined;
827
- has_nfc_reader?: boolean | undefined;
828
- has_wiegand_interface?: boolean | undefined;
829
- };
830
- software_features: {
831
- can_remotely_unlock: boolean;
832
- can_program_access_codes: boolean;
833
- can_unlock_with_face_recognition?: boolean | undefined;
834
- supports_onvif?: boolean | undefined;
835
- };
836
- } | {
837
- main_category: "accessory";
838
- });
839
- }>;
840
- };
841
- readonly '/api/v1/device_models/list': {
842
- readonly auth: "publishable_key";
843
- readonly methods: readonly ["GET", "OPTIONS"];
844
- readonly queryParams: z.ZodObject<{
845
- main_category: z.ZodOptional<z.ZodEnum<["smartlock", "sensor", "thermostat", "relay", "intercom", "accessory"]>>;
846
- manufacturer_id: z.ZodOptional<z.ZodString>;
847
- manufacturer_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
848
- /** @deprecated */
849
- integration_status: z.ZodOptional<z.ZodEnum<["stable", "beta", "planned", "unsupported", "inquire"]>>;
850
- integration_support_levels: z.ZodOptional<z.ZodArray<z.ZodEnum<["stable", "beta", "planned", "unsupported", "inquire"]>, "many">>;
851
- text_search: z.ZodOptional<z.ZodString>;
852
- include_if: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
853
- exclude_if: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
854
- }, "strip", z.ZodTypeAny, {
855
- include_if?: string[] | undefined;
856
- exclude_if?: string[] | undefined;
857
- manufacturer_id?: string | undefined;
858
- main_category?: "thermostat" | "smartlock" | "sensor" | "relay" | "intercom" | "accessory" | undefined;
859
- manufacturer_ids?: string[] | undefined;
860
- integration_status?: "stable" | "beta" | "planned" | "unsupported" | "inquire" | undefined;
861
- integration_support_levels?: ("stable" | "beta" | "planned" | "unsupported" | "inquire")[] | undefined;
862
- text_search?: string | undefined;
863
- }, {
864
- include_if?: string[] | undefined;
865
- exclude_if?: string[] | undefined;
866
- manufacturer_id?: string | undefined;
867
- main_category?: "thermostat" | "smartlock" | "sensor" | "relay" | "intercom" | "accessory" | undefined;
868
- manufacturer_ids?: string[] | undefined;
869
- integration_status?: "stable" | "beta" | "planned" | "unsupported" | "inquire" | undefined;
870
- integration_support_levels?: ("stable" | "beta" | "planned" | "unsupported" | "inquire")[] | undefined;
871
- text_search?: string | undefined;
872
- }>;
873
- readonly jsonResponse: z.ZodObject<{
874
- device_models: z.ZodArray<z.ZodIntersection<z.ZodObject<{
875
- device_model_id: z.ZodString;
876
- manufacturer: z.ZodObject<Omit<{
877
- manufacturer_id: z.ZodString;
878
- display_name: z.ZodString;
879
- logo: z.ZodOptional<z.ZodObject<{
880
- url: z.ZodString;
881
- width: z.ZodNumber;
882
- height: z.ZodNumber;
883
- }, "strip", z.ZodTypeAny, {
884
- url: string;
885
- width: number;
886
- height: number;
887
- }, {
888
- url: string;
889
- width: number;
890
- height: number;
891
- }>>;
892
- integration: z.ZodEnum<["stable", "beta", "planned", "unsupported", "inquire"]>;
893
- integration_support_level: z.ZodEnum<["stable", "beta", "planned", "unsupported", "inquire"]>;
894
- is_connect_webview_supported: z.ZodBoolean;
895
- requires_seam_support_to_add_account: z.ZodBoolean;
896
- device_model_count: z.ZodNumber;
897
- annotations: z.ZodArray<z.ZodObject<{
898
- annotation_code: z.ZodEnum<["subscription_required"]>;
899
- message: z.ZodString;
900
- }, "strip", z.ZodTypeAny, {
901
- message: string;
902
- annotation_code: "subscription_required";
903
- }, {
904
- message: string;
905
- annotation_code: "subscription_required";
906
- }>, "many">;
907
- website: z.ZodOptional<z.ZodString>;
908
- legal_name: z.ZodOptional<z.ZodString>;
909
- parent_organization: z.ZodOptional<z.ZodString>;
910
- headquarters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
911
- countries_of_origin: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
912
- founding_year: z.ZodOptional<z.ZodString>;
913
- us_customer_support_tel: z.ZodOptional<z.ZodString>;
914
- us_customer_support_email: z.ZodOptional<z.ZodString>;
915
- us_customer_support_contact_url: z.ZodOptional<z.ZodString>;
916
- seam_api_guide: z.ZodOptional<z.ZodString>;
917
- description: z.ZodOptional<z.ZodString>;
918
- }, "device_model_count">, "strip", z.ZodTypeAny, {
919
- display_name: string;
920
- manufacturer_id: string;
921
- integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
922
- integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
923
- is_connect_webview_supported: boolean;
924
- requires_seam_support_to_add_account: boolean;
925
- annotations: {
926
- message: string;
927
- annotation_code: "subscription_required";
928
- }[];
929
- description?: string | undefined;
930
- logo?: {
931
- url: string;
932
- width: number;
933
- height: number;
934
- } | undefined;
935
- website?: string | undefined;
936
- legal_name?: string | undefined;
937
- parent_organization?: string | undefined;
938
- headquarters?: string[] | undefined;
939
- countries_of_origin?: string[] | undefined;
940
- founding_year?: string | undefined;
941
- us_customer_support_tel?: string | undefined;
942
- us_customer_support_email?: string | undefined;
943
- us_customer_support_contact_url?: string | undefined;
944
- seam_api_guide?: string | undefined;
945
- }, {
946
- display_name: string;
947
- manufacturer_id: string;
948
- integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
949
- integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
950
- is_connect_webview_supported: boolean;
951
- requires_seam_support_to_add_account: boolean;
952
- annotations: {
953
- message: string;
954
- annotation_code: "subscription_required";
955
- }[];
956
- description?: string | undefined;
957
- logo?: {
958
- url: string;
959
- width: number;
960
- height: number;
961
- } | undefined;
962
- website?: string | undefined;
963
- legal_name?: string | undefined;
964
- parent_organization?: string | undefined;
965
- headquarters?: string[] | undefined;
966
- countries_of_origin?: string[] | undefined;
967
- founding_year?: string | undefined;
968
- us_customer_support_tel?: string | undefined;
969
- us_customer_support_email?: string | undefined;
970
- us_customer_support_contact_url?: string | undefined;
971
- seam_api_guide?: string | undefined;
972
- }>;
973
- is_device_supported: z.ZodBoolean;
974
- display_name: z.ZodString;
975
- description: z.ZodString;
976
- product_url: z.ZodOptional<z.ZodString>;
977
- main_connection_type: z.ZodEnum<["wifi", "zwave", "zigbee", "unknown"]>;
978
- hardware: z.ZodObject<{
979
- has_physical_key: z.ZodOptional<z.ZodBoolean>;
980
- }, "strip", z.ZodTypeAny, {
981
- has_physical_key?: boolean | undefined;
982
- }, {
983
- has_physical_key?: boolean | undefined;
984
- }>;
985
- aesthetic_variants: z.ZodArray<z.ZodObject<{
986
- slug: z.ZodString;
987
- display_name: z.ZodString;
988
- primary_color_hex: z.ZodOptional<z.ZodString>;
989
- manufacturer_sku: z.ZodOptional<z.ZodString>;
990
- front_image: z.ZodOptional<z.ZodObject<{
991
- url: z.ZodString;
992
- width: z.ZodNumber;
993
- height: z.ZodNumber;
994
- }, "strip", z.ZodTypeAny, {
995
- url: string;
996
- width: number;
997
- height: number;
998
- }, {
999
- url: string;
1000
- width: number;
1001
- height: number;
1002
- }>>;
1003
- back_image: z.ZodOptional<z.ZodObject<{
1004
- url: z.ZodString;
1005
- width: z.ZodNumber;
1006
- height: z.ZodNumber;
1007
- }, "strip", z.ZodTypeAny, {
1008
- url: string;
1009
- width: number;
1010
- height: number;
1011
- }, {
1012
- url: string;
1013
- width: number;
1014
- height: number;
1015
- }>>;
1016
- images: z.ZodArray<z.ZodObject<{
1017
- url: z.ZodString;
1018
- width: z.ZodNumber;
1019
- height: z.ZodNumber;
1020
- }, "strip", z.ZodTypeAny, {
1021
- url: string;
1022
- width: number;
1023
- height: number;
1024
- }, {
1025
- url: string;
1026
- width: number;
1027
- height: number;
1028
- }>, "many">;
1029
- }, "strip", z.ZodTypeAny, {
1030
- display_name: string;
1031
- slug: string;
1032
- images: {
1033
- url: string;
1034
- width: number;
1035
- height: number;
1036
- }[];
1037
- primary_color_hex?: string | undefined;
1038
- manufacturer_sku?: string | undefined;
1039
- front_image?: {
1040
- url: string;
1041
- width: number;
1042
- height: number;
1043
- } | undefined;
1044
- back_image?: {
1045
- url: string;
1046
- width: number;
1047
- height: number;
1048
- } | undefined;
1049
- }, {
1050
- display_name: string;
1051
- slug: string;
1052
- images: {
1053
- url: string;
1054
- width: number;
1055
- height: number;
1056
- }[];
1057
- primary_color_hex?: string | undefined;
1058
- manufacturer_sku?: string | undefined;
1059
- front_image?: {
1060
- url: string;
1061
- width: number;
1062
- height: number;
1063
- } | undefined;
1064
- back_image?: {
1065
- url: string;
1066
- width: number;
1067
- height: number;
1068
- } | undefined;
1069
- }>, "many">;
1070
- power_sources: z.ZodArray<z.ZodEnum<["battery", "hardwired", "mechanical_harvesting", "wireless", "ethernet"]>, "many">;
1071
- }, "strip", z.ZodTypeAny, {
1072
- display_name: string;
1073
- description: string;
1074
- manufacturer: {
1075
- display_name: string;
1076
- manufacturer_id: string;
1077
- integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
1078
- integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
1079
- is_connect_webview_supported: boolean;
1080
- requires_seam_support_to_add_account: boolean;
1081
- annotations: {
1082
- message: string;
1083
- annotation_code: "subscription_required";
1084
- }[];
1085
- description?: string | undefined;
1086
- logo?: {
1087
- url: string;
1088
- width: number;
1089
- height: number;
1090
- } | undefined;
1091
- website?: string | undefined;
1092
- legal_name?: string | undefined;
1093
- parent_organization?: string | undefined;
1094
- headquarters?: string[] | undefined;
1095
- countries_of_origin?: string[] | undefined;
1096
- founding_year?: string | undefined;
1097
- us_customer_support_tel?: string | undefined;
1098
- us_customer_support_email?: string | undefined;
1099
- us_customer_support_contact_url?: string | undefined;
1100
- seam_api_guide?: string | undefined;
1101
- };
1102
- hardware: {
1103
- has_physical_key?: boolean | undefined;
1104
- };
1105
- device_model_id: string;
1106
- is_device_supported: boolean;
1107
- main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
1108
- aesthetic_variants: {
1109
- display_name: string;
1110
- slug: string;
1111
- images: {
1112
- url: string;
1113
- width: number;
1114
- height: number;
1115
- }[];
1116
- primary_color_hex?: string | undefined;
1117
- manufacturer_sku?: string | undefined;
1118
- front_image?: {
1119
- url: string;
1120
- width: number;
1121
- height: number;
1122
- } | undefined;
1123
- back_image?: {
1124
- url: string;
1125
- width: number;
1126
- height: number;
1127
- } | undefined;
1128
- }[];
1129
- power_sources: ("battery" | "hardwired" | "mechanical_harvesting" | "wireless" | "ethernet")[];
1130
- product_url?: string | undefined;
1131
- }, {
1132
- display_name: string;
1133
- description: string;
1134
- manufacturer: {
1135
- display_name: string;
1136
- manufacturer_id: string;
1137
- integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
1138
- integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
1139
- is_connect_webview_supported: boolean;
1140
- requires_seam_support_to_add_account: boolean;
1141
- annotations: {
1142
- message: string;
1143
- annotation_code: "subscription_required";
1144
- }[];
1145
- description?: string | undefined;
1146
- logo?: {
1147
- url: string;
1148
- width: number;
1149
- height: number;
1150
- } | undefined;
1151
- website?: string | undefined;
1152
- legal_name?: string | undefined;
1153
- parent_organization?: string | undefined;
1154
- headquarters?: string[] | undefined;
1155
- countries_of_origin?: string[] | undefined;
1156
- founding_year?: string | undefined;
1157
- us_customer_support_tel?: string | undefined;
1158
- us_customer_support_email?: string | undefined;
1159
- us_customer_support_contact_url?: string | undefined;
1160
- seam_api_guide?: string | undefined;
1161
- };
1162
- hardware: {
1163
- has_physical_key?: boolean | undefined;
1164
- };
1165
- device_model_id: string;
1166
- is_device_supported: boolean;
1167
- main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
1168
- aesthetic_variants: {
1169
- display_name: string;
1170
- slug: string;
1171
- images: {
1172
- url: string;
1173
- width: number;
1174
- height: number;
1175
- }[];
1176
- primary_color_hex?: string | undefined;
1177
- manufacturer_sku?: string | undefined;
1178
- front_image?: {
1179
- url: string;
1180
- width: number;
1181
- height: number;
1182
- } | undefined;
1183
- back_image?: {
1184
- url: string;
1185
- width: number;
1186
- height: number;
1187
- } | undefined;
1188
- }[];
1189
- power_sources: ("battery" | "hardwired" | "mechanical_harvesting" | "wireless" | "ethernet")[];
1190
- product_url?: string | undefined;
1191
- }>, z.ZodDiscriminatedUnion<"main_category", [z.ZodObject<{
1192
- main_category: z.ZodLiteral<"smartlock">;
1193
- physical_properties: z.ZodObject<{
1194
- lock_type: z.ZodEnum<["deadbolt", "lever", "mortise", "lockbox", "cylinder", "padlock", "locker", "unknown"]>;
1195
- has_physical_key: z.ZodBoolean;
1196
- has_camera: z.ZodBoolean;
1197
- }, "strip", z.ZodTypeAny, {
1198
- lock_type: "unknown" | "deadbolt" | "lever" | "mortise" | "lockbox" | "cylinder" | "padlock" | "locker";
1199
- has_physical_key: boolean;
1200
- has_camera: boolean;
1201
- }, {
1202
- lock_type: "unknown" | "deadbolt" | "lever" | "mortise" | "lockbox" | "cylinder" | "padlock" | "locker";
1203
- has_physical_key: boolean;
1204
- has_camera: boolean;
1205
- }>;
1206
- software_features: z.ZodObject<{
1207
- can_remotely_unlock: z.ZodBoolean;
1208
- can_program_access_codes: z.ZodBoolean;
1209
- can_program_access_schedules: z.ZodBoolean;
1210
- can_program_access_codes_offline: z.ZodBoolean;
1211
- }, "strip", z.ZodTypeAny, {
1212
- can_remotely_unlock: boolean;
1213
- can_program_access_codes: boolean;
1214
- can_program_access_schedules: boolean;
1215
- can_program_access_codes_offline: boolean;
1216
- }, {
1217
- can_remotely_unlock: boolean;
1218
- can_program_access_codes: boolean;
1219
- can_program_access_schedules: boolean;
1220
- can_program_access_codes_offline: boolean;
1221
- }>;
1222
- } & Pick<{
1223
- can_remotely_unlock: z.ZodOptional<z.ZodLiteral<true>>;
1224
- can_remotely_lock: z.ZodOptional<z.ZodLiteral<true>>;
1225
- can_program_offline_access_codes: z.ZodOptional<z.ZodLiteral<true>>;
1226
- can_program_online_access_codes: z.ZodOptional<z.ZodLiteral<true>>;
1227
- can_hvac_heat: z.ZodOptional<z.ZodLiteral<true>>;
1228
- can_hvac_cool: z.ZodOptional<z.ZodLiteral<true>>;
1229
- can_hvac_heat_cool: z.ZodOptional<z.ZodLiteral<true>>;
1230
- can_turn_off_hvac: z.ZodOptional<z.ZodLiteral<true>>;
1231
- }, "can_remotely_unlock" | "can_remotely_lock" | "can_program_offline_access_codes" | "can_program_online_access_codes">, "strip", z.ZodTypeAny, {
1232
- main_category: "smartlock";
1233
- physical_properties: {
1234
- lock_type: "unknown" | "deadbolt" | "lever" | "mortise" | "lockbox" | "cylinder" | "padlock" | "locker";
1235
- has_physical_key: boolean;
1236
- has_camera: boolean;
1237
- };
1238
- software_features: {
1239
- can_remotely_unlock: boolean;
1240
- can_program_access_codes: boolean;
1241
- can_program_access_schedules: boolean;
1242
- can_program_access_codes_offline: boolean;
1243
- };
1244
- can_remotely_unlock?: true | undefined;
1245
- can_remotely_lock?: true | undefined;
1246
- can_program_offline_access_codes?: true | undefined;
1247
- can_program_online_access_codes?: true | undefined;
1248
- }, {
1249
- main_category: "smartlock";
1250
- physical_properties: {
1251
- lock_type: "unknown" | "deadbolt" | "lever" | "mortise" | "lockbox" | "cylinder" | "padlock" | "locker";
1252
- has_physical_key: boolean;
1253
- has_camera: boolean;
1254
- };
1255
- software_features: {
1256
- can_remotely_unlock: boolean;
1257
- can_program_access_codes: boolean;
1258
- can_program_access_schedules: boolean;
1259
- can_program_access_codes_offline: boolean;
1260
- };
1261
- can_remotely_unlock?: true | undefined;
1262
- can_remotely_lock?: true | undefined;
1263
- can_program_offline_access_codes?: true | undefined;
1264
- can_program_online_access_codes?: true | undefined;
1265
- }>, z.ZodObject<{
1266
- main_category: z.ZodLiteral<"sensor">;
1267
- physical_properties: z.ZodObject<{
1268
- has_noise_sensor: z.ZodBoolean;
1269
- has_humidity_sensor: z.ZodBoolean;
1270
- has_temperature_sensor: z.ZodBoolean;
1271
- has_occupancy_detection: z.ZodBoolean;
1272
- }, "strip", z.ZodTypeAny, {
1273
- has_noise_sensor: boolean;
1274
- has_humidity_sensor: boolean;
1275
- has_temperature_sensor: boolean;
1276
- has_occupancy_detection: boolean;
1277
- }, {
1278
- has_noise_sensor: boolean;
1279
- has_humidity_sensor: boolean;
1280
- has_temperature_sensor: boolean;
1281
- has_occupancy_detection: boolean;
1282
- }>;
1283
- }, "strip", z.ZodTypeAny, {
1284
- main_category: "sensor";
1285
- physical_properties: {
1286
- has_noise_sensor: boolean;
1287
- has_humidity_sensor: boolean;
1288
- has_temperature_sensor: boolean;
1289
- has_occupancy_detection: boolean;
1290
- };
1291
- }, {
1292
- main_category: "sensor";
1293
- physical_properties: {
1294
- has_noise_sensor: boolean;
1295
- has_humidity_sensor: boolean;
1296
- has_temperature_sensor: boolean;
1297
- has_occupancy_detection: boolean;
1298
- };
1299
- }>, z.ZodObject<{
1300
- main_category: z.ZodLiteral<"thermostat">;
1301
- physical_properties: z.ZodObject<{
1302
- available_modes: z.ZodArray<z.ZodEnum<["heat", "cool", "fan", "eco"]>, "many">;
1303
- is_heat_pump_compatible: z.ZodBoolean;
1304
- has_occupancy_detection: z.ZodBoolean;
1305
- supports_demand_response: z.ZodBoolean;
1306
- has_humidity_sensor: z.ZodBoolean;
1307
- has_temperature_sensor: z.ZodBoolean;
1308
- supports_emergency_heating_mode: z.ZodBoolean;
1309
- }, "strip", z.ZodTypeAny, {
1310
- has_humidity_sensor: boolean;
1311
- has_temperature_sensor: boolean;
1312
- has_occupancy_detection: boolean;
1313
- available_modes: ("heat" | "cool" | "eco" | "fan")[];
1314
- is_heat_pump_compatible: boolean;
1315
- supports_demand_response: boolean;
1316
- supports_emergency_heating_mode: boolean;
1317
- }, {
1318
- has_humidity_sensor: boolean;
1319
- has_temperature_sensor: boolean;
1320
- has_occupancy_detection: boolean;
1321
- available_modes: ("heat" | "cool" | "eco" | "fan")[];
1322
- is_heat_pump_compatible: boolean;
1323
- supports_demand_response: boolean;
1324
- supports_emergency_heating_mode: boolean;
1325
- }>;
1326
- software_features: z.ZodObject<{
1327
- can_program_climate_schedules: z.ZodBoolean;
1328
- }, "strip", z.ZodTypeAny, {
1329
- can_program_climate_schedules: boolean;
1330
- }, {
1331
- can_program_climate_schedules: boolean;
1332
- }>;
1333
- } & Pick<{
1334
- can_remotely_unlock: z.ZodOptional<z.ZodLiteral<true>>;
1335
- can_remotely_lock: z.ZodOptional<z.ZodLiteral<true>>;
1336
- can_program_offline_access_codes: z.ZodOptional<z.ZodLiteral<true>>;
1337
- can_program_online_access_codes: z.ZodOptional<z.ZodLiteral<true>>;
1338
- can_hvac_heat: z.ZodOptional<z.ZodLiteral<true>>;
1339
- can_hvac_cool: z.ZodOptional<z.ZodLiteral<true>>;
1340
- can_hvac_heat_cool: z.ZodOptional<z.ZodLiteral<true>>;
1341
- can_turn_off_hvac: z.ZodOptional<z.ZodLiteral<true>>;
1342
- }, "can_hvac_heat" | "can_hvac_cool" | "can_hvac_heat_cool" | "can_turn_off_hvac">, "strip", z.ZodTypeAny, {
1343
- main_category: "thermostat";
1344
- physical_properties: {
1345
- has_humidity_sensor: boolean;
1346
- has_temperature_sensor: boolean;
1347
- has_occupancy_detection: boolean;
1348
- available_modes: ("heat" | "cool" | "eco" | "fan")[];
1349
- is_heat_pump_compatible: boolean;
1350
- supports_demand_response: boolean;
1351
- supports_emergency_heating_mode: boolean;
1352
- };
1353
- software_features: {
1354
- can_program_climate_schedules: boolean;
1355
- };
1356
- can_hvac_heat?: true | undefined;
1357
- can_hvac_cool?: true | undefined;
1358
- can_hvac_heat_cool?: true | undefined;
1359
- can_turn_off_hvac?: true | undefined;
1360
- }, {
1361
- main_category: "thermostat";
1362
- physical_properties: {
1363
- has_humidity_sensor: boolean;
1364
- has_temperature_sensor: boolean;
1365
- has_occupancy_detection: boolean;
1366
- available_modes: ("heat" | "cool" | "eco" | "fan")[];
1367
- is_heat_pump_compatible: boolean;
1368
- supports_demand_response: boolean;
1369
- supports_emergency_heating_mode: boolean;
1370
- };
1371
- software_features: {
1372
- can_program_climate_schedules: boolean;
1373
- };
1374
- can_hvac_heat?: true | undefined;
1375
- can_hvac_cool?: true | undefined;
1376
- can_hvac_heat_cool?: true | undefined;
1377
- can_turn_off_hvac?: true | undefined;
1378
- }>, z.ZodObject<{
1379
- main_category: z.ZodLiteral<"relay">;
1380
- }, "strip", z.ZodTypeAny, {
1381
- main_category: "relay";
1382
- }, {
1383
- main_category: "relay";
1384
- }>, z.ZodObject<{
1385
- main_category: z.ZodLiteral<"intercom">;
1386
- physical_properties: z.ZodObject<{
1387
- has_camera: z.ZodBoolean;
1388
- has_rfid_reader: z.ZodDefault<z.ZodBoolean>;
1389
- has_nfc_reader: z.ZodDefault<z.ZodBoolean>;
1390
- has_wiegand_interface: z.ZodDefault<z.ZodBoolean>;
1391
- }, "strip", z.ZodTypeAny, {
1392
- has_camera: boolean;
1393
- has_rfid_reader: boolean;
1394
- has_nfc_reader: boolean;
1395
- has_wiegand_interface: boolean;
1396
- }, {
1397
- has_camera: boolean;
1398
- has_rfid_reader?: boolean | undefined;
1399
- has_nfc_reader?: boolean | undefined;
1400
- has_wiegand_interface?: boolean | undefined;
1401
- }>;
1402
- software_features: z.ZodObject<{
1403
- can_remotely_unlock: z.ZodBoolean;
1404
- can_program_access_codes: z.ZodBoolean;
1405
- can_unlock_with_face_recognition: z.ZodDefault<z.ZodBoolean>;
1406
- supports_onvif: z.ZodDefault<z.ZodBoolean>;
1407
- }, "strip", z.ZodTypeAny, {
1408
- can_remotely_unlock: boolean;
1409
- can_program_access_codes: boolean;
1410
- can_unlock_with_face_recognition: boolean;
1411
- supports_onvif: boolean;
1412
- }, {
1413
- can_remotely_unlock: boolean;
1414
- can_program_access_codes: boolean;
1415
- can_unlock_with_face_recognition?: boolean | undefined;
1416
- supports_onvif?: boolean | undefined;
1417
- }>;
1418
- }, "strip", z.ZodTypeAny, {
1419
- main_category: "intercom";
1420
- physical_properties: {
1421
- has_camera: boolean;
1422
- has_rfid_reader: boolean;
1423
- has_nfc_reader: boolean;
1424
- has_wiegand_interface: boolean;
1425
- };
1426
- software_features: {
1427
- can_remotely_unlock: boolean;
1428
- can_program_access_codes: boolean;
1429
- can_unlock_with_face_recognition: boolean;
1430
- supports_onvif: boolean;
1431
- };
1432
- }, {
1433
- main_category: "intercom";
1434
- physical_properties: {
1435
- has_camera: boolean;
1436
- has_rfid_reader?: boolean | undefined;
1437
- has_nfc_reader?: boolean | undefined;
1438
- has_wiegand_interface?: boolean | undefined;
1439
- };
1440
- software_features: {
1441
- can_remotely_unlock: boolean;
1442
- can_program_access_codes: boolean;
1443
- can_unlock_with_face_recognition?: boolean | undefined;
1444
- supports_onvif?: boolean | undefined;
1445
- };
1446
- }>, z.ZodObject<{
1447
- main_category: z.ZodLiteral<"accessory">;
1448
- }, "strip", z.ZodTypeAny, {
1449
- main_category: "accessory";
1450
- }, {
1451
- main_category: "accessory";
1452
- }>]>>, "many">;
1453
- }, "strip", z.ZodTypeAny, {
1454
- device_models: ({
1455
- display_name: string;
1456
- description: string;
1457
- manufacturer: {
1458
- display_name: string;
1459
- manufacturer_id: string;
1460
- integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
1461
- integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
1462
- is_connect_webview_supported: boolean;
1463
- requires_seam_support_to_add_account: boolean;
1464
- annotations: {
1465
- message: string;
1466
- annotation_code: "subscription_required";
1467
- }[];
1468
- description?: string | undefined;
1469
- logo?: {
1470
- url: string;
1471
- width: number;
1472
- height: number;
1473
- } | undefined;
1474
- website?: string | undefined;
1475
- legal_name?: string | undefined;
1476
- parent_organization?: string | undefined;
1477
- headquarters?: string[] | undefined;
1478
- countries_of_origin?: string[] | undefined;
1479
- founding_year?: string | undefined;
1480
- us_customer_support_tel?: string | undefined;
1481
- us_customer_support_email?: string | undefined;
1482
- us_customer_support_contact_url?: string | undefined;
1483
- seam_api_guide?: string | undefined;
1484
- };
1485
- hardware: {
1486
- has_physical_key?: boolean | undefined;
1487
- };
1488
- device_model_id: string;
1489
- is_device_supported: boolean;
1490
- main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
1491
- aesthetic_variants: {
1492
- display_name: string;
1493
- slug: string;
1494
- images: {
1495
- url: string;
1496
- width: number;
1497
- height: number;
1498
- }[];
1499
- primary_color_hex?: string | undefined;
1500
- manufacturer_sku?: string | undefined;
1501
- front_image?: {
1502
- url: string;
1503
- width: number;
1504
- height: number;
1505
- } | undefined;
1506
- back_image?: {
1507
- url: string;
1508
- width: number;
1509
- height: number;
1510
- } | undefined;
1511
- }[];
1512
- power_sources: ("battery" | "hardwired" | "mechanical_harvesting" | "wireless" | "ethernet")[];
1513
- product_url?: string | undefined;
1514
- } & ({
1515
- main_category: "smartlock";
1516
- physical_properties: {
1517
- lock_type: "unknown" | "deadbolt" | "lever" | "mortise" | "lockbox" | "cylinder" | "padlock" | "locker";
1518
- has_physical_key: boolean;
1519
- has_camera: boolean;
1520
- };
1521
- software_features: {
1522
- can_remotely_unlock: boolean;
1523
- can_program_access_codes: boolean;
1524
- can_program_access_schedules: boolean;
1525
- can_program_access_codes_offline: boolean;
1526
- };
1527
- can_remotely_unlock?: true | undefined;
1528
- can_remotely_lock?: true | undefined;
1529
- can_program_offline_access_codes?: true | undefined;
1530
- can_program_online_access_codes?: true | undefined;
1531
- } | {
1532
- main_category: "sensor";
1533
- physical_properties: {
1534
- has_noise_sensor: boolean;
1535
- has_humidity_sensor: boolean;
1536
- has_temperature_sensor: boolean;
1537
- has_occupancy_detection: boolean;
1538
- };
1539
- } | {
1540
- main_category: "thermostat";
1541
- physical_properties: {
1542
- has_humidity_sensor: boolean;
1543
- has_temperature_sensor: boolean;
1544
- has_occupancy_detection: boolean;
1545
- available_modes: ("heat" | "cool" | "eco" | "fan")[];
1546
- is_heat_pump_compatible: boolean;
1547
- supports_demand_response: boolean;
1548
- supports_emergency_heating_mode: boolean;
1549
- };
1550
- software_features: {
1551
- can_program_climate_schedules: boolean;
1552
- };
1553
- can_hvac_heat?: true | undefined;
1554
- can_hvac_cool?: true | undefined;
1555
- can_hvac_heat_cool?: true | undefined;
1556
- can_turn_off_hvac?: true | undefined;
1557
- } | {
1558
- main_category: "relay";
1559
- } | {
1560
- main_category: "intercom";
1561
- physical_properties: {
1562
- has_camera: boolean;
1563
- has_rfid_reader: boolean;
1564
- has_nfc_reader: boolean;
1565
- has_wiegand_interface: boolean;
1566
- };
1567
- software_features: {
1568
- can_remotely_unlock: boolean;
1569
- can_program_access_codes: boolean;
1570
- can_unlock_with_face_recognition: boolean;
1571
- supports_onvif: boolean;
1572
- };
1573
- } | {
1574
- main_category: "accessory";
1575
- }))[];
1576
- }, {
1577
- device_models: ({
1578
- display_name: string;
1579
- description: string;
1580
- manufacturer: {
1581
- display_name: string;
1582
- manufacturer_id: string;
1583
- integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
1584
- integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
1585
- is_connect_webview_supported: boolean;
1586
- requires_seam_support_to_add_account: boolean;
1587
- annotations: {
1588
- message: string;
1589
- annotation_code: "subscription_required";
1590
- }[];
1591
- description?: string | undefined;
1592
- logo?: {
1593
- url: string;
1594
- width: number;
1595
- height: number;
1596
- } | undefined;
1597
- website?: string | undefined;
1598
- legal_name?: string | undefined;
1599
- parent_organization?: string | undefined;
1600
- headquarters?: string[] | undefined;
1601
- countries_of_origin?: string[] | undefined;
1602
- founding_year?: string | undefined;
1603
- us_customer_support_tel?: string | undefined;
1604
- us_customer_support_email?: string | undefined;
1605
- us_customer_support_contact_url?: string | undefined;
1606
- seam_api_guide?: string | undefined;
1607
- };
1608
- hardware: {
1609
- has_physical_key?: boolean | undefined;
1610
- };
1611
- device_model_id: string;
1612
- is_device_supported: boolean;
1613
- main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
1614
- aesthetic_variants: {
1615
- display_name: string;
1616
- slug: string;
1617
- images: {
1618
- url: string;
1619
- width: number;
1620
- height: number;
1621
- }[];
1622
- primary_color_hex?: string | undefined;
1623
- manufacturer_sku?: string | undefined;
1624
- front_image?: {
1625
- url: string;
1626
- width: number;
1627
- height: number;
1628
- } | undefined;
1629
- back_image?: {
1630
- url: string;
1631
- width: number;
1632
- height: number;
1633
- } | undefined;
1634
- }[];
1635
- power_sources: ("battery" | "hardwired" | "mechanical_harvesting" | "wireless" | "ethernet")[];
1636
- product_url?: string | undefined;
1637
- } & ({
1638
- main_category: "smartlock";
1639
- physical_properties: {
1640
- lock_type: "unknown" | "deadbolt" | "lever" | "mortise" | "lockbox" | "cylinder" | "padlock" | "locker";
1641
- has_physical_key: boolean;
1642
- has_camera: boolean;
1643
- };
1644
- software_features: {
1645
- can_remotely_unlock: boolean;
1646
- can_program_access_codes: boolean;
1647
- can_program_access_schedules: boolean;
1648
- can_program_access_codes_offline: boolean;
1649
- };
1650
- can_remotely_unlock?: true | undefined;
1651
- can_remotely_lock?: true | undefined;
1652
- can_program_offline_access_codes?: true | undefined;
1653
- can_program_online_access_codes?: true | undefined;
1654
- } | {
1655
- main_category: "sensor";
1656
- physical_properties: {
1657
- has_noise_sensor: boolean;
1658
- has_humidity_sensor: boolean;
1659
- has_temperature_sensor: boolean;
1660
- has_occupancy_detection: boolean;
1661
- };
1662
- } | {
1663
- main_category: "thermostat";
1664
- physical_properties: {
1665
- has_humidity_sensor: boolean;
1666
- has_temperature_sensor: boolean;
1667
- has_occupancy_detection: boolean;
1668
- available_modes: ("heat" | "cool" | "eco" | "fan")[];
1669
- is_heat_pump_compatible: boolean;
1670
- supports_demand_response: boolean;
1671
- supports_emergency_heating_mode: boolean;
1672
- };
1673
- software_features: {
1674
- can_program_climate_schedules: boolean;
1675
- };
1676
- can_hvac_heat?: true | undefined;
1677
- can_hvac_cool?: true | undefined;
1678
- can_hvac_heat_cool?: true | undefined;
1679
- can_turn_off_hvac?: true | undefined;
1680
- } | {
1681
- main_category: "relay";
1682
- } | {
1683
- main_category: "intercom";
1684
- physical_properties: {
1685
- has_camera: boolean;
1686
- has_rfid_reader?: boolean | undefined;
1687
- has_nfc_reader?: boolean | undefined;
1688
- has_wiegand_interface?: boolean | undefined;
1689
- };
1690
- software_features: {
1691
- can_remotely_unlock: boolean;
1692
- can_program_access_codes: boolean;
1693
- can_unlock_with_face_recognition?: boolean | undefined;
1694
- supports_onvif?: boolean | undefined;
1695
- };
1696
- } | {
1697
- main_category: "accessory";
1698
- }))[];
1699
- }>;
1700
- };
1701
- readonly '/api/v1/manufacturers/get': {
1702
- readonly auth: "publishable_key";
1703
- readonly methods: readonly ["GET", "OPTIONS"];
1704
- readonly queryParams: z.ZodObject<{
1705
- manufacturer_id: z.ZodString;
1706
- }, "strip", z.ZodTypeAny, {
1707
- manufacturer_id: string;
1708
- }, {
1709
- manufacturer_id: string;
1710
- }>;
1711
- readonly jsonResponse: z.ZodObject<{
1712
- manufacturer: z.ZodObject<{
1713
- manufacturer_id: z.ZodString;
1714
- display_name: z.ZodString;
1715
- logo: z.ZodOptional<z.ZodObject<{
1716
- url: z.ZodString;
1717
- width: z.ZodNumber;
1718
- height: z.ZodNumber;
1719
- }, "strip", z.ZodTypeAny, {
1720
- url: string;
1721
- width: number;
1722
- height: number;
1723
- }, {
1724
- url: string;
1725
- width: number;
1726
- height: number;
1727
- }>>;
1728
- integration: z.ZodEnum<["stable", "beta", "planned", "unsupported", "inquire"]>;
1729
- integration_support_level: z.ZodEnum<["stable", "beta", "planned", "unsupported", "inquire"]>;
1730
- is_connect_webview_supported: z.ZodBoolean;
1731
- requires_seam_support_to_add_account: z.ZodBoolean;
1732
- device_model_count: z.ZodNumber;
1733
- annotations: z.ZodArray<z.ZodObject<{
1734
- annotation_code: z.ZodEnum<["subscription_required"]>;
1735
- message: z.ZodString;
1736
- }, "strip", z.ZodTypeAny, {
1737
- message: string;
1738
- annotation_code: "subscription_required";
1739
- }, {
1740
- message: string;
1741
- annotation_code: "subscription_required";
1742
- }>, "many">;
1743
- website: z.ZodOptional<z.ZodString>;
1744
- legal_name: z.ZodOptional<z.ZodString>;
1745
- parent_organization: z.ZodOptional<z.ZodString>;
1746
- headquarters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1747
- countries_of_origin: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1748
- founding_year: z.ZodOptional<z.ZodString>;
1749
- us_customer_support_tel: z.ZodOptional<z.ZodString>;
1750
- us_customer_support_email: z.ZodOptional<z.ZodString>;
1751
- us_customer_support_contact_url: z.ZodOptional<z.ZodString>;
1752
- seam_api_guide: z.ZodOptional<z.ZodString>;
1753
- description: z.ZodOptional<z.ZodString>;
1754
- }, "strip", z.ZodTypeAny, {
1755
- display_name: string;
1756
- manufacturer_id: string;
1757
- integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
1758
- integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
1759
- is_connect_webview_supported: boolean;
1760
- requires_seam_support_to_add_account: boolean;
1761
- device_model_count: number;
1762
- annotations: {
1763
- message: string;
1764
- annotation_code: "subscription_required";
1765
- }[];
1766
- description?: string | undefined;
1767
- logo?: {
1768
- url: string;
1769
- width: number;
1770
- height: number;
1771
- } | undefined;
1772
- website?: string | undefined;
1773
- legal_name?: string | undefined;
1774
- parent_organization?: string | undefined;
1775
- headquarters?: string[] | undefined;
1776
- countries_of_origin?: string[] | undefined;
1777
- founding_year?: string | undefined;
1778
- us_customer_support_tel?: string | undefined;
1779
- us_customer_support_email?: string | undefined;
1780
- us_customer_support_contact_url?: string | undefined;
1781
- seam_api_guide?: string | undefined;
1782
- }, {
1783
- display_name: string;
1784
- manufacturer_id: string;
1785
- integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
1786
- integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
1787
- is_connect_webview_supported: boolean;
1788
- requires_seam_support_to_add_account: boolean;
1789
- device_model_count: number;
1790
- annotations: {
1791
- message: string;
1792
- annotation_code: "subscription_required";
1793
- }[];
1794
- description?: string | undefined;
1795
- logo?: {
1796
- url: string;
1797
- width: number;
1798
- height: number;
1799
- } | undefined;
1800
- website?: string | undefined;
1801
- legal_name?: string | undefined;
1802
- parent_organization?: string | undefined;
1803
- headquarters?: string[] | undefined;
1804
- countries_of_origin?: string[] | undefined;
1805
- founding_year?: string | undefined;
1806
- us_customer_support_tel?: string | undefined;
1807
- us_customer_support_email?: string | undefined;
1808
- us_customer_support_contact_url?: string | undefined;
1809
- seam_api_guide?: string | undefined;
1810
- }>;
1811
- }, "strip", z.ZodTypeAny, {
1812
- manufacturer: {
1813
- display_name: string;
1814
- manufacturer_id: string;
1815
- integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
1816
- integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
1817
- is_connect_webview_supported: boolean;
1818
- requires_seam_support_to_add_account: boolean;
1819
- device_model_count: number;
1820
- annotations: {
1821
- message: string;
1822
- annotation_code: "subscription_required";
1823
- }[];
1824
- description?: string | undefined;
1825
- logo?: {
1826
- url: string;
1827
- width: number;
1828
- height: number;
1829
- } | undefined;
1830
- website?: string | undefined;
1831
- legal_name?: string | undefined;
1832
- parent_organization?: string | undefined;
1833
- headquarters?: string[] | undefined;
1834
- countries_of_origin?: string[] | undefined;
1835
- founding_year?: string | undefined;
1836
- us_customer_support_tel?: string | undefined;
1837
- us_customer_support_email?: string | undefined;
1838
- us_customer_support_contact_url?: string | undefined;
1839
- seam_api_guide?: string | undefined;
1840
- };
1841
- }, {
1842
- manufacturer: {
1843
- display_name: string;
1844
- manufacturer_id: string;
1845
- integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
1846
- integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
1847
- is_connect_webview_supported: boolean;
1848
- requires_seam_support_to_add_account: boolean;
1849
- device_model_count: number;
1850
- annotations: {
1851
- message: string;
1852
- annotation_code: "subscription_required";
1853
- }[];
1854
- description?: string | undefined;
1855
- logo?: {
1856
- url: string;
1857
- width: number;
1858
- height: number;
1859
- } | undefined;
1860
- website?: string | undefined;
1861
- legal_name?: string | undefined;
1862
- parent_organization?: string | undefined;
1863
- headquarters?: string[] | undefined;
1864
- countries_of_origin?: string[] | undefined;
1865
- founding_year?: string | undefined;
1866
- us_customer_support_tel?: string | undefined;
1867
- us_customer_support_email?: string | undefined;
1868
- us_customer_support_contact_url?: string | undefined;
1869
- seam_api_guide?: string | undefined;
1870
- };
1871
- }>;
1872
- };
1873
- readonly '/api/v1/manufacturers/list': {
1874
- readonly auth: "publishable_key";
1875
- readonly methods: readonly ["GET", "OPTIONS"];
1876
- readonly queryParams: z.ZodObject<{
1877
- /** @deprecated */
1878
- integration_status: z.ZodOptional<z.ZodEnum<["stable", "beta", "planned", "unsupported", "inquire"]>>;
1879
- integration_support_levels: z.ZodOptional<z.ZodArray<z.ZodEnum<["stable", "beta", "planned", "unsupported", "inquire"]>, "many">>;
1880
- liqe_query: z.ZodOptional<z.ZodString>;
1881
- }, "strip", z.ZodTypeAny, {
1882
- integration_status?: "stable" | "beta" | "planned" | "unsupported" | "inquire" | undefined;
1883
- integration_support_levels?: ("stable" | "beta" | "planned" | "unsupported" | "inquire")[] | undefined;
1884
- liqe_query?: string | undefined;
1885
- }, {
1886
- integration_status?: "stable" | "beta" | "planned" | "unsupported" | "inquire" | undefined;
1887
- integration_support_levels?: ("stable" | "beta" | "planned" | "unsupported" | "inquire")[] | undefined;
1888
- liqe_query?: string | undefined;
1889
- }>;
1890
- readonly jsonResponse: z.ZodObject<{
1891
- manufacturers: z.ZodArray<z.ZodObject<{
1892
- manufacturer_id: z.ZodString;
1893
- display_name: z.ZodString;
1894
- logo: z.ZodOptional<z.ZodObject<{
1895
- url: z.ZodString;
1896
- width: z.ZodNumber;
1897
- height: z.ZodNumber;
1898
- }, "strip", z.ZodTypeAny, {
1899
- url: string;
1900
- width: number;
1901
- height: number;
1902
- }, {
1903
- url: string;
1904
- width: number;
1905
- height: number;
1906
- }>>;
1907
- integration: z.ZodEnum<["stable", "beta", "planned", "unsupported", "inquire"]>;
1908
- integration_support_level: z.ZodEnum<["stable", "beta", "planned", "unsupported", "inquire"]>;
1909
- is_connect_webview_supported: z.ZodBoolean;
1910
- requires_seam_support_to_add_account: z.ZodBoolean;
1911
- device_model_count: z.ZodNumber;
1912
- annotations: z.ZodArray<z.ZodObject<{
1913
- annotation_code: z.ZodEnum<["subscription_required"]>;
1914
- message: z.ZodString;
1915
- }, "strip", z.ZodTypeAny, {
1916
- message: string;
1917
- annotation_code: "subscription_required";
1918
- }, {
1919
- message: string;
1920
- annotation_code: "subscription_required";
1921
- }>, "many">;
1922
- website: z.ZodOptional<z.ZodString>;
1923
- legal_name: z.ZodOptional<z.ZodString>;
1924
- parent_organization: z.ZodOptional<z.ZodString>;
1925
- headquarters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1926
- countries_of_origin: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1927
- founding_year: z.ZodOptional<z.ZodString>;
1928
- us_customer_support_tel: z.ZodOptional<z.ZodString>;
1929
- us_customer_support_email: z.ZodOptional<z.ZodString>;
1930
- us_customer_support_contact_url: z.ZodOptional<z.ZodString>;
1931
- seam_api_guide: z.ZodOptional<z.ZodString>;
1932
- description: z.ZodOptional<z.ZodString>;
1933
- }, "strip", z.ZodTypeAny, {
1934
- display_name: string;
1935
- manufacturer_id: string;
1936
- integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
1937
- integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
1938
- is_connect_webview_supported: boolean;
1939
- requires_seam_support_to_add_account: boolean;
1940
- device_model_count: number;
1941
- annotations: {
1942
- message: string;
1943
- annotation_code: "subscription_required";
1944
- }[];
1945
- description?: string | undefined;
1946
- logo?: {
1947
- url: string;
1948
- width: number;
1949
- height: number;
1950
- } | undefined;
1951
- website?: string | undefined;
1952
- legal_name?: string | undefined;
1953
- parent_organization?: string | undefined;
1954
- headquarters?: string[] | undefined;
1955
- countries_of_origin?: string[] | undefined;
1956
- founding_year?: string | undefined;
1957
- us_customer_support_tel?: string | undefined;
1958
- us_customer_support_email?: string | undefined;
1959
- us_customer_support_contact_url?: string | undefined;
1960
- seam_api_guide?: string | undefined;
1961
- }, {
1962
- display_name: string;
1963
- manufacturer_id: string;
1964
- integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
1965
- integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
1966
- is_connect_webview_supported: boolean;
1967
- requires_seam_support_to_add_account: boolean;
1968
- device_model_count: number;
1969
- annotations: {
1970
- message: string;
1971
- annotation_code: "subscription_required";
1972
- }[];
1973
- description?: string | undefined;
1974
- logo?: {
1975
- url: string;
1976
- width: number;
1977
- height: number;
1978
- } | undefined;
1979
- website?: string | undefined;
1980
- legal_name?: string | undefined;
1981
- parent_organization?: string | undefined;
1982
- headquarters?: string[] | undefined;
1983
- countries_of_origin?: string[] | undefined;
1984
- founding_year?: string | undefined;
1985
- us_customer_support_tel?: string | undefined;
1986
- us_customer_support_email?: string | undefined;
1987
- us_customer_support_contact_url?: string | undefined;
1988
- seam_api_guide?: string | undefined;
1989
- }>, "many">;
1990
- }, "strip", z.ZodTypeAny, {
1991
- manufacturers: {
1992
- display_name: string;
1993
- manufacturer_id: string;
1994
- integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
1995
- integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
1996
- is_connect_webview_supported: boolean;
1997
- requires_seam_support_to_add_account: boolean;
1998
- device_model_count: number;
1999
- annotations: {
2000
- message: string;
2001
- annotation_code: "subscription_required";
2002
- }[];
2003
- description?: string | undefined;
2004
- logo?: {
2005
- url: string;
2006
- width: number;
2007
- height: number;
2008
- } | undefined;
2009
- website?: string | undefined;
2010
- legal_name?: string | undefined;
2011
- parent_organization?: string | undefined;
2012
- headquarters?: string[] | undefined;
2013
- countries_of_origin?: string[] | undefined;
2014
- founding_year?: string | undefined;
2015
- us_customer_support_tel?: string | undefined;
2016
- us_customer_support_email?: string | undefined;
2017
- us_customer_support_contact_url?: string | undefined;
2018
- seam_api_guide?: string | undefined;
2019
- }[];
2020
- }, {
2021
- manufacturers: {
2022
- display_name: string;
2023
- manufacturer_id: string;
2024
- integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
2025
- integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
2026
- is_connect_webview_supported: boolean;
2027
- requires_seam_support_to_add_account: boolean;
2028
- device_model_count: number;
2029
- annotations: {
2030
- message: string;
2031
- annotation_code: "subscription_required";
2032
- }[];
2033
- description?: string | undefined;
2034
- logo?: {
2035
- url: string;
2036
- width: number;
2037
- height: number;
2038
- } | undefined;
2039
- website?: string | undefined;
2040
- legal_name?: string | undefined;
2041
- parent_organization?: string | undefined;
2042
- headquarters?: string[] | undefined;
2043
- countries_of_origin?: string[] | undefined;
2044
- founding_year?: string | undefined;
2045
- us_customer_support_tel?: string | undefined;
2046
- us_customer_support_email?: string | undefined;
2047
- us_customer_support_contact_url?: string | undefined;
2048
- seam_api_guide?: string | undefined;
2049
- }[];
2050
- }>;
2051
- };
2052
- };