BackendSrv: Adds config to response to fix external plugins that use this (#23032)

* BackendSrv: Added config to response

* QueryInspector: Removing config from showing up

* Replace config with request and make it be the unmodified params sent in
This commit is contained in:
Torkel Ödegaard
2020-03-25 10:21:12 +01:00
committed by GitHub
parent bcad3fbda1
commit 40d195e4a7
4 changed files with 17 additions and 46 deletions

View File

@@ -51,7 +51,7 @@ export interface DataSourceResponse<T> {
readonly redirected: boolean;
readonly type: ResponseType;
readonly url: string;
readonly request: any;
readonly config: any;
}
type DataSourceResponsePayload = DataSourceResponse<any>;