We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae22af1 commit 62061e6Copy full SHA for 62061e6
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "mcutils-js-api",
3
- "version": "2.0.24",
+ "version": "2.0.25",
4
"module": "dist/index.js",
5
"main": "dist/index.js",
6
"types": "dist/index.d.ts",
src/types/server-registry/server-registry-entry.ts
@@ -1,8 +1,10 @@
import { ServerPlatform } from "../server/server";
export type ServerRegistryEntry = {
- serverName: string;
+ serverId: string;
+ displayName: string;
hostnames: string[];
7
wildcardHostnames: string[];
8
+ backgroundImageUrl: string;
9
platform: ServerPlatform;
10
}
0 commit comments