Any suggestions, how this can be rewritten in more promise-chaining style?:
this.apiService.sendPutRequest(\'/api/users/activate\', usrObj).pipe( map
use SwitchMap for that.
SwitchMap
mainApiCall.pipe( switchMap(result=>secondApiCall(result)), switchMap(resultFromSecondApiCall=>thirdApiCall(resultFromSecond)) ... and so on )