mirror of
				https://github.com/DerTyp7/teamspeak-obs-overlay.git
				synced 2025-11-04 07:19:03 +01:00 
			
		
		
		
	[feature] join servers while running
This commit is contained in:
		@@ -36,11 +36,11 @@ export interface IChannel {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export interface IConnection {
 | 
			
		||||
  channelInfos: IChannelInfos;
 | 
			
		||||
  channelInfos?: IChannelInfos;
 | 
			
		||||
  clientId: number;
 | 
			
		||||
  clientInfos: IClientInfo[];
 | 
			
		||||
  clientInfos?: IClientInfo[];
 | 
			
		||||
  id: number;
 | 
			
		||||
  properties: IConnectionProperties;
 | 
			
		||||
  properties?: IServerProperties;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@@ -144,7 +144,7 @@ export interface IClientProperties {
 | 
			
		||||
  volumeModificator: number;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export interface IConnectionProperties {
 | 
			
		||||
export interface IServerProperties {
 | 
			
		||||
  antiFloodPointsNeededCommandBlock: number;
 | 
			
		||||
  antiFloodPointsNeededIpBlock: number;
 | 
			
		||||
  antiFloodPointsNeededPluginBlock: number;
 | 
			
		||||
@@ -269,3 +269,31 @@ export interface IAuthMessage {
 | 
			
		||||
    connections: IConnection[];
 | 
			
		||||
  };
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export interface IServerPropertiesUpdatedMessage {
 | 
			
		||||
  type: "serverPropertiesUpdated";
 | 
			
		||||
  payload: {
 | 
			
		||||
    connectionId: number;
 | 
			
		||||
    properties: IServerProperties;
 | 
			
		||||
  };
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export interface IConnectStatusChangedMessage {
 | 
			
		||||
  type: "connectStatusChanged";
 | 
			
		||||
  payload: {
 | 
			
		||||
    connectionId: number;
 | 
			
		||||
    error: number;
 | 
			
		||||
    info: {
 | 
			
		||||
      clientId: number;
 | 
			
		||||
    }
 | 
			
		||||
    status: number;
 | 
			
		||||
  };
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export interface IChannelsMessage {
 | 
			
		||||
  type: "channels";
 | 
			
		||||
  payload: {
 | 
			
		||||
    connectionId: number;
 | 
			
		||||
    info: IChannelInfos
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user