@seamapi/types 1.72.0 → 1.72.1

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.
@@ -3591,4 +3591,4 @@ type RouteResponse<Path extends keyof Routes> = Routes[Path]['jsonResponse'];
3591
3591
  type RouteRequestBody<Path extends keyof Routes> = Routes[Path]['jsonBody'] & Routes[Path]['commonParams'];
3592
3592
  type RouteRequestParams<Path extends keyof Routes> = Routes[Path]['queryParams'] & Routes[Path]['commonParams'];
3593
3593
 
3594
- export { type DeviceCategory, type DeviceConnectionType, type DeviceModelV1, type ImageReference, type Manufacturer, type ManufacturerAnnotationCode, type ManufacturerIntegrationSupportLevel, type RouteRequestBody, type RouteRequestParams, type RouteResponse, type Routes, routes, index as schemas };
3594
+ export { type DeviceCategory, type DeviceConnectionType, type DeviceModelV1, type ImageReference, type Manufacturer, type ManufacturerAnnotation, type ManufacturerAnnotationCode, type ManufacturerIntegrationSupportLevel, type RouteRequestBody, type RouteRequestParams, type RouteResponse, type Routes, routes, index as schemas };
@@ -2,4 +2,4 @@ import * as schemas from './public-models/index.js';
2
2
  export * from './route-specs.js';
3
3
  export * from './route-types.js';
4
4
  export { schemas };
5
- export type { DeviceCategory, DeviceConnectionType, DeviceModelV1, ImageReference, Manufacturer, ManufacturerAnnotationCode, ManufacturerIntegrationSupportLevel, } from './public-models/index.js';
5
+ export type { DeviceCategory, DeviceConnectionType, DeviceModelV1, ImageReference, Manufacturer, ManufacturerAnnotation, ManufacturerAnnotationCode, ManufacturerIntegrationSupportLevel, } from './public-models/index.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.72.0",
3
+ "version": "1.72.1",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -10,6 +10,7 @@ export type {
10
10
  DeviceModelV1,
11
11
  ImageReference,
12
12
  Manufacturer,
13
+ ManufacturerAnnotation,
13
14
  ManufacturerAnnotationCode,
14
15
  ManufacturerIntegrationSupportLevel,
15
16
  } from './public-models/index.js'