added missing event get_connections for farmer service

This commit is contained in:
Zlatko Fedor 2022-03-14 18:22:58 +01:00
parent 830c4db420
commit c992d07c95

View File

@ -87,6 +87,13 @@ export default class Farmer extends Service {
});
}
onConnections(
callback: (data: any, message: Message) => void,
processData?: (data: any) => any,
) {
return this.onCommand('get_connections', callback, processData);
}
onNewFarmingInfo(
callback: (data: any, message: Message) => void,
processData?: (data: any) => any,