@seamapi/types 1.52.1 → 1.53.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.
@@ -83,15 +83,15 @@ const intercom = z.object({
83
83
  main_category: z.literal(device_category.enum.intercom),
84
84
  physical_properties: z.object({
85
85
  has_camera: z.boolean(),
86
- has_rfid_reader: z.boolean(),
87
- has_nfc_reader: z.boolean(),
88
- has_wiegand_interface: z.boolean(),
86
+ has_rfid_reader: z.boolean().default(false),
87
+ has_nfc_reader: z.boolean().default(false),
88
+ has_wiegand_interface: z.boolean().default(false),
89
89
  }),
90
90
  software_features: z.object({
91
91
  can_remotely_unlock: z.boolean(),
92
92
  can_program_access_codes: z.boolean(),
93
- can_unlock_with_face_recognition: z.boolean(),
94
- supports_onvif: z.boolean(),
93
+ can_unlock_with_face_recognition: z.boolean().default(false),
94
+ supports_onvif: z.boolean().default(false),
95
95
  }),
96
96
  })
97
97
 
@@ -116,15 +116,15 @@ export interface Routes {
116
116
  main_category: 'intercom'
117
117
  physical_properties: {
118
118
  has_camera: boolean
119
- has_rfid_reader: boolean
120
- has_nfc_reader: boolean
121
- has_wiegand_interface: boolean
119
+ has_rfid_reader?: boolean
120
+ has_nfc_reader?: boolean
121
+ has_wiegand_interface?: boolean
122
122
  }
123
123
  software_features: {
124
124
  can_remotely_unlock: boolean
125
125
  can_program_access_codes: boolean
126
- can_unlock_with_face_recognition: boolean
127
- supports_onvif: boolean
126
+ can_unlock_with_face_recognition?: boolean
127
+ supports_onvif?: boolean
128
128
  }
129
129
  }
130
130
  | {
@@ -271,15 +271,15 @@ export interface Routes {
271
271
  main_category: 'intercom'
272
272
  physical_properties: {
273
273
  has_camera: boolean
274
- has_rfid_reader: boolean
275
- has_nfc_reader: boolean
276
- has_wiegand_interface: boolean
274
+ has_rfid_reader?: boolean
275
+ has_nfc_reader?: boolean
276
+ has_wiegand_interface?: boolean
277
277
  }
278
278
  software_features: {
279
279
  can_remotely_unlock: boolean
280
280
  can_program_access_codes: boolean
281
- can_unlock_with_face_recognition: boolean
282
- supports_onvif: boolean
281
+ can_unlock_with_face_recognition?: boolean
282
+ supports_onvif?: boolean
283
283
  }
284
284
  }
285
285
  | {