@Effect({ dispatch: false })
  updateAppVersion$ = this.actions$.pipe(
    ofType(fromAppCore.ActionTypes.APP_UPDATE_VERSION),
    map(() => this.versionCheckerService.updateVersion())
  );