@seamapi/types 1.18.3 → 1.18.4

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.
@@ -321,6 +321,7 @@ interface Routes {
321
321
  };
322
322
  is_device_supported: boolean;
323
323
  display_name: string;
324
+ description: string;
324
325
  product_url: string;
325
326
  main_connection_type: 'wifi' | 'zwave' | 'zigbee' | 'unknown';
326
327
  main_category: 'smartlock' | 'thermostat' | 'noise_sensor';
@@ -372,6 +373,7 @@ interface Routes {
372
373
  };
373
374
  is_device_supported: boolean;
374
375
  display_name: string;
376
+ description: string;
375
377
  product_url: string;
376
378
  main_connection_type: 'wifi' | 'zwave' | 'zigbee' | 'unknown';
377
379
  main_category: 'smartlock' | 'thermostat' | 'noise_sensor';
@@ -442,4 +444,4 @@ interface Routes {
442
444
  };
443
445
  }
444
446
 
445
- export { Routes, publicModels as schemas };
447
+ export { DeviceModelV1, ImageReference, Manufacturer, Routes, publicModels as schemas };
@@ -1,3 +1,4 @@
1
1
  import * as schemas from './public-models.js';
2
2
  export type { Routes } from './route-types.js';
3
3
  export { schemas };
4
+ export type { DeviceModelV1, ImageReference, Manufacturer, } from './public-models.js';
@@ -25,6 +25,7 @@ export interface Routes {
25
25
  };
26
26
  is_device_supported: boolean;
27
27
  display_name: string;
28
+ description: string;
28
29
  product_url: string;
29
30
  main_connection_type: 'wifi' | 'zwave' | 'zigbee' | 'unknown';
30
31
  main_category: 'smartlock' | 'thermostat' | 'noise_sensor';
@@ -76,6 +77,7 @@ export interface Routes {
76
77
  };
77
78
  is_device_supported: boolean;
78
79
  display_name: string;
80
+ description: string;
79
81
  product_url: string;
80
82
  main_connection_type: 'wifi' | 'zwave' | 'zigbee' | 'unknown';
81
83
  main_category: 'smartlock' | 'thermostat' | 'noise_sensor';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.18.3",
3
+ "version": "1.18.4",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -2,3 +2,9 @@ import * as schemas from './public-models.js'
2
2
 
3
3
  export type { Routes } from './route-types.js'
4
4
  export { schemas }
5
+
6
+ export type {
7
+ DeviceModelV1,
8
+ ImageReference,
9
+ Manufacturer,
10
+ } from './public-models.js'
@@ -27,6 +27,7 @@ export interface Routes {
27
27
  }
28
28
  is_device_supported: boolean
29
29
  display_name: string
30
+ description: string
30
31
  product_url: string
31
32
  main_connection_type: 'wifi' | 'zwave' | 'zigbee' | 'unknown'
32
33
  main_category: 'smartlock' | 'thermostat' | 'noise_sensor'
@@ -86,6 +87,7 @@ export interface Routes {
86
87
  }
87
88
  is_device_supported: boolean
88
89
  display_name: string
90
+ description: string
89
91
  product_url: string
90
92
  main_connection_type: 'wifi' | 'zwave' | 'zigbee' | 'unknown'
91
93
  main_category: 'smartlock' | 'thermostat' | 'noise_sensor'