omniarena-types 1.32.0 → 1.34.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +10 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -163,6 +163,16 @@ export type GameCharacter = CharacterSkin & {
|
|
|
163
163
|
playable: boolean;
|
|
164
164
|
skills: GameSkill[];
|
|
165
165
|
};
|
|
166
|
+
export type UserDto = {
|
|
167
|
+
id: string;
|
|
168
|
+
username: string;
|
|
169
|
+
displayName: string;
|
|
170
|
+
avatarUrl: string | null;
|
|
171
|
+
elo: number;
|
|
172
|
+
wins: number;
|
|
173
|
+
losses: number;
|
|
174
|
+
streak: number;
|
|
175
|
+
};
|
|
166
176
|
export type PostDto = {
|
|
167
177
|
id: string;
|
|
168
178
|
type: string;
|