omniarena-types 1.74.0 → 1.76.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 +11 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -227,6 +227,10 @@ export type UserDto = {
|
|
|
227
227
|
highestStreak: number;
|
|
228
228
|
shards: number;
|
|
229
229
|
skinId: string;
|
|
230
|
+
equippedEmojiIds: string[];
|
|
231
|
+
equippedFontId: string | null;
|
|
232
|
+
equippedColorId: string | null;
|
|
233
|
+
equippedBorderId: string | null;
|
|
230
234
|
roles: UserRole[];
|
|
231
235
|
joinedOn: Date;
|
|
232
236
|
};
|
|
@@ -243,6 +247,9 @@ export type UserSummaryDto = {
|
|
|
243
247
|
streak: number;
|
|
244
248
|
highestStreak: number;
|
|
245
249
|
skinId: string;
|
|
250
|
+
equippedFontId: string | null;
|
|
251
|
+
equippedColorId: string | null;
|
|
252
|
+
equippedBorderId: string | null;
|
|
246
253
|
joinedOn: Date;
|
|
247
254
|
};
|
|
248
255
|
export type UserHeaderDto = {
|
|
@@ -277,6 +284,10 @@ export type ResetPasswordData = {
|
|
|
277
284
|
export type UpdateProfileData = {
|
|
278
285
|
displayName: string;
|
|
279
286
|
avatar: string | null;
|
|
287
|
+
equippedEmojiIds: string[];
|
|
288
|
+
equippedFontId: string | null;
|
|
289
|
+
equippedColorId: string | null;
|
|
290
|
+
equippedBorderId: string | null;
|
|
280
291
|
};
|
|
281
292
|
export type SentMessageDto = {
|
|
282
293
|
id: string;
|