@seamapi/types 1.97.0 → 1.99.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.
@@ -200,6 +200,15 @@ export const device_metadata = z
200
200
  product_model: z.string(),
201
201
  device_info_model: z.string(),
202
202
  }),
203
+
204
+ tedee_metadata: z.object({
205
+ device_id: z.number(),
206
+ serial_number: z.string(),
207
+ device_name: z.string(),
208
+ device_model: z.string(),
209
+ bridge_id: z.number(),
210
+ bridge_name: z.string(),
211
+ }),
203
212
  })
204
213
  .partial()
205
214
 
@@ -27,6 +27,7 @@ export const LOCK_DEVICE_TYPE = {
27
27
  HUBITAT_LOCK: 'hubitat_lock',
28
28
  FOUR_SUITES_DOOR: 'four_suites_door',
29
29
  DORMAKABA_ORACODE_DOOR: 'dormakaba_oracode_door',
30
+ TEDEE_LOCK: 'tedee_lock',
30
31
  } as const
31
32
 
32
33
  type LockDeviceTypeFromMapping =