dependencies: bump (major)

This commit is contained in:
Jesse Chan
2021-10-23 20:52:11 -07:00
parent cb148f7e09
commit 9c9675df34
30 changed files with 2169 additions and 2398 deletions
+6
View File
@@ -25,6 +25,12 @@ export interface AuthAuthenticationResponse {
export const authRegistrationSchema = credentialsSchema;
export type AuthRegistrationOptions = Required<zodInfer<typeof authRegistrationSchema>>;
// POST /api/auth/register - success response
export interface AuthRegistrationResponse {
username: string;
level: AccessLevel;
}
// PATCH /api/auth/users/{username}
export const authUpdateUserSchema = credentialsSchema.partial();
export type AuthUpdateUserOptions = zodInfer<typeof authUpdateUserSchema>;