omniarena-types 1.29.0 → 1.30.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 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -122,13 +122,15 @@ export type GameSkin = {
|
|
|
122
122
|
id: string;
|
|
123
123
|
characters: Record<number, CharacterSkin>;
|
|
124
124
|
skills: Record<number, SkillSkin>;
|
|
125
|
+
pronouns: Record<number, PronounSkin>;
|
|
125
126
|
};
|
|
126
|
-
export type CharacterAvatar = 'main';
|
|
127
|
+
export type CharacterAvatar = 'main' | 'old' | 'masked';
|
|
127
128
|
export type CharacterSkin = {
|
|
128
129
|
id: number;
|
|
129
130
|
name: string;
|
|
130
131
|
short: string;
|
|
131
132
|
avatars: Record<CharacterAvatar, string>;
|
|
133
|
+
pronouns: number;
|
|
132
134
|
bio: string;
|
|
133
135
|
};
|
|
134
136
|
export type SkillSkin = {
|
|
@@ -136,6 +138,13 @@ export type SkillSkin = {
|
|
|
136
138
|
name: string;
|
|
137
139
|
image: string;
|
|
138
140
|
};
|
|
141
|
+
type PronounSkin = {
|
|
142
|
+
id: number;
|
|
143
|
+
subject: string;
|
|
144
|
+
object: string;
|
|
145
|
+
possessive: string;
|
|
146
|
+
reflexive: string;
|
|
147
|
+
};
|
|
139
148
|
export type GameSkill = {
|
|
140
149
|
id: number;
|
|
141
150
|
name: string;
|
|
@@ -154,3 +163,4 @@ export type GameCharacter = CharacterSkin & {
|
|
|
154
163
|
playable: boolean;
|
|
155
164
|
skills: GameSkill[];
|
|
156
165
|
};
|
|
166
|
+
export {};
|