sendDirectMessageToUsername(username: string, ...messages: Array<MessageTypeOrString>) {
    this.robot.logger.debug(`Sending direct message to username: ${username}`);
    this._userLookup({username: username}, undefined)
      .then((response) => {
        this.sendDirectMessageToUserId(response.id, ...messages);