bump version to 1.1.4 and make serverName and serverUid optional in IConnectStatusInfo

This commit is contained in:
2025-02-09 21:18:02 +01:00
parent b3f8b2f230
commit f5c711830e
2 changed files with 3 additions and 3 deletions

View File

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

View File

@@ -244,6 +244,6 @@ export interface IConnectStatus {
export interface IConnectStatusInfo {
clientId: number;
serverName: string;
serverUid: string;
serverName?: string;
serverUid?: string;
}