omniarena-types 1.47.0 → 1.49.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 +23 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -130,6 +130,24 @@ export type SkinDto = {
|
|
|
130
130
|
creatorId: string;
|
|
131
131
|
updatedAt: Date;
|
|
132
132
|
};
|
|
133
|
+
export type PublicSkinDto = {
|
|
134
|
+
id: string;
|
|
135
|
+
name: string;
|
|
136
|
+
content: {
|
|
137
|
+
characters: Record<string, CharacterSkin>;
|
|
138
|
+
skills: Record<string, SkillSkin>;
|
|
139
|
+
pronouns: Record<string, PronounSkin>;
|
|
140
|
+
};
|
|
141
|
+
verified: boolean;
|
|
142
|
+
public: boolean;
|
|
143
|
+
createdAt: Date;
|
|
144
|
+
updatedAt: Date;
|
|
145
|
+
creator: {
|
|
146
|
+
id: string;
|
|
147
|
+
username: string;
|
|
148
|
+
avatarImageId: string;
|
|
149
|
+
};
|
|
150
|
+
};
|
|
133
151
|
export type CharacterAvatar = 'main' | 'old' | 'masked';
|
|
134
152
|
export type CharacterSkin = {
|
|
135
153
|
id: number;
|
|
@@ -249,3 +267,8 @@ export type LiveStats = {
|
|
|
249
267
|
characterCount: number;
|
|
250
268
|
playerCount: number;
|
|
251
269
|
};
|
|
270
|
+
export type ImageDto = {
|
|
271
|
+
id: string;
|
|
272
|
+
url: string;
|
|
273
|
+
createdAt: Date;
|
|
274
|
+
};
|