File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Changelog
22
3+ ### 3.5.1 - 19.09.2023
4+ * fix type of clientTalkRequest
35
46### 3.5.0 - 06.07.2023
57* fix customSearch and customInfo response entry to be an array
Original file line number Diff line number Diff line change 11{
22 "name" : " ts3-nodejs-library" ,
3- "version" : " 3.5.0 " ,
3+ "version" : " 3.5.1 " ,
44 "description" : " TeamSpeak Server Query API" ,
55 "main" : " lib/index.js" ,
66 "homepage" : " https://github.com/Multivit4min/TS3-NodeJS-Library" ,
Original file line number Diff line number Diff line change @@ -564,7 +564,7 @@ export namespace Command {
564564 clientLoginPassword : Command . parseString ,
565565 clientTotalconnections : Command . parseNumber ,
566566 clientFlagAvatar : Command . parseString ,
567- clientTalkRequest : Command . parseBoolean ,
567+ clientTalkRequest : Command . parseNumber ,
568568 clientTalkRequestMsg : Command . parseString ,
569569 clientMonthBytesUploaded : Command . parseNumber ,
570570 clientMonthBytesDownloaded : Command . parseNumber ,
Original file line number Diff line number Diff line change @@ -503,7 +503,7 @@ export interface ClientInfo extends TeamSpeakQuery.ResponseEntry {
503503 clientType : ClientType
504504 clientFlagAvatar : string
505505 clientTalkPower : number
506- clientTalkRequest : boolean
506+ clientTalkRequest : number
507507 clientTalkRequestMsg : string
508508 clientDescription : string
509509 clientIsTalker : boolean
Original file line number Diff line number Diff line change @@ -422,7 +422,7 @@ export function clientinfo(props: Partial<Response.ClientInfo> = {}): Response.C
422422 clientType : 1 ,
423423 clientFlagAvatar : "0" ,
424424 clientTalkPower : 0 ,
425- clientTalkRequest : false ,
425+ clientTalkRequest : 0 ,
426426 clientTalkRequestMsg : "" ,
427427 clientDescription : "" ,
428428 clientIsTalker : false ,
You can’t perform that action at this time.
0 commit comments