I've begun integrating this into our project as it looks like a promising way to cut down repetition for requests (of which there are a considerable amount). One small thing I ran into however was adding params to the requests -- which we do for almost all requests -- which now has to be done with string concatenation. This feels fairly clunky compared to e.g. @angular/http/common which allows passing a map of the params.
What is your opinion on providing a optional key params to the RequestParam type? If you are interested I can see if I can make a PR.
I've begun integrating this into our project as it looks like a promising way to cut down repetition for requests (of which there are a considerable amount). One small thing I ran into however was adding params to the requests -- which we do for almost all requests -- which now has to be done with string concatenation. This feels fairly clunky compared to e.g.
@angular/http/commonwhich allows passing a map of the params.What is your opinion on providing a optional key
paramsto theRequestParamtype? If you are interested I can see if I can make a PR.