Complete merge - needed to expose some of the new classes in _io.py's _IO class

This commit is contained in:
Jedrzej Kosinski 2025-07-24 16:22:43 -07:00
parent 9bd3faaf1f
commit dacd0e9a59

View File

@ -1533,6 +1533,7 @@ class _IO:
UploadType = UploadType UploadType = UploadType
RemoteOptions = RemoteOptions RemoteOptions = RemoteOptions
NumberDisplay = NumberDisplay NumberDisplay = NumberDisplay
comfytype = staticmethod(comfytype) comfytype = staticmethod(comfytype)
Custom = staticmethod(Custom) Custom = staticmethod(Custom)
InputV3 = InputV3 InputV3 = InputV3
@ -1540,6 +1541,8 @@ class _IO:
OutputV3 = OutputV3 OutputV3 = OutputV3
ComfyTypeI = ComfyTypeI ComfyTypeI = ComfyTypeI
ComfyTypeIO = ComfyTypeIO ComfyTypeIO = ComfyTypeIO
#---------------------------------
# Supported Types
Boolean = Boolean Boolean = Boolean
Int = Int Int = Int
Float = Float Float = Float
@ -1579,6 +1582,8 @@ class _IO:
FlowControl = FlowControl FlowControl = FlowControl
Accumulation = Accumulation Accumulation = Accumulation
Load3DCamera = Load3DCamera Load3DCamera = Load3DCamera
Load3D = Load3D
Load3DAnimation = Load3DAnimation
Photomaker = Photomaker Photomaker = Photomaker
Point = Point Point = Point
FaceAnalysis = FaceAnalysis FaceAnalysis = FaceAnalysis
@ -1586,6 +1591,7 @@ class _IO:
SEGS = SEGS SEGS = SEGS
AnyType = AnyType AnyType = AnyType
MultiType = MultiType MultiType = MultiType
#---------------------------------
DynamicInput = DynamicInput DynamicInput = DynamicInput
DynamicOutput = DynamicOutput DynamicOutput = DynamicOutput
AutogrowDynamic = AutogrowDynamic AutogrowDynamic = AutogrowDynamic