user-service
    Preparing search index...
    interface UserService {
        changePassword(
            args: { id: string; newPassword: string },
        ): Promise<ChangePasswordResponse>;
        createHouseholdUser(
            args: { password: string; username: string },
        ): Promise<CreateUserResponse>;
        deleteHouseholdUser(args: { id: string }): Promise<DeleteUserResponse>;
        getHouseholdUsers(): Promise<UserOutput[]>;
        getUser(args: { id: string }): Promise<GetUserByIdResponse>;
        getUserByUsername(
            args: { username: string },
        ): Promise<GetUserByUsernameResponse>;
        resetAdminPassword(
            args: { newPassword: string; resetCode: string },
        ): Promise<ResetAdminPasswordResponse>;
        updateUsername(
            args: { id: string; newUsername: string },
        ): Promise<UpdateUsernameResponse>;
    }

    Implemented by

    Index

    Methods