API: These fields should not be optional.

This commit is contained in:
Paul
2021-07-11 23:23:11 +01:00
parent 7a04cbb6be
commit 9b26937a05
+2 -2
View File
@@ -182,8 +182,8 @@ type Routes =
method: 'PATCH',
route: `/users/${Id}/username`,
data: {
username?: string,
password?: string
username: string,
password: string
},
response: undefined
}