bump version to 1.1.3 and rename IConnectionStatus and IConnectionStatusInfo to IConnectStatus and IConnectStatusInfo for consistency

This commit is contained in:
2025-02-09 21:06:12 +01:00
parent 6a9e97f183
commit b3f8b2f230
3 changed files with 6 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "react-teamspeak-remote-app-api-types",
"version": "1.1.2",
"version": "1.1.3",
"description": "Types for the TeamSpeak 5/6 Remote App API",
"license": "ISC",
"type": "commonjs",

View File

@@ -234,15 +234,15 @@ export interface IGroup {
type: number;
}
export interface IConnectionStatus {
export interface IConnectStatus {
connectionId: number;
error: string;
hotReload: boolean;
info?: IConnectionStatusInfo;
info?: IConnectStatusInfo;
status: number;
}
export interface IConnectionStatusInfo {
export interface IConnectStatusInfo {
clientId: number;
serverName: string;
serverUid: string;

View File

@@ -1,4 +1,4 @@
import { IChannelInfos, IChannelProperties, IClientProperties, IConnectionStatus, IGroup, IInvoker, IServerProperties } from "../index";
import { IChannelInfos, IChannelProperties, IClientProperties, IConnectStatus, IGroup, IInvoker, IServerProperties } from "../index";
export interface ILogEvent {
type: string;
@@ -110,5 +110,5 @@ export interface IChannelsEvent {
export interface IConnectStatusChangedEvent {
type: string;
payload: IConnectionStatus;
payload: IConnectStatus;
}