omniarena-types 1.48.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +18 -0
  2. 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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "omniarena-types",
3
- "version": "1.48.0",
3
+ "version": "1.49.0",
4
4
  "type": "module",
5
5
  "types": "./dist/index.d.ts",
6
6
  "files": [