@@ -205,6 +205,7 @@ class Lens(Device):
205205 Manufacturer .INFINITY_PHOTO_OPTICAL ,
206206 Manufacturer .LEICA ,
207207 Manufacturer .MITUTUYO ,
208+ Manufacturer .NAVITAR ,
208209 Manufacturer .NIKON ,
209210 Manufacturer .OLYMPUS ,
210211 Manufacturer .SCHNEIDER_KREUZNACH ,
@@ -619,7 +620,7 @@ class Monitor(Device):
619620 """Description of visual display for visual stimuli"""
620621
621622 device_type : Literal ["Monitor" ] = Field ("Monitor" , const = True , readOnly = True )
622- manufacturer : EnumSubset [Manufacturer .LG ]
623+ manufacturer : EnumSubset [Manufacturer .ASUS , Manufacturer . LG ]
623624 refresh_rate : int = Field (..., title = "Refresh rate (Hz)" , units = "Hz" , ge = 60 )
624625 width : int = Field (..., title = "Width (pixels)" , units = "pixels" )
625626 height : int = Field (..., title = "Height (pixels)" , units = "pixels" )
@@ -676,7 +677,7 @@ class Speaker(Device):
676677 """Description of a speaker for auditory stimuli"""
677678
678679 device_type : Literal ["Speaker" ] = Field ("Speaker" , const = True , readOnly = True )
679- manufacturer : EnumSubset [Manufacturer .TYMPHANY ]
680+ manufacturer : EnumSubset [Manufacturer .TYMPHANY , Manufacturer . ISL ]
680681 position : Optional [RelativePosition ] = Field (None , title = "Relative position of the monitor" )
681682
682683
0 commit comments