Skip to content

Commit

Permalink
Regen zap for pump-app.matter (#15647)
Browse files Browse the repository at this point in the history
  • Loading branch information
andy31415 authored and pull[bot] committed Jul 19, 2023
1 parent d3c1c9b commit 1057026
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions examples/pump-app/pump-common/pump-app.matter
Original file line number Diff line number Diff line change
Expand Up @@ -434,45 +434,45 @@ server cluster Groups = 4 {
readonly global attribute int16u clusterRevision = 65533;

request struct AddGroupRequest {
INT16U groupId = 0;
group_id groupId = 0;
CHAR_STRING groupName = 1;
}

request struct AddGroupIfIdentifyingRequest {
INT16U groupId = 0;
group_id groupId = 0;
CHAR_STRING groupName = 1;
}

request struct GetGroupMembershipRequest {
INT16U groupList[] = 0;
group_id groupList[] = 0;
}

request struct RemoveGroupRequest {
INT16U groupId = 0;
group_id groupId = 0;
}

request struct ViewGroupRequest {
INT16U groupId = 0;
group_id groupId = 0;
}

response struct AddGroupResponse {
ENUM8 status = 0;
INT16U groupId = 1;
group_id groupId = 1;
}

response struct GetGroupMembershipResponse {
INT8U capacity = 0;
INT16U groupList[] = 1;
nullable INT8U capacity = 0;
group_id groupList[] = 1;
}

response struct RemoveGroupResponse {
ENUM8 status = 0;
INT16U groupId = 1;
group_id groupId = 1;
}

response struct ViewGroupResponse {
ENUM8 status = 0;
INT16U groupId = 1;
group_id groupId = 1;
CHAR_STRING groupName = 2;
}

Expand Down

0 comments on commit 1057026

Please sign in to comment.