omniarena-types 1.40.0 → 1.41.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 +16 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -181,6 +181,22 @@ export type UserDto = {
|
|
|
181
181
|
skinId: string;
|
|
182
182
|
joinedOn: Date;
|
|
183
183
|
};
|
|
184
|
+
export type RegisterData = {
|
|
185
|
+
username: string;
|
|
186
|
+
password: string;
|
|
187
|
+
};
|
|
188
|
+
export type LoginData = {
|
|
189
|
+
username: string;
|
|
190
|
+
password: string;
|
|
191
|
+
};
|
|
192
|
+
export type ForgotPasswordData = {
|
|
193
|
+
username: string;
|
|
194
|
+
recoveryKey: string;
|
|
195
|
+
};
|
|
196
|
+
export type ResetPasswordData = {
|
|
197
|
+
resetToken: string;
|
|
198
|
+
newPassword: string;
|
|
199
|
+
};
|
|
184
200
|
export type UpdateProfileData = {
|
|
185
201
|
avatarUrl: string | null;
|
|
186
202
|
};
|