Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[HotFix] src/controller/python/chip/clusters/Objects.py is out of sync #10787

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 26 additions & 26 deletions src/controller/python/chip/clusters/Objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -5952,7 +5952,7 @@ def descriptor(cls) -> ClusterObjectDescriptor:
return ClusterObjectDescriptor(
Fields=[
ClusterObjectFieldDescriptor(
Label="Name", Tag=0, Type=bytes),
Label="Name", Tag=0, Type=str),
ClusterObjectFieldDescriptor(
Label="FabricConnected", Tag=1, Type=bool),
ClusterObjectFieldDescriptor(
Expand All @@ -5965,7 +5965,7 @@ def descriptor(cls) -> ClusterObjectDescriptor:
Label="Type", Tag=5, Type=GeneralDiagnostics.Enums.InterfaceType),
])

Name: 'bytes' = None
Name: 'str' = None
FabricConnected: 'bool' = None
OffPremiseServicesReachableIPv4: 'bool' = None
OffPremiseServicesReachableIPv6: 'bool' = None
Expand Down Expand Up @@ -6118,7 +6118,7 @@ def descriptor(cls) -> ClusterObjectDescriptor:
ClusterObjectFieldDescriptor(
Label="Id", Tag=0, Type=uint),
ClusterObjectFieldDescriptor(
Label="Name", Tag=1, Type=bytes),
Label="Name", Tag=1, Type=str),
ClusterObjectFieldDescriptor(
Label="StackFreeCurrent", Tag=2, Type=uint),
ClusterObjectFieldDescriptor(
Expand All @@ -6128,7 +6128,7 @@ def descriptor(cls) -> ClusterObjectDescriptor:
])

Id: 'uint' = None
Name: 'bytes' = None
Name: 'str' = None
StackFreeCurrent: 'uint' = None
StackFreeMinimum: 'uint' = None
StackSize: 'uint' = None
Expand Down Expand Up @@ -8119,15 +8119,15 @@ def descriptor(cls) -> ClusterObjectDescriptor:
ClusterObjectFieldDescriptor(
Label="NodeId", Tag=4, Type=uint),
ClusterObjectFieldDescriptor(
Label="Label", Tag=5, Type=bytes),
Label="Label", Tag=5, Type=str),
])

FabricIndex: 'uint' = None
RootPublicKey: 'bytes' = None
VendorId: 'uint' = None
FabricId: 'uint' = None
NodeId: 'uint' = None
Label: 'bytes' = None
Label: 'str' = None

@dataclass
class NOCStruct(ClusterObject):
Expand Down Expand Up @@ -8300,12 +8300,12 @@ def descriptor(cls) -> ClusterObjectDescriptor:
ClusterObjectFieldDescriptor(
Label="FabricIndex", Tag=1, Type=uint),
ClusterObjectFieldDescriptor(
Label="DebugText", Tag=2, Type=bytes),
Label="DebugText", Tag=2, Type=str),
])

StatusCode: 'uint' = None
FabricIndex: 'uint' = None
DebugText: 'bytes' = None
DebugText: 'str' = None

@dataclass
class UpdateFabricLabel(ClusterCommand):
Expand Down Expand Up @@ -8459,13 +8459,13 @@ def descriptor(cls) -> ClusterObjectDescriptor:
return ClusterObjectDescriptor(
Fields=[
ClusterObjectFieldDescriptor(
Label="Label", Tag=0, Type=bytes),
Label="Label", Tag=0, Type=str),
ClusterObjectFieldDescriptor(
Label="Value", Tag=1, Type=bytes),
Label="Value", Tag=1, Type=str),
])

Label: 'bytes' = None
Value: 'bytes' = None
Label: 'str' = None
Value: 'str' = None

class Attributes:
class LabelList(ClusterAttributeDescriptor):
Expand Down Expand Up @@ -17987,18 +17987,18 @@ def descriptor(cls) -> ClusterObjectDescriptor:
ClusterObjectFieldDescriptor(
Label="MinorNumber", Tag=1, Type=uint),
ClusterObjectFieldDescriptor(
Label="Name", Tag=2, Type=bytes),
Label="Name", Tag=2, Type=str),
ClusterObjectFieldDescriptor(
Label="CallSign", Tag=3, Type=bytes),
Label="CallSign", Tag=3, Type=str),
ClusterObjectFieldDescriptor(
Label="AffiliateCallSign", Tag=4, Type=bytes),
Label="AffiliateCallSign", Tag=4, Type=str),
])

MajorNumber: 'uint' = None
MinorNumber: 'uint' = None
Name: 'bytes' = None
CallSign: 'bytes' = None
AffiliateCallSign: 'bytes' = None
Name: 'str' = None
CallSign: 'str' = None
AffiliateCallSign: 'str' = None

@dataclass
class TvChannelLineupInfo(ClusterObject):
Expand Down Expand Up @@ -18175,11 +18175,11 @@ def descriptor(cls) -> ClusterObjectDescriptor:
ClusterObjectFieldDescriptor(
Label="Identifier", Tag=0, Type=uint),
ClusterObjectFieldDescriptor(
Label="Name", Tag=1, Type=bytes),
Label="Name", Tag=1, Type=str),
])

Identifier: 'uint' = None
Name: 'bytes' = None
Name: 'str' = None

class Commands:
@dataclass
Expand Down Expand Up @@ -18769,15 +18769,15 @@ def descriptor(cls) -> ClusterObjectDescriptor:
ClusterObjectFieldDescriptor(
Label="InputType", Tag=1, Type=MediaInput.Enums.MediaInputType),
ClusterObjectFieldDescriptor(
Label="Name", Tag=2, Type=bytes),
Label="Name", Tag=2, Type=str),
ClusterObjectFieldDescriptor(
Label="Description", Tag=3, Type=bytes),
Label="Description", Tag=3, Type=str),
])

Index: 'uint' = None
InputType: 'MediaInput.Enums.MediaInputType' = None
Name: 'bytes' = None
Description: 'bytes' = None
Name: 'str' = None
Description: 'str' = None

class Commands:
@dataclass
Expand Down Expand Up @@ -19370,12 +19370,12 @@ def descriptor(cls) -> ClusterObjectDescriptor:
ClusterObjectFieldDescriptor(
Label="OutputType", Tag=1, Type=AudioOutput.Enums.AudioOutputType),
ClusterObjectFieldDescriptor(
Label="Name", Tag=2, Type=bytes),
Label="Name", Tag=2, Type=str),
])

Index: 'uint' = None
OutputType: 'AudioOutput.Enums.AudioOutputType' = None
Name: 'bytes' = None
Name: 'str' = None

class Commands:
@dataclass
Expand Down