Skip to content

Commit

Permalink
Add CommissionerCommands::GetCommissionerNodeId (#910)
Browse files Browse the repository at this point in the history
  • Loading branch information
vivien-apple authored Jan 30, 2023
1 parent 7f47fc1 commit 7c448b8
Showing 1 changed file with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,18 @@ const Unpair = {
arguments: [{ type: 'NODE_ID', name: 'nodeId' }],
};

const GetCommissionerNodeId = {
name: 'GetCommissionerNodeId',
responseName: 'GetCommissionerNodeIdResponse',
response: {
arguments: [
{ name: 'nodeId', type: 'NODE_ID' }, //
]
}
}

const name = 'CommissionerCommands';
const commands = [PairWithCode, Unpair];
const commands = [PairWithCode, Unpair, GetCommissionerNodeId];

const CommissionerCommands = {
name,
Expand Down

0 comments on commit 7c448b8

Please sign in to comment.