I have a application that uses a plugin that register a HttpInterceptor.
Now I need to create my own interceptor that need to be run before the other interceptor because it will change some values, in localStorage, that the other interceptor uses.
How can I influence in the execution order when registering a new HttpInterceptor?
You cannot set interceptors order. Interceptors are chained in order they are declared.
You will have write your own super interceptor that will allow to append child interceptors with some ordering logic.