omniarena-types 1.50.0 → 1.52.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 -9
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -121,9 +121,24 @@ export type SkinDto = {
|
|
|
121
121
|
name: string;
|
|
122
122
|
createdAt: Date;
|
|
123
123
|
content: {
|
|
124
|
+
classes: {
|
|
125
|
+
physical: string;
|
|
126
|
+
energy: string;
|
|
127
|
+
mental: string;
|
|
128
|
+
tactical: string;
|
|
129
|
+
};
|
|
130
|
+
energies: {
|
|
131
|
+
name: {
|
|
132
|
+
singular: string;
|
|
133
|
+
plural: String;
|
|
134
|
+
};
|
|
135
|
+
energy1: EnergySkin;
|
|
136
|
+
energy2: EnergySkin;
|
|
137
|
+
energy3: EnergySkin;
|
|
138
|
+
energy4: EnergySkin;
|
|
139
|
+
};
|
|
124
140
|
characters: Record<string, CharacterSkin>;
|
|
125
141
|
skills: Record<string, SkillSkin>;
|
|
126
|
-
pronouns: Record<string, PronounSkin>;
|
|
127
142
|
};
|
|
128
143
|
verified: boolean;
|
|
129
144
|
public: boolean;
|
|
@@ -140,16 +155,22 @@ export type PublicSkinDto = {
|
|
|
140
155
|
creator: {
|
|
141
156
|
id: string;
|
|
142
157
|
username: string;
|
|
158
|
+
displayName: string;
|
|
143
159
|
avatarImageId: string;
|
|
144
160
|
};
|
|
145
161
|
};
|
|
162
|
+
export type EnergySkin = {
|
|
163
|
+
name: string;
|
|
164
|
+
color: string;
|
|
165
|
+
};
|
|
166
|
+
export type PronounType = 'feminine' | 'masculine' | 'neutral';
|
|
146
167
|
export type CharacterAvatar = 'main' | 'old' | 'masked';
|
|
147
168
|
export type CharacterSkin = {
|
|
148
169
|
id: number;
|
|
149
170
|
name: string;
|
|
150
171
|
short: string;
|
|
151
172
|
avatars: Partial<Record<CharacterAvatar, string>>;
|
|
152
|
-
pronouns:
|
|
173
|
+
pronouns: PronounType;
|
|
153
174
|
bio: string;
|
|
154
175
|
};
|
|
155
176
|
export type SkillSkin = {
|
|
@@ -157,13 +178,6 @@ export type SkillSkin = {
|
|
|
157
178
|
name: string;
|
|
158
179
|
image: string;
|
|
159
180
|
};
|
|
160
|
-
export type PronounSkin = {
|
|
161
|
-
id: number;
|
|
162
|
-
subject: string;
|
|
163
|
-
object: string;
|
|
164
|
-
possessive: string;
|
|
165
|
-
reflexive: string;
|
|
166
|
-
};
|
|
167
181
|
export type GameSkill = {
|
|
168
182
|
id: number;
|
|
169
183
|
valence: ValenceType;
|