We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd54325 commit 0025b19Copy full SHA for 0025b19
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "mcutils-js-api",
3
- "version": "2.0.26",
+ "version": "2.0.27",
4
"module": "dist/index.js",
5
"main": "dist/index.js",
6
"types": "dist/index.d.ts",
src/types/player/cape/cape.ts
@@ -1,7 +1,7 @@
import { CapePart } from "./cape-part";
export type Cape = {
- name: string;
+ name?: string;
textureId: string;
textureUrl: string;
7
parts: Record<CapePart, string>;
src/types/player/player.ts
@@ -8,5 +8,6 @@ export type Player = {
8
legacyAccount: boolean;
9
skin: Skin;
10
cape?: Cape;
11
+ optifineCape?: Cape;
12
rawProperties?: ProfileProperty[];
13
};
0 commit comments