@seamapi/types 1.196.0 → 1.196.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.
- package/dist/connect.cjs +5 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +12 -0
- package/lib/seam/connect/models/events/devices.d.ts +24 -0
- package/lib/seam/connect/models/events/devices.js +5 -1
- package/lib/seam/connect/models/events/devices.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +12 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/events/devices.ts +5 -1
package/dist/connect.cjs
CHANGED
|
@@ -1971,7 +1971,11 @@ var device_accessory_keypad_disconnected_event = device_event.extend({
|
|
|
1971
1971
|
}).describe("A accessory keypad was disconnected to a device.");
|
|
1972
1972
|
var noise_sensor_noise_threshold_triggered_event = device_event.extend({
|
|
1973
1973
|
event_type: zod.z.literal("noise_sensor.noise_threshold_triggered"),
|
|
1974
|
-
|
|
1974
|
+
noise_level_decibels: zod.z.number().optional(),
|
|
1975
|
+
noise_level_nrs: zod.z.number().optional(),
|
|
1976
|
+
noise_threshold_id: zod.z.string().uuid().optional(),
|
|
1977
|
+
noise_threshold_name: zod.z.string().optional(),
|
|
1978
|
+
// TODO: remove metadata from this event
|
|
1975
1979
|
noiseaware_metadata: zod.z.record(zod.z.unknown()).optional().describe(`
|
|
1976
1980
|
---
|
|
1977
1981
|
title: Noiseaware Metadata
|